summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJonathan Protzenko <protz@microsoft.com>2023-02-22 21:18:43 (GMT)
committerGitHub <noreply@github.com>2023-02-22 21:18:43 (GMT)
commitfcadc7e405141847ab10daf5cff16be880083a24 (patch)
tree404c9bc7b90e95882765731171033632aa6c9b80 /Misc
parent96bf24380e44dfa1516d65480250995e737c0cb9 (diff)
downloadcpython-fcadc7e405141847ab10daf5cff16be880083a24.zip
cpython-fcadc7e405141847ab10daf5cff16be880083a24.tar.gz
cpython-fcadc7e405141847ab10daf5cff16be880083a24.tar.bz2
gh-99108: Import MD5 and SHA1 from HACL* (#102089)
Replaces our fallback non-OpenSSL MD5 and SHA1 implementations with those from HACL* as we've already done with SHA2.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Security/2023-02-17-10-42-48.gh-issue-99108.MKA8-f.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Security/2023-02-17-10-42-48.gh-issue-99108.MKA8-f.rst b/Misc/NEWS.d/next/Security/2023-02-17-10-42-48.gh-issue-99108.MKA8-f.rst
new file mode 100644
index 0000000..723d8a4
--- /dev/null
+++ b/Misc/NEWS.d/next/Security/2023-02-17-10-42-48.gh-issue-99108.MKA8-f.rst
@@ -0,0 +1,2 @@
+Replace builtin hashlib implementations of MD5 and SHA1 with verified ones
+from the HACL* project.