Don't access configuration files outside the source tree.
This commit is contained in:
parent
8050bc7955
commit
56f74f2ec3
@ -21,7 +21,7 @@ echo problems creating request
|
||||
exit 1
|
||||
fi
|
||||
|
||||
../apps/openssl req -verify -in testreq.pem -noout
|
||||
../apps/openssl req -config test.cnf -verify -in testreq.pem -noout
|
||||
if [ $? != 0 ]; then
|
||||
echo signature on req is wrong
|
||||
exit 1
|
||||
|
@ -4,6 +4,7 @@ digest='-mdc2'
|
||||
reqcmd="../apps/openssl req"
|
||||
x509cmd="../apps/openssl x509 $digest"
|
||||
verifycmd="../apps/openssl verify"
|
||||
dummycnf="../apps/openssl.cnf"
|
||||
|
||||
CAkey="keyCA.ss"
|
||||
CAcert="certCA.ss"
|
||||
@ -39,13 +40,13 @@ if [ $? != 0 ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
$reqcmd -verify -in $CAreq -noout
|
||||
$reqcmd -config $dummycnf -verify -in $CAreq -noout
|
||||
if [ $? != 0 ]; then
|
||||
echo first generated request is invalid
|
||||
exit 1
|
||||
fi
|
||||
|
||||
$reqcmd -verify -in $CAreq2 -noout
|
||||
$reqcmd -config $dummycnf -verify -in $CAreq2 -noout
|
||||
if [ $? != 0 ]; then
|
||||
echo second generated request is invalid
|
||||
exit 1
|
||||
|
Loading…
x
Reference in New Issue
Block a user