Symbol: bn_mul_mont_fixed_top
crypto/openssl/crypto/bn/bn_blind.c
109
if (!bn_mul_mont_fixed_top(b->Ai, b->Ai, b->Ai, b->m_ctx, ctx)
crypto/openssl/crypto/bn/bn_blind.c
110
|| !bn_mul_mont_fixed_top(b->A, b->A, b->A, b->m_ctx, ctx))
crypto/openssl/crypto/bn/bn_blind.c
191
ret = bn_mul_mont_fixed_top(n, n, r, b->m_ctx, ctx);
crypto/openssl/crypto/bn/bn_exp.c
1051
if (!bn_mul_mont_fixed_top(&tmp, &am, &am, mont, ctx))
crypto/openssl/crypto/bn/bn_exp.c
1058
if (!bn_mul_mont_fixed_top(&tmp, &am, &tmp, mont, ctx))
crypto/openssl/crypto/bn/bn_exp.c
1089
if (!bn_mul_mont_fixed_top(&tmp, &tmp, &tmp, mont, ctx))
crypto/openssl/crypto/bn/bn_exp.c
1112
if (!bn_mul_mont_fixed_top(&tmp, &tmp, &am, mont, ctx))
crypto/openssl/crypto/bn/bn_exp.c
381
if (!bn_mul_mont_fixed_top(d, val[0], val[0], mont, ctx))
crypto/openssl/crypto/bn/bn_exp.c
385
if (((val[i] = BN_CTX_get(ctx)) == NULL) || !bn_mul_mont_fixed_top(val[i], val[i - 1], d, mont, ctx))
crypto/openssl/crypto/bn/bn_exp.c
416
if (!bn_mul_mont_fixed_top(r, r, r, mont, ctx))
crypto/openssl/crypto/bn/bn_exp.c
446
if (!bn_mul_mont_fixed_top(r, r, r, mont, ctx))
crypto/openssl/crypto/bn/bn_exp.c
451
if (!bn_mul_mont_fixed_top(r, r, val[wvalue >> 1], mont, ctx))
crypto/openssl/crypto/bn/bn_mont.c
224
return bn_mul_mont_fixed_top(r, a, &(mont->RR), mont, ctx);
crypto/openssl/crypto/bn/bn_mont.c
28
int ret = bn_mul_mont_fixed_top(r, a, b, mont, ctx);
crypto/openssl/crypto/ec/ecdsa_ossl.c
363
|| !bn_mul_mont_fixed_top(s, s, priv_key, group->mont_data, ctx)) {
crypto/openssl/crypto/rsa/rsa_ossl.c
907
|| !bn_mul_mont_fixed_top(r1, r1, rsa->iqmp, rsa->_method_mod_p,
crypto/openssl/include/crypto/bn.h
74
int bn_mul_mont_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,