Last change
on this file was 108206, checked in by vboxsync, 3 months ago |
openssl-3.3.2: Exported all files to OSE and removed .scm-settings bugref:10757
|
-
Property svn:eol-style
set to
LF
-
Property svn:executable
set to
*
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
464 bytes
|
Line | |
---|
1 | #!/bin/sh
|
---|
2 |
|
---|
3 | opensslcmd() {
|
---|
4 | LD_LIBRARY_PATH=../.. ../../apps/openssl $@
|
---|
5 | }
|
---|
6 |
|
---|
7 | # Example of running an querying OpenSSL test OCSP responder.
|
---|
8 | # This assumes "mkcerts.sh" or similar has been run to set up the
|
---|
9 | # necessary file structure.
|
---|
10 |
|
---|
11 | OPENSSL_CONF=../../apps/openssl.cnf
|
---|
12 | export OPENSSL_CONF
|
---|
13 |
|
---|
14 | opensslcmd version
|
---|
15 |
|
---|
16 | # Run OCSP responder.
|
---|
17 |
|
---|
18 | PORT=8888
|
---|
19 |
|
---|
20 | opensslcmd ocsp -port $PORT -index index.txt -CA intca.pem \
|
---|
21 | -rsigner resp.pem -rkey respkey.pem -rother intca.pem $*
|
---|
Note:
See
TracBrowser
for help on using the repository browser.