mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-04 20:38:50 +01:00
18 lines
556 B
Bash
Executable File
18 lines
556 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. $srcdir/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 \
|
|
--cipher-algo cast5 -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
|
|
|