From 623c09a1ebe6f4e0f778f0607f887c62b14214b6 Mon Sep 17 00:00:00 2001 From: Paul Elliott Date: Thu, 1 Aug 2024 18:16:35 +0100 Subject: [PATCH] Change over to psa_raw_key_agreement psa_key_agreement exists, but only in the PSA spec, we have not implemented it, so refer to the one we actually implemented. Signed-off-by: Paul Elliott --- tf-psa-crypto/include/psa/crypto.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tf-psa-crypto/include/psa/crypto.h b/tf-psa-crypto/include/psa/crypto.h index f90ea4ca1..17a39c345 100644 --- a/tf-psa-crypto/include/psa/crypto.h +++ b/tf-psa-crypto/include/psa/crypto.h @@ -4889,7 +4889,7 @@ uint32_t psa_key_agreement_iop_get_num_ops(psa_key_agreement_iop_t *operation); * * \note This function combined with \c * psa_key_agreement_iop_complete() is equivalent - * to \c psa_key_agreement() but \c + * to \c psa_raw_key_agreement() but \c * psa_key_agreement_iop_complete() can return * early and resume according to the limit set with * \c psa_interruptible_set_max_ops() to reduce the @@ -5047,7 +5047,7 @@ psa_status_t psa_key_agreement_iop_setup( * * \note This function combined with \c * psa_key_agreement_iop_setup() is equivalent to - * \c psa_key_agreement() but this + * \c psa_raw_key_agreement() but this * function can return early and resume according * to the limit set with \c * psa_interruptible_set_max_ops() to reduce the