We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a614a9 commit c1f1b3bCopy full SHA for c1f1b3b
android/rustls-platform-verifier/src/main/java/org/rustls/platformverifier/CertificateVerifier.kt
@@ -361,6 +361,8 @@ internal object CertificateVerifier {
361
// happy with since it *only* tries OCSP by default. We aren't 100% decided on how to fix this yet for real
362
// (see https://github.com/rustls/rustls-platform-verifier/pull/179) so for now we implement an out for
363
// tests to allow regular maintenance to proceed.
364
+ Log.w(TAG, e.reason.toString())
365
+ Log.w(TAG, e.reason.javaClass.toString())
366
if (BuildConfig.TEST && e.reason == CertPathValidatorException.BasicReason.UNDETERMINED_REVOCATION_STATUS) {
367
return VerificationResult(StatusCode.Ok)
368
}
0 commit comments