mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-02-26 12:39:55 +00:00
Fix for 32-bit
Signed-off-by: Gabor Mezei <gabor.mezei@arm.com>
This commit is contained in:
parent
08a94953e1
commit
620f0dc850
@ -4976,7 +4976,7 @@ int mbedtls_ecp_mod_p192_raw(mbedtls_mpi_uint *Np, size_t Nn)
|
||||
|
||||
#define MAX32 X_limbs
|
||||
#define A(j) X[j]
|
||||
#define STORE32 X[i] = cur;
|
||||
#define STORE32 X[i] = (mbedtls_mpi_uint) cur;
|
||||
#define STORE0 X[i] = 0;
|
||||
|
||||
#else /* 64 bit */
|
||||
|
Loading…
x
Reference in New Issue
Block a user