-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4495 from TRodziewicz/remove_support_for_(D)TLS_1…
….0_and_1.1 Remove support for (d)tls 1.0 and 1.1
- Loading branch information
Showing
20 changed files
with
146 additions
and
1,852 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Removals | ||
* Remove the TLS 1.0, TLS 1.1 and DTLS 1.0 support by removing the following | ||
deprecated library constants: MBEDTLS_SSL_PROTO_TLS1, | ||
MBEDTLS_SSL_PROTO_TLS1_1, MBEDTLS_SSL_CBC_RECORD_SPLITTING, | ||
MBEDTLS_SSL_CBC_RECORD_SPLITTING_ENABLED, | ||
MBEDTLS_SSL_CBC_RECORD_SPLITTING_DISABLED, MBEDTLS_SSL_RECORD_CHECKING, | ||
MBEDTLS_SSL_FALLBACK_SCSV, MBEDTLS_SSL_FALLBACK_SCSV_VALUE, | ||
MBEDTLS_SSL_IS_FALLBACK, MBEDTLS_SSL_IS_NOT_FALLBACK, and functions: | ||
mbedtls_ssl_conf_cbc_record_splitting(), | ||
mbedtls_ssl_get_key_exchange_md_ssl_tls(), mbedtls_ssl_conf_fallback(). | ||
Fixes #4286. |
This file was deleted.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
docs/3.0-migration-guide.d/remove_support_for_tls_1.0_1.1_and_dtls_1.0.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Remove suport for TLS 1.0, 1.1 and DTLS 1.0 | ||
------------------------------------------- | ||
|
||
This change affects users of the TLS 1.0, 1.1 and DTLS 1.0 protocols. | ||
|
||
The versions of (D)TLS that are being removed are not as secure as the latest | ||
versions. Keeping them in the library creates opportunities for misconfiguration | ||
and possibly downgrade attacks. More generally, more code means a larger attack | ||
surface, even if the code is supposedly not used. | ||
|
||
The migration path is to adopt the latest versions of the protocol. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.