Home | History | Annotate | Download | only in test

Lines Matching refs:capath

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)
906 ctx.load_verify_locations(cafile=CERTFILE, capath=None)
908 ctx.load_verify_locations(cafile=BYTES_CERTFILE, capath=None)
919 ctx.load_verify_locations(CERTFILE, CAPATH)
920 ctx.load_verify_locations(CERTFILE, capath=BYTES_CAPATH)
1120 env["SSL_CERT_DIR"] = CAPATH
1133 CAPATH
1152 ctx = ssl.create_default_context(cafile=SIGNING_CA, capath=CAPATH,
1455 # Verify server certificates using the `capath` argument
1457 # OpenSSL 0.9.8n and 1.0.0, as a result the capath directory must
1463 ctx.load_verify_locations(capath=CAPATH)
1471 # Same with a bytes `capath` argument
1474 ctx.load_verify_locations(capath=BYTES_CAPATH)
1619 # capath certs are loaded on request
1623 ctx.load_verify_locations(capath=CAPATH)