Lines Matching defs:dmq1
72 RSA_set0_crt_params(RSA *r, BIGNUM *dmp1, BIGNUM *dmq1, BIGNUM *iqmp) {
74 * If the fields dmp1, dmq1 and iqmp in r are NULL, the
78 (r->dmq1 == NULL && dmq1 == NULL) ||
88 if (dmq1 != NULL) {
89 BN_clear_free(r->dmq1);
90 r->dmq1 = dmq1;
115 RSA_get0_crt_params(const RSA *r, const BIGNUM **dmp1, const BIGNUM **dmq1,
118 SET_IF_NOT_NULL(dmq1, r->dmq1);