summaryrefslogtreecommitdiff
path: root/src/service_identity/__init__.py
diff options
context:
space:
mode:
authorTristan Seligmann <mithrandi@mithrandi.net>2016-02-21 22:44:04 +0200
committerTristan Seligmann <mithrandi@mithrandi.net>2016-02-21 22:44:04 +0200
commitcc7e801a5bfb7e276585349cc878259d4cb71c56 (patch)
tree8278c1520934e51b7680ab156458a4491e79c9b8 /src/service_identity/__init__.py
Import python-service-identity_16.0.0.orig.tar.gz.
Diffstat (limited to 'src/service_identity/__init__.py')
-rw-r--r--src/service_identity/__init__.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/service_identity/__init__.py b/src/service_identity/__init__.py
new file mode 100644
index 0000000..c6c7eb1
--- /dev/null
+++ b/src/service_identity/__init__.py
@@ -0,0 +1,33 @@
+"""
+Verify service identities.
+"""
+
+from __future__ import absolute_import, division, print_function
+
+from . import pyopenssl
+from .exceptions import (
+ CertificateError,
+ SubjectAltNameWarning,
+ VerificationError,
+)
+
+
+__version__ = "16.0.0"
+
+__title__ = "service_identity"
+__description__ = "Service identity verification for pyOpenSSL."
+__uri__ = "https://service-identity.readthedocs.org/"
+
+__author__ = "Hynek Schlawack"
+__email__ = "hs@ox.cx"
+
+__license__ = "MIT"
+__copyright__ = "Copyright (c) 2014 Hynek Schlawack"
+
+
+__all__ = [
+ "CertificateError",
+ "SubjectAltNameWarning",
+ "VerificationError",
+ "pyopenssl",
+]