- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for TLS_FALLBACK_SCSV (0.49 seconds)
-
okhttp/src/jvmTest/kotlin/okhttp3/FallbackTestClientSocketFactory.kt
package okhttp3 import javax.net.ssl.SSLSocket import javax.net.ssl.SSLSocketFactory import okhttp3.FallbackTestClientSocketFactory.Companion.TLS_FALLBACK_SCSV /** * An SSLSocketFactory that delegates calls. Sockets created by the delegate are wrapped with ones * that will not accept the [TLS_FALLBACK_SCSV] cipher, thus bypassing server-side fallback * checks on platforms that support it. Unfortunately this wrapping will disable any
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Fri Dec 27 13:39:56 GMT 2024 - 2K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CipherSuiteTest.kt
socket.enabledCipherSuites = arrayOf("TLS_A") val connectionSpec = ConnectionSpec .Builder(true) .tlsVersions(TlsVersion.TLS_1_0) .cipherSuites("TLS_A") .build() applyConnectionSpec(connectionSpec, socket, true) assertArrayEquals( arrayOf("TLS_A", "TLS_FALLBACK_SCSV"), socket.enabledCipherSuites,
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 8.2K bytes - Click Count (0)