]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
[3.10] bpo-38256: Fix binascii.crc32 large input. (GH-32000) (GH-32013)
authorGregory P. Smith <greg@krypto.org>
Sun, 20 Mar 2022 21:46:52 +0000 (14:46 -0700)
committerGitHub <noreply@github.com>
Sun, 20 Mar 2022 21:46:52 +0000 (14:46 -0700)
commit4c989e19c84ec224655bbbde9422e16d4a838a80
treedd6d234fbcba964c63d4bbbdaaec12b9e1dd2a09
parent94f038cbb27dc6d1a74ae2bfedea674911f8e8c6
[3.10] bpo-38256: Fix binascii.crc32 large input. (GH-32000) (GH-32013)

Inputs >= 4GiB to `binascii.crc32(...)` when compiled to use the zlib
crc32 implementation (the norm on POSIX) no longer return the wrong
result.
Lib/test/test_binascii.py
Misc/NEWS.d/next/Library/2022-03-19-15-54-41.bpo-38256.FoMbjE.rst [new file with mode: 0644]
Modules/binascii.c