Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/OpenSSL/__init__.py: 80%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1# Copyright (C) AB Strakt
2# See LICENSE for details.
4"""
5pyOpenSSL - A simple wrapper around the OpenSSL library
6"""
8from OpenSSL import SSL, crypto
9from OpenSSL.version import (
10 __author__,
11 __copyright__,
12 __email__,
13 __license__,
14 __summary__,
15 __title__,
16 __uri__,
17 __version__,
18)
20__all__ = [
21 "SSL",
22 "__author__",
23 "__copyright__",
24 "__email__",
25 "__license__",
26 "__summary__",
27 "__title__",
28 "__uri__",
29 "__version__",
30 "crypto",
31]