Symbol: BN_with_flags
crypto/openssl/crypto/bn/bn_gcd.c
67
BN_with_flags(&local_B, B, BN_FLG_CONSTTIME);
crypto/openssl/crypto/bn/bn_gcd.c
98
BN_with_flags(&local_A, A, BN_FLG_CONSTTIME);
crypto/openssl/crypto/dh/dh_key.c
253
BN_with_flags(prk, priv_key, BN_FLG_CONSTTIME);
crypto/openssl/crypto/dsa/dsa_key.c
50
BN_with_flags(prk, priv_key, BN_FLG_CONSTTIME);
crypto/openssl/crypto/rsa/rsa_crpt.c
153
BN_with_flags(n, rsa->n, BN_FLG_CONSTTIME);
crypto/openssl/crypto/rsa/rsa_ossl.c
1032
BN_with_flags(pr1, r1, BN_FLG_CONSTTIME);
crypto/openssl/crypto/rsa/rsa_ossl.c
1077
BN_with_flags(pr2, r2, BN_FLG_CONSTTIME);
crypto/openssl/crypto/rsa/rsa_ossl.c
1142
BN_with_flags(d, rsa->d, BN_FLG_CONSTTIME);
crypto/openssl/crypto/rsa/rsa_ossl.c
392
BN_with_flags(d, rsa->d, BN_FLG_CONSTTIME);
crypto/openssl/crypto/rsa/rsa_ossl.c
453
BN_with_flags(d, rsa->d, BN_FLG_CONSTTIME);
crypto/openssl/crypto/rsa/rsa_ossl.c
636
BN_with_flags(d, rsa->d, BN_FLG_CONSTTIME);
crypto/openssl/crypto/rsa/rsa_ossl.c
835
if (!(BN_with_flags(factor, rsa->p, BN_FLG_CONSTTIME),
crypto/openssl/crypto/rsa/rsa_ossl.c
838
|| !(BN_with_flags(factor, rsa->q, BN_FLG_CONSTTIME),
crypto/openssl/crypto/rsa/rsa_ossl.c
847
BN_with_flags(factor, pinfo->r, BN_FLG_CONSTTIME);
crypto/openssl/crypto/rsa/rsa_ossl.c
922
BN_with_flags(c, I, BN_FLG_CONSTTIME);
crypto/openssl/crypto/rsa/rsa_ossl.c
935
BN_with_flags(dmq1, rsa->dmq1, BN_FLG_CONSTTIME);
crypto/openssl/crypto/rsa/rsa_ossl.c
961
BN_with_flags(dmp1, rsa->dmp1, BN_FLG_CONSTTIME);
crypto/openssl/crypto/rsa/rsa_ossl.c
994
BN_with_flags(cc, I, BN_FLG_CONSTTIME);
crypto/openssl/crypto/rsa/rsa_ossl.c
995
BN_with_flags(di, pinfo->d, BN_FLG_CONSTTIME);
crypto/openssl/crypto/srp/srp_lib.c
225
BN_with_flags(xtmp, x, BN_FLG_CONSTTIME);
crypto/openssl/include/openssl/bn.h
94
void BN_with_flags(BIGNUM *dest, const BIGNUM *b, int flags);