mirror of
https://github.com/php/php-src.git
synced 2026-04-27 01:48:26 +02:00
2b8c00850b
There's two problems: - Some loops used `unsigned int` instead of `size_t`. - The 2*N-bit addition that is emulated using 2 N bit numbers has a bug: it first truncated the number to 32/64 bit and only then shifted. This resulted in the wrong length info stored inside the resulting hash. Closes GH-12937.