From ee85686339609a65652272ef5d6fd224b4c9d671 Mon Sep 17 00:00:00 2001 From: Janos Follath Date: Wed, 8 Apr 2020 16:58:36 +0100 Subject: [PATCH] Add missing ChangeLog entry The MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH build option has been added since the last release, but there was no entry for it in the ChangeLog. Signed-off-by: Janos Follath --- ChangeLog | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index 5c4a846214b7..a6983a791398 100644 --- a/ChangeLog +++ b/ChangeLog @@ -19,6 +19,11 @@ Security an ECDSA private key. Found and reported by Alejandro Cabrera Aldaya, Billy Brumley and Cesar Pereida Garcia. CVE-2020-10932 +Features + * The new build option MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH automatically + resizes the I/O buffers before and after handshakes, reducing the memory + consumption during application data transfer. + Bugfix * Fix compilation failure when both MBEDTLS_SSL_PROTO_DTLS and MBEDTLS_SSL_HW_RECORD_ACCEL are enabled.