Symbol: BN_FLG_CONSTTIME
crypto/libressl/crypto/bn/bn_blind.c
162
if (BN_get_flags(mod, BN_FLG_CONSTTIME) != 0)
crypto/libressl/crypto/bn/bn_blind.c
163
BN_set_flags(ret->mod, BN_FLG_CONSTTIME);
crypto/libressl/crypto/bn/bn_div.c
385
int ct = ((BN_get_flags(num, BN_FLG_CONSTTIME) != 0) ||
crypto/libressl/crypto/bn/bn_div.c
386
(BN_get_flags(divisor, BN_FLG_CONSTTIME) != 0));
crypto/libressl/crypto/bn/bn_exp.c
1071
if (BN_get_flags(p, BN_FLG_CONSTTIME) != 0) {
crypto/libressl/crypto/bn/bn_exp.c
130
if (BN_get_flags(p, BN_FLG_CONSTTIME) != 0) {
crypto/libressl/crypto/bn/bn_exp.c
234
(BN_get_flags(p, BN_FLG_CONSTTIME) != 0));
crypto/libressl/crypto/bn/bn_exp.c
264
if (BN_get_flags(p, BN_FLG_CONSTTIME) != 0) {
crypto/libressl/crypto/bn/bn_exp.c
545
(BN_get_flags(p, BN_FLG_CONSTTIME) != 0));
crypto/libressl/crypto/bn/bn_exp.c
934
if (BN_get_flags(p, BN_FLG_CONSTTIME) != 0) {
crypto/libressl/crypto/bn/bn_gcd.c
546
int ct = ((BN_get_flags(a, BN_FLG_CONSTTIME) != 0) ||
crypto/libressl/crypto/bn/bn_gcd.c
547
(BN_get_flags(n, BN_FLG_CONSTTIME) != 0));
crypto/libressl/crypto/bn/bn_gcd.c
620
BN_with_flags(pB, B, BN_FLG_CONSTTIME);
crypto/libressl/crypto/bn/bn_gcd.c
647
BN_with_flags(pA, A, BN_FLG_CONSTTIME);
crypto/libressl/crypto/bn/bn_gcd.c
787
BN_with_flags(pB, B, BN_FLG_CONSTTIME);
crypto/libressl/crypto/bn/bn_gcd.c
814
BN_with_flags(pA, A, BN_FLG_CONSTTIME);
crypto/libressl/crypto/bn/bn_lib.c
1050
t = ((a->flags ^ b->flags) & BN_FLG_CONSTTIME) & condition;
crypto/libressl/crypto/dh/dh_key.c
203
BN_set_flags(dh->priv_key, BN_FLG_CONSTTIME);
crypto/libressl/crypto/dsa/dsa_ossl.c
245
BN_set_flags(&k, BN_FLG_CONSTTIME);
crypto/libressl/crypto/ec/ecp_smpl.c
1540
EC_POINT_BN_set_flags(s, BN_FLG_CONSTTIME);
crypto/libressl/crypto/ec/ecp_smpl.c
1566
BN_set_flags(k, BN_FLG_CONSTTIME);
crypto/libressl/crypto/ec/ecp_smpl.c
1579
BN_set_flags(lambda, BN_FLG_CONSTTIME);
crypto/libressl/crypto/ec/ecp_smpl.c
1610
EC_POINT_BN_set_flags(r, BN_FLG_CONSTTIME);
crypto/libressl/crypto/ecdsa/ecs_ossl.c
206
BN_set_flags(k, BN_FLG_CONSTTIME);
crypto/libressl/crypto/rsa/rsa_crpt.c
204
BN_with_flags(&n, rsa->n, BN_FLG_CONSTTIME);
crypto/libressl/crypto/rsa/rsa_eay.c
432
BN_with_flags(&d, rsa->d, BN_FLG_CONSTTIME);
crypto/libressl/crypto/rsa/rsa_eay.c
551
BN_with_flags(&d, rsa->d, BN_FLG_CONSTTIME);
crypto/libressl/crypto/rsa/rsa_eay.c
724
BN_with_flags(&p, rsa->p, BN_FLG_CONSTTIME);
crypto/libressl/crypto/rsa/rsa_eay.c
725
BN_with_flags(&q, rsa->q, BN_FLG_CONSTTIME);
crypto/libressl/crypto/rsa/rsa_eay.c
744
BN_with_flags(&c, I, BN_FLG_CONSTTIME);
crypto/libressl/crypto/rsa/rsa_eay.c
751
BN_with_flags(&dmq1, rsa->dmq1, BN_FLG_CONSTTIME);
crypto/libressl/crypto/rsa/rsa_eay.c
759
BN_with_flags(&c, I, BN_FLG_CONSTTIME);
crypto/libressl/crypto/rsa/rsa_eay.c
766
BN_with_flags(&dmp1, rsa->dmp1, BN_FLG_CONSTTIME);
crypto/libressl/crypto/rsa/rsa_eay.c
788
BN_with_flags(&pr1, r1, BN_FLG_CONSTTIME);
crypto/libressl/crypto/rsa/rsa_eay.c
835
BN_with_flags(&d, rsa->d, BN_FLG_CONSTTIME);
crypto/libressl/crypto/rsa/rsa_gen.c
199
BN_with_flags(&pr0, r0, BN_FLG_CONSTTIME);
crypto/libressl/crypto/rsa/rsa_gen.c
206
BN_with_flags(&d, rsa->d, BN_FLG_CONSTTIME);
crypto/libressl/crypto/rsa/rsa_gen.c
218
BN_with_flags(&p, rsa->p, BN_FLG_CONSTTIME);
crypto/libressl/include/openssl/bn.h
223
#define BN_FLG_EXP_CONSTTIME BN_FLG_CONSTTIME /* deprecated name for the flag */
crypto/openssh/ssh-rsa.c
362
BN_set_flags(aux, BN_FLG_CONSTTIME);
crypto/openssh/ssh-rsa.c
363
BN_set_flags(d_consttime, BN_FLG_CONSTTIME);