summaryrefslogtreecommitdiffstats
path: root/checks/mds.test
blob: 63bec7c056a343878d29ed0e9e60cef24ecb2028 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/sh


. $srcdir/defs.inc || exit 3


test_one () {
   if [ "`grep $1 y | sed -e 's/.*=[ ]\(.*\)/\1/' -e 's/ //g'`" != "$2" ]; then
	failed="$failed $1"
   fi
}

failed=""

#info Checking message digests
cat /dev/null | $srcdir/run-gpgm -v --print-mds >y
test_one "MD5"    "D41D8CD98F00B204E9800998ECF8427E"
test_one "SHA1"   "DA39A3EE5E6B4B0D3255BFEF95601890AFD80709"
test_one "RMD160" "9C1185A5C5E9FC54612808977EE8F548B2258D31"
if have_hash_algo "TIGER"; then
  test_one "TIGER"  "24F0130C63AC933216166E76B1BB925FF373DE2D49584E7A"
else
  echo "Hash algorithm TIGER/192 is not installed"
fi

[ "$failed" != "" ] && error "$failed failed for empty string"

/bin/echo "abcdefghijklmnopqrstuvwxyz\c" | $srcdir/run-gpgm --print-mds >y
test_one "MD5"    "C3FCD3D76192E4007DFB496CCA67E13B"
test_one "SHA1"   "32D10C7B8CF96570CA04CE37F2A19D84240D3A89"
test_one "RMD160" "F71C27109C692C1B56BBDCEB5B9D2865B3708DBC"
if have_hash_algo "TIGER"; then
  test_one "TIGER"  "307DE5EE72A414172A0355CCBF120404E9EE7BF32F60110B"
fi


[ "$failed" != "" ] && error "$failed failed for a..z"

exit 0