diff options
author | Alex Chan <alex@alexwlchan.net> | 2016-09-04 17:40:06 +0100 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2016-09-04 12:40:06 -0400 |
commit | ee9710fad662616454cbf99faaaa3b47d547ccd9 (patch) | |
tree | e4fe57d7e69ed964e65f0798eead1c7e4a2334f3 | |
parent | b7a20898438a819f37b335adb4d1cab81ce4e0b3 (diff) | |
download | cryptography-ee9710fad662616454cbf99faaaa3b47d547ccd9.tar.gz cryptography-ee9710fad662616454cbf99faaaa3b47d547ccd9.tar.bz2 cryptography-ee9710fad662616454cbf99faaaa3b47d547ccd9.zip |
Fix typo in `symmetric-encryption.rst` (#3138)
-rw-r--r-- | docs/hazmat/primitives/symmetric-encryption.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/hazmat/primitives/symmetric-encryption.rst b/docs/hazmat/primitives/symmetric-encryption.rst index 67ca334b..657e7060 100644 --- a/docs/hazmat/primitives/symmetric-encryption.rst +++ b/docs/hazmat/primitives/symmetric-encryption.rst @@ -106,7 +106,7 @@ Algorithms Triple DES (Data Encryption Standard), sometimes referred to as 3DES, is a block cipher standardized by NIST. Triple DES has known crypto-analytic flaws, however none of them currently enable a practical attack. - Nonetheless, Triples DES is not recommended for new applications because it + Nonetheless, Triple DES is not recommended for new applications because it is incredibly slow; old applications should consider moving away from it. :param bytes key: The secret key. This must be kept secret. Either ``64``, |