Dear Maintainer,
Digest::MD5 calculates the wrong MD5 for large scalars:
$ perl -e 'print "\x00" x 1024 x 1024 x 1024 x 9'|md5sum -
97606009c3309d3a0b4b40ae9fadc720 -
$ perl -MDigest::MD5 -E 'say Digest::MD5::md5_hex "\x00" x 1024 x 1024 x 1024 x 9'
e02694e929aec3068ff272bebe0ae0a4
This is likely due to buggy length calculation in MD5.xs, which fails for
large values of "len" (and hasn't changed for 5.26):
ctx->bytes_low += len;
if (ctx->bytes_low < len) /* wrap around */
ctx->bytes_high++;
Control: forwarded -1 https://rt.cpan.org/Ticket/Display.html?id=123185 Thanks for the bugreport, which I've forwarded to <https://rt.cpan.org/Ticket/Display.html?id=123185>. Note that the problem doesn't happen if you break up the input into smaller chunks using the OO interface which might be a viable workaround. Cheers, Dominic.