Home | History | Annotate | Download | only in http

Lines Matching full:key_file

1360         # XXX Should key_file and cert_file be deprecated in favour of context?
1362 def __init__(self, host, port=None, key_file=None, cert_file=None,
1368 if (key_file is not None or cert_file is not None or
1371 warnings.warn("key_file, cert_file and check_hostname are "
1374 self.key_file = key_file
1384 if key_file or cert_file:
1385 context.load_cert_chain(cert_file, key_file)