From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 9 Apr 2021 20:46:17 +0000 (-0700) Subject: bpo-38820: OpenSSL 3.0.0: Use supported hashing algos in doc test (GH-25319) X-Git-Tag: v3.9.5~87 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7c8796a750fb108be99e0bc50ca3dba000d77e54;p=thirdparty%2FPython%2Fcpython.git bpo-38820: OpenSSL 3.0.0: Use supported hashing algos in doc test (GH-25319) ripemd160 is not available in OpenSSL 3.0.0's default crypto provider. It's only present in legacy provider. Signed-off-by: Christian Heimes (cherry picked from commit 2d7fdc90731e132f9d6b43852ee112f25831394b) Co-authored-by: Christian Heimes --- diff --git a/Doc/library/hashlib.rst b/Doc/library/hashlib.rst index d644974e6609..5a507c12d7f1 100644 --- a/Doc/library/hashlib.rst +++ b/Doc/library/hashlib.rst @@ -118,10 +118,10 @@ More condensed: Using :func:`new` with an algorithm provided by OpenSSL: - >>> h = hashlib.new('ripemd160') + >>> h = hashlib.new('sha512_256') >>> h.update(b"Nobody inspects the spammish repetition") >>> h.hexdigest() - 'cc4a5ce1b3df48aec5d22d1f16b894a0b894eccc' + '19197dc4d03829df858011c6c87600f994a858103bbc19005f20987aa19a97e2' Hashlib provides the following constant attributes: