HomeSort by: relevance | last modified time | path
    Searched refs:certfile (Results 1 - 25 of 52) sorted by relevancy

1 2 3

  /src/external/bsd/libpcap/dist/
sslutils.c 50 void ssl_set_certfile(const char *certfile)
52 ssl_certfile = certfile;
84 char const *certfile = ssl_certfile[0] ? ssl_certfile : "cert.pem"; local
85 if (1 != SSL_CTX_use_certificate_file(ctx, certfile, SSL_FILETYPE_PEM))
87 snprintf(errbuf, errbuflen, "Cannot read certificate file %s: %s", certfile, ERR_error_string(ERR_get_error(), NULL));
sslutils.h 51 void ssl_set_certfile(const char *certfile);
  /src/crypto/external/apache2/openssl/dist/apps/
crl2pkcs7.c 22 static int add_certs_from_file(STACK_OF(X509) *stack, char *certfile);
42 { "nocrl", OPT_NOCRL, '-', "No crl to load, just certs from '-certfile'" },
43 { "certfile", OPT_CERTFILE, '<',
63 char *infile = NULL, *outfile = NULL, *prog, *certfile; local
157 certfile = sk_OPENSSL_STRING_value(certflst, i);
158 if (add_certs_from_file(cert_stack, certfile) < 0) {
200 static int add_certs_from_file(STACK_OF(X509) *stack, char *certfile)
208 in = BIO_new_file(certfile, "r");
210 BIO_printf(bio_err, "error opening the file, %s\n", certfile);
217 BIO_printf(bio_err, "error reading the file, %s\n", certfile);
    [all...]
s_time.c 142 char *host = SSL_CONNECT_NAME, *certfile = NULL, *keyfile = NULL, *prog; local
180 certfile = opt_arg();
276 if (!set_cert_stuff(ctx, certfile, keyfile))
  /src/crypto/external/bsd/openssl/dist/apps/
crl2pkcs7.c 22 static int add_certs_from_file(STACK_OF(X509) *stack, char *certfile);
37 {"nocrl", OPT_NOCRL, '-', "No crl to load, just certs from '-certfile'"},
38 {"certfile", OPT_CERTFILE, '<',
58 char *infile = NULL, *outfile = NULL, *prog, *certfile; local
152 certfile = sk_OPENSSL_STRING_value(certflst, i);
153 if (add_certs_from_file(cert_stack, certfile) < 0) {
195 static int add_certs_from_file(STACK_OF(X509) *stack, char *certfile)
203 in = BIO_new_file(certfile, "r");
205 BIO_printf(bio_err, "error opening the file, %s\n", certfile);
212 BIO_printf(bio_err, "error reading the file, %s\n", certfile);
    [all...]
s_time.c 124 char *host = SSL_CONNECT_NAME, *certfile = NULL, *keyfile = NULL, *prog; local
162 certfile = opt_arg();
259 if (!set_cert_stuff(ctx, certfile, keyfile))
CA.pl.in 126 CA.pl -verify certfile ...
127 CA.pl -revoke certfile [reason]
190 . " -certfile ${CATOP}/$CACERT -out $NEWP12"
  /src/crypto/external/bsd/openssl.old/dist/apps/
crl2p7.c 22 static int add_certs_from_file(STACK_OF(X509) *stack, char *certfile);
35 {"nocrl", OPT_NOCRL, '-', "No crl to load, just certs from '-certfile'"},
36 {"certfile", OPT_CERTFILE, '<',
50 char *infile = NULL, *outfile = NULL, *prog, *certfile; local
138 certfile = sk_OPENSSL_STRING_value(certflst, i);
139 if (add_certs_from_file(cert_stack, certfile) < 0) {
181 static int add_certs_from_file(STACK_OF(X509) *stack, char *certfile)
189 in = BIO_new_file(certfile, "r");
191 BIO_printf(bio_err, "error opening the file, %s\n", certfile);
198 BIO_printf(bio_err, "error reading the file, %s\n", certfile);
    [all...]
s_time.c 99 char *host = SSL_CONNECT_NAME, *certfile = NULL, *keyfile = NULL, *prog; local
138 certfile = opt_arg();
206 if (!set_cert_stuff(ctx, certfile, keyfile))
  /src/external/ibm-public/postfix/dist/conf/
postfix-tls-script 592 # args: certfile keyfile deploy
600 # args: certfile keyfile deploy
613 # args: certfile keyfile deploy
626 # args: certfile keyfile deploy
638 # args: certfile keyfile deploy
701 certfile="${config_directory}/cert-${stamp}.pem";;
703 certfile="${config_directory}/eccert-${stamp}.pem";;
712 if [ -r "${certfile}" ]; then
713 $FATAL "New certificate file already exists: ${certfile}"
778 certfile=$1; shif
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/test/
ssltestlib.h 17 SSL_CTX **sctx, SSL_CTX **cctx, char *certfile,
  /src/crypto/external/bsd/openssl/dist/test/helpers/
ssltestlib.h 18 char *certfile, char *privkeyfile);
  /src/external/bsd/ppp/dist/pppd/
eap-tls.h 75 char *certfile, char *privkeyfile, char *pkcs12);
eap-tls.c 258 char *certfile, char *privkeyfile, char *pkcs12)
286 if (!certfile[0])
322 if ( (idx = index( certfile, ':' )) != NULL )
324 cert_engine_name = strdup( certfile );
325 cert_engine_name[idx - certfile] = 0;
328 cert_engine_name, certfile );
348 if (strlen( certfile ) - strlen( cert_engine_name ) == 1)
355 certfile = privkeyfile;
363 privkeyfile = certfile;
406 cert_info.s_slot_cert_id = certfile;
    [all...]
  /src/external/mpl/bind/dist/lib/dns/
transport.c 57 char *certfile; member in struct:dns_transport::__anon24108
110 return transport->tls.certfile;
164 dns_transport_set_certfile(dns_transport_t *transport, const char *certfile) {
169 if (transport->tls.certfile != NULL) {
170 isc_mem_free(transport->mctx, transport->tls.certfile);
173 if (certfile != NULL) {
174 transport->tls.certfile = isc_mem_strdup(transport->mctx,
175 certfile);
638 if (transport->tls.certfile != NULL) {
639 isc_mem_free(transport->mctx, transport->tls.certfile);
    [all...]
  /src/external/mpl/bind/dist/lib/isc/include/isc/
tls.h 49 isc_tlsctx_createserver(const char *keyfile, const char *certfile,
53 * 'keyfile' and 'certfile', or a self-generated ephemeral key and
54 * certificdate if both 'keyfile' and 'certfile' are NULL.
58 *\li 'keyfile' and 'certfile' are either both NULL or both non-NULL.
72 const char *certfile);
78 *\li 'keyfile' and 'certfile' are both non-NULL.
  /src/usr.sbin/syslogd/
tls.h 138 char *certfile; /* filename of peer cert */ member in struct:tls_conn_settings
tls.c 153 const char *certfilename = tls_opt.certfile;
161 FILE *certfile = NULL; local
188 && !(certfile = fopen(certfilename, "r"))) {
215 if (certfile)
216 (void)fclose(certfile);
591 FILE *certfile; local
599 if (!(certfile = fopen(certfilename, "rb"))) {
605 if (!(*cert = PEM_read_X509(certfile, NULL, NULL, NULL))
606 && !(*cert = d2i_X509_fp(certfile, NULL))) {
609 (void)fclose(certfile);
1993 FILE *certfile, *keyfile; local
    [all...]
  /src/crypto/external/apache2/openssl/dist/test/helpers/
ssltestlib.h 26 char *certfile, char *privkeyfile);
quictestlib.h 50 SSL_CTX *serverctx, char *certfile, char *keyfile,
  /src/external/mpl/bind/dist/lib/dns/include/dns/
transport.h 108 dns_transport_set_certfile(dns_transport_t *transport, const char *certfile);
146 * (for certfile, keyfile, cafile, or hostname).
  /src/crypto/external/apache2/openssl/dist/test/
quic_tserver_test.c 25 static const char *certfile, *keyfile; variable
126 if (!TEST_ptr(tserver = ossl_quic_tserver_new(&tserver_args, certfile,
431 OPT_TEST_DECLARE_USAGE("certfile privkeyfile\n")
440 if (!TEST_ptr(certfile = test_get_argument(0))
  /src/crypto/external/apache2/openssl/dist/include/internal/
quic_tserver.h 49 const char *certfile, const char *keyfile);
  /src/crypto/external/apache2/openssl/dist/ssl/quic/
quic_tserver.c 78 const char *certfile, const char *keyfile)
106 if (certfile != NULL
107 && SSL_CTX_use_certificate_file(srv->ctx, certfile, SSL_FILETYPE_PEM) <= 0)
  /src/crypto/external/bsd/heimdal/dist/lib/hx509/data/
gen-req.sh 128 -certfile ca.crt \
138 -certfile sub-ca-combined.crt \
151 -certfile ca.crt \

Completed in 38 milliseconds

1 2 3