Upgrade to Digest-SHA-5.43
[p5sagit/p5-mst-13.2.git] / ext / Digest / SHA / t / 1-exist.t
CommitLineData
6bc89f92 1use Test;
cccd5831 2use strict;
6bc89f92 3
41c686de 4BEGIN {
77d2a621 5 if ($ENV{PERL_CORE}) {
6 chdir 't' if -d 't';
7 @INC = '../lib';
8 }
41c686de 9}
10
6bc89f92 11BEGIN { plan tests => 1 }
12
13use Digest::SHA qw(
14 hmac_sha1 hmac_sha1_base64 hmac_sha1_hex
15 hmac_sha224 hmac_sha224_base64 hmac_sha224_hex
16 hmac_sha256 hmac_sha256_base64 hmac_sha256_hex
17 hmac_sha384 hmac_sha384_base64 hmac_sha384_hex
18 hmac_sha512 hmac_sha512_base64 hmac_sha512_hex
19 sha1 sha1_base64 sha1_hex
20 sha224 sha224_base64 sha224_hex
21 sha256 sha256_base64 sha256_hex
22 sha384 sha384_base64 sha384_hex
23 sha512 sha512_base64 sha512_hex);
24
25ok(1);