]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-38820: OpenSSL 3.0.0: Use supported hashing algos in doc test (GH-25319)
authorChristian Heimes <christian@python.org>
Fri, 9 Apr 2021 20:23:10 +0000 (22:23 +0200)
committerGitHub <noreply@github.com>
Fri, 9 Apr 2021 20:23:10 +0000 (22:23 +0200)
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 <christian@python.org>
Doc/library/hashlib.rst

index 7bb030bd08f9d727daa3a6eec35ec72be2c93cd2..6f92152a778276c5ddee23ede91e38aa690a74ea 100644 (file)
@@ -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: