From 151bdf96680f15f30363cd1c91b8be7448357b1c Mon Sep 17 00:00:00 2001 From: Valerio Setti Date: Fri, 7 Apr 2023 11:44:58 +0200 Subject: [PATCH] build_info: fixed comment Signed-off-by: Valerio Setti --- include/mbedtls/build_info.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/mbedtls/build_info.h b/include/mbedtls/build_info.h index 8c4135062..ba5844fc6 100644 --- a/include/mbedtls/build_info.h +++ b/include/mbedtls/build_info.h @@ -105,9 +105,9 @@ #define MBEDTLS_MD_LIGHT #endif -/* MBEDTLS_ECP_C is now a subset of MBEDTLS_ECP_LIGHT which contains the - * arithmetic part. As a consequence if MBEDTLS_ECP_C is required for - * some reason, then MBEDTLS_ECP_LIGHT should be enabled as well. */ +/* MBEDTLS_ECP_C now consists of MBEDTLS_ECP_LIGHT plus functions for curve + * arithmetic. As a consequence if MBEDTLS_ECP_C is required for some reason, + * then MBEDTLS_ECP_LIGHT should be enabled as well. */ #if defined(MBEDTLS_ECP_C) #define MBEDTLS_ECP_LIGHT #endif