12 lines
263 B
Python
12 lines
263 B
Python
# Copyright (C) AB Strakt
|
|
# See LICENSE for details.
|
|
|
|
"""
|
|
pyOpenSSL - A simple wrapper around the OpenSSL library
|
|
"""
|
|
|
|
from OpenSSL import rand, crypto, SSL
|
|
from OpenSSL.version import __version__
|
|
|
|
__all__ = [
|
|
'rand', 'crypto', 'SSL', 'tsafe', '__version__']
|