Searched refs:cpk (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/crypto/openssl/ssl/
H A Dssl_cert.c102 CERT_PKEY *cpk = cert->pkeys + i; local
104 if (cpk->x509 != NULL) {
105 rpk->x509 = cpk->x509;
109 if (cpk->privatekey != NULL) {
110 rpk->privatekey = cpk->privatekey;
111 EVP_PKEY_up_ref(cpk->privatekey);
114 if (cpk->chain) {
115 rpk->chain = X509_chain_up_ref(cpk->chain);
209 CERT_PKEY *cpk = c->pkeys + i; local
210 X509_free(cpk
255 CERT_PKEY *cpk = s ? s->cert->key : ctx->cert->key; local
288 CERT_PKEY *cpk = s ? s->cert->key : ctx->cert->key; local
317 CERT_PKEY *cpk = c->pkeys + i; local
325 CERT_PKEY *cpk = c->pkeys + i; local
348 CERT_PKEY *cpk = c->pkeys + i; local
760 CERT_PKEY *cpk = c->key; local
[all...]
H A Dt1_lib.c2174 CERT_PKEY *cpk = NULL; local
2182 cpk = c->key;
2183 idx = (int)(cpk - c->pkeys);
2185 cpk = c->pkeys + idx;
2187 x = cpk->x509;
2188 pk = cpk->privatekey;
2189 chain = cpk->chain;
H A Dssl_lib.c3531 CERT_PKEY *cpk = s->s3->tmp.cert; local
3534 if (cpk == NULL || cpk->serverinfo == NULL)
3537 *serverinfo = cpk->serverinfo;
3538 *serverinfo_length = cpk->serverinfo_length;
H A Dssl_local.h2363 CERT_PKEY *cpk);
/freebsd-13-stable/crypto/openssl/ssl/statem/
H A Dstatem_lib.c911 static int ssl_add_cert_chain(SSL *s, WPACKET *pkt, CERT_PKEY *cpk) argument
919 if (cpk == NULL || cpk->x509 == NULL)
922 x = cpk->x509;
927 if (cpk->chain != NULL)
928 extra_certs = cpk->chain;
1007 unsigned long ssl3_output_cert_chain(SSL *s, WPACKET *pkt, CERT_PKEY *cpk) argument
1015 if (!ssl_add_cert_chain(s, pkt, cpk))
H A Dstatem_srvr.c3795 CERT_PKEY *cpk = s->s3->tmp.cert; local
3797 if (cpk == NULL) {
3812 if (!ssl3_output_cert_chain(s, pkt, cpk)) {

Completed in 196 milliseconds