Searched refs:bn_mul_mont_fixed_top (Results 1 – 6 of 6) sorted by relevance
/third_party/openssl/crypto/bn/ |
D | bn_exp.c | 364 if (!bn_mul_mont_fixed_top(d, val[0], val[0], mont, ctx)) in BN_mod_exp_mont() 369 !bn_mul_mont_fixed_top(val[i], val[i - 1], d, mont, ctx)) in BN_mod_exp_mont() 399 if (!bn_mul_mont_fixed_top(r, r, r, mont, ctx)) in BN_mod_exp_mont() 430 if (!bn_mul_mont_fixed_top(r, r, r, mont, ctx)) in BN_mod_exp_mont() 435 if (!bn_mul_mont_fixed_top(r, r, val[wvalue >> 1], mont, ctx)) in BN_mod_exp_mont() 1035 if (!bn_mul_mont_fixed_top(&tmp, &am, &am, mont, ctx)) in BN_mod_exp_mont_consttime() 1042 if (!bn_mul_mont_fixed_top(&tmp, &am, &tmp, mont, ctx)) in BN_mod_exp_mont_consttime() 1073 if (!bn_mul_mont_fixed_top(&tmp, &tmp, &tmp, mont, ctx)) in BN_mod_exp_mont_consttime() 1096 if (!bn_mul_mont_fixed_top(&tmp, &tmp, &am, mont, ctx)) in BN_mod_exp_mont_consttime()
|
D | bn_mont.c | 29 int ret = bn_mul_mont_fixed_top(r, a, b, mont, ctx); in BN_mod_mul_montgomery() 37 int bn_mul_mont_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, in bn_mul_mont_fixed_top() function 225 return bn_mul_mont_fixed_top(r, a, &(mont->RR), mont, ctx); in bn_to_mont_fixed_top()
|
D | bn_blind.c | 98 if (!bn_mul_mont_fixed_top(b->Ai, b->Ai, b->Ai, b->m_ctx, ctx) in BN_BLINDING_update() 99 || !bn_mul_mont_fixed_top(b->A, b->A, b->A, b->m_ctx, ctx)) in BN_BLINDING_update()
|
/third_party/openssl/include/crypto/ |
D | bn.h | 73 int bn_mul_mont_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
|
/third_party/openssl/crypto/ec/ |
D | ecdsa_ossl.c | 241 || !bn_mul_mont_fixed_top(s, s, priv_key, group->mont_data, ctx)) { in ossl_ecdsa_sign_sig()
|
/third_party/openssl/crypto/rsa/ |
D | rsa_ossl.c | 699 || !bn_mul_mont_fixed_top(r1, r1, rsa->iqmp, rsa->_method_mod_p, in rsa_ossl_mod_exp()
|