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
|
|
|
|
2000-06-05 12:27:46 +02:00
|
|
|
# temp. hack cause the format for 128 bit blocksize messages may change
|
1999-04-18 10:18:52 +02:00
|
|
|
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
|
1998-09-14 17:49:56 +02:00
|
|
|
echo "Hier spricht HAL" | $srcdir/run-gpg --passphrase-fd 0 -c -o x --yes $i
|
|
|
|
echo "Hier spricht HAL" | $srcdir/run-gpg --passphrase-fd 0 -o y --yes x
|
1998-05-04 20:49:26 +02:00
|
|
|
cmp $i y || error "$i: mismatch"
|
|
|
|
done
|
1999-04-07 20:58:34 +02:00
|
|
|
|
|
|
|
for a in cast5 3des twofish; do
|
|
|
|
for i in plain-1 data-80000 ; do
|
|
|
|
echo "Hier spricht HAL" | $srcdir/run-gpg --passphrase-fd 0 \
|
|
|
|
--cipher-algo $a -c -o x --yes $i
|
|
|
|
echo "Hier spricht HAL" | $srcdir/run-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
|
|
|
|