openmedialibrary_platform_w.../Lib/site-packages/OpenSSL/__init__.py

21 lines
447 B
Python
Raw Permalink Normal View History

2016-01-31 14:44:46 +00:00
# Copyright (C) AB Strakt
# See LICENSE for details.
"""
pyOpenSSL - A simple wrapper around the OpenSSL library
"""
2019-01-20 10:35:31 +00:00
from OpenSSL import crypto, SSL
from OpenSSL.version import (
__author__, __copyright__, __email__, __license__, __summary__, __title__,
__uri__, __version__,
)
2016-01-31 14:44:46 +00:00
__all__ = [
2019-01-20 10:35:31 +00:00
"SSL", "crypto",
"__author__", "__copyright__", "__email__", "__license__", "__summary__",
"__title__", "__uri__", "__version__",
]