/third_party/curl/docs/cmdline-opts/ |
D | proxy-capath.d | 3 Long: proxy-capath 7 See-also: proxy-cacert proxy capath 9 Example: --proxy-capath /local/directory -x https://proxy $URL 12 Same as --capath but used in HTTPS proxy context.
|
D | capath.d | 3 Long: capath 9 Example: --capath /local/directory $URL 17 c_rehash utility supplied with OpenSSL. Using --capath can allow 21 If this option is set, the default capath value is ignored.
|
D | proxy-cacert.d | 7 See-also: proxy-capath cacert capath proxy
|
D | crlfile.d | 10 See-also: cacert capath
|
D | proxy-ca-native.d | 7 See-also: cacert capath insecure
|
D | ca-native.d | 7 See-also: cacert capath insecure
|
D | insecure.d | 7 See-also: proxy-insecure cacert capath
|
D | Makefile.inc | 35 capath.d \ 178 proxy-capath.d \
|
D | cacert.d | 8 See-also: capath insecure
|
D | Makefile.in | 429 capath.d \ 572 proxy-capath.d \
|
/third_party/curl/tests/ |
D | secureserver.pl | 73 my $capath; # certificate chain PEM folder 198 $capath = abs_path($path); 247 $capath = pathhelp::sys_native_abs_path($capath); 291 print $stunconf "CApath = $capath\n"; 321 print "CApath = $capath\n";
|
/third_party/python/Lib/ |
D | ssl.py | 444 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/ |
D | acinclude.m4 | 1491 capath="$want_capath" 1495 capath="no" 1504 capath="$want_capath" 1510 capath="no" 1555 if test "x$capath" != "xno"; then 1556 check_capath="$capath" 1562 if test "x$capath" = "xno"; then 1563 capath="$a" 1571 if test "x$capath" = "xno"; then 1581 if test "x$capath" != "xno"; then [all …]
|
D | RELEASE-NOTES | 53 o configure: check for the capath by default [63] 150 o wolfssl: allow capath with CURLOPT_CAINFO_BLOB [29]
|
/third_party/curl/docs/ |
D | options-in-versions | 21 --capath 7.9.8 165 --proxy-capath 7.52.0
|
/third_party/python/Modules/clinic/ |
D | _ssl.c.h | 574 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/ |
D | tool_operate.c | 1762 if(config->capath) { in single_transfer() 1763 result = res_setopt_str(curl, CURLOPT_CAPATH, config->capath); in single_transfer() 1774 if(config->proxy_capath || config->capath) { in single_transfer() 1778 config->capath)); in single_transfer() 2763 !config->capath && in transfer_per_config() 2802 config->capath = strdup(env); in transfer_per_config() 2803 if(!config->capath) { in transfer_per_config() 2818 free(config->capath); in transfer_per_config()
|
D | tool_cfgable.h | 143 char *capath; member
|
D | tool_cfgable.c | 123 Curl_safefree(config->capath); in free_config_fields()
|
/third_party/python/Doc/library/ |
D | ssl.rst | 128 .. 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 …]
|
D | urllib.request.rst | 28 .. 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.c | 4014 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/ |
D | test_ssl.py | 936 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/ |
D | request.py | 140 *, cafile=None, capath=None, cadefault=False, context=None): argument 191 if cafile or capath or cadefault: 204 capath=capath)
|
/third_party/curl/packages/OS400/ |
D | ccsidcurl.c | 436 offsetof(curl_version_info_data, capath), in curl_version_info_ccsid()
|