From ccd392ed50e49288609884042c6c6cc71881d566 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Thu, 1 Feb 2024 21:41:25 -0600 Subject: [PATCH] mark ARC4 and TripleDES with the right version added for decrepit (#10325) --- docs/hazmat/decrepit/ciphers.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/hazmat/decrepit/ciphers.rst b/docs/hazmat/decrepit/ciphers.rst index b7a79e217..8ae0178df 100644 --- a/docs/hazmat/decrepit/ciphers.rst +++ b/docs/hazmat/decrepit/ciphers.rst @@ -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.