From 191b8cb03a58121bd8807948262bb5bc5fb363e3 Mon Sep 17 00:00:00 2001 From: Ben Taylor Date: Tue, 17 Mar 2026 08:34:15 +0000 Subject: [PATCH] Correct code style Signed-off-by: Ben Taylor (cherry picked from commit ef8c07b36af416958079e8f783e14c5330a27791) --- include/psa/crypto_extra.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/psa/crypto_extra.h b/include/psa/crypto_extra.h index 9f0438357e..8b7274ec0c 100644 --- a/include/psa/crypto_extra.h +++ b/include/psa/crypto_extra.h @@ -1172,7 +1172,7 @@ typedef uint32_t psa_pake_primitive_t; #define PSA_PAKE_OUTPUT_SIZE(alg, primitive, output_step) \ ((alg) == PSA_ALG_JPAKE && \ (primitive) == PSA_PAKE_PRIMITIVE(PSA_PAKE_PRIMITIVE_TYPE_ECC, \ - PSA_ECC_FAMILY_SECP_R1, 256) ? \ + PSA_ECC_FAMILY_SECP_R1, 256) ? \ ( \ (output_step) == PSA_PAKE_STEP_KEY_SHARE ? 65 : \ (output_step) == PSA_PAKE_STEP_ZK_PUBLIC ? 65 : \ @@ -1202,7 +1202,7 @@ typedef uint32_t psa_pake_primitive_t; #define PSA_PAKE_INPUT_SIZE(alg, primitive, input_step) \ ((alg) == PSA_ALG_JPAKE && \ (primitive) == PSA_PAKE_PRIMITIVE(PSA_PAKE_PRIMITIVE_TYPE_ECC, \ - PSA_ECC_FAMILY_SECP_R1, 256) ? \ + PSA_ECC_FAMILY_SECP_R1, 256) ? \ ( \ (input_step) == PSA_PAKE_STEP_KEY_SHARE ? 65 : \ (input_step) == PSA_PAKE_STEP_ZK_PUBLIC ? 65 : \