From 01d32e76ddd703324f3d806c69eb3e94ce90296c Mon Sep 17 00:00:00 2001 From: Harry Ramsey Date: Tue, 12 Nov 2024 20:02:43 +0000 Subject: [PATCH] Fix check_names errorr for MBEDTLS_GCM_ALT comment This commit fixes an issue with check_names failing due to not being defined as a macro in Mbed TLS. This is instead defined by alternative implementations of MBEDTLS_GCM. Signed-off-by: Harry Ramsey --- include/mbedtls/gcm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/mbedtls/gcm.h b/include/mbedtls/gcm.h index 837ec1f59..43d0aa7f1 100644 --- a/include/mbedtls/gcm.h +++ b/include/mbedtls/gcm.h @@ -289,8 +289,8 @@ int mbedtls_gcm_update_ad(mbedtls_gcm_context *ctx, * \note The output buffer \p output can be the same as the input * buffer \p input. If \p output is greater than \p input, they * cannot overlap. Implementations which require - * MBEDTLS_GCM_ALT to be enabled may not provide support for - * overlapping buffers. + * MBEDTLS_GCM_ALT //no-check-names to be enabled may not + * provide support for overlapping buffers. * * \param ctx The GCM context. This must be initialized. * \param input The buffer holding the input data. If \p input_length