Skip to content
New issue

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

For unknown certificates OCSP should have unknown CertStatus (part 2) #4534

Merged
merged 2 commits into from
Aug 10, 2023

Commits on Aug 9, 2023

  1. For unknown certificates OCSP should have unknown CertStatus (part 2)

    The CA's internal OCSP fails to handle certs issued by an unknown CA.
    There is code in the CA's validation to handle that scenario but that
    validation is never triggered as the request handling code that wraps it
    considers not knowing the origin CA to be an error condition.
    
    The code is changed to allow the validating CA to proceed even if the
    origin CA is unknown, reporting Unknown for the CertStatus, while
    delegating to the origin CA if it is found.
    ckelleyRH committed Aug 9, 2023
    Configuration menu
    Copy the full SHA
    941e64a View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2023

  1. Internal OCSP CA identification using request hash

    In case of multiple CAs the correct one was selected using the first
    certificate. This could provide inconsistent. Now the selection is based
    on the request issuer name.
    
    Additionally, the output has been made consistent with the external OCSP
    for all the possibilities of subject and issuers.
    fmarco76 committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    d6adf7b View commit details
    Browse the repository at this point in the history