Home
last modified time | relevance | path

Searched refs:CApath (Results 1 – 25 of 32) sorted by relevance

12

/minix/crypto/external/bsd/openssl/dist/doc/ssl/
H A DSSL_CTX_load_verify_locations.pod13 const char *CApath);
19 available via B<CAfile> and B<CApath> are trusted.
36 If B<CApath> is not NULL, it points to a directory containing CA certificates
45 The certificates in B<CApath> are only looked up when required, e.g. when
50 certificates in B<CAfile>, then those in B<CApath>. Certificate matching
60 is not influenced by the contents of B<CAfile> or B<CApath> and must
66 try to fill in missing certificates from B<CAfile>/B<CApath>, if the
92 for use as B<CApath>:
105 The operation failed because B<CAfile> and B<CApath> are NULL or the
/minix/crypto/external/bsd/openssl/dist/apps/
H A Dverify.c84 char *CApath = NULL, *CAfile = NULL; in MAIN() local
118 CApath = *(++argv); in MAIN()
184 if (CApath) { in MAIN()
185 i = X509_LOOKUP_add_dir(lookup, CApath, X509_FILETYPE_PEM); in MAIN()
187 BIO_printf(bio_err, "Error loading directory %s\n", CApath); in MAIN()
H A Ds_time.c129 static char *CApath = NULL; variable
152 CApath = NULL; in s_time_init()
263 CApath = *(++argv); in parseArgs()
388 if ((!SSL_CTX_load_verify_locations(tm_ctx, CAfile, CApath)) || in MAIN()
H A Dcrl.c108 char *CAfile = NULL, *CApath = NULL; in MAIN() local
183 CApath = *(++argv); in MAIN()
253 if (!X509_LOOKUP_add_dir(lookup, CApath, X509_FILETYPE_PEM)) in MAIN()
H A Dsmime.c109 char *CAfile = NULL, *CApath = NULL; in MAIN() local
305 CApath = *++args; in MAIN()
608 if (!(store = setup_verify(bio_err, CAfile, CApath))) in MAIN()
H A Dpkcs12.c130 char *CApath = NULL, *CAfile = NULL; in MAIN() local
305 CApath = *args; in MAIN()
591 if (!X509_STORE_load_locations(store, CAfile, CApath)) in MAIN()
H A Dapps.h258 X509_STORE *setup_verify(BIO *bp, char *CAfile, char *CApath);
H A Dcms.c129 char *CAfile = NULL, *CApath = NULL; in MAIN() local
431 CApath = *++args; in MAIN()
791 if (!(store = setup_verify(bio_err, CAfile, CApath))) in MAIN()
H A Ds_client.c642 char *CApath = NULL, *CAfile = NULL, *cipher = NULL; in MAIN() local
895 CApath = *(++argv); in MAIN()
1183 if ((CAfile || CApath) in MAIN()
1184 && !SSL_CTX_load_verify_locations(ctx, CAfile, CApath)) { in MAIN()
H A Docsp.c155 char *CAfile = NULL, *CApath = NULL; in MAIN() local
320 CApath = *args; in MAIN()
785 store = setup_verify(bio_err, CAfile, CApath); in MAIN()
H A Ds_server.c1010 char *CApath = NULL, *CAfile = NULL; in MAIN() local
1160 CApath = *(++argv); in MAIN()
1600 if ((!SSL_CTX_load_verify_locations(ctx, CAfile, CApath)) || in MAIN()
1650 if ((!SSL_CTX_load_verify_locations(ctx2, CAfile, CApath)) || in MAIN()
H A Dapps.c1379 X509_STORE *setup_verify(BIO *bp, char *CAfile, char *CApath) in setup_verify() argument
1399 if (CApath) { in setup_verify()
1400 if (!X509_LOOKUP_add_dir(lookup, CApath, X509_FILETYPE_PEM)) { in setup_verify()
1401 BIO_printf(bp, "Error loading directory %s\n", CApath); in setup_verify()
/minix/crypto/external/bsd/openssl/dist/doc/apps/
H A Dcrl.pod22 [B<-CApath dir>]
93 =item B<-CApath dir>
H A Ds_time.pod15 [B<-CApath directory>]
68 =item B<-CApath directory>
133 …openssl s_time -connect servername:443 -www / -CApath yourdir -CAfile yourfile.pem -cipher commonc…
H A Docsp.pod30 [B<-CApath dir>]
142 =item B<-CAfile file>, B<-CApath pathname>
300 and B<CApath> options or they will be looked for in the standard OpenSSL
336 Normally only the B<-CApath>, B<-CAfile> and (if the responder is a 'global
H A Dverify.pod10 [B<-CApath directory>]
43 =item B<-CApath directory>
407 B<-CAfile> option) or a directory (as specified by B<-CApath>. If they occur in both then only
H A Dpkcs12.pod41 [B<-CApath dir>]
278 =item B<-CApath dir>
H A Ds_client.pod20 [B<-CApath directory>]
109 =item B<-CApath directory>
H A Ds_server.pod34 [B<-CApath directory>]
169 =item B<-CApath directory>
H A Dts.pod47 [B<-CApath> trusted_cert_path]
312 =item B<-CApath> trusted_cert_path
324 or B<-CApath> must be specified.
H A Dcms.pod37 [B<-CApath dir>]
240 =item B<-CApath dir>
/minix/crypto/external/bsd/openssl/dist/crypto/threads/
H A Dmttest.c183 char *CApath = NULL, *CAfile = NULL; in main() local
219 CApath = *(++argv); in main()
296 if ((!SSL_CTX_load_verify_locations(s_ctx, CAfile, CApath)) || in main()
298 (!SSL_CTX_load_verify_locations(c_ctx, CAfile, CApath)) || in main()
/minix/crypto/external/bsd/openssl/dist/ssl/
H A Dssl_task.c213 char *CApath = NULL, *CAfile = NULL; in main() local
H A Dssltest.c512 char *CApath = NULL, *CAfile = NULL; in main() local
724 CApath = *(++argv); in main()
982 if ((!SSL_CTX_load_verify_locations(s_ctx, CAfile, CApath)) || in main()
984 (!SSL_CTX_load_verify_locations(c_ctx, CAfile, CApath)) || in main()
/minix/usr.sbin/syslogd/
H A Dtls.c153 const char *CApath = tls_opt.CAdir; in init_global_TLS_CTX() local
246 if (CAfile || CApath) { in init_global_TLS_CTX()
247 if (SSL_CTX_load_verify_locations(ctx, CAfile, CApath) != 1) { in init_global_TLS_CTX()
248 if (CAfile && CApath) in init_global_TLS_CTX()
251 CAfile, CApath, ERR_error_string( in init_global_TLS_CTX()
255 "\"%s\": %s\n", (CAfile?CAfile:CApath), in init_global_TLS_CTX()

12