From 6a12a7704d0429fdab96c15d6f7ab69cb50d1b2c Mon Sep 17 00:00:00 2001 From: Neil Armstrong Date: Wed, 14 Sep 2022 12:17:42 +0200 Subject: [PATCH] Fix typo in comment Signed-off-by: Neil Armstrong --- library/psa_crypto_pake.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/psa_crypto_pake.c b/library/psa_crypto_pake.c index 9c8eebb29..10d3e4a1b 100644 --- a/library/psa_crypto_pake.c +++ b/library/psa_crypto_pake.c @@ -407,7 +407,7 @@ psa_status_t psa_pake_output( psa_pake_operation_t *operation, * The PSA CRYPTO PAKE and MbedTLS JPAKE API have a different * handling of output sequencing. * - * The MbedTLS JPAKE API outputs the whole X1+X2 anf X2S steps data + * The MbedTLS JPAKE API outputs the whole X1+X2 and X2S steps data * at once, on the other side the PSA CRYPTO PAKE api requires * the KEY_SHARE/ZP_PUBLIC/ZK_PROOF parts of X1, X2 & X2S to be * retrieved in sequence.