Lines Matching refs:pkey
19 EVP_PKEY *pkey; in SSL_use_RSAPrivateKey() local
26 if ((pkey = EVP_PKEY_new()) == NULL) { in SSL_use_RSAPrivateKey()
32 if (EVP_PKEY_assign_RSA(pkey, rsa) <= 0) { in SSL_use_RSAPrivateKey()
34 EVP_PKEY_free(pkey); in SSL_use_RSAPrivateKey()
38 ret = SSL_use_PrivateKey(ssl, pkey); in SSL_use_RSAPrivateKey()
39 EVP_PKEY_free(pkey); in SSL_use_RSAPrivateKey()
107 EVP_PKEY *pkey; in SSL_CTX_use_RSAPrivateKey() local
113 if ((pkey = EVP_PKEY_new()) == NULL) { in SSL_CTX_use_RSAPrivateKey()
119 if (EVP_PKEY_assign_RSA(pkey, rsa) <= 0) { in SSL_CTX_use_RSAPrivateKey()
121 EVP_PKEY_free(pkey); in SSL_CTX_use_RSAPrivateKey()
125 ret = SSL_CTX_use_PrivateKey(ctx, pkey); in SSL_CTX_use_RSAPrivateKey()
126 EVP_PKEY_free(pkey); in SSL_CTX_use_RSAPrivateKey()