-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
android: only check EE certificate revocation status
This commit updates the `CertificateVerifier.kt` logic used on Android to change our revocation checking preferences. Now, we only check the end entity certificate revocation status, preferring OCSP, and allowing soft failure. Checking the entire certificate chain's revocation status is infeasible with the platform options exposed to us: intermediates without complete authority information access (AIA) information will hard fail. Performing only EE revocation checking is preferable to more complicated logic that attempts to decide apriori whether the chain has enough information to support complete revocation checking or not. As a result of only checking EE status the logic and unit test for determining if a certificate is a known root (one installed in the system trust store) fall away.
- Loading branch information
Showing
2 changed files
with
12 additions
and
110 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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