Symbol: constant_time_select_int
crypto/openssl/crypto/bn/bn_lib.c
1057
res = constant_time_select_int(constant_time_eq_bn(ap[0], w), 1, 0);
crypto/openssl/crypto/bn/bn_lib.c
1060
res = constant_time_select_int(constant_time_is_zero_bn(ap[i]),
crypto/openssl/crypto/bn/bn_lib.c
1162
atop = constant_time_select_int(mask, j + 1, atop);
crypto/openssl/crypto/bn/bn_lib.c
1167
a->neg = constant_time_select_int(mask, 0, a->neg);
crypto/openssl/crypto/bn/bn_lib.c
718
res = constant_time_select_int(constant_time_lt_bn(ap[i], bp[i]),
crypto/openssl/crypto/bn/bn_lib.c
720
res = constant_time_select_int(constant_time_lt_bn(bp[i], ap[i]),
crypto/openssl/crypto/err/err.c
895
clear = constant_time_select_int(constant_time_eq_int(clear, 0),
crypto/openssl/crypto/ml_dsa/ml_dsa_key_compress.c
48
*r0 = constant_time_select_int(mask, r0_adjusted, *r0);
crypto/openssl/crypto/ml_dsa/ml_dsa_key_compress.c
50
*r1 = constant_time_select_int(mask, r1_adjusted, *r1);
crypto/openssl/crypto/ml_dsa/ml_dsa_local.h
158
return constant_time_select_int(constant_time_lt(x, y), y, x);
crypto/openssl/crypto/rsa/rsa_oaep.c
280
one_index = constant_time_select_int(~found_one_byte & equals1,
crypto/openssl/crypto/rsa/rsa_oaep.c
311
tlen = constant_time_select_int(constant_time_lt(dblen - mdlen - 1, tlen),
crypto/openssl/crypto/rsa/rsa_oaep.c
340
return constant_time_select_int(good, mlen, -1);
crypto/openssl/crypto/rsa/rsa_pk1.c
217
zero_index = constant_time_select_int(~found_zero_byte & equals0,
crypto/openssl/crypto/rsa/rsa_pk1.c
251
tlen = constant_time_select_int(constant_time_lt(num - RSA_PKCS1_PADDING_SIZE, tlen),
crypto/openssl/crypto/rsa/rsa_pk1.c
274
return constant_time_select_int(good, mlen, -1);
crypto/openssl/crypto/rsa/rsa_pk1.c
460
synthetic_length = constant_time_select_int(
crypto/openssl/crypto/rsa/rsa_pk1.c
475
zero_index = constant_time_select_int(~found_zero_byte & equals0,
crypto/openssl/crypto/rsa/rsa_pk1.c
500
msg_index = constant_time_select_int(good, msg_index, synth_msg_index);
crypto/openssl/crypto/rsa/rsa_pmeth.c
391
ret = constant_time_select_int(constant_time_msb(ret), ret, 1);
crypto/openssl/include/internal/constant_time.h
99
static ossl_inline int constant_time_select_int(unsigned int mask, int a,
crypto/openssl/providers/implementations/asymciphers/rsa_enc.c
314
ret = constant_time_select_int(constant_time_msb(ret), 0, 1);
crypto/openssl/test/constant_time_test.c
211
if (!TEST_int_eq(constant_time_select_int(CONSTTIME_TRUE, a, b), a))
crypto/openssl/test/constant_time_test.c
213
if (!TEST_int_eq(constant_time_select_int(CONSTTIME_FALSE, a, b), b))