/third_party/openssl/apps/ |
D | ts.c | 67 const char *CAstore, 72 const char *CAstore, 76 const char *CAstore, X509_VERIFY_PARAM *vpm); 170 char *CAstore = NULL; in ts_main() local 271 CAstore = opt_arg(); in ts_main() 338 CApath, CAfile, CAstore, untrusted, in ts_main() 849 const char *CAstore, char *untrusted, in verify_command() argument 869 CApath, CAfile, CAstore, untrusted, in verify_command() 896 const char *CAstore, in create_verify_ctx() argument 947 create_cert_store(CApath, CAfile, CAstore, vpm)) in create_verify_ctx() [all …]
|
D | verify.c | 87 const char *prog, *CApath = NULL, *CAfile = NULL, *CAstore = NULL; in verify_main() local 135 CAstore = opt_arg(); in verify_main() 202 && (CAfile != NULL || CApath != NULL || CAstore != NULL)) { in verify_main() 210 CAstore, noCAstore)) == NULL) in verify_main()
|
D | crl.c | 89 const char *CAfile = NULL, *CApath = NULL, *CAstore = NULL, *prog; in crl_main() local 146 CAstore = opt_arg(); in crl_main() 226 CAstore, noCAstore)) == NULL) in crl_main()
|
D | s_time.c | 121 char *CApath = NULL, *CAfile = NULL, *CAstore = NULL; in s_time_main() local 184 CAstore = opt_arg(); in s_time_main() 263 CAstore, noCAstore)) { in s_time_main()
|
D | smime.c | 145 const char *CAfile = NULL, *CApath = NULL, *CAstore = NULL, *prog = NULL; in smime_main() local 336 CAstore = opt_arg(); in smime_main() 535 CAstore, noCAstore)) == NULL) in smime_main()
|
D | pkcs12.c | 175 const char *CApath = NULL, *CAfile = NULL, *CAstore = NULL, *prog; in pkcs12_main() local 329 CAstore = opt_arg(); in pkcs12_main() 397 if (CAstore != NULL) in pkcs12_main() 602 CAstore, noCAstore)) in pkcs12_main()
|
D | ocsp.c | 236 const char *CAfile = NULL, *CApath = NULL, *CAstore = NULL; in ocsp_main() local 396 CAstore = opt_arg(); in ocsp_main() 798 CAstore, noCAstore); in ocsp_main()
|
D | cms.c | 293 const char *CAfile = NULL, *CApath = NULL, *CAstore = NULL; in cms_main() local 476 CAstore = opt_arg(); in cms_main() 938 CAstore, noCAstore)) == NULL) in cms_main()
|
D | s_server.c | 988 const char *CApath = NULL, *CAfile = NULL, *CAstore = NULL; in s_server_main() local 1265 CAstore = opt_arg(); in s_server_main() 1937 CAstore, noCAstore)) { in s_server_main() 2000 noCApath, CAstore, noCAstore)) { in s_server_main()
|
D | s_client.c | 799 const char *CApath = NULL, *CAfile = NULL, *CAstore = NULL; in s_client_main() local 1351 CAstore = opt_arg(); in s_client_main() 1902 CAstore, noCAstore)) { in s_client_main()
|
/third_party/openssl/test/recipes/ |
D | 25-test_verify_store.t | 71 -CAstore => $CAcert, 92 -CAstore => $CAcert,
|
/third_party/openssl/doc/man3/ |
D | SSL_CTX_load_verify_locations.pod | 17 int SSL_CTX_load_verify_store(SSL_CTX *ctx, const char *CAstore); 34 B<CAstore> are trusted. 96 If B<CAstore> is not NULL, it's a URI for to a store, which may 98 Apart from the B<CAstore> not necessarily being a local file or
|
/third_party/openssl/apps/include/ |
D | apps.h | 155 const char *CAstore, int noCAstore); 159 const char *CAstore, int noCAstore);
|
/third_party/openssl/apps/lib/ |
D | apps.c | 151 const char *CAstore, int noCAstore) in ctx_set_verify_locations() argument 153 if (CAfile == NULL && CApath == NULL && CAstore == NULL) { in ctx_set_verify_locations() 168 if (CAstore != NULL && !SSL_CTX_load_verify_store(ctx, CAstore)) in ctx_set_verify_locations() 1359 const char *CAstore, int noCAstore) in setup_verify() argument 1399 if (CAstore != NULL || !noCAstore) { in setup_verify() 1403 if (!X509_LOOKUP_add_store_ex(lookup, CAstore, libctx, propq)) { in setup_verify() 1404 if (CAstore != NULL) in setup_verify() 1405 BIO_printf(bio_err, "Error loading store URI %s\n", CAstore); in setup_verify()
|
/third_party/openssl/ssl/ |
D | ssl_conf.c | 473 const char *CAfile, const char *CApath, const char *CAstore, in do_store() argument 506 if (CAstore != NULL && !X509_STORE_load_store_ex(*st, CAstore, libctx, in do_store()
|
D | ssl_lib.c | 4434 int SSL_CTX_load_verify_store(SSL_CTX *ctx, const char *CAstore) in SSL_CTX_load_verify_store() argument 4436 return X509_STORE_load_store_ex(ctx->cert_store, CAstore, ctx->libctx, in SSL_CTX_load_verify_store()
|
/third_party/openssl/doc/man1/ |
D | openssl-verification-options.pod | 226 =item B<-CAstore> I<uri> 239 =item B<-no-CAstore> 404 via B<-CAfile>, B<-CApath>, B<-CAstore> or B<-trusted> are always used 417 This option implies the B<-no-CAfile>, B<-no-CApath>, and B<-no-CAstore> options 418 and it cannot be used with the B<-CAfile>, B<-CApath> or B<-CAstore> options, so 667 or a store (as specified by B<-CAstore>).
|
D | openssl-ts.pod.in | 56 [B<-CAstore> I<uri>] 350 =item B<-CAfile> I<file>, B<-CApath> I<dir>, B<-CAstore> I<uri> 353 At least one of B<-CAfile>, B<-CApath> or B<-CAstore> must be specified.
|
D | openssl-ocsp.pod.in | 416 B<-CApath> or B<-CAstore> options or they will be looked for in the 452 Normally only the B<-CApath>, B<-CAfile>, B<-CAstore> and (if the responder
|
/third_party/openssl/include/openssl/ |
D | ssl.h.in | 2065 __owur int SSL_CTX_load_verify_store(SSL_CTX *ctx, const char *CAstore);
|