Searched defs:privKey (Results 1 - 6 of 6) sorted by relevance
| /bind-9.11.3/bin/tests/pkcs11/benchmarks/ |
| H A D | genrsa.c | 98 CK_OBJECT_HANDLE *privKey; local 186 privKey = (CK_SESSION_HANDLE *) 188 if (privKey == NULL) { 195 privKey[i] = CK_INVALID_HANDLE; 235 &pubKey[i], &privKey[i]); 278 if (privKey[i] == CK_INVALID_HANDLE) 280 rv = pkcs_C_DestroyObject(hSession, privKey[i]); 290 free(privKey);
|
| /illumos-gate/usr/src/lib/pkcs11/pkcs11_softtoken/common/ |
| H A D | softEC.c | 151 ECPrivateKey *privKey; /* contains both public and private values */ local 193 if (EC_NewKey(ecparams, &privKey, 0) != SECSuccess) { 198 bi.big_value = privKey->privateValue.data; 199 bi.big_value_len = privKey->privateValue.len; 202 bi.big_value = privKey->publicValue.data; 203 bi.big_value_len = privKey->publicValue.len; 206 soft_free_ecprivkey(privKey);
|
| /illumos-gate/usr/src/lib/libslp/clib/ |
| H A D | slp_ami.h | 285 Any privKey; member in struct:ami_serv_key_info
|
| /illumos-gate/usr/src/lib/libkmf/plugins/kmf_nss/common/ |
| H A D | nss_spi.c | 2262 SECKEYPrivateKey *privKey = (SECKEYPrivateKey *) prikey->keyp; local 2264 pk = PK11_LoadPrivKey(nss_slot, privKey, NULL, PR_TRUE,
|
| /illumos-gate/usr/src/common/crypto/ecc/ |
| H A D | ec.c | 246 ec_NewKey(ECParams *ecParams, ECPrivateKey **privKey, argument 261 if (!ecParams || !privKey || !privKeyBytes || (privKeyLen < 0)) { 336 *privKey = key; 358 EC_NewKeyFromSeed(ECParams *ecParams, ECPrivateKey **privKey, argument 362 rv = ec_NewKey(ecParams, privKey, seed, seedlen, kmflag); 431 EC_NewKey(ECParams *ecParams, ECPrivateKey **privKey, int kmflag) argument 447 CHECK_SEC_OK( ec_NewKey(ecParams, privKey, privKeyBytes, len, kmflag) );
|
| /illumos-gate/usr/src/uts/common/crypto/io/ |
| H A D | ecc.c | 1047 ECPrivateKey *privKey; /* contains both public and private values */ local 1140 if (EC_NewKey(ecparams, &privKey, kmflag) != SECSuccess) { 1145 xylen = privKey->publicValue.len; 1152 if (privKey->privateValue.len > valuelen) { 1156 bcopy(privKey->privateValue.data, value, privKey->privateValue.len); 1157 pri_out_template[value_idx].oa_value_len = privKey->privateValue.len; 1159 bcopy(privKey->publicValue.data, point, xylen); 1163 free_ecprivkey(privKey);
|
Completed in 299 milliseconds