diff options
author | Christian Heimes <christian@python.org> | 2020-05-15 21:54:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-15 21:54:53 (GMT) |
commit | 9b60e55db2897acc30d6b9ef1dbc49674eed40c7 (patch) | |
tree | 7b664911353173da34a6eced7e7fb9a5750fa5b8 /Doc/whatsnew | |
parent | a2b3cdd661a4b6c6c74adbfcb6ac1865bfd2a011 (diff) | |
download | cpython-9b60e55db2897acc30d6b9ef1dbc49674eed40c7.zip cpython-9b60e55db2897acc30d6b9ef1dbc49674eed40c7.tar.gz cpython-9b60e55db2897acc30d6b9ef1dbc49674eed40c7.tar.bz2 |
bpo-40637: Add option to disable builtin hashes (GH-20121)
Signed-off-by: Christian Heimes <christian@python.org>
Automerge-Triggered-By: @tiran
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.9.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index fbad0fb..c721a16 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -314,6 +314,15 @@ Added a new function :func:`gc.is_finalized` to check if an object has been finalized by the garbage collector. (Contributed by Pablo Galindo in :issue:`39322`.) +hashlib +------- + +Builtin hash modules can now be disabled with +``./configure --without-builtin-hashlib-hashes`` or selectively enabled with +e.g. ``./configure --with-builtin-hashlib-hashes=sha3,blake2`` to force use +of OpenSSL based implementation. +(Contributed by Christian Heimes in :issue:`40479`) + http ---- |