Home
last modified time | relevance | path

Searched refs:iqmp (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
86 (r->iqmp == NULL && iqmp == NULL)) in RSA_set0_crt_params()
97 if (iqmp != NULL) { in RSA_set0_crt_params()
98 BN_free(r->iqmp); in RSA_set0_crt_params()
99 r->iqmp = iqmp; in RSA_set0_crt_params()
127 const BIGNUM **iqmp) in RSA_get0_crt_params() argument
133 if (iqmp != NULL) in RSA_get0_crt_params()
134 *iqmp = r->iqmp; 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
3203 (iqmp = BN_bin2bn(key->coef.val, key->coef.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()
3232 BN_free(iqmp); in ImportRawRSAKey()
4119 const BIGNUM *n, *e, *d, *p, *q, *dmp1, *dmpq, *iqmp; in exportRawRSAKey() local
4123 RSA_get0_crt_params(rsa, &dmp1, &dmpq, &iqmp); in exportRawRSAKey()
4152 if (iqmp != NULL) in exportRawRSAKey()
4153 if ((rv = sslBN2KMFBN((BIGNUM *)iqmp, &kmfkey->coef)) != KMF_OK) in exportRawRSAKey()