Remove surplus parentheses

Signed-off-by: Ben Taylor <ben.taylor@linaro.org>

This is a manual backport, not a direct cherry-pick, because the 3.6 PAKE macros retain a direct PSA_ALG_JPAKE comparison where the source branch adjusted a PSA_ALG_IS_JPAKE call.

(cherry picked from commit 733ed07f29144ee9b99165e36eaf9b9b69317834)
This commit is contained in:
Ben Taylor 2026-03-17 08:30:48 +00:00
parent aacb344f31
commit d76aeff750

View File

@ -5019,7 +5019,7 @@ int mbedtls_ecp_mod_p192_raw(mbedtls_mpi_uint *Np, size_t Nn)
#else /* 64 bit */
#define MAX32 ((X_limbs) * 2)
#define MAX32 (X_limbs * 2)
#define A(j) \
(j) % 2 ? \
(uint32_t) (X[(j) / 2] >> 32) : \