Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The docs on ocsp.CreateResponse state that:
ocsp.CreateResponse
// The responder cert is used to populate the responder's name field, and the // certificate itself is provided alongside the OCSP response signature.
But in the code, the responder cert is only used to populate the rawResponderID.
rawResponderID
The certificate provided with the OCSP response signature seem to come from template.Certificate instead of the responder cert.
template.Certificate
Is this an error in the docs/code or am I missing something?
The text was updated successfully, but these errors were encountered:
That does look like a bug to me. Perhaps we'd want to use responderCert if template.Cert is nil? /cc @agl
Sorry, something went wrong.
No branches or pull requests
The docs on
ocsp.CreateResponse
state that:But in the code, the responder cert is only used to populate the
rawResponderID
.The certificate provided with the OCSP response signature seem to come from
template.Certificate
instead of the responder cert.Is this an error in the docs/code or am I missing something?
The text was updated successfully, but these errors were encountered: