Lines Matching refs:certfile
716 load_certkey(ssl, srv, certfile, keyfile)
719 char *certfile;
732 TLS_OK_F(certfile, "CertFile", bitset(TLS_I_CERT_EX, req),
746 TLS_SAFE_F(certfile, sff | TLS_UNR(TLS_I_CERT_UNR, req),
753 # define SSL_use_cert(ssl, certfile) \
754 SSL_use_certificate_file(ssl, certfile, SSL_FILETYPE_PEM)
758 SSL_use_cert(ssl, certfile) <= 0)
764 who, SSL_USE_CERT, certfile);
975 inittls(ctx, req, options, srv, certfile, keyfile, cacertpath, cacertfile, dhparam)
980 char *certfile, *keyfile, *cacertpath, *cacertfile, *dhparam;
1024 if (certfile != NULL && (cf2 = strchr(certfile, ',')) != NULL)
1035 TLS_OK_F(certfile, "CertFile", bitset(TLS_I_CERT_EX, req),
1138 TLS_SAFE_F(certfile, sff | TLS_UNR(TLS_I_CERT_UNR, req),
1281 # define SSL_CTX_use_cert(ssl_ctx, certfile) \
1282 SSL_CTX_use_certificate_chain_file(ssl_ctx, certfile)
1285 # define SSL_CTX_use_cert(ssl_ctx, certfile) \
1286 SSL_CTX_use_certificate_file(ssl_ctx, certfile, SSL_FILETYPE_PEM)
1292 SSL_CTX_use_cert(*ctx, certfile) <= 0)
1298 who, SSL_CTX_USE_CERT, certfile);