From 7050662a48a1eb46f32509c182f5087c1139759e Mon Sep 17 00:00:00 2001 From: Paul Elliott Date: Wed, 24 May 2023 17:31:57 +0100 Subject: [PATCH] Correct comment header block Signed-off-by: Paul Elliott --- library/ecp_curves.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/ecp_curves.c b/library/ecp_curves.c index 42d151a4c6..597a340447 100644 --- a/library/ecp_curves.c +++ b/library/ecp_curves.c @@ -5479,7 +5479,7 @@ cleanup: * splitting N up into 32-bit limbs and doing the arithmetic using the limbs * directly as we do for the NIST primes above, but for 64-bit targets it should * use half the number of operations if we do the reduction with 224-bit limbs, - * since mpi_add_mpi will then use 64-bit adds. + * since mpi_core_add will then use 64-bit adds. */ MBEDTLS_STATIC_TESTABLE int mbedtls_ecp_mod_p448(mbedtls_mpi_uint *X, size_t X_limbs)