diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2013-07-05 15:20:03 +0100 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2013-07-05 15:20:03 +0100 |
commit | aeb2a38c077d17381589199fe51221e5d2dcfba3 (patch) | |
tree | a1d8fc98701f6a0bb8a381d78dcb78d04585ce39 /cpan/Digest-MD5/MD5.pm | |
parent | 54dac2f34b79343364e681110cc05ab200cb4b4a (diff) | |
download | perl-aeb2a38c077d17381589199fe51221e5d2dcfba3.tar.gz |
Update Digest-MD5 to CPAN version 2.53
[DELTA]
2013-07-02 Gisle Aas <gisle@ActiveState.com>
Release 2.53
Drop File::Spec dependency and don't override installation location
for perl-5.12++
Documentation tweaks.
Diffstat (limited to 'cpan/Digest-MD5/MD5.pm')
-rw-r--r-- | cpan/Digest-MD5/MD5.pm | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/cpan/Digest-MD5/MD5.pm b/cpan/Digest-MD5/MD5.pm index 8ea2705264..679036f8be 100644 --- a/cpan/Digest-MD5/MD5.pm +++ b/cpan/Digest-MD5/MD5.pm @@ -3,7 +3,7 @@ package Digest::MD5; use strict; use vars qw($VERSION @ISA @EXPORT_OK); -$VERSION = '2.52'; +$VERSION = '2.53'; require Exporter; *import = \&Exporter::import; @@ -283,11 +283,10 @@ the file: print Digest::MD5->new->addfile($fh)->hexdigest, " $filename\n"; -Perl 5.8 support Unicode characters in strings. Since the MD5 -algorithm is only defined for strings of bytes, it can not be used on -strings that contains chars with ordinal number above 255. The MD5 -functions and methods will croak if you try to feed them such input -data: +Since the MD5 algorithm is only defined for strings of bytes, it can not be +used on strings that contains chars with ordinal number above 255 (Unicode +strings). The MD5 functions and methods will croak if you try to feed them +such input data: use Digest::MD5 qw(md5_hex); |