Lines Matching defs:tmp
63 BIGNUM *Xpo = NULL, *Xqo = NULL, *tmp = NULL;
107 tmp = BN_CTX_get(ctx);
110 if (tmp == NULL || Xpo == NULL || Xqo == NULL)
135 ok = ossl_rsa_check_pminusq_diff(tmp, Xpo, Xqo, nbits);
142 ok = ossl_rsa_check_pminusq_diff(tmp, rsa->p, rsa->q, nbits);
157 BN_clear(tmp);
364 BIGNUM *tmp;
399 tmp = rsa->p;
401 rsa->q = tmp;
431 BIGNUM *k, *tmp;
434 tmp = BN_CTX_get(ctx);
441 && BN_mod_exp(tmp, k, rsa->e, rsa->n, ctx)
442 && BN_mod_exp(tmp, tmp, rsa->d, rsa->n, ctx)
443 && BN_cmp(k, tmp) == 0);