- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getPeerPrincipal (0.11 sec)
-
okhttp-testing-support/src/main/kotlin/okhttp3/FakeSSLSession.kt
throw UnsupportedOperationException() } override fun getPeerPort(): Int { throw UnsupportedOperationException() } @Throws(SSLPeerUnverifiedException::class) override fun getPeerPrincipal(): Principal { throw UnsupportedOperationException() } override fun getProtocol(): String { throw UnsupportedOperationException() } override fun getSessionContext(): SSLSessionContext {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 3.3K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSession.kt
override fun getPeerCertificateChain(): Array<X509Certificate> { return delegate!!.peerCertificateChain } @Throws(SSLPeerUnverifiedException::class) override fun getPeerPrincipal(): Principal { return delegate!!.peerPrincipal } override fun getLocalPrincipal(): Principal { return delegate!!.localPrincipal } override fun getCipherSuite(): String {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2.8K bytes - Viewed (0)