strongswan.org
Wiki/Project Management
Downloads
Gitweb
projects
/
strongswan.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
added OCSP signing certificates for the research and sales CAs
[strongswan.git]
/
testing
/
hosts
/
winnetou
/
etc
/
openssl
/
research
/
ocsp
/
ocsp.cgi
1
#!/bin/bash
2
3
cd /etc/openssl/research
4
5
echo "Content-type: application/ocsp-response"
6
echo ""
7
8
/usr/bin/openssl ocsp -index index.txt -CA researchCert.pem \
9
-rkey ocspKey.pem -rsigner ocspCert.pem \
10
-nmin 5 \
11
-reqin /dev/stdin -respout /dev/stdout