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

  /external/curl/docs/cmdline-opts/
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/curl/lib/vtls/
polarssl.c 150 const char *capath = SSL_CONN_CONFIG(CApath); local
201 if(capath) {
202 ret = x509_crt_parse_path(&connssl->cacert, capath);
207 capath, -ret, errorbuf);
nss.c 1467 const char *capath = SSL_CONN_CONFIG(CApath); local
    [all...]
  /external/curl/src/
tool_cfgable.c 112 Curl_safefree(config->capath);
tool_cfgable.h 119 char *capath; member in struct:OperationConfig
tool_operate.c 246 !config->capath &&
262 config->capath = strdup(env);
263 if(!config->capath) {
    [all...]
tool_getparam.c 219 {"Eg", "capath", TRUE},
246 {"E7", "proxy-capath", TRUE},
    [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...]

Completed in 457 milliseconds