mark ARC4 and TripleDES with the right version added for decrepit (#10325)

This commit is contained in:
Paul Kehrer 2024-02-01 21:41:25 -06:00 committed by GitHub
parent c7ec8a6eed
commit ccd392ed50
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -16,6 +16,8 @@ object along with the appropriate :mod:`~cryptography.hazmat.primitives.ciphers.
.. class:: ARC4(key)
.. versionadded:: 43.0.0
ARC4 (Alleged RC4) is a stream cipher with serious weaknesses in its
initial stream output. Its use is strongly discouraged. ARC4 does not use
mode constructions.
@ -41,6 +43,8 @@ object along with the appropriate :mod:`~cryptography.hazmat.primitives.ciphers.
.. class:: TripleDES(key)
.. versionadded:: 43.0.0
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.