BN_mod_inverse
ret = (BN_mod_inverse(tmp, a, b, ctx) != NULL);
else if ((BN_mod_inverse(Ri, R, &tmod, ctx)) == NULL)
else if ((BN_mod_inverse(Ri, R, &tmod, ctx)) == NULL)
if ((BN_mod_inverse(Ri, R, &mont->N, ctx)) == NULL)
&& (BN_mod_inverse(tmp, r1x2, r2, ctx) != NULL)
&& (BN_mod_inverse(R, r2, r1x2, ctx) != NULL)
if (!BN_mod_inverse(p, p2, p1, ctx))
if (!BN_mod_inverse(t, p1, p2, ctx))
if (BN_mod_inverse(blind, blind, dsa->params.q, ctx) == NULL)
if ((BN_mod_inverse(u2, s, dsa->params.q, ctx)) == NULL)
if (!BN_mod_inverse(r, r, group->field, ctx)) {
if (!BN_mod_inverse(i, key->q, key->p, ctx)) {
if (!BN_mod_inverse(i, pinfo->pp, pinfo->r, ctx)) {
ret = BN_mod_inverse(NULL, d, r0, ctx);
if (BN_mod_inverse(r1, r2, rsa->e, ctx) == NULL)
if (BN_mod_inverse(iqmp, sk_BIGNUM_value(factors, 1),
if (BN_mod_inverse(newcoeff, newpp, sk_BIGNUM_value(factors, i),
if (BN_mod_inverse(r1, r2, rsa->e, ctx) != NULL) {
if (BN_mod_inverse(rsa->d, rsa->e, r0, ctx) == NULL) {
if (BN_mod_inverse(rsa->d, e, lcm, ctx) == NULL)
if (BN_mod_inverse(rsa->iqmp, rsa->q, rsa->p, ctx) == NULL)
rsa->d = BN_mod_inverse(NULL, rsa->e, r0, ctx2); /* d */
rsa->iqmp = BN_mod_inverse(NULL, rsa->q, rsa->p, ctx2);
BIGNUM *BN_mod_inverse(BIGNUM *ret,
if (!TEST_ptr_eq(BN_mod_inverse(r, a, b, ctx), r))
if (!TEST_ptr_null(BN_mod_inverse(b, a, b, ctx)))