summaryrefslogtreecommitdiff
path: root/lib/Digest.t
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Digest.t')
-rw-r--r--lib/Digest.t26
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/Digest.t b/lib/Digest.t
new file mode 100644
index 0000000000..5741b777fe
--- /dev/null
+++ b/lib/Digest.t
@@ -0,0 +1,26 @@
+print "1..3\n";
+
+BEGIN {
+ chdir 't' if -d 't';
+ @INC = '../lib';
+}
+
+use Digest;
+
+my $hexdigest = "900150983cd24fb0d6963f7d28e17f72";
+if (ord('A') == 193) { # EBCDIC
+ $hexdigest = "fe4ea0d98f9cd8d1d27f102a93cb0bb0"; # IBM-1047
+}
+
+print "not " unless Digest->MD5->add("abc")->hexdigest eq $hexdigest;
+print "ok 1\n";
+
+print "not " unless Digest->MD5->add("abc")->hexdigest eq $hexdigest;
+print "ok 2\n";
+
+eval {
+ print "not " unless Digest->new("HMAC-MD5" => "Jefe")->add("what do ya want for nothing?")->hexdigest eq "750c783e6ab0b503eaa86e310a5db738";
+ print "ok 3\n";
+};
+print "ok 3\n" if $@ && $@ =~ /^Can't locate/;
+