Lines Matching defs:dmp1
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
77 if ((r->dmp1 == NULL && dmp1 == NULL) ||
84 if (dmp1 != NULL) {
85 BN_clear_free(r->dmp1);
86 r->dmp1 = dmp1;
115 RSA_get0_crt_params(const RSA *r, const BIGNUM **dmp1, const BIGNUM **dmq1,
117 SET_IF_NOT_NULL(dmp1, r->dmp1);