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 <janos.follath@arm.com>
diff --git a/include/psa/crypto_values.h b/include/psa/crypto_values.h
index 78d431b..a243370 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)
 
 /**@}*/