summaryrefslogtreecommitdiffstats
path: root/test/Attic/testca
blob: 452558bfc64b013716e8193595d352c5ac08b4b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh

set -e

PERL="$1"

if test "$OSTYPE" = msdosdjgpp; then
    PATH="../apps\;$PATH"
else
    PATH="../apps:$PATH"
fi
export PATH

export SSLEAY_CONFIG OPENSSL

/bin/rm -fr demoCA

SSLEAY_CONFIG="-config CAss.cnf"
OPENSSL="`pwd`/../util/opensslwrap.sh"

$PERL ../apps/CA.pl -newca </dev/null

SSLEAY_CONFIG="-config Uss.cnf"
$PERL ../apps/CA.pl -newreq

SSLEAY_CONFIG="-config ../apps/openssl.cnf"
yes | $PERL ../apps/CA.pl -sign

$PERL ../apps/CA.pl -verify newcert.pem

/bin/rm -fr demoCA newcert.pem newreq.pem