Home
last modified time | relevance | path

Searched refs:capath (Results 1 – 25 of 28) sorted by relevance

12

/third_party/curl/tests/
Dsecureserver.pl69 my $capath; # certificate chain PEM folder
186 $capath = abs_path($path);
235 $capath = pathhelp::sys_native_abs_path($capath);
279 print STUNCONF "CApath = $capath\n";
309 print "CApath = $capath\n";
/third_party/curl/docs/cmdline-opts/
Dproxy-capath.d1 Long: proxy-capath
5 See-also: proxy-cacert proxy capath
8 Same as --capath but used in HTTPS proxy context.
Dcapath.d1 Long: capath
11 c_rehash utility supplied with OpenSSL. Using --capath can allow
15 If this option is set, the default capath value will be ignored, and if it is
Dproxy-cacert.d5 See-also: proxy-capath cacert capath proxy
DMakefile.inc32 capath.d \
167 proxy-capath.d \
/third_party/python/Lib/
Dssl.py444 capath = os.environ.get(parts[2], parts[3])
447 capath if os.path.isdir(capath) else None,
741 capath=None, cadata=None): argument
764 if cafile or capath or cadata:
765 context.load_verify_locations(cafile, capath, cadata)
781 cafile=None, capath=None, cadata=None): argument
818 if cafile or capath or cadata:
819 context.load_verify_locations(cafile, capath, cadata)
/third_party/curl/lib/vtls/
Dnss.c1659 const char *capath = SSL_CONN_CONFIG(CApath); in nss_load_ca_certificates() local
1666 if(capath && !capath[0]) in nss_load_ca_certificates()
1667 capath = NULL; in nss_load_ca_certificates()
1670 infof(data, " CApath: %s", capath ? capath : "none"); in nss_load_ca_certificates()
1673 use_trust_module = !cafile && !capath; in nss_load_ca_certificates()
1699 if(capath) { in nss_load_ca_certificates()
1701 if(stat(capath, &st) == -1) in nss_load_ca_certificates()
1706 PRDir *dir = PR_OpenDir(capath); in nss_load_ca_certificates()
1712 char *fullpath = aprintf("%s/%s", capath, entry->name); in nss_load_ca_certificates()
1729 infof(data, "warning: CURLOPT_CAPATH not a directory (%s)", capath); in nss_load_ca_certificates()
/third_party/curl/docs/
Doptions-in-versions20 --capath 7.9.8
156 --proxy-capath 7.52.0
DINSTALL.md276 When Secure Transport is in use, the curl options `--cacert` and `--capath`
/third_party/curl/
Dacinclude.m42196 capath="$want_capath"
2200 capath="no"
2206 capath="$want_capath"
2212 capath="no"
2252 if test "x$capath" != "xno"; then
2253 check_capath="$capath"
2259 if test "x$capath" = "xno"; then
2260 capath="$a"
2268 if test "x$capath" = "xno"; then
2278 if test "x$capath" != "xno"; then
[all …]
/third_party/python/Modules/clinic/
D_ssl.c.h574 PyObject *capath,
586 PyObject *capath = Py_None; in _ssl__SSLContext_load_verify_locations() local
603 capath = args[1]; in _ssl__SSLContext_load_verify_locations()
610 return_value = _ssl__SSLContext_load_verify_locations_impl(self, cafile, capath, cadata); in _ssl__SSLContext_load_verify_locations()
/third_party/curl/src/
Dtool_cfgable.h147 char *capath; member
Dtool_cfgable.c120 Curl_safefree(config->capath); in free_config_fields()
Dtool_operate.c1402 if(config->capath) { in single_transfer()
1403 result = res_setopt_str(curl, CURLOPT_CAPATH, config->capath); in single_transfer()
1414 if((config->proxy_capath || config->capath) && in single_transfer()
1419 config->capath)); in single_transfer()
2330 !config->capath && in transfer_per_config()
2366 config->capath = strdup(env); in transfer_per_config()
2367 if(!config->capath) { in transfer_per_config()
Dtool_getparam.c1594 GetStr(&config->capath, nextarg); in getparameter()
/third_party/python/Doc/library/
Dssl.rst128 .. function:: create_default_context(purpose=Purpose.SERVER_AUTH, cafile=None, capath=None, cadata=…
135 *cafile*, *capath*, *cadata* represent optional CA certificates to
146 and either loads CA certificates (when at least one of *cafile*, *capath* or
465 Returns a named tuple with paths to OpenSSL's default cafile and capath.
471 * :attr:`capath` - resolved path to capath or ``None`` if the directory doesn't exist,
474 * :attr:`openssl_capath_env` - OpenSSL's environment key that points to a capath,
475 * :attr:`openssl_capath` - hard coded path to a capath directory
1591 .. method:: SSLContext.load_verify_locations(cafile=None, capath=None, cadata=None)
1595 :data:`CERT_NONE`. At least one of *cafile* or *capath* must be specified.
1606 The *capath* string, if present, is
[all …]
Durllib.request.rst28 .. function:: urlopen(url, data=None[, timeout], *, cafile=None, capath=None, cadefault=False, cont…
49 The optional *cafile* and *capath* parameters specify a set of trusted
51 file containing a bundle of CA certificates, whereas *capath* should
97 *cafile* and *capath* were added.
119 *cafile*, *capath* and *cadefault* are deprecated in favor of *context*.
/third_party/python/Modules/
D_ssl.c4014 PyObject *capath, in _ssl__SSLContext_load_verify_locations_impl() argument
4025 if (capath == Py_None) in _ssl__SSLContext_load_verify_locations_impl()
4026 capath = NULL; in _ssl__SSLContext_load_verify_locations_impl()
4030 if (cafile == NULL && capath == NULL && cadata == NULL) { in _ssl__SSLContext_load_verify_locations_impl()
4042 if (capath && !PyUnicode_FSConverter(capath, &capath_bytes)) { in _ssl__SSLContext_load_verify_locations_impl()
4097 if (cafile || capath) { in _ssl__SSLContext_load_verify_locations_impl()
4100 if (capath) in _ssl__SSLContext_load_verify_locations_impl()
/third_party/python/Lib/test/
Dtest_ssl.py936 self.assertEqual(paths.capath, CAPATH)
1440 ctx.load_verify_locations(cafile=CERTFILE, capath=None)
1442 ctx.load_verify_locations(cafile=BYTES_CERTFILE, capath=None)
1451 ctx.load_verify_locations(CERTFILE, capath=BYTES_CAPATH)
1698 ctx = ssl.create_default_context(cafile=SIGNING_CA, capath=CAPATH,
2105 ctx.load_verify_locations(capath=CAPATH)
2114 ctx.load_verify_locations(capath=BYTES_CAPATH)
2237 ctx.load_verify_locations(capath=CAPATH)
2249 ctx1.load_verify_locations(capath=CAPATH)
2251 ctx2.load_verify_locations(capath=CAPATH)
/third_party/python/Lib/urllib/
Drequest.py140 *, cafile=None, capath=None, cadefault=False, context=None): argument
191 if cafile or capath or cadefault:
204 capath=capath)
/third_party/curl/packages/OS400/
Dccsidcurl.c412 offsetof(curl_version_info_data, capath), in curl_version_info_ccsid()
Dcurl.inc.in2261 d capath...
/third_party/curl/include/curl/
Dcurl.h2939 const char *capath; /* the built-in default CURLOPT_CAPATH, might member
/third_party/python/Lib/test/test_asyncio/
Dtest_events.py607 cafile=None, capath=None, argument
/third_party/python/
DMakefile.pre.in1463 test/capath test/cjkencodings \

12