aboutsummaryrefslogtreecommitdiffstats
path: root/checks/encrypt.test
diff options
context:
space:
mode:
Diffstat (limited to 'checks/encrypt.test')
-rwxr-xr-xchecks/encrypt.test16
1 files changed, 0 insertions, 16 deletions
diff --git a/checks/encrypt.test b/checks/encrypt.test
deleted file mode 100755
index 4e5c5c042..000000000
--- a/checks/encrypt.test
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-. $srcdir/defs.inc || exit 3
-
-#info Checking encryption
-for i in $plain_files $data_files ; do
- $GPG --always-trust -e -o x --yes -r "$usrname2" $i
- $GPG -o y --yes x
- cmp $i y || error "$i: mismatch"
-done
-for i in $plain_files $data_files ; do
- $GPG --always-trust -e -o x --yes -r "$usrname2" --cipher-algo cast5 $i
- $GPG -o y --yes x
- cmp $i y || error "$i: mismatch"
-done
-