aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/primitives/asymmetric/rsa.rst
diff options
context:
space:
mode:
authorMohammed Attia <skeuomorf@gmail.com>2014-04-03 05:18:01 +0200
committerMohammed Attia <skeuomorf@gmail.com>2014-04-03 10:47:05 +0200
commit7a574e75d546abc820e377a62adc657bc6b2a599 (patch)
tree261a0bbd37bcf7057f648bb0bc99600c7e0ca42a /docs/hazmat/primitives/asymmetric/rsa.rst
parent550f1739d88e8a40a905797544af21dd83bec477 (diff)
downloadcryptography-7a574e75d546abc820e377a62adc657bc6b2a599.tar.gz
cryptography-7a574e75d546abc820e377a62adc657bc6b2a599.tar.bz2
cryptography-7a574e75d546abc820e377a62adc657bc6b2a599.zip
Remove 'Must be at least 512.' statement from RSA's docs
Diffstat (limited to 'docs/hazmat/primitives/asymmetric/rsa.rst')
-rw-r--r--docs/hazmat/primitives/asymmetric/rsa.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/hazmat/primitives/asymmetric/rsa.rst b/docs/hazmat/primitives/asymmetric/rsa.rst
index 182e35d2..5c554abc 100644
--- a/docs/hazmat/primitives/asymmetric/rsa.rst
+++ b/docs/hazmat/primitives/asymmetric/rsa.rst
@@ -42,9 +42,9 @@ RSA
Usually one of the small Fermat primes 3, 5, 17, 257, 65537. If in
doubt you should `use 65537`_.
:param int key_size: The length of the modulus in bits. For keys
- generated in 2014 this should be `at least 2048`_. (See page 41.)
- Must be at least 512. Some backends may have additional
- limitations.
+ generated in 2014 it is strongly recommended to be
+ `at least 2048`_ (See page 41). It must not be less than 512.
+ Some backends may have additional limitations.
:param backend: A
:class:`~cryptography.hazmat.backends.interfaces.RSABackend`
provider.