mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-01-01 09:10:03 +00:00
Remove volatile from declaration
Use of volatile is more an internal implementation detail (ensuring const-time) than part of the contract (the caller doesn't care about volatile as such). Signed-off-by: Janos Follath <janos.follath@arm.com>
This commit is contained in:
parent
d6df0a5dac
commit
adb9d2d822
@ -856,13 +856,14 @@ mbedtls_mpi_uint mbedtls_mpi_core_sub_int(mbedtls_mpi_uint *X,
|
||||
return c;
|
||||
}
|
||||
|
||||
mbedtls_ct_condition_t mbedtls_mpi_core_check_zero_ct(volatile const mbedtls_mpi_uint *A,
|
||||
mbedtls_ct_condition_t mbedtls_mpi_core_check_zero_ct(const mbedtls_mpi_uint *A,
|
||||
size_t limbs)
|
||||
{
|
||||
volatile const mbedtls_mpi_uint* force_read_A = A;
|
||||
mbedtls_mpi_uint bits = 0;
|
||||
|
||||
for (size_t i = 0; i < limbs; i++) {
|
||||
bits |= A[i];
|
||||
bits |= force_read_A[i];
|
||||
}
|
||||
|
||||
return mbedtls_ct_bool(bits);
|
||||
|
@ -665,7 +665,7 @@ mbedtls_mpi_uint mbedtls_mpi_core_sub_int(mbedtls_mpi_uint *X,
|
||||
* \return MBEDTLS_CT_FALSE if `A == 0`
|
||||
* MBEDTLS_CT_TRUE if `A != 0`.
|
||||
*/
|
||||
mbedtls_ct_condition_t mbedtls_mpi_core_check_zero_ct(volatile const mbedtls_mpi_uint *A,
|
||||
mbedtls_ct_condition_t mbedtls_mpi_core_check_zero_ct(const mbedtls_mpi_uint *A,
|
||||
size_t limbs);
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user