'Digest::SHA' =>
{
'MAINTAINER' => 'mshelor',
- 'DISTRIBUTION' => 'MSHELOR/Digest-SHA-5.61.tar.gz',
+ 'DISTRIBUTION' => 'MSHELOR/Digest-SHA-5.62.tar.gz',
'FILES' => q[cpan/Digest-SHA],
'EXCLUDED' => [ qw{t/pod.t t/podcover.t examples/dups} ],
'UPSTREAM' => 'cpan',
Revision history for Perl extension Digest::SHA.
+5.62 Sat May 14 04:00:34 MST 2011
+ - removed unnecessary loading of MIME::Base64 module
+ -- thanks to dolmen for pointing this out
+
5.61 Wed Mar 9 05:26:36 MST 2011
- corrected bug in 'algorithm' method
- fixed -x option in Makefile.PL
-Digest::SHA version 5.61
+Digest::SHA version 5.62
========================
Digest::SHA is a complete implementation of the NIST Secure Hash
use Fcntl;
use integer;
-$VERSION = '5.61';
+$VERSION = '5.62';
require Exporter;
require DynaLoader;
sha512224 sha512224_base64 sha512224_hex
sha512256 sha512256_base64 sha512256_hex);
-# If possible, inherit from Digest::base (which depends on MIME::Base64)
-
-*addfile = \&Addfile;
+# If possible, inherit from Digest::base
eval {
- require MIME::Base64;
require Digest::base;
push(@ISA, 'Digest::base');
};
-if ($@) {
- *hexdigest = \&Hexdigest;
- *b64digest = \&B64digest;
-}
+
+*addfile = \&Addfile;
+*hexdigest = \&Hexdigest;
+*b64digest = \&B64digest;
# The following routines aren't time-critical, so they can be left in Perl
##
## Copyright (C) 2003-2011 Mark Shelor, All Rights Reserved
##
- ## Version: 5.61
- ## Wed Mar 9 05:26:36 MST 2011
+ ## Version: 5.62
+ ## Sat May 14 04:00:34 MST 2011
## shasum SYNOPSIS adapted from GNU Coreutils sha1sum.
## Include an "-a" option for algorithm selection, and a
use Fcntl;
use Getopt::Long;
-my $VERSION = "5.61";
+my $VERSION = "5.62";
## Try to use Digest::SHA. If not installed, use the slower
*
* Copyright (C) 2003-2011 Mark Shelor, All Rights Reserved
*
- * Version: 5.61
- * Wed Mar 9 05:26:36 MST 2011
+ * Version: 5.62
+ * Sat May 14 04:00:34 MST 2011
*
*/
*
* Copyright (C) 2003-2011 Mark Shelor, All Rights Reserved
*
- * Version: 5.61
- * Wed Mar 9 05:26:36 MST 2011
+ * Version: 5.62
+ * Sat May 14 04:00:34 MST 2011
*
*/
*
* Copyright (C) 2003-2011 Mark Shelor, All Rights Reserved
*
- * Version: 5.61
- * Wed Mar 9 05:26:36 MST 2011
+ * Version: 5.62
+ * Sat May 14 04:00:34 MST 2011
*
*/
*
* Copyright (C) 2003-2011 Mark Shelor, All Rights Reserved
*
- * Version: 5.61
- * Wed Mar 9 05:26:36 MST 2011
+ * Version: 5.62
+ * Sat May 14 04:00:34 MST 2011
*
*/