Correct code style

Signed-off-by: Ben Taylor <ben.taylor@linaro.org>
(cherry picked from commit ef8c07b36af416958079e8f783e14c5330a27791)
This commit is contained in:
Ben Taylor 2026-03-17 08:34:15 +00:00
parent d76aeff750
commit 191b8cb03a

View File

@ -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 : \