From 6f82d0e8f9756938f04071892206a5af85e676f0 Mon Sep 17 00:00:00 2001 From: cvs2svn Date: Fri, 13 Jul 2012 17:49:56 +0000 Subject: This commit was manufactured by cvs2git to create tag 'eric_g2k12'. --- src/regress/lib/libssl/testrsa.sh | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 src/regress/lib/libssl/testrsa.sh (limited to 'src/regress/lib/libssl/testrsa.sh') diff --git a/src/regress/lib/libssl/testrsa.sh b/src/regress/lib/libssl/testrsa.sh deleted file mode 100644 index 17c6abf7ce..0000000000 --- a/src/regress/lib/libssl/testrsa.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh -# $OpenBSD: testrsa.sh,v 1.6 2002/01/02 15:13:18 art Exp $ - - -#Test RSA certificate generation of openssl - -cd $1 - -# Generate RSA private key -openssl genrsa -out rsakey.pem -if [ $? != 0 ]; then - exit 1; -fi - - -# Generate an RSA certificate -openssl req -config $2/openssl.cnf -key rsakey.pem -new -x509 -days 365 -out rsacert.pem -if [ $? != 0 ]; then - exit 1; -fi - - -# Now check the certificate -openssl x509 -text -in rsacert.pem -if [ $? != 0 ]; then - exit 1; -fi - -exit 0 -- cgit v1.2.3-55-g6feb