blob: 237ae5f23ccf1fa98cd396af8869b274fc9e3465 [file] [log] [blame]
class NoSSLEnvironment(object):
ssl_enabled = False
def __init__(self, *args, **kwargs):
pass
def __enter__(self):
return self
def __exit__(self, *args, **kwargs):
pass
def host_cert_path(self, host):
return None, None
def ca_cert_path(self):
return None