Home
last modified time | relevance | path

Searched refs:constant_time_select (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/crypto/openssl/include/internal/
H A Dconstant_time.h80 static ossl_inline unsigned int constant_time_select(unsigned int mask,
299 static ossl_inline unsigned int constant_time_select(unsigned int mask, in constant_time_select() function
317 return (unsigned char)constant_time_select(mask, a, b); in constant_time_select_8()
323 return (int)constant_time_select(mask, (unsigned)(a), (unsigned)(b)); in constant_time_select_int()
328 return (int)constant_time_select((unsigned)mask, (unsigned)(a), in constant_time_select_int_s()
/freebsd-14.2/crypto/openssl/test/
H A Dconstant_time_test.c159 if (!TEST_uint_eq(constant_time_select(CONSTTIME_TRUE, a, b), a)) in test_select()
161 if (!TEST_uint_eq(constant_time_select(CONSTTIME_FALSE, a, b), b)) in test_select()
/freebsd-14.2/crypto/openssl/providers/implementations/ciphers/
H A Dcipher_aes_cbc_hmac_sha1_hw.c488 pad = constant_time_select(mask, pad, maxpad); in aesni_cbc_hmac_sha1_cipher()
H A Dcipher_aes_cbc_hmac_sha256_hw.c524 pad = constant_time_select(mask, pad, maxpad); in aesni_cbc_hmac_sha256_cipher()
/freebsd-14.2/crypto/openssl/crypto/evp/
H A De_aes_cbc_hmac_sha1.c544 pad = constant_time_select(mask, pad, maxpad); in aesni_cbc_hmac_sha1_cipher()
H A De_aes_cbc_hmac_sha256.c555 pad = constant_time_select(mask, pad, maxpad); in aesni_cbc_hmac_sha256_cipher()