• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (C) AB Strakt
2# See LICENSE for details.
3
4"""
5pyOpenSSL - A simple wrapper around the OpenSSL library
6"""
7
8from OpenSSL import crypto, SSL
9from OpenSSL.version import (
10    __author__,
11    __copyright__,
12    __email__,
13    __license__,
14    __summary__,
15    __title__,
16    __uri__,
17    __version__,
18)
19
20
21__all__ = [
22    "SSL",
23    "crypto",
24    "__author__",
25    "__copyright__",
26    "__email__",
27    "__license__",
28    "__summary__",
29    "__title__",
30    "__uri__",
31    "__version__",
32]
33