diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-05-02 14:47:29 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-05-02 14:47:29 -0700 |
commit | 7029a4f409094fd59ea53508368e2dfb026a90b9 (patch) | |
tree | ae92dde1f4022206a4eb43df35603a0c9ccc6385 /docs/hazmat/primitives/asymmetric | |
parent | 06e5bde2815520d16b185578036980f91d9bc2b4 (diff) | |
parent | 19e97bd119a417d61c6b844d6e38734d457c779b (diff) | |
download | cryptography-7029a4f409094fd59ea53508368e2dfb026a90b9.tar.gz cryptography-7029a4f409094fd59ea53508368e2dfb026a90b9.tar.bz2 cryptography-7029a4f409094fd59ea53508368e2dfb026a90b9.zip |
Merge pull request #1002 from public/doc-tweaks-4
Fix some typos in the docs
Diffstat (limited to 'docs/hazmat/primitives/asymmetric')
-rw-r--r-- | docs/hazmat/primitives/asymmetric/dsa.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/hazmat/primitives/asymmetric/dsa.rst b/docs/hazmat/primitives/asymmetric/dsa.rst index f7abaf0f..cc46029c 100644 --- a/docs/hazmat/primitives/asymmetric/dsa.rst +++ b/docs/hazmat/primitives/asymmetric/dsa.rst @@ -38,11 +38,11 @@ DSA Generate a new ``DSAParameters`` instance using ``backend``. :param int key_size: The length of the modulus in bits. It should be - either "1024, 2048 or 3072". For keys generated in 2014 this should - be `at least 2048`_ (See page 41). - Note that some applications (such as SSH) have not yet gained support - for larger key sizes specified in FIPS 186-3 and are still restricted - to only the 1024-bit keys specified in FIPS 186-2. + either 1024, 2048 or 3072. For keys generated in 2014 this should + be `at least 2048`_ (See page 41). Note that some applications + (such as SSH) have not yet gained support for larger key sizes + specified in FIPS 186-3 and are still restricted to only the + 1024-bit keys specified in FIPS 186-2. :return: A new instance of ``DSAParameters`` |