- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getPeerCertificateChain (0.17 seconds)
-
okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSession.kt
override fun getLocalCertificates(): Array<Certificate>? = delegate!!.localCertificates @Suppress("removal", "OVERRIDE_DEPRECATION") @Throws(SSLPeerUnverifiedException::class) override fun getPeerCertificateChain(): Array<X509Certificate> = delegate!!.peerCertificateChain @Throws(SSLPeerUnverifiedException::class) override fun getPeerPrincipal(): Principal = delegate!!.peerPrincipal
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 2.7K bytes - Click Count (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/FakeSSLSession.kt
} else { certificates as Array<Certificate> } @Suppress("removal", "OVERRIDE_DEPRECATION") @Throws( SSLPeerUnverifiedException::class, ) override fun getPeerCertificateChain(): Array<X509Certificate> = throw UnsupportedOperationException() override fun getPeerHost(): String = throw UnsupportedOperationException() override fun getPeerPort(): Int = throw UnsupportedOperationException()Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 3.2K bytes - Click Count (0)