diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-05-24 20:55:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-24 20:55:37 (GMT) |
commit | c4bc97a0aa0c8793d6995f8e89ff915faaf421a6 (patch) | |
tree | c7bdb999382527d1c639138215333447dcc0fe84 /PCbuild | |
parent | b67021463687941b5ac650a9c3d0f5a533dbcf5d (diff) | |
download | cpython-c4bc97a0aa0c8793d6995f8e89ff915faaf421a6.zip cpython-c4bc97a0aa0c8793d6995f8e89ff915faaf421a6.tar.gz cpython-c4bc97a0aa0c8793d6995f8e89ff915faaf421a6.tar.bz2 |
[3.12] gh-99108: Refresh HACL* (GH-104808) (#104893)
gh-99108: Refresh HACL* (GH-104808)
Refresh HACL* from upstream to improve SHA2 performance and fix a 32-bit issue in SHA3.
(cherry picked from commit 160321e5304b962a162eb023472aa2bc8307ae15)
Co-authored-by: Jonathan Protzenko <protz@microsoft.com>
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 2 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 48cd441..4371648 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -378,7 +378,7 @@ <ClCompile Include="..\Modules\_functoolsmodule.c" /> <ClCompile Include="..\Modules\_hacl\Hacl_Hash_MD5.c" /> <ClCompile Include="..\Modules\_hacl\Hacl_Hash_SHA1.c" /> - <ClCompile Include="..\Modules\_hacl\Hacl_Streaming_SHA2.c" /> + <ClCompile Include="..\Modules\_hacl\Hacl_Hash_SHA2.c" /> <ClCompile Include="..\Modules\_hacl\Hacl_Hash_SHA3.c" /> <ClCompile Include="..\Modules\_heapqmodule.c" /> <ClCompile Include="..\Modules\_json.c" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 5c8c144..22eb70a 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -782,7 +782,7 @@ <ClCompile Include="..\Modules\_hacl\Hacl_Hash_SHA1.c"> <Filter>Modules</Filter> </ClCompile> - <ClCompile Include="..\Modules\_hacl\Hacl_Streaming_SHA2.c"> + <ClCompile Include="..\Modules\_hacl\Hacl_Hash_SHA2.c"> <Filter>Modules</Filter> </ClCompile> <ClCompile Include="..\Modules\_hacl\Hacl_Hash_SHA3.c"> |