1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

bignum_mod: Renamed m -> N in mbedtls_mpi_mod_modulus_free

Signed-off-by: Mihir Raj Singh <mihirrajsingh123@gmail.com>
This commit is contained in:
Mihir Raj Singh
2023-01-11 20:08:34 +05:30
parent f438ad1ab9
commit 928a07ba49
2 changed files with 18 additions and 16 deletions

View File

@ -216,9 +216,9 @@ int mbedtls_mpi_mod_modulus_setup( mbedtls_mpi_mod_modulus *N,
* mbedtls_mpi_mod_modulus_setup() only removes the reference to it,
* making it safe to free or to use it again.
*
* \param[in,out] m The address of the modulus structure to free.
* \param[in,out] N The address of the modulus structure to free.
*/
void mbedtls_mpi_mod_modulus_free(mbedtls_mpi_mod_modulus *m);
void mbedtls_mpi_mod_modulus_free( mbedtls_mpi_mod_modulus *N );
/* BEGIN MERGE SLOT 1 */