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
No known key found for this signature in database
GPG key ID: F072ACA227ACD71D
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 ) );