From 199d4d93808bce6bebcfcdfccf336741c9a2cbf8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Tue, 10 Mar 2026 11:40:14 +0100 Subject: [PATCH] FFDH: fix wrong word in comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Manuel Pégourié-Gonnard --- library/psa_crypto_ffdh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/psa_crypto_ffdh.c b/library/psa_crypto_ffdh.c index af1fa0e8a5..faa8b334e0 100644 --- a/library/psa_crypto_ffdh.c +++ b/library/psa_crypto_ffdh.c @@ -277,7 +277,7 @@ psa_status_t mbedtls_psa_ffdh_key_agreement( return PSA_ERROR_INVALID_ARGUMENT; } - /* This has been checked by the library, but keep a local check too. */ + /* This has been checked by the core, but keep a local check too. */ if (calculated_shared_secret_size > shared_secret_size) { return PSA_ERROR_BUFFER_TOO_SMALL; }