From d67fa8251f71f7cf5e9709f1e6be27ee7fbf028a Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Mon, 12 Nov 2018 21:41:26 -0500 Subject: add SHA512/224 and SHA512/256 support (#4575) * add SHA512/224 and SHA512/256 support * add missing docs --- docs/hazmat/primitives/cryptographic-hashes.rst | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'docs/hazmat/primitives/cryptographic-hashes.rst') diff --git a/docs/hazmat/primitives/cryptographic-hashes.rst b/docs/hazmat/primitives/cryptographic-hashes.rst index a73785d4..1a96fc2d 100644 --- a/docs/hazmat/primitives/cryptographic-hashes.rst +++ b/docs/hazmat/primitives/cryptographic-hashes.rst @@ -102,6 +102,20 @@ SHA-2 family SHA-512 is a cryptographic hash function from the SHA-2 family and is standardized by NIST. It produces a 512-bit message digest. +.. class:: SHA512_224() + + .. versionadded:: 2.5 + + SHA-512/224 is a cryptographic hash function from the SHA-2 family and is + standardized by NIST. It produces a 224-bit message digest. + +.. class:: SHA512_256() + + .. versionadded:: 2.5 + + SHA-512/256 is a cryptographic hash function from the SHA-2 family and is + standardized by NIST. It produces a 256-bit message digest. + BLAKE2 ~~~~~~ -- cgit v1.2.3