From e2c7a090fa93545cd31da8478348abab2787d886 Mon Sep 17 00:00:00 2001 From: Harry Ramsey Date: Mon, 28 Oct 2024 09:23:04 +0000 Subject: [PATCH] Fix typo in gcm.h function comment This commit fixes a type in a comment inside gcm.h. Signed-off-by: Harry Ramsey --- tf-psa-crypto/drivers/builtin/include/mbedtls/gcm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tf-psa-crypto/drivers/builtin/include/mbedtls/gcm.h b/tf-psa-crypto/drivers/builtin/include/mbedtls/gcm.h index 741c814fd6..692a0f9657 100644 --- a/tf-psa-crypto/drivers/builtin/include/mbedtls/gcm.h +++ b/tf-psa-crypto/drivers/builtin/include/mbedtls/gcm.h @@ -175,7 +175,7 @@ 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 + * MBEDTLS_GCM_ALT to be enabled may not provide support for * overlapping buffers. * * \param ctx The GCM context. This must be initialized. @@ -285,7 +285,7 @@ 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 + * MBEDTLS_GCM_ALT to be enabled may not provide support for * overlapping buffers. * * \param ctx The GCM context. This must be initialized.