Lines Matching refs:privatekey
131 EVP_PKEY_free(c->pkeys[i].privatekey); in ssl_set_pkey()
133 c->pkeys[i].privatekey = pkey; in ssl_set_pkey()
248 if (c->pkeys[i].privatekey != NULL) { in ssl_set_cert()
253 EVP_PKEY_copy_parameters(pkey, c->pkeys[i].privatekey); in ssl_set_cert()
256 if (!X509_check_private_key(x, c->pkeys[i].privatekey)) { in ssl_set_cert()
262 EVP_PKEY_free(c->pkeys[i].privatekey); in ssl_set_cert()
263 c->pkeys[i].privatekey = NULL; in ssl_set_cert()
923 static int ssl_set_cert_and_key(SSL *ssl, SSL_CTX *ctx, X509 *x509, EVP_PKEY *privatekey, in ssl_set_cert_and_key() argument
951 if (privatekey == NULL) { in ssl_set_cert_and_key()
952 privatekey = pubkey; in ssl_set_cert_and_key()
955 if (EVP_PKEY_missing_parameters(privatekey)) { in ssl_set_cert_and_key()
962 if (!EVP_PKEY_copy_parameters(privatekey, pubkey)) { in ssl_set_cert_and_key()
969 if (!EVP_PKEY_copy_parameters(pubkey, privatekey)) { in ssl_set_cert_and_key()
976 if (EVP_PKEY_eq(pubkey, privatekey) != 1) { in ssl_set_cert_and_key()
987 || c->pkeys[i].privatekey != NULL in ssl_set_cert_and_key()
1009 EVP_PKEY_free(c->pkeys[i].privatekey); in ssl_set_cert_and_key()
1010 EVP_PKEY_up_ref(privatekey); in ssl_set_cert_and_key()
1011 c->pkeys[i].privatekey = privatekey; in ssl_set_cert_and_key()
1021 int SSL_use_cert_and_key(SSL *ssl, X509 *x509, EVP_PKEY *privatekey, in SSL_use_cert_and_key() argument
1024 return ssl_set_cert_and_key(ssl, NULL, x509, privatekey, chain, override); in SSL_use_cert_and_key()
1027 int SSL_CTX_use_cert_and_key(SSL_CTX *ctx, X509 *x509, EVP_PKEY *privatekey, in SSL_CTX_use_cert_and_key() argument
1030 return ssl_set_cert_and_key(NULL, ctx, x509, privatekey, chain, override); in SSL_CTX_use_cert_and_key()