ct_lt_mpi_uint: make use of biL

This commit is contained in:
Janos Follath 2019-10-14 08:59:14 +01:00 committed by Simon Butcher
parent 8faf1d627b
commit a830377142

View File

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