RT#69811 - Fix SHA1 use
Tomas Doran [Sat, 5 May 2012 14:24:55 +0000 (15:24 +0100)]
Changes
lib/MooseX/Storage/Base/WithChecksum.pm
t/030_with_checksum.t

diff --git a/Changes b/Changes
index 786fa83..2fbc887 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for MooseX-Storage
 
+ * Change to use core Digest and Digest::SHA dists, rather than Digest::SHA1.
+   RT##69811
+
 0.31
   * Add example for add_custom_type_handler to the MooseX::Storage::Engine docs. (perigrin)
 
index 2227a2b..17f3101 100644 (file)
@@ -85,7 +85,7 @@ sub _digest_object {
         }
     }
     else {
-        return Digest->new($d || "SHA1", @args);
+        return Digest->new($d || "SHA-1", @args);
     }
 }
 
index eee46db..0a36b3c 100644 (file)
@@ -9,7 +9,7 @@ use Test::Deep;
 
 use Test::Requires {
     'Digest' => 0.01, # skip all if not installed
-    'Digest::SHA1' => 0.01,
+    'Digest::SHA' => 0.00,
     'JSON::Any' => 0.01,
 };