Searched refs:rsaexp (Results 1 - 3 of 3) sorted by relevance

/osnet-11/usr/src/lib/libkmf/plugins/kmf_nss/common/
H A Dnss_spi.c889 KMF_BIGINT rsaexp; local
897 &rsaexp, NULL)) == KMF_OK) {
898 if (rsaexp.len > 0 &&
899 rsaexp.len <= sizeof (publicExponent) &&
900 rsaexp.val != NULL) {
901 (void) memcpy(&publicExponent, rsaexp.val,
902 rsaexp.len);
/osnet-11/usr/src/lib/libkmf/plugins/kmf_pkcs11/common/
H A Dpkcs11_spi.c1509 boolean_t storekey, KMF_BIGINT *rsaexp,
1531 if (rsaexp != NULL && (rsaexp->len > 0 && rsaexp->val != NULL)) {
1534 rsaexp->val, rsaexp->len);
1710 KMF_BIGINT *rsaexp = NULL; local
1721 rsaexp = kmf_get_attr_ptr(KMF_RSAEXP_ATTR, attlist, numattr);
1725 rsaexp, &pubKey, &priKey);
1508 genrsa_keypair(KMF_HANDLE *kmfh, CK_ULONG modulusBits, boolean_t storekey, KMF_BIGINT *rsaexp, CK_OBJECT_HANDLE *pubKey, CK_OBJECT_HANDLE *priKey) argument
/osnet-11/usr/src/lib/libkmf/plugins/kmf_openssl/common/
H A Dopenssl_spi.c1524 KMF_BIGINT *rsaexp = NULL; local
1526 rsaexp = kmf_get_attr_ptr(KMF_RSAEXP_ATTR, attrlist, numattr);
1527 if (rsaexp != NULL) {
1528 if (rsaexp->len > 0 &&
1529 rsaexp->len <= sizeof (eValue) &&
1530 rsaexp->val != NULL) {
1532 eValue = *(uint32_t *)rsaexp->val;

Completed in 51 milliseconds