diff -ur WWW-FastPass.orig/lib/WWW/FastPass.pm WWW-FastPass/lib/WWW/FastPass.pm
--- WWW-FastPass.orig/lib/WWW/FastPass.pm 2011-01-17 16:04:24.000000000 -0800
+++ WWW-FastPass/lib/WWW/FastPass.pm 2011-07-11 16:14:31.438337337 -0700
@@ -4,7 +4,7 @@
use strict;
use warnings;
-use Digest::SHA qw(sha1_base64);
+use Digest::SHA1 qw(sha1_base64);
use Net::OAuth;
our $VERSION = '0.01';
@@ -61,7 +61,7 @@
request_method => 'GET',
signature_method => 'HMAC-SHA1',
timestamp => time(),
- nonce => Digest::SHA::sha1_base64(time() . $$ . rand()),
+ nonce => sha1_base64(time() . $$ . rand()),
callback => 'oob',
extra_params => \%extra_params
);
diff -ur WWW-FastPass.orig/Makefile.PL WWW-FastPass/Makefile.PL
--- WWW-FastPass.orig/Makefile.PL 2011-01-17 16:13:54.000000000 -0800
+++ WWW-FastPass/Makefile.PL 2011-07-11 16:16:13.450349193 -0700
@@ -4,9 +4,9 @@
WriteMakefile(
NAME => 'WWW::FastPass',
VERSION_FROM => 'lib/WWW/FastPass.pm',
- PREREQ_PM => { 'Net::OAuth' => 0,
- 'Digest::SHA' => 0,
- 'URI' => 0, },
+ PREREQ_PM => { 'Net::OAuth' => 0,
+ 'Digest::SHA1' => 0,
+ 'URI' => 0, },
($] >= 5.005 ?
(ABSTRACT_FROM => 'lib/WWW/FastPass.pm',
AUTHOR => 'Tom Harrison <tomh5908@gmail.com>') : ()),