From c18eea6d43bf5d24e3f83945245e9fe31139228e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Tue, 26 Aug 2025 11:34:45 +0200 Subject: [PATCH] Minor grammar fix 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/rsa_alt_helpers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/rsa_alt_helpers.h b/library/rsa_alt_helpers.h index 580ffb2fba..8ff74a02bf 100644 --- a/library/rsa_alt_helpers.h +++ b/library/rsa_alt_helpers.h @@ -90,7 +90,7 @@ int mbedtls_rsa_deduce_primes(mbedtls_mpi const *N, mbedtls_mpi const *E, * \param Q Second prime factor of RSA modulus * \param E RSA public exponent * \param D Pointer to MPI holding the private exponent on success, - * ie the modular inverse of E modulo LCM(P-1,Q-1). + * i.e. the modular inverse of E modulo LCM(P-1,Q-1). * * \return \c 0 if successful. * \return #MBEDTLS_ERR_MPI_ALLOC_FAILED if a memory allocation failed.