blob: a65e5f2fd1719286d426761e1f89a56ba40184f2 [file] [log] [blame]
yuezonghe824eb0c2024-06-27 02:32:26 -07001# Example of running an querying OpenSSL test OCSP responder.
2# This assumes "mkcerts.sh" or similar has been run to set up the
3# necessary file structure.
4
5OPENSSL=../../apps/openssl
6OPENSSL_CONF=../../apps/openssl.cnf
7export OPENSSL_CONF
8
9# Run OCSP responder.
10
11PORT=8888
12
13$OPENSSL ocsp -port $PORT -index index.txt -CA intca.pem \
14 -rsigner resp.pem -rkey respkey.pem -rother intca.pem $*