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,8 @@ cd /etc/ca
echo "Content-type: application/ocsp-response"
echo ""
# we have to use OpenSSL here as pki --ocsp rejects signing with such a
# non-OCSP-signer certificate
cat | /usr/bin/openssl ocsp -index index.txt -CA strongswanCert.pem \
-rkey winnetouKey.pem -rsigner winnetouCert.pem \
-nmin 5 \
-reqin /dev/stdin -respout /dev/stdout | cat
-nmin 5 -reqin /dev/stdin -respout /dev/stdout | cat