1998-05-04 20:49:26 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
. defs.inc || exit 3
|
|
|
|
|
|
|
|
#info Checking conventional encryption
|
|
|
|
for i in plain-2 data-32000 ; do
|
|
|
|
echo "Hier spricht HAL" | ./run-gpg --passphrase-fd 0 -c -o x --yes $i
|
|
|
|
echo "Hier spricht HAL" | ./run-gpg --passphrase-fd 0 -o y --yes x
|
|
|
|
cmp $i y || error "$i: mismatch"
|
|
|
|
done
|
|
|
|
for i in plain-1 data-80000 ; do
|
|
|
|
echo "Hier spricht HAL" | ./run-gpg --passphrase-fd 0 \
|
1998-06-13 08:59:14 +02:00
|
|
|
--cipher-algo cast5 -c -o x --yes $i
|
1998-05-04 20:49:26 +02:00
|
|
|
echo "Hier spricht HAL" | ./run-gpg --passphrase-fd 0 -o y --yes x
|
|
|
|
cmp $i y || error "$i: mismatch"
|
|
|
|
done
|
|
|
|
|