From 6a91defd4207ac91b75d3b23da0b928d0321bd2d Mon Sep 17 00:00:00 2001 From: Harry Ramsey Date: Tue, 12 Nov 2024 19:58:24 +0000 Subject: [PATCH] Fix check_names error 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 --- tf-psa-crypto/drivers/builtin/include/mbedtls/gcm.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tf-psa-crypto/drivers/builtin/include/mbedtls/gcm.h b/tf-psa-crypto/drivers/builtin/include/mbedtls/gcm.h index 692a0f9657..37d07d8207 100644 --- a/tf-psa-crypto/drivers/builtin/include/mbedtls/gcm.h +++ b/tf-psa-crypto/drivers/builtin/include/mbedtls/gcm.h @@ -175,8 +175,8 @@ int mbedtls_gcm_crypt_and_tag(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 length The length of the ciphertext to decrypt, which is also @@ -285,8 +285,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