Home | History | Annotate | Download | only in httplib2

Lines Matching refs:key_file

66     def _ssl_wrap_socket(sock, key_file, cert_file):
67 ssl_sock = socket.ssl(sock, key_file, cert_file)
755 def __init__(self, host, port=None, key_file=None, cert_file=None,
757 httplib.HTTPSConnection.__init__(self, host, port=port, key_file=key_file,
774 self.sock =_ssl_wrap_socket(sock, self.key_file, self.cert_file)
1012 conn = self.connections[conn_key] = connection_type(authority, key_file=certs[0][0],