summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xrsa/__init__.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/rsa/__init__.py b/rsa/__init__.py
index 754356e..adf5fc8 100755
--- a/rsa/__init__.py
+++ b/rsa/__init__.py
@@ -2,6 +2,11 @@
Module for calculating large primes, and RSA encryption, decryption,
signing and verification. Includes generating public and private keys.
+
+WARNING: this implementation does not use random padding, compression of the
+cleartext input to prevent repetitions, or other common security improvements.
+Use with care.
+
"""
__author__ = "Sybren Stuvel, Marloes de Boer, Ivo Tamboer, and Barry Mead"