You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 690B

12345678910111213141516171819202122232425262728293031323334
  1. """
  2. Verify service identities.
  3. """
  4. from __future__ import absolute_import, division, print_function
  5. from . import cryptography, pyopenssl
  6. from .exceptions import (
  7. CertificateError,
  8. SubjectAltNameWarning,
  9. VerificationError,
  10. )
  11. __version__ = "18.1.0"
  12. __title__ = "service_identity"
  13. __description__ = "Service identity verification for pyOpenSSL & cryptography."
  14. __uri__ = "https://service-identity.readthedocs.io/"
  15. __author__ = "Hynek Schlawack"
  16. __email__ = "hs@ox.cx"
  17. __license__ = "MIT"
  18. __copyright__ = "Copyright (c) 2014 Hynek Schlawack"
  19. __all__ = [
  20. "CertificateError",
  21. "SubjectAltNameWarning",
  22. "VerificationError",
  23. "cryptography",
  24. "pyopenssl",
  25. ]