mirror of
git://git.gnupg.org/gnupg.git
synced 2025-03-11 22:52:47 +01:00
18 lines
547 B
Plaintext
18 lines
547 B
Plaintext
![]() |
#!/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 \
|
||
|
--cipher-algo cast -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
|
||
|
|