diff options
author | Christian Heimes <christian@python.org> | 2022-03-23 20:30:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-23 20:30:05 (GMT) |
commit | 48e2010d92076b472922fa632fffc98ee150004f (patch) | |
tree | 5a55659679517a6ab9c2170bac3cdb912314fee2 /Misc | |
parent | c62b944dfc98911a5050389fa6ac753e283fee1f (diff) | |
download | cpython-48e2010d92076b472922fa632fffc98ee150004f.zip cpython-48e2010d92076b472922fa632fffc98ee150004f.tar.gz cpython-48e2010d92076b472922fa632fffc98ee150004f.tar.bz2 |
bpo-47101: list only activated algorithms in hashlib.algorithms_available (GH-32076)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-03-23-15-31-02.bpo-47101.rVSld-.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-03-23-15-31-02.bpo-47101.rVSld-.rst b/Misc/NEWS.d/next/Library/2022-03-23-15-31-02.bpo-47101.rVSld-.rst new file mode 100644 index 0000000..1a65024 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-03-23-15-31-02.bpo-47101.rVSld-.rst @@ -0,0 +1,4 @@ +:const:`hashlib.algorithms_available` now lists only algorithms that are +provided by activated crypto providers on OpenSSL 3.0. Legacy algorithms are +not listed unless the legacy provider has been loaded into the default +OSSL context. |