Searched refs:bn_to_mont_fixed_top (Results 1 – 6 of 6) sorted by relevance
/third_party/openssl/include/crypto/ |
D | bn.h | 75 int bn_to_mont_fixed_top(BIGNUM *r, const BIGNUM *a, BN_MONT_CTX *mont,
|
/third_party/openssl/crypto/bn/ |
D | bn_blind.c | 285 if (!bn_to_mont_fixed_top(ret->Ai, ret->Ai, ret->m_ctx, ctx) in BN_BLINDING_create_param() 286 || !bn_to_mont_fixed_top(ret->A, ret->A, ret->m_ctx, ctx)) in BN_BLINDING_create_param()
|
D | bn_exp.c | 359 if (!bn_to_mont_fixed_top(val[0], aa, mont, ctx)) in BN_mod_exp_mont() 394 if (!bn_to_mont_fixed_top(r, BN_value_one(), mont, ctx)) in BN_mod_exp_mont() 753 if (!bn_to_mont_fixed_top(&tmp, BN_value_one(), mont, ctx)) in BN_mod_exp_mont_consttime() 757 if (!bn_to_mont_fixed_top(&am, a, mont, ctx)) in BN_mod_exp_mont_consttime()
|
D | bn_mont.c | 222 int bn_to_mont_fixed_top(BIGNUM *r, const BIGNUM *a, BN_MONT_CTX *mont, in bn_to_mont_fixed_top() function
|
/third_party/openssl/crypto/ec/ |
D | ecdsa_ossl.c | 240 if (!bn_to_mont_fixed_top(s, ret->r, group->mont_data, ctx) in ossl_ecdsa_sign_sig() 253 if (!bn_to_mont_fixed_top(s, s, group->mont_data, ctx) in ossl_ecdsa_sign_sig()
|
/third_party/openssl/crypto/rsa/ |
D | rsa_ossl.c | 678 || !bn_to_mont_fixed_top(m1, m1, rsa->_method_mod_q, ctx) in rsa_ossl_mod_exp() 684 || !bn_to_mont_fixed_top(r1, r1, rsa->_method_mod_p, ctx) in rsa_ossl_mod_exp() 698 || !bn_to_mont_fixed_top(r1, r1, rsa->_method_mod_p, ctx) in rsa_ossl_mod_exp()
|