diff options
author | Gisle Aas <gisle@aas.no> | 2009-06-09 23:08:52 +0200 |
---|---|---|
committer | Gisle Aas <gisle@aas.no> | 2009-06-09 23:08:52 +0200 |
commit | 23be15b77e2382b66e19a2a0e78485dc017fdd3c (patch) | |
tree | 579ec02c51f3cd82536154a3ba3c216f133670f3 /lib/Digest.pm | |
parent | f6085ff72b72f58d9b82bcc722d8a8fe8438b807 (diff) | |
download | perl-23be15b77e2382b66e19a2a0e78485dc017fdd3c.tar.gz |
Upgrade to Digest-1.16
Diffstat (limited to 'lib/Digest.pm')
-rw-r--r-- | lib/Digest.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Digest.pm b/lib/Digest.pm index 98102ae6bf..384dfc8266 100644 --- a/lib/Digest.pm +++ b/lib/Digest.pm @@ -3,10 +3,10 @@ package Digest; use strict; use vars qw($VERSION %MMAP $AUTOLOAD); -$VERSION = "1.15"; +$VERSION = "1.16"; %MMAP = ( - "SHA-1" => ["Digest::SHA1", ["Digest::SHA", 1], ["Digest::SHA2", 1]], + "SHA-1" => [["Digest::SHA", 1], "Digest::SHA1", ["Digest::SHA2", 1]], "SHA-224" => [["Digest::SHA", 224]], "SHA-256" => [["Digest::SHA", 256], ["Digest::SHA2", 256]], "SHA-384" => [["Digest::SHA", 384], ["Digest::SHA2", 384]], @@ -16,6 +16,7 @@ $VERSION = "1.15"; "CRC-16" => [["Digest::CRC", type => "crc16"]], "CRC-32" => [["Digest::CRC", type => "crc32"]], "CRC-CCITT" => [["Digest::CRC", type => "crcccitt"]], + "RIPEMD-160" => "Crypt::PIPEMD160", ); sub new |