Remove module dependency

Elinimate macros defined by modules locally in the functions that are
moving to the new constant-time module.

Signed-off-by: Gabor Mezei <gabor.mezei@arm.com>
This commit is contained in:
gabor-mezei-arm 2021-09-27 12:47:06 +02:00 committed by Gabor Mezei
parent 9d7bf09333
commit 17da4f2a4e
No known key found for this signature in database
GPG key ID: 106F5A41ECC305BD

View file

@ -1277,7 +1277,7 @@ static unsigned mbedtls_cf_mpi_uint_lt( const mbedtls_mpi_uint x,
ret |= y & cond;
ret = ret >> ( biL - 1 );
ret = ret >> ( sizeof( mbedtls_mpi_uint ) * 8 - 1 );
return (unsigned) ret;
}