From 4893ae3c111f8cddb86369714ec87ff2fa33e1bd Mon Sep 17 00:00:00 2001 From: Mahavir Jain Date: Thu, 4 Apr 2024 09:23:05 +0530 Subject: [PATCH] docs: add note about newly added mbedtls config to reduce app size footprint --- docs/en/api-guides/performance/size.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/en/api-guides/performance/size.rst b/docs/en/api-guides/performance/size.rst index d14ec93d1e..da37705e0c 100644 --- a/docs/en/api-guides/performance/size.rst +++ b/docs/en/api-guides/performance/size.rst @@ -507,6 +507,7 @@ These include: - :ref:`CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM` - Change :ref:`CONFIG_MBEDTLS_TLS_MODE` if both server & client functionalities are not needed - Consider disabling some cipher suites listed in the ``TLS Key Exchange Methods`` sub-menu (i.e., :ref:`CONFIG_MBEDTLS_KEY_EXCHANGE_RSA`) +- Consider disabling :ref:`CONFIG_MBEDTLS_ERROR_STRINGS` if the application is pulling in mbedTLS error strings because of :cpp:func:`mbedtls_strerror` usage The help text for each option has some more information for reference.