Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for findByIssuerAndSignature (0.07 sec)

  1. okhttp/src/androidMain/kotlin/okhttp3/internal/platform/AndroidPlatform.kt

       */
      internal data class CustomTrustRootIndex(
        private val trustManager: X509TrustManager,
        private val findByIssuerAndSignatureMethod: Method,
      ) : TrustRootIndex {
        override fun findByIssuerAndSignature(cert: X509Certificate): X509Certificate? =
          try {
            val trustAnchor =
              findByIssuerAndSignatureMethod.invoke(
                trustManager,
                cert,
              ) as TrustAnchor
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu May 29 16:52:38 UTC 2025
    - 6.5K bytes
    - Viewed (0)
Back to top