From 690af28bdf827ab9c81648f507eb492c9076d5d3 Mon Sep 17 00:00:00 2001 From: cvs2svn Date: Wed, 25 Oct 2000 15:23:17 +0000 Subject: This commit was manufactured by cvs2git to create branch 'OPENBSD_2_8'. --- src/lib/libssl/test/testgen | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 src/lib/libssl/test/testgen (limited to 'src/lib/libssl/test/testgen') diff --git a/src/lib/libssl/test/testgen b/src/lib/libssl/test/testgen deleted file mode 100644 index c5f61b582b..0000000000 --- a/src/lib/libssl/test/testgen +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh - -T=testcert -KEY=512 -CA=../certs/testca.pem - -/bin/rm -f $T.1 $T.2 $T.key - -PATH=../apps:$PATH; -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 "This could take some time." - -echo "string to make the random number generator think it has entropy" >> ./.rnd - -../apps/openssl req -config test.cnf -new -out testreq.pem -if [ $? != 0 ]; then -echo problems creating request -exit 1 -fi - -../apps/openssl req -config test.cnf -verify -in testreq.pem -noout -if [ $? != 0 ]; then -echo signature on req is wrong -exit 1 -fi - -exit 0 -- cgit v1.2.3-55-g6feb