HomeSort by relevance Sort by last modified time
    Searched refs:capath (Results 1 - 22 of 22) sorted by null

  /external/curl/docs/cmdline-opts/
proxy-capath.d 1 Long: proxy-capath
5 See-also: proxy-cacert proxy capath
7 Same as --capath but used in HTTPS proxy context.
proxy-cacert.d 5 See-also: proxy-capath cacert capath proxy
capath.d 1 Long: capath
10 c_rehash utility supplied with OpenSSL. Using --capath can allow
14 If this option is set, the default capath value will be ignored, and if it is
  /external/curl/tests/
secureserver.pl 69 my $capath; # certificate chain PEM folder
186 $capath = abs_path($path);
235 $capath = pathhelp::sys_native_abs_path($capath);
274 print STUNCONF "CApath = $capath\n";
304 print "CApath = $capath\n";
  /external/python/cpython2/Lib/
ssl.py 293 "cafile capath openssl_cafile_env openssl_cafile openssl_capath_env "
297 """Return paths to default cafile and capath.
303 capath = os.environ.get(parts[2], parts[3])
306 capath if os.path.isdir(capath) else None,
411 capath=None, cadata=None):
449 if cafile or capath or cadata:
450 context.load_verify_locations(cafile, capath, cadata)
452 # no explicit cafile, capath or cadata but the verify mode is
461 cafile=None, capath=None, cadata=None)
    [all...]
urllib2.py 132 cafile=None, capath=None, cadefault=False, context=None):
134 if cafile or capath or cadefault:
137 "You can't pass both context and any of cafile, capath, and "
144 capath=capath)
    [all...]
  /external/python/cpython3/Lib/
ssl.py 332 "cafile capath openssl_cafile_env openssl_cafile openssl_capath_env "
336 """Return paths to default cafile and capath.
342 capath = os.environ.get(parts[2], parts[3])
345 capath if os.path.isdir(capath) else None,
483 capath=None, cadata=None):
505 if cafile or capath or cadata:
506 context.load_verify_locations(cafile, capath, cadata)
508 # no explicit cafile, capath or cadata but the verify mode is
517 cafile=None, capath=None, cadata=None)
    [all...]
  /external/curl/lib/vtls/
nss.c 1547 const char *capath = SSL_CONN_CONFIG(CApath); local
    [all...]
polarssl.c 224 const char *capath = SSL_CONN_CONFIG(CApath); local
275 if(capath) {
276 ret = x509_crt_parse_path(&BACKEND->cacert, capath);
281 capath, -ret, errorbuf);
  /external/curl/src/
tool_cfgable.c 112 Curl_safefree(config->capath);
tool_cfgable.h 126 char *capath; member in struct:OperationConfig
tool_operate.c 307 !config->capath &&
323 config->capath = strdup(env);
324 if(!config->capath) {
    [all...]
tool_getparam.c 225 {"Eg", "capath", ARG_STRING},
252 {"E7", "proxy-capath", ARG_STRING},
    [all...]
  /external/python/cpython3/Modules/clinic/
_ssl.c.h 499 "load_verify_locations($self, /, cafile=None, capath=None, cadata=None)\n"
509 PyObject *capath,
516 static const char * const _keywords[] = {"cafile", "capath", "cadata", NULL};
519 PyObject *capath = NULL; local
523 &cafile, &capath, &cadata)) {
526 return_value = _ssl__SSLContext_load_verify_locations_impl(self, cafile, capath, cadata);
675 "NOTE: Certificates in a capath directory aren\'t loaded unless they have\n"
699 "NOTE: Certificates in a capath directory aren\'t loaded unless they have\n"
    [all...]
  /external/python/cpython2/Modules/
_ssl.c 2835 PyObject *cadata = NULL, *cafile = NULL, *capath = NULL; local
    [all...]
  /external/python/cpython2/Lib/test/
test_ssl.py 50 CAPATH = data_file("capath")
51 BYTES_CAPATH = CAPATH.encode(sys.getfilesystemencoding())
52 CAFILE_NEURONIO = data_file("capath", "4e1295a3.0")
53 CAFILE_CACERT = data_file("capath", "5ed36f99.0")
564 env["SSL_CERT_DIR"] = CAPATH
568 self.assertEqual(paths.capath, CAPATH)
    [all...]
  /external/python/cpython3/Modules/
_ssl.c     [all...]
  /external/python/cpython3/Lib/urllib/
request.py 141 *, cafile=None, capath=None, cadefault=False, context=None):
159 The optional *cafile* and *capath* parameters specify a set of trusted CA
161 containing a bundle of CA certificates, whereas capath should point to a
200 if cafile or capath or cadefault:
206 "You can't pass both context and any of cafile, capath, and "
213 capath=capath)
    [all...]
  /external/python/cpython3/Lib/test/
test_ssl.py 54 CAPATH = data_file("capath")
55 BYTES_CAPATH = os.fsencode(CAPATH)
56 CAFILE_NEURONIO = data_file("capath", "4e1295a3.0")
57 CAFILE_CACERT = data_file("capath", "5ed36f99.0")
67 SIGNING_CA = data_file("capath", "ceff1710.0")
662 env["SSL_CERT_DIR"] = CAPATH
666 self.assertEqual(paths.capath, CAPATH)
    [all...]
  /external/scapy/scapy/layers/tls/
cert.py     [all...]
  /external/curl/
configure     [all...]
  /external/python/cpython3/Lib/test/test_asyncio/
test_events.py 677 cafile=None, capath=None,
    [all...]

Completed in 483 milliseconds