1998-04-08 21:42:07 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
1998-09-14 12:33:57 +02:00
|
|
|
. $srcdir/defs.inc || exit 3
|
1998-04-08 21:42:07 +02:00
|
|
|
|
|
|
|
#info Checking encryption
|
|
|
|
for i in $plain_files $data_files ; do
|
2002-06-29 15:31:13 +02:00
|
|
|
$GPG $dsa_keyrings --always-trust -e -o x --yes -r "$dsa_usrname2" $i
|
|
|
|
$GPG $dsa_keyrings -o y --yes x
|
1998-04-08 21:42:07 +02:00
|
|
|
cmp $i y || error "$i: mismatch"
|
|
|
|
done
|
|
|
|
|
* clearsig.test, conventional-mdc.test, conventional.test, defs.inc,
encrypt-dsa.test, encrypt.test, genkey1024.test, plain-1.asc,
plain-1-pgp.asc, plain-2.asc, plain-3.asc, pubring.asc, secring.asc,
sigs.test: Rework tests to work properly with a gpg binary that doesn't
have all ciphers and all pk algos. Basically, we test for the ciphers we
have, only test signing with non-160-bit hashes with RSA (we test all
hashes as hashes). Test all key lengths of AES.
2003-12-31 20:00:35 +01:00
|
|
|
algos="3des"
|
|
|
|
|
|
|
|
if have_cipher_algo "idea"; then
|
|
|
|
algos="$algos idea"
|
|
|
|
fi
|
1998-04-08 21:42:07 +02:00
|
|
|
|
* clearsig.test, conventional-mdc.test, conventional.test, defs.inc,
encrypt-dsa.test, encrypt.test, genkey1024.test, plain-1.asc,
plain-1-pgp.asc, plain-2.asc, plain-3.asc, pubring.asc, secring.asc,
sigs.test: Rework tests to work properly with a gpg binary that doesn't
have all ciphers and all pk algos. Basically, we test for the ciphers we
have, only test signing with non-160-bit hashes with RSA (we test all
hashes as hashes). Test all key lengths of AES.
2003-12-31 20:00:35 +01:00
|
|
|
if have_cipher_algo "cast5"; then
|
|
|
|
algos="$algos idea"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if have_cipher_algo "blowfish"; then
|
|
|
|
algos="$algos idea"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if have_cipher_algo "aes"; then
|
|
|
|
algos="$algos aes aes192 aes256"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if have_cipher_algo "twofish"; then
|
|
|
|
algos="$algos twofish"
|
|
|
|
fi
|
|
|
|
|
|
|
|
for ca in $algos ; do
|
|
|
|
for i in $plain_files $data_files ; do
|
|
|
|
$GPG $dsa_keyrings --always-trust --cipher-algo $ca -e \
|
|
|
|
-o x --yes -r "$dsa_usrname2" $i
|
|
|
|
$GPG $dsa_keyrings -o y --yes x
|
|
|
|
cmp $i y || error "$i: mismatch"
|
|
|
|
done
|
|
|
|
done
|