mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-04 20:38:50 +01:00
e7abe7e909
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.
31 lines
570 B
Bash
Executable File
31 lines
570 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. $srcdir/defs.inc || exit 3
|
|
|
|
../g10/gpg --quiet --batch --quick-random --homedir . --gen-key <<EOF
|
|
Key-Type: DSA
|
|
Key-Length: 1024
|
|
Subkey-Type: ELG-E
|
|
Subkey-Length: 1024
|
|
Name-Real: Harry H.
|
|
Name-Comment: test key
|
|
Name-Email: hh@@ddorf.de
|
|
Expire-Date: 1
|
|
Passphrase: abc
|
|
%commit
|
|
EOF
|
|
|
|
if have_pubkey_algo "RSA"; then
|
|
../g10/gpg --quiet --batch --quick-random --homedir . --gen-key <<EOF
|
|
Key-Type: RSA
|
|
Key-Length: 1024
|
|
Key-Usage: sign,encrypt
|
|
Name-Real: Harry A.
|
|
Name-Comment: RSA test key
|
|
Name-Email: hh@@ddorf.de
|
|
Expire-Date: 2
|
|
Passphrase: abc
|
|
%commit
|
|
EOF
|
|
fi
|