Lines Matching refs:dmq1
164 BN_clear_free(r->dmq1);
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
450 || (r->dmq1 == NULL && dmq1 == NULL)
459 if (dmq1 != NULL) {
460 BN_clear_free(r->dmq1);
461 r->dmq1 = dmq1;
462 BN_set_flags(r->dmq1, BN_FLG_CONSTTIME);
597 const BIGNUM **dmp1, const BIGNUM **dmq1,
602 if (dmq1 != NULL)
603 *dmq1 = r->dmq1;
668 return r->dmq1;