You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Cert chain validation implementation is based on loop over certificates chain and for every one check :
Path validation
Profile validation
Revok validation (based on crl)
And send "True" (validation is OK) if Profile validation is OK
This can make several validation errors :
If only one certificate of chain meet these validation -> The chain validation is considered Ok even if other certificate are revoked or not profile valide
the profile validation applies all validator to all certificate -> (for exemple extendedKeyUsage must not be required for CA certificates)
The text was updated successfully, but these errors were encountered:
The Cert chain validation implementation is based on loop over certificates chain and for every one check :
This can make several validation errors :
The text was updated successfully, but these errors were encountered: