Open
Conversation
Member
Author
|
This did not lean heavily on AI. It started the example, but I basically re-wrote the whole thing. |
dgarske
requested changes
Jan 21, 2026
| From the wolfSSL library source code directory: | ||
|
|
||
| ```bash | ||
| openssl ocsp -port 22221 -ndays 365 \ |
Contributor
There was a problem hiding this comment.
~/GitHub/wolfssl-examples$ openssl ocsp -port 22221 -ndays 365 -index certs/ocsp/index-intermediate1-ca-issued-certs.txt -rsigner certs/ocsp/ocsp-responder-cert.pem -rkey certs/ocsp/ocsp-responder-key.pem -CA certs/ocsp/intermediate1-ca-cert.pem
ACCEPT 0.0.0.0:22221 PID=2110825
Could not open file or uri for loading responder certificate from certs/ocsp/ocsp-responder-cert.pem
40E7847007740000:error:16000069:STORE routines:ossl_store_get0_loader_int:unregistered scheme:../crypto/store/store_register.c:237:scheme=file
40E7847007740000:error:80000002:system library:file_open:No such file or directory:../providers/implementations/storemgmt/file_store.c:267:calling stat(certs/ocsp/ocsp-responder-cert.pem)
Unable to load responder certificate
Error loading responder certificate
~/GitHub/wolfssl-examples$ find . -name intermediate1-ca-cert.pem
./ocsp/stapling/client-certs/intermediate1-ca-cert.pem
This is in a few places
$ ./certverify_ocsp
Loaded root CA: ../../wolfssl/certs/ocsp/root-ca-cert.pem
Loaded intermediate CA: ../../wolfssl/certs/ocsp/intermediate1-ca-cert.pem
OCSP checking enabled
Verifying certificate: ../../wolfssl/certs/ocsp/server1-cert.pem
Certificate chain verification: PASSED
Performing OCSP check...
OCSP check failed (-407): Invalid OCSP Status Error
OCSP lookup failed!
Make sure the OCSP responder is running:
cd <wolfssl-dir>
openssl ocsp -port 22221 -ndays 365 \
-index certs/ocsp/index-intermediate1-ca-issued-certs.txt \
-rsigner certs/ocsp/ocsp-responder-cert.pem \
-rkey certs/ocsp/ocsp-responder-key.pem \
-CA certs/ocsp/intermediate1-ca-cert.pem
Member
Author
There was a problem hiding this comment.
Oops. I noticed in the README.md the executable name is different. Also I specify "From the wolfSSL library source code directory" ....Perhaps I should be clearer about the directory layout expected. This should all be easy to clean up. Stay tuned.
09d9027 to
6f43419
Compare
6f43419 to
50d513b
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.