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 447B

1234567891011121314151617181920
  1. # Copyright (C) AB Strakt
  2. # See LICENSE for details.
  3. """
  4. pyOpenSSL - A simple wrapper around the OpenSSL library
  5. """
  6. from OpenSSL import crypto, SSL
  7. from OpenSSL.version import (
  8. __author__, __copyright__, __email__, __license__, __summary__, __title__,
  9. __uri__, __version__,
  10. )
  11. __all__ = [
  12. "SSL", "crypto",
  13. "__author__", "__copyright__", "__email__", "__license__", "__summary__",
  14. "__title__", "__uri__", "__version__",
  15. ]