in reply to Re: Re: Pure Perl implementation of Digest::MD5?
in thread Pure Perl implementation of Digest::MD5?

MD5 processes data in blocks of 64 bytes(512 bits). If you have less than 64 bytes(53 actually since there is padding that has to be done on the last 'bit' and a quad-word added for length at the end) it gets padded out to 64 bytes anyway.
  • Comment on Re: Re: Re: Pure Perl implementation of Digest::MD5?