summaryrefslogtreecommitdiff
path: root/src/OpenSSL/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/OpenSSL/__init__.py')
-rw-r--r--src/OpenSSL/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/OpenSSL/__init__.py b/src/OpenSSL/__init__.py
index b827e3c..810d00d 100644
--- a/src/OpenSSL/__init__.py
+++ b/src/OpenSSL/__init__.py
@@ -5,7 +5,7 @@
pyOpenSSL - A simple wrapper around the OpenSSL library
"""
-from OpenSSL import rand, crypto, SSL
+from OpenSSL import crypto, SSL
from OpenSSL.version import (
__author__, __copyright__, __email__, __license__, __summary__, __title__,
__uri__, __version__,
@@ -13,7 +13,7 @@ from OpenSSL.version import (
__all__ = [
- "SSL", "crypto", "rand",
+ "SSL", "crypto",
"__author__", "__copyright__", "__email__", "__license__", "__summary__",
"__title__", "__uri__", "__version__",