From 660cd378e182606a4d0760720980035eeb12c48d Mon Sep 17 00:00:00 2001 From: Dave Rodgman Date: Thu, 15 Jun 2023 18:53:35 +0100 Subject: [PATCH] Use MBEDTLS_OPTIMIZE_ALWAYS for gcm Signed-off-by: Dave Rodgman --- library/gcm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/library/gcm.c b/library/gcm.c index 35823e3d71..02f8cbfcaa 100644 --- a/library/gcm.c +++ b/library/gcm.c @@ -417,6 +417,7 @@ static int gcm_mask(mbedtls_gcm_context *ctx, return 0; } +MBEDTLS_OPTIMIZE_ALWAYS int mbedtls_gcm_update(mbedtls_gcm_context *ctx, const unsigned char *input, size_t input_length, unsigned char *output, size_t output_size,