Symbol: BN_mod_inverse
crypto/openssl/crypto/bn/bn_gcd.c
560
ret = (BN_mod_inverse(tmp, a, b, ctx) != NULL);
crypto/openssl/crypto/bn/bn_mont.c
313
else if ((BN_mod_inverse(Ri, R, &tmod, ctx)) == NULL)
crypto/openssl/crypto/bn/bn_mont.c
348
else if ((BN_mod_inverse(Ri, R, &tmod, ctx)) == NULL)
crypto/openssl/crypto/bn/bn_mont.c
376
if ((BN_mod_inverse(Ri, R, &mont->N, ctx)) == NULL)
crypto/openssl/crypto/bn/bn_rsa_fips186_4.c
329
&& (BN_mod_inverse(tmp, r1x2, r2, ctx) != NULL)
crypto/openssl/crypto/bn/bn_rsa_fips186_4.c
331
&& (BN_mod_inverse(R, r2, r1x2, ctx) != NULL)
crypto/openssl/crypto/bn/bn_x931p.c
93
if (!BN_mod_inverse(p, p2, p1, ctx))
crypto/openssl/crypto/bn/bn_x931p.c
99
if (!BN_mod_inverse(t, p1, p2, ctx))
crypto/openssl/crypto/dsa/dsa_ossl.c
174
if (BN_mod_inverse(blind, blind, dsa->params.q, ctx) == NULL)
crypto/openssl/crypto/dsa/dsa_ossl.c
403
if ((BN_mod_inverse(u2, s, dsa->params.q, ctx)) == NULL)
crypto/openssl/crypto/ec/ecp_smpl.c
1404
if (!BN_mod_inverse(r, r, group->field, ctx)) {
crypto/openssl/crypto/rsa/rsa_chk.c
190
if (!BN_mod_inverse(i, key->q, key->p, ctx)) {
crypto/openssl/crypto/rsa/rsa_chk.c
216
if (!BN_mod_inverse(i, pinfo->pp, pinfo->r, ctx)) {
crypto/openssl/crypto/rsa/rsa_crpt.c
110
ret = BN_mod_inverse(NULL, d, r0, ctx);
crypto/openssl/crypto/rsa/rsa_gen.c
138
if (BN_mod_inverse(r1, r2, rsa->e, ctx) == NULL)
crypto/openssl/crypto/rsa/rsa_gen.c
227
if (BN_mod_inverse(iqmp, sk_BIGNUM_value(factors, 1),
crypto/openssl/crypto/rsa/rsa_gen.c
240
if (BN_mod_inverse(newcoeff, newpp, sk_BIGNUM_value(factors, i),
crypto/openssl/crypto/rsa/rsa_gen.c
419
if (BN_mod_inverse(r1, r2, rsa->e, ctx) != NULL) {
crypto/openssl/crypto/rsa/rsa_gen.c
558
if (BN_mod_inverse(rsa->d, rsa->e, r0, ctx) == NULL) {
crypto/openssl/crypto/rsa/rsa_sp800_56b_gen.c
277
if (BN_mod_inverse(rsa->d, e, lcm, ctx) == NULL)
crypto/openssl/crypto/rsa/rsa_sp800_56b_gen.c
317
if (BN_mod_inverse(rsa->iqmp, rsa->q, rsa->p, ctx) == NULL)
crypto/openssl/crypto/rsa/rsa_x931g.c
117
rsa->d = BN_mod_inverse(NULL, rsa->e, r0, ctx2); /* d */
crypto/openssl/crypto/rsa/rsa_x931g.c
136
rsa->iqmp = BN_mod_inverse(NULL, rsa->q, rsa->p, ctx2);
crypto/openssl/include/openssl/bn.h
353
BIGNUM *BN_mod_inverse(BIGNUM *ret,
crypto/openssl/test/bntest.c
3222
if (!TEST_ptr_eq(BN_mod_inverse(r, a, b, ctx), r))
crypto/openssl/test/bntest.c
3230
if (!TEST_ptr_null(BN_mod_inverse(b, a, b, ctx)))