From e25cb1bcda1de46c92c90a158f37ea75ef2651d7 Mon Sep 17 00:00:00 2001 From: Waleed Elmelegy Date: Wed, 14 Aug 2024 16:55:56 +0100 Subject: [PATCH] Fix formatting issue in psa_key_agreement() documentation Signed-off-by: Waleed Elmelegy --- tf-psa-crypto/include/psa/crypto.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tf-psa-crypto/include/psa/crypto.h b/tf-psa-crypto/include/psa/crypto.h index a07a86b904..aa58033a01 100644 --- a/tf-psa-crypto/include/psa/crypto.h +++ b/tf-psa-crypto/include/psa/crypto.h @@ -4098,11 +4098,11 @@ psa_status_t psa_raw_key_agreement(psa_algorithm_t alg, * This is an attempt to create a persistent key, and there is already * a persistent key with the given identifier. * \retval #PSA_ERROR_INVALID_ARGUMENT - * \p alg is not a key agreement algorithm, or - * \p private_key is not compatible with \p alg, - * or \p peer_key is not valid for \p alg or not compatible with - * \p private_key. - * The output key attributes in \p attributes are not valid: + * * \p alg is not a key agreement algorithm. + * * \p private_key is not compatible with \p alg. + * * \p peer_key is not valid for \p alg or not compatible with + * \p private_key. + * * The output key attributes in \p attributes are not valid: * * The key type is not valid for key agreement output. * * The key size is nonzero, and is not the size of the shared secret. * * The key lifetime is invalid.