Home
last modified time | relevance | path

Searched refs:dmq1 (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libkmf/plugins/kmf_openssl/common/
H A Dcompat.c78 RSA_set0_crt_params(RSA *r, BIGNUM *dmp1, BIGNUM *dmq1, BIGNUM *iqmp) in RSA_set0_crt_params() argument
85 (r->dmq1 == NULL && dmq1 == NULL) || in RSA_set0_crt_params()
93 if (dmq1 != NULL) { in RSA_set0_crt_params()
94 BN_free(r->dmq1); in RSA_set0_crt_params()
95 r->dmq1 = dmq1; in RSA_set0_crt_params()
126 RSA_get0_crt_params(const RSA *r, const BIGNUM **dmp1, const BIGNUM **dmq1, in RSA_get0_crt_params() argument
131 if (dmq1 != NULL) in RSA_get0_crt_params()
132 *dmq1 = r->dmq1; in RSA_get0_crt_params()
H A Dcompat.h24 int RSA_set0_crt_params(RSA *r, BIGNUM *dmp1, BIGNUM *dmq1, BIGNUM *iqmp);
29 const BIGNUM **dmq1, const BIGNUM **iqmp);
H A Dopenssl_spi.c3171 BIGNUM *dmp1 = NULL, *dmq1 = NULL, *iqmp = NULL; in ImportRawRSAKey() local
3199 (dmq1 = BN_bin2bn(key->exp2.val, key->exp2.len, NULL)) == NULL) in ImportRawRSAKey()
3212 if (RSA_set0_crt_params(rsa, dmp1, dmq1, iqmp) == 0) in ImportRawRSAKey()
3214 dmp1 = dmq1 = iqmp = NULL; in ImportRawRSAKey()
3231 BN_free(dmq1); in ImportRawRSAKey()