Home | History | Annotate | Download | only in ssl

Lines Matching refs:privKey

279     SECKEYPrivateKey	*privKey = NULL;	/* Ephemeral ECDH key */
293 privKey = SECKEY_CreateECPrivateKey(&svrPubKey->u.ec.DEREncodedParams,
295 if (!privKey || !pubKey) {
313 pms = PK11_PubDeriveWithKDF(privKey, svrPubKey, PR_FALSE, NULL, NULL,
324 SECKEY_DestroyPrivateKey(privKey);
325 privKey = NULL;
355 if(privKey) SECKEY_DestroyPrivateKey(privKey);
518 SECKEYPrivateKey * privKey = NULL;
532 privKey = SECKEY_CreateECPrivateKey(&ecParams, &pubKey, NULL);
535 if (!privKey || !pubKey || !(keyPair = ssl3_NewKeyPair(privKey, pubKey))) {
536 if (privKey) {
537 SECKEY_DestroyPrivateKey(privKey);