]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
gh-131418: remove unused legacy typedefs in `{md5,sha1}module.c` (#131420)
authorBénédikt Tran <10796600+picnixz@users.noreply.github.com>
Sun, 23 Mar 2025 11:19:26 +0000 (12:19 +0100)
committerGitHub <noreply@github.com>
Sun, 23 Mar 2025 11:19:26 +0000 (12:19 +0100)
commita9a399f0ecfeeff91425cc089057f1b95799853b
treef4fd607c61bdbb5c2104542dbaf6966fd288eb86
parentf3bf304c2799c31c045033f22db7eb8766a5f939
gh-131418: remove unused legacy typedefs in `{md5,sha1}module.c` (#131420)

- Remove legacy typedefs `MD5_INT32` and `MD5_INT64` in `Modules/md5module.c`
- Remove legacy typedefs `SHA1_INT32` and `SHA1_INT64` in `Modules/sha1module.c`.

Those legacy typedefs were used to detect whether the host platform could
correctly implement MD5 and SHA-1, but this is no longer needed as we now
fallback to HACL* implementations.
Modules/md5module.c
Modules/sha1module.c