diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-04-09 20:33:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-09 20:33:29 (GMT) |
commit | ffb05bbb30fa82dbe887981bdabd65af7daffcd1 (patch) | |
tree | 0a0a0ed624592774654148ed18a73ef5ca6c9734 /Doc | |
parent | 70f2ca7ea46ac15d05c7b422a10b18aa3fe4a140 (diff) | |
download | cpython-ffb05bbb30fa82dbe887981bdabd65af7daffcd1.zip cpython-ffb05bbb30fa82dbe887981bdabd65af7daffcd1.tar.gz cpython-ffb05bbb30fa82dbe887981bdabd65af7daffcd1.tar.bz2 |
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 <christian@python.org>
(cherry picked from commit 2d7fdc90731e132f9d6b43852ee112f25831394b)
Co-authored-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/hashlib.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/hashlib.rst b/Doc/library/hashlib.rst index a16c7cd..f5da6ec 100644 --- a/Doc/library/hashlib.rst +++ b/Doc/library/hashlib.rst @@ -109,10 +109,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: |