class ConnectionSpec
Specifies configuration for the socket connection that HTTP traffic travels through. For https:
URLs, this includes the TLS version and cipher suites to use when negotiating a secure
connection.
The TLS versions configured in a connection spec are only be used if they are also enabled in the SSL socket. For example, if an SSL socket does not have TLS 1.3 enabled, it will not be used even if it is present on the connection spec. The same policy also applies to cipher suites.
Use Builder.allEnabledTlsVersions and Builder.allEnabledCipherSuites to defer all feature selection to the underlying SSL socket.
The configuration of each spec changes with each OkHttp release. This is annoying: upgrading your OkHttp library can break connectivity to certain web servers! But it’s a necessary annoyance because the TLS ecosystem is dynamic and staying up to date is necessary to stay secure. See OkHttp's TLS Configuration History to track these changes.
class Builder |
val cipherSuites: List<CipherSuite>?
Returns the cipher suites to use for a connection. Returns null if all of the SSL socket's enabled cipher suites should be used. |
|
val isTls: Boolean |
|
val supportsTlsExtensions: Boolean |
|
val tlsVersions: List<TlsVersion>?
Returns the TLS versions to use when negotiating a connection. Returns null if all of the SSL socket's enabled TLS versions should be used. |
fun equals(other: Any?): Boolean |
|
fun hashCode(): Int |
|
fun isCompatible(socket: SSLSocket): Boolean
Returns |
|
fun toString(): String |
val CLEARTEXT: ConnectionSpec
Unencrypted, unauthenticated connections for |
|
val COMPATIBLE_TLS: ConnectionSpec
A backwards-compatible fallback configuration that works on obsolete client platforms and can connect to obsolete servers. When possible, prefer to upgrade your client platform or server rather than using this configuration. |
|
val MODERN_TLS: ConnectionSpec
A modern TLS configuration that works on most client platforms and can connect to most servers. This is OkHttp's default configuration. |
|
val RESTRICTED_TLS: ConnectionSpec
A secure TLS connection that requires a recent client platform and a recent server. |