Searched refs:constant_time_select (Results 1 – 6 of 6) sorted by relevance
| /src/crypto/openssl/include/internal/ |
| H A D | constant_time.h | 83 static ossl_inline unsigned int constant_time_select(unsigned int mask, 335 static ossl_inline unsigned int constant_time_select(unsigned int mask, in constant_time_select() function 353 return (unsigned char)constant_time_select(mask, a, b); in constant_time_select_8() 359 return (int)constant_time_select(mask, (unsigned)(a), (unsigned)(b)); in constant_time_select_int() 364 return (int)constant_time_select((unsigned)mask, (unsigned)(a), in constant_time_select_int_s()
|
| /src/crypto/openssl/test/ |
| H A D | constant_time_test.c | 158 if (!TEST_uint_eq(constant_time_select(CONSTTIME_TRUE, a, b), a)) in test_select() 160 if (!TEST_uint_eq(constant_time_select(CONSTTIME_FALSE, a, b), b)) in test_select()
|
| /src/crypto/openssl/providers/implementations/ciphers/ |
| H A D | cipher_aes_cbc_hmac_sha1_hw.c | 486 pad = constant_time_select(mask, pad, maxpad); in aesni_cbc_hmac_sha1_cipher()
|
| H A D | cipher_aes_cbc_hmac_sha256_hw.c | 522 pad = constant_time_select(mask, pad, maxpad); in aesni_cbc_hmac_sha256_cipher()
|
| /src/crypto/openssl/crypto/evp/ |
| H A D | e_aes_cbc_hmac_sha1.c | 546 pad = constant_time_select(mask, pad, maxpad); in aesni_cbc_hmac_sha1_cipher()
|
| H A D | e_aes_cbc_hmac_sha256.c | 550 pad = constant_time_select(mask, pad, maxpad); in aesni_cbc_hmac_sha256_cipher()
|