Home
last modified time | relevance | path

Searched refs:mont_q (Results 1 – 4 of 4) sorted by relevance

/external/boringssl/src/crypto/fipsmodule/rsa/
Drsa_impl.c184 if (rsa->mont_q == NULL) { in freeze_private_key()
185 rsa->mont_q = BN_MONT_CTX_new_consttime(rsa->q, ctx); in freeze_private_key()
186 if (rsa->mont_q == NULL) { in freeze_private_key()
190 const BIGNUM *q_fixed = &rsa->mont_q->N; in freeze_private_key()
221 rsa->q, ctx, rsa->mont_q) && in freeze_private_key()
223 inv_small_mod_large_mont, rsa->mont_q, ctx); in freeze_private_key()
738 bn_less_than_montgomery_R(rsa->p, rsa->mont_q)) { in rsa_default_private_transform()
858 const BN_MONT_CTX *mont_p = rsa->mont_p, *mont_q = rsa->mont_q; in mod_exp() local
860 mont_p = rsa->mont_q; in mod_exp()
861 mont_q = rsa->mont_p; in mod_exp()
[all …]
Drsa.c149 BN_MONT_CTX_free(rsa->mont_q); in RSA_free()
/external/boringssl/src/include/openssl/
Drsa.h691 BN_MONT_CTX *mont_q; member
/external/boringssl/src/crypto/rsa_extra/
Drsa_test.cc933 EXPECT_FALSE(rsa->mont_q); in TEST()