Lines Matching defs:cert
62 BIO_puts(bio_err, "<no cert>\n");
139 * Now we know that a key and cert have been set against the SSL
151 int set_cert_key_stuff(SSL_CTX *ctx, X509 *cert, EVP_PKEY *key,
156 if (cert == NULL)
158 if (SSL_CTX_use_certificate(ctx, cert) <= 0) {
171 * Now we know that a key and cert have been set against the SSL context
662 {"cert type", TLSEXT_TYPE_cert_type},
864 X509 *cert;
934 rv = SSL_check_chain(ssl, exc->cert, exc->key, exc->chain);
935 BIO_printf(bio_err, "Checking cert chain %d:\nSubject: ", i);
936 X509_NAME_print_ex(bio_err, X509_get_subject_name(exc->cert), 0,
941 if (!SSL_use_certificate(ssl, exc->cert)
970 SSL_EXCERT *exc = app_malloc(sizeof(*exc), "prepend cert");
996 X509_free(exc->cert);
1022 exc->cert = load_cert(exc->certfile, exc->certform,
1024 if (exc->cert == NULL)