From f75be64ef555f63f7b5bf4863f00d652f2300483 Mon Sep 17 00:00:00 2001 From: Janos Follath Date: Fri, 30 Apr 2021 13:11:05 +0100 Subject: [PATCH] PSA PAKE: fix identifier value Identifier value was not consistent with PSA conventions (last byte is reserved for hash algorithms or used in algorithms parametrized by a hash). Signed-off-by: Janos Follath --- include/psa/crypto_values.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/psa/crypto_values.h b/include/psa/crypto_values.h index 78d431b9be..a243370817 100644 --- a/include/psa/crypto_values.h +++ b/include/psa/crypto_values.h @@ -2037,7 +2037,7 @@ * * J-PAKE is standardised for example in RFC 8236. */ -#define PSA_ALG_PAKE_JPAKE ((psa_algorithm_t)0x0a000001) +#define PSA_ALG_PAKE_JPAKE ((psa_algorithm_t)0x0a000100) /**@}*/