OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:constant_time_eq
(Results
1 - 4
of
4
) sorted by null
/external/openssl/crypto/
constant_time_locl.h
106
static inline unsigned int
constant_time_eq
(unsigned int a, unsigned int b);
175
static inline unsigned int
constant_time_eq
(unsigned int a, unsigned int b)
function
182
return (unsigned char)(
constant_time_eq
(a, b));
187
return
constant_time_eq
((unsigned)(a), (unsigned)(b));
/external/openssl/crypto/rsa/
rsa_pk1.c
222
good &=
constant_time_eq
(em[1], 2);
rsa_oaep.c
170
unsigned int equals1 =
constant_time_eq
(db[i], 1);
/external/openssl/ssl/
s3_cbc.c
191
good =
constant_time_eq
(0xff, good & 0xff);
Completed in 871 milliseconds