Home | History | Annotate | Download | only in ssl

Lines Matching full:x509

821 X509 *SSL_get_peer_certificate(const SSL *s)
823 X509 *r;
837 STACK_OF(X509) *SSL_get_peer_cert_chain(const SSL *s)
839 STACK_OF(X509) *r;
887 (ctx->cert->key->x509 == NULL))
897 return(X509_check_private_key(ctx->cert->key->x509, ctx->cert->key->privatekey));
913 if (ssl->cert->key->x509 == NULL)
923 return(X509_check_private_key(ssl->cert->key->x509,
1991 X509 *x = NULL;
2018 rsa_enc= (cpk->x509 != NULL && cpk->privatekey != NULL);
2021 rsa_sign=(cpk->x509 != NULL && cpk->privatekey != NULL);
2023 dsa_sign=(cpk->x509 != NULL && cpk->privatekey != NULL);
2025 dh_rsa= (cpk->x509 != NULL && cpk->privatekey != NULL);
2029 dh_dsa= (cpk->x509 != NULL && cpk->privatekey != NULL);
2032 have_ecc_cert= (cpk->x509 != NULL && cpk->privatekey != NULL);
2047 if (cpk->x509 != NULL && cpk->privatekey !=NULL) {
2052 if (cpk->x509 != NULL && cpk->privatekey !=NULL) {
2112 x = (c->pkeys[SSL_PKEY_ECC]).x509;
2191 int ssl_check_srvr_ecc_cert_and_alg(X509 *x, const SSL_CIPHER *cs)
2262 X509 *ssl_get_server_send_cert(SSL *s)
2301 if (c->pkeys[SSL_PKEY_RSA_ENC].x509 == NULL)
2320 if (c->pkeys[i].x509 == NULL) return(NULL);
2322 return(c->pkeys[i].x509);
2773 X509 *SSL_get_certificate(const SSL *s)
2776 return(s->cert->key->x509);