__init__.py 498 B

1234567891011121314151617181920212223242526272829303132
  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__,
  9. __copyright__,
  10. __email__,
  11. __license__,
  12. __summary__,
  13. __title__,
  14. __uri__,
  15. __version__,
  16. )
  17. __all__ = [
  18. "SSL",
  19. "crypto",
  20. "__author__",
  21. "__copyright__",
  22. "__email__",
  23. "__license__",
  24. "__summary__",
  25. "__title__",
  26. "__uri__",
  27. "__version__",
  28. ]