OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
python3
/
dist-packages
/
service_identity
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/17/2025 09:32:20 AM
rwxr-xr-x
📄
__init__.py
642 bytes
02/18/2016 11:20:45 AM
rw-r--r--
📁
__pycache__
-
10/21/2019 03:50:02 PM
rwxr-xr-x
📄
_common.py
11.36 KB
11/07/2015 09:24:53 AM
rw-r--r--
📄
_compat.py
307 bytes
06/15/2014 04:57:27 PM
rw-r--r--
📄
exceptions.py
1.09 KB
11/07/2015 09:22:15 AM
rw-r--r--
📄
pyopenssl.py
3.6 KB
11/07/2015 09:15:12 AM
rw-r--r--
Editing: __init__.py
Close
""" 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", ]