aboutsummaryrefslogtreecommitdiffstats
path: root/checks/sigs.test
diff options
context:
space:
mode:
Diffstat (limited to 'checks/sigs.test')
-rwxr-xr-xchecks/sigs.test26
1 files changed, 0 insertions, 26 deletions
diff --git a/checks/sigs.test b/checks/sigs.test
deleted file mode 100755
index 7a8f998c1..000000000
--- a/checks/sigs.test
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-
-. $srcdir/defs.inc || exit 3
-
-#info Checking signatures
-for i in $plain_files $data_files; do
- echo "$usrpass1" | $GPG --passphrase-fd 0 -s -o x --yes $i
- $GPG -o y --yes x
- cmp $i y || error "$i: mismatch"
-done
-
-hash_algo_list="ripemd160 sha1 md5"
-if have_hash_algo "TIGER192"; then
- hash_algo_list="$hash_algo_list tiger192"
-fi
-
-for da in $hash_algo_list ; do
- for i in $plain_files; do
- echo "$usrpass1" | $GPG --passphrase-fd 0 --digest-algo $da \
- -s -o x --yes $i
- $GPG -o y --yes x
- cmp $i y || error "$i: mismatch"
- # process only the first one
- break
- done
-done