summaryrefslogtreecommitdiff
path: root/OpenSSL/__init__.py
blob: db96e1fbde99865b5309cf599d8b9b316da859ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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__']