1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-19 00:52:46 +02:00
gnupg/checks/conventional.test

22 lines
617 B
Plaintext
Raw Permalink Normal View History

1998-05-04 20:49:26 +02:00
#!/bin/sh
1998-09-14 12:33:57 +02:00
. $srcdir/defs.inc || exit 3
1998-05-04 20:49:26 +02:00
#info Checking conventional encryption
for i in plain-2 data-32000 ; do
2002-06-29 15:31:13 +02:00
echo "Hier spricht HAL" | $GPG --passphrase-fd 0 -c -o x --yes $i
echo "Hier spricht HAL" | $GPG --passphrase-fd 0 -o y --yes x
1998-05-04 20:49:26 +02:00
cmp $i y || error "$i: mismatch"
done
for a in `all_cipher_algos`; do
echo_n "$a "
for i in plain-1 data-80000 ; do
2002-06-29 15:31:13 +02:00
echo "Hier spricht HAL" | $GPG --passphrase-fd 0 \
--cipher-algo $a -c -o x --yes $i
2002-06-29 15:31:13 +02:00
echo "Hier spricht HAL" | $GPG --passphrase-fd 0 -o y --yes x
cmp $i y || error "$i: ($a) mismatch"
done
1998-09-18 17:24:53 +02:00
done
echo_n "| "