Home
last modified time | relevance | path

Searched refs:pubvalue (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftDSA.c473 uchar_t pubvalue[MAX_KEY_ATTR_BUFLEN]; in soft_dsa_genkey_pair() local
474 uint32_t pubvalue_len = sizeof (pubvalue); in soft_dsa_genkey_pair()
514 k.public_y = pubvalue; in soft_dsa_genkey_pair()
527 pubvalue, CRYPTO_BITS2BYTES(k.public_y_bits), B_TRUE)) != CKR_OK) { in soft_dsa_genkey_pair()
/illumos-gate/usr/src/lib/libkmf/plugins/kmf_pkcs11/common/
H A Dpkcs11_spi.c2557 uchar_t *pubvalue; in compute_dsa_pubvalue() local
2590 if ((pubvalue = malloc(pubvalue_len)) == NULL) { in compute_dsa_pubvalue()
2594 bignum2bytestring(pubvalue, &y, pubvalue_len); in compute_dsa_pubvalue()
2596 rawdsa->pubvalue.val = pubvalue; in compute_dsa_pubvalue()
2597 rawdsa->pubvalue.len = pubvalue_len; in compute_dsa_pubvalue()
/illumos-gate/usr/src/lib/libkmf/include/
H A Dkmftypes.h197 KMF_BIGINT pubvalue; member
/illumos-gate/usr/src/lib/libkmf/plugins/kmf_openssl/common/
H A Dopenssl_spi.c3261 if (key->pubvalue.val != NULL && (pub_key = in ImportRawDSAKey()
3262 BN_bin2bn(key->pubvalue.val, key->pubvalue.len, NULL)) == NULL) in ImportRawDSAKey()