summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/Digest/MD5.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/tlperl/lib/Digest/MD5.pm')
-rw-r--r--Master/tlpkg/tlperl/lib/Digest/MD5.pm11
1 files changed, 5 insertions, 6 deletions
diff --git a/Master/tlpkg/tlperl/lib/Digest/MD5.pm b/Master/tlpkg/tlperl/lib/Digest/MD5.pm
index 8ea2705264b..679036f8be7 100644
--- a/Master/tlpkg/tlperl/lib/Digest/MD5.pm
+++ b/Master/tlpkg/tlperl/lib/Digest/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);