Skip to content

Commit 19afbfc

Browse files
committed
remove support for tls 1.1 and 1.0
Signed-off-by: Yang Keao <[email protected]>
1 parent a4521f7 commit 19afbfc

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

enable-tls-between-clients-and-servers.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ aliases: ['/docs/dev/enable-tls-between-clients-and-servers/','/docs/dev/how-to/
88

99
Non-encrypted connection between TiDB's server and clients is allowed by default, which enables third parties that monitor channel traffic to know the data sent and received between the server and the client, including query content and query results. If a channel is untrustworthy (such as if the client is connected to the TiDB server via a public network), then a non-encrypted connection is prone to information leakage. In this case, for security reasons, it is recommended to require an encrypted connection.
1010

11-
The TiDB server supports the encrypted connection based on the TLS (Transport Layer Security). The protocol is consistent with MySQL encrypted connections and is directly supported by existing MySQL clients such as MySQL Client, MySQL Shell and MySQL drivers. TLS is sometimes referred to as SSL (Secure Sockets Layer). Because the SSL protocol has [known security vulnerabilities](https://en.wikipedia.org/wiki/Transport_Layer_Security), TiDB does not support SSL. TiDB supports the following protocols: TLSv1.0, TLSv1.1, TLSv1.2 and TLSv1.3.
11+
The TiDB server supports the encrypted connection based on the TLS (Transport Layer Security). The protocol is consistent with MySQL encrypted connections and is directly supported by existing MySQL clients such as MySQL Client, MySQL Shell and MySQL drivers. TLS is sometimes referred to as SSL (Secure Sockets Layer). Because the SSL protocol has [known security vulnerabilities](https://en.wikipedia.org/wiki/Transport_Layer_Security), TiDB does not support SSL. TiDB supports the following protocols: TLSv1.2 and TLSv1.3.
1212

1313
When an encrypted connection is used, the connection has the following security properties:
1414

@@ -131,8 +131,6 @@ The crypto policy for your operating system and the client library you are using
131131
132132
### Supported TLS versions
133133
134-
- TLSv1.0 (disabled by default)
135-
- TLSv1.1 (disabled by default)
136134
- TLSv1.2
137135
- TLSv1.3
138136

tidb-configuration-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ Configuration items related to security.
415415

416416
- Set the minimum TLS version for MySQL Protocol connections.
417417
- Default value: "", which allows TLSv1.2 or higher. Before TiDB v7.6.0, the default value allows TLSv1.1 or higher.
418-
- Optional values: `"TLSv1.0"`, `"TLSv1.1"`, `"TLSv1.2"` and `"TLSv1.3"`
418+
- Optional values: `"TLSv1.2"` and `"TLSv1.3"`. Before TiDB v8.0.0, `"TLSv1.0"` and `"TLSv1.1"` are also allowed.
419419

420420
### `auth-token-jwks` <span class="version-mark">New in v6.4.0</span>
421421

0 commit comments

Comments
 (0)