HomeSort by relevance Sort by last modified time
    Searched defs:constant_time_ge (Results 1 - 2 of 2) sorted by null

  /external/openssl/crypto/
constant_time_locl.h 91 static inline unsigned int constant_time_ge(unsigned int a, unsigned int b);
150 static inline unsigned int constant_time_ge(unsigned int a, unsigned int b) function
162 return (unsigned char)(constant_time_ge(a, b));
  /external/chromium_org/third_party/boringssl/src/ssl/
s3_cbc.c 86 /* constant_time_ge returns 0xff if a>=b and 0x00 otherwise. */
87 static unsigned constant_time_ge(unsigned a, unsigned b) function
123 good = constant_time_ge(rec->length, padding_length+overhead);
125 good &= constant_time_ge(block_size, padding_length+1);
168 good = constant_time_ge(rec->length, overhead+padding_length);
184 unsigned char mask = constant_time_ge(padding_length, i);
272 unsigned char mac_started = constant_time_ge(i, mac_start);
273 unsigned char mac_ended = constant_time_ge(i, mac_end);
596 is_past_c = is_block_a & constant_time_ge(j, c);
597 is_past_cp1 = is_block_a & constant_time_ge(j, c+1)
    [all...]

Completed in 2312 milliseconds