testing: Use pki --ocsp as OCSP responder

The only exception is the ikev2/ocsp-no-signer-cert scenario as the
pki command won't sign an OCSP response with a certificate that isn't
the CA certificate or marked as an OCSP signer.
This commit is contained in:
Tobias Brunner
2023-11-13 12:50:47 +01:00
parent 5764e1e506
commit c10a13589e
9 changed files with 19 additions and 34 deletions
@@ -5,7 +5,5 @@ cd /etc/ca
echo "Content-type: application/ocsp-response"
echo ""
cat | /usr/bin/openssl ocsp -index index.txt -CA strongswanCert.pem \
-rkey strongswanKey.pem -rsigner strongswanCert.pem \
-resp_no_certs -nmin 5 \
-reqin /dev/stdin -respout /dev/stdout | cat
cat | pki --ocsp --respond --cacert strongswanCert.pem --index index.txt \
--key strongswanKey.pem --lifetime 5 --debug 0