gnupg/checks/conventional.test

25 lines
713 B
Plaintext
Raw 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
2002-06-29 15:31:13 +02:00
# temp. hack cause the format for 128 bit blocksize messages may change
GNUPG_ENABLE_TWOFISH=1
export GNUPG_ENABLE_TWOFISH
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 cast5 3des twofish; do
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
1998-05-04 20:49:26 +02:00