Lines Matching refs:iqmp
165 BN_clear_free(r->iqmp);
444 int RSA_set0_crt_params(RSA *r, BIGNUM *dmp1, BIGNUM *dmq1, BIGNUM *iqmp)
446 /* If the fields dmp1, dmq1 and iqmp in r are NULL, the corresponding input
451 || (r->iqmp == NULL && iqmp == NULL))
464 if (iqmp != NULL) {
465 BN_clear_free(r->iqmp);
466 r->iqmp = iqmp;
467 BN_set_flags(r->iqmp, BN_FLG_CONSTTIME);
598 const BIGNUM **iqmp)
604 if (iqmp != NULL)
605 *iqmp = r->iqmp;
673 return r->iqmp;