Searched refs:constant_time_select_8 (Results 1 – 6 of 6) sorted by relevance
/openssl/ssl/record/methods/ |
H A D | tls_pad.c | 284 aux3 = constant_time_select_8(mask, aux1, aux2); in ssl3_cbc_copy_mac() 288 out[j++] = constant_time_select_8((unsigned char)(good & 0xff), in ssl3_cbc_copy_mac() 304 out[i] = constant_time_select_8((unsigned char)(good & 0xff), out[i], in ssl3_cbc_copy_mac()
|
H A D | ssl3_cbc.c | 422 b = constant_time_select_8(is_past_c, 0x80, b); in ssl3_cbc_digest_record() 440 b = constant_time_select_8(is_block_b, in ssl3_cbc_digest_record()
|
/openssl/crypto/rsa/ |
H A D | rsa_pk1.c | 257 em[i] = constant_time_select_8(mask, em[i + msg_index], em[i]); in RSA_padding_check_PKCS1_type_2() 261 to[i] = constant_time_select_8(mask, em[i + RSA_PKCS1_PADDING_SIZE], to[i]); in RSA_padding_check_PKCS1_type_2() 511 to[j] = constant_time_select_8(good, from[i], synthetic[i]); in ossl_rsa_padding_check_PKCS1_type_2() 631 constant_time_select_8(good, in ossl_rsa_padding_check_PKCS1_type_2_TLS()
|
H A D | rsa_oaep.c | 316 db[i] = constant_time_select_8(mask, db[i + msg_index], db[i]); in RSA_padding_check_PKCS1_OAEP_mgf1() 320 to[i] = constant_time_select_8(mask, db[i + mdlen + 1], to[i]); in RSA_padding_check_PKCS1_OAEP_mgf1()
|
/openssl/include/internal/ |
H A D | constant_time.h | 84 static ossl_inline unsigned char constant_time_select_8(unsigned char mask, 331 static ossl_inline unsigned char constant_time_select_8(unsigned char mask, in constant_time_select_8() function 452 *(outc + j) |= constant_time_select_8(mask, *(tablec++), 0); in constant_time_lookup()
|
/openssl/test/ |
H A D | constant_time_test.c | 168 if (!TEST_uint_eq(constant_time_select_8(CONSTTIME_TRUE_8, a, b), a)) in test_select_8() 170 if (!TEST_uint_eq(constant_time_select_8(CONSTTIME_FALSE_8, a, b), b)) in test_select_8()
|
Completed in 17 milliseconds