Home
last modified time | relevance | path

Searched refs:constant_time_eq_s (Results 1 – 4 of 4) sorted by relevance

/freebsd/crypto/openssl/test/
H A Dconstant_time_test.c229 if (a == b && !TEST_size_t_eq(constant_time_eq_s(a, b), CONSTTIME_TRUE_S)) in test_eq_s()
231 if (a != b && !TEST_int_eq(constant_time_eq_s(a, b), CONSTTIME_FALSE_S)) in test_eq_s()
324 || !test_binary_op_s(&constant_time_eq_s, "constant_time_eq_s", in test_binops_s()
326 || !test_binary_op_s(&constant_time_eq_s, "constant_time_eq_s", in test_binops_s()
/freebsd/crypto/openssl/ssl/record/methods/
H A Dtls_pad.c157 good = constant_time_eq_s(0xff, good & 0xff); in tls1_cbc_remove_padding_and_mac()
262 size_t mac_started = constant_time_eq_s(i, mac_start); in ssl3_cbc_copy_mac()
/freebsd/crypto/openssl/include/internal/
H A Dconstant_time.h243 static ossl_inline size_t constant_time_eq_s(size_t a, size_t b) in constant_time_eq_s() function
256 return (unsigned char)constant_time_eq_s(a, b); in constant_time_eq_8_s()
/freebsd/crypto/openssl/crypto/crmf/
H A Dcrmf_lib.c814 failure |= ~constant_time_eq_s(eksize, (size_t)cikeysize); in OSSL_CRMF_ENCRYPTEDVALUE_decrypt()