diff options
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 |