gnupg/checks/mds.test

41 lines
1.0 KiB
Plaintext
Raw Normal View History

1998-05-13 19:53:36 +02:00
#!/bin/sh
1998-10-25 20:00:01 +01:00
1998-09-14 12:33:57 +02:00
. $srcdir/defs.inc || exit 3
1998-05-13 19:53:36 +02:00
1998-10-25 20:00:01 +01:00
1998-05-13 19:53:36 +02:00
test_one () {
1998-09-28 21:25:31 +02:00
if [ "`grep $1 y | sed -e 's/.*=[ ]\(.*\)/\1/' -e 's/ //g'`" != "$2" ]; then
1998-05-13 19:53:36 +02:00
failed="$failed $1"
fi
}
failed=""
#info Checking message digests
2002-06-29 15:31:13 +02:00
cat /dev/null | $GPG -v --print-mds >y
1998-05-13 19:53:36 +02:00
test_one "MD5" "D41D8CD98F00B204E9800998ECF8427E"
test_one "SHA1" "DA39A3EE5E6B4B0D3255BFEF95601890AFD80709"
test_one "RMD160" "9C1185A5C5E9FC54612808977EE8F548B2258D31"
1998-10-25 20:00:01 +01:00
if have_hash_algo "TIGER"; then
test_one "TIGER" "24F0130C63AC933216166E76B1BB925FF373DE2D49584E7A"
else
echo "Hash algorithm TIGER/192 is not installed"
fi
1998-05-13 19:53:36 +02:00
[ "$failed" != "" ] && error "$failed failed for empty string"
2002-06-29 15:31:13 +02:00
echo_n "abcdefghijklmnopqrstuvwxyz" | $GPG --print-mds >y
1998-05-13 19:53:36 +02:00
test_one "MD5" "C3FCD3D76192E4007DFB496CCA67E13B"
test_one "SHA1" "32D10C7B8CF96570CA04CE37F2A19D84240D3A89"
test_one "RMD160" "F71C27109C692C1B56BBDCEB5B9D2865B3708DBC"
1998-10-25 20:00:01 +01:00
if have_hash_algo "TIGER"; then
test_one "TIGER" "307DE5EE72A414172A0355CCBF120404E9EE7BF32F60110B"
fi
1998-05-13 19:53:36 +02:00
[ "$failed" != "" ] && error "$failed failed for a..z"
exit 0