From a86c312d9266f9c6d6be67fba8d059ae6aa1b2fb Mon Sep 17 00:00:00 2001 From: TRodziewicz Date: Wed, 26 May 2021 15:29:36 +0200 Subject: [PATCH] Addition of the migration guide entry. Signed-off-by: TRodziewicz --- .../remove_SSL_DTLS_BADMAC_LIMIT_option.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 docs/3.0-migration-guide.d/remove_SSL_DTLS_BADMAC_LIMIT_option.md diff --git a/docs/3.0-migration-guide.d/remove_SSL_DTLS_BADMAC_LIMIT_option.md b/docs/3.0-migration-guide.d/remove_SSL_DTLS_BADMAC_LIMIT_option.md new file mode 100644 index 0000000000..f81bdadbaf --- /dev/null +++ b/docs/3.0-migration-guide.d/remove_SSL_DTLS_BADMAC_LIMIT_option.md @@ -0,0 +1,11 @@ +Remove MBEDTLS_SSL_DTLS_BADMAC_LIMIT option +------------------------------------------- + +This change does not affect users who used the default `config.h`, as the option +MBEDTLS_SSL_DTLS_BADMAC_LIMIT was already on by default. + +This option was a trade-off between functionality and code size: it allowed +users who didn't need that feature to avoid paying the cost in code size, by +disabling it. + +This option is no longer present, but its functionality is now always enabled.