summaryrefslogtreecommitdiff
path: root/rsa/__init__.py
diff options
context:
space:
mode:
authorMichael Manganiello <adamantike@users.noreply.github.com>2016-05-08 08:19:17 -0300
committerSybren A. Stüvel <sybren@stuvel.eu>2016-05-08 13:19:17 +0200
commit505a25a1ada6f0d2b161ac7d12e626c7965f16f5 (patch)
treeb0401d41c2a69bf96cce591785c2bb260c495124 /rsa/__init__.py
parent1369d748e9b557ed769c9456dc43ab3c0530663f (diff)
downloadrsa-git-505a25a1ada6f0d2b161ac7d12e626c7965f16f5.tar.gz
Update security warning (#70)
Diffstat (limited to 'rsa/__init__.py')
-rw-r--r--rsa/__init__.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/rsa/__init__.py b/rsa/__init__.py
index 942e899..e69bbf3 100644
--- a/rsa/__init__.py
+++ b/rsa/__init__.py
@@ -18,9 +18,8 @@
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.
+WARNING: this implementation does not use compression of the cleartext input to
+prevent repetitions, or other common security improvements. Use with care.
"""