From 6aeda5305cb2a0e4cafacba54edf3e0767fe1f98 Mon Sep 17 00:00:00 2001 From: Ronald Cron Date: Thu, 9 Dec 2021 15:52:58 +0100 Subject: [PATCH] Add change log for TLS 1.3 MVP Signed-off-by: Ronald Cron --- ChangeLog.d/tls13-mvp.txt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 ChangeLog.d/tls13-mvp.txt diff --git a/ChangeLog.d/tls13-mvp.txt b/ChangeLog.d/tls13-mvp.txt new file mode 100644 index 0000000000..2dd48cc6a8 --- /dev/null +++ b/ChangeLog.d/tls13-mvp.txt @@ -0,0 +1,7 @@ +Features + * Mbed TLS provides a minimum viable implementation of the TLS 1.3 + protocol. See docs/architecture/tls13-support.md for the definition of + the TLS 1.3 Minimum Viable Product (MVP). The MBEDTLS_SSL_PROTO_TLS1_3 + configuration option controls the enablement of the support. The APIs + mbedtls_ssl_conf_min_version() and mbedtls_ssl_conf_max_version() allow + to select the 1.3 version of the protocol to establish a TLS connection.