1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-30 22:43:08 +03:00

Remove unused parameter

Signed-off-by: Gabor Mezei <gabor.mezei@arm.com>
This commit is contained in:
Gabor Mezei
2022-09-15 20:15:34 +02:00
parent 53e455db7b
commit cfc0eb8d22
5 changed files with 6 additions and 9 deletions

View File

@ -866,7 +866,7 @@ void mpi_core_cond_swap( data_t * input_X,
TEST_CF_SECRET( X, len_X * sizeof( mbedtls_mpi_uint ) );
TEST_CF_SECRET( Y, len_Y * sizeof( mbedtls_mpi_uint ) );
mbedtls_mpi_core_cond_swap( X, len_X, Y, len_Y, cond );
mbedtls_mpi_core_cond_swap( X, Y, len_X, cond );
TEST_CF_PUBLIC( X, len_X * sizeof( mbedtls_mpi_uint ) );
TEST_CF_PUBLIC( Y, len_Y * sizeof( mbedtls_mpi_uint ) );