summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2019-09-12 12:42:07 (GMT)
committerStéphane Wirtel <stephane@wirtel.be>2019-09-12 12:42:07 (GMT)
commit5a4f82f457049b5b07b6fba4ca42bc1ecf597976 (patch)
tree923484cd7a3d3460dbcedca8d3102bfda074c2b6 /Misc
parenta488879cbaf4b8b52699cadccf73bb4c271bcb29 (diff)
downloadcpython-5a4f82f457049b5b07b6fba4ca42bc1ecf597976.zip
cpython-5a4f82f457049b5b07b6fba4ca42bc1ecf597976.tar.gz
cpython-5a4f82f457049b5b07b6fba4ca42bc1ecf597976.tar.bz2
bpo-38132: Simplify _hashopenssl code (GH-16023)
Signed-off-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-09-12-12-47-35.bpo-38132.KSFx1F.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-09-12-12-47-35.bpo-38132.KSFx1F.rst b/Misc/NEWS.d/next/Library/2019-09-12-12-47-35.bpo-38132.KSFx1F.rst
new file mode 100644
index 0000000..c2e3b62
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-09-12-12-47-35.bpo-38132.KSFx1F.rst
@@ -0,0 +1,3 @@
+The OpenSSL hashlib wrapper uses a simpler implementation. Several Macros
+and pointless caches are gone. The hash name now comes from OpenSSL's EVP.
+The algorithm name stays the same, except it is now always lower case.