Searched refs:constant_time_ge (Results 1 – 3 of 3) sorted by relevance
/external/boringssl/src/crypto/ |
D | internal.h | 259 static inline unsigned int constant_time_ge(unsigned int a, unsigned int b) { in constant_time_ge() function 265 return (uint8_t)(constant_time_ge(a, b)); in constant_time_ge_8()
|
D | constant_time_test.c | 259 test_binary_op(&constant_time_ge, "constant_time_ge", a, b, a >= b); in main() 263 test_binary_op(&constant_time_ge, "constant_time_ge", b, a, b >= a); in main()
|
/external/boringssl/src/crypto/cipher/ |
D | tls_cbc.c | 88 good = constant_time_ge(in_len, overhead + padding_length); in EVP_tls_cbc_remove_padding()
|