Lines Matching refs:cafile
439 "cafile capath openssl_cafile_env openssl_cafile openssl_capath_env "
443 """Return paths to default cafile and capath.
448 cafile = os.environ.get(parts[0], parts[1])
451 return DefaultVerifyPaths(cafile if os.path.isfile(cafile) else None,
745 def create_default_context(purpose=Purpose.SERVER_AUTH, *, cafile=None,
769 if cafile or capath or cadata:
770 context.load_verify_locations(cafile, capath, cadata)
772 # no explicit cafile, capath or cadata but the verify mode is
786 cafile=None, capath=None, cadata=None):
823 if cafile or capath or cadata:
824 context.load_verify_locations(cafile, capath, cadata)
826 # no explicit cafile, capath or cadata but the verify mode is
1555 cafile=ca_certs)