summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/tools/sslutils/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/tools/sslutils/base.py')
-rw-r--r--testing/web-platform/tests/tools/sslutils/base.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/testing/web-platform/tests/tools/sslutils/base.py b/testing/web-platform/tests/tools/sslutils/base.py
deleted file mode 100644
index e78e1385c..000000000
--- a/testing/web-platform/tests/tools/sslutils/base.py
+++ /dev/null
@@ -1,23 +0,0 @@
-def get_logger(name="ssl"):
- logger = structured.get_default_logger(name)
- if logger is None:
- logger = structured.structuredlog.StructuredLogger(name)
- return logger
-
-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