aboutsummaryrefslogtreecommitdiffstats
path: root/hs20/server/ca/ocsp-req.sh
blob: 931a20696d02d3905f6384dffcb677f10985317f (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

for i in *.pem; do
    echo "===[ $i ]==================="
    openssl ocsp -text -CAfile ca.pem -verify_other demoCA/cacert.pem -trust_other -issuer demoCA/cacert.pem -cert $i -url http://localhost:8888/

#    openssl ocsp -text -CAfile rootCA/cacert.pem -issuer demoCA/cacert.pem -cert $i -url http://localhost:8888/

#    openssl ocsp -text -CAfile rootCA/cacert.pem -verify_other demoCA/cacert.pem -trust_other -issuer demoCA/cacert.pem -cert $i -url http://localhost:8888/
#    openssl ocsp -text -CAfile rootCA/cacert.pem -VAfile ca.pem -trust_other -issuer demoCA/cacert.pem -cert $i -url http://localhost:8888/
done