Home
last modified time | relevance | path

Searched refs:constant_time_ge (Results 1 – 3 of 3) sorted by relevance

/external/boringssl/src/crypto/
Dinternal.h259 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()
Dconstant_time_test.c259 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/
Dtls_cbc.c88 good = constant_time_ge(in_len, overhead + padding_length); in EVP_tls_cbc_remove_padding()