mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-12-26 01:55:27 +00:00
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:
parent
9d7bf09333
commit
17da4f2a4e
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue