diff options
Diffstat (limited to 'crypto/openssl/test/testgen')
-rw-r--r-- | crypto/openssl/test/testgen | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/crypto/openssl/test/testgen b/crypto/openssl/test/testgen index 3534f58..6a4b6b9 100644 --- a/crypto/openssl/test/testgen +++ b/crypto/openssl/test/testgen @@ -11,11 +11,19 @@ export PATH echo "generating certificate request" -echo "There should be a 2 sequences of .'s and some +'s." -echo "There should not be more that at most 80 per line" +echo "string to make the random number generator think it has entropy" >> ./.rnd + +if ../apps/openssl no-rsa; then + req_new='-newkey dsa:../apps/dsa512.pem' +else + req_new='-new' + echo "There should be a 2 sequences of .'s and some +'s." + echo "There should not be more that at most 80 per line" +fi + echo "This could take some time." -../apps/openssl req -config test.cnf -new -out testreq.pem +../apps/openssl req -config test.cnf $req_new -out testreq.pem if [ $? != 0 ]; then echo problems creating request exit 1 |