blob: 426f2ca5c4b3bc81612fc5399a7e61c1170299b4 [file] [log] [blame]
Patrick Williams7784c422022-11-17 07:29:11 -06001From cf83184500703f9b4f2ac04be59cc7d624d8fd66 Mon Sep 17 00:00:00 2001
Patrick Williams975a06f2022-10-21 14:42:47 -05002From: Satish Kumar <satish.kumar01@arm.com>
3Date: Sun, 13 Feb 2022 09:01:10 +0000
Patrick Williams7784c422022-11-17 07:29:11 -06004Subject: [PATCH 15/20] Fix: Crypto interface structure aligned with tf-m
Patrick Williams975a06f2022-10-21 14:42:47 -05005 change.
6
7NO NEED TO RAISE PR: The PR for this FIX is raied by Emek.
8
9Upstream-Status: Pending
10Signed-off-by: Rui Miguel Silva <rui.silva@linaro.org>
11---
12 components/service/crypto/backend/psa_ipc/crypto_ipc_backend.h | 3 ++-
13 1 file changed, 2 insertions(+), 1 deletion(-)
14
15diff --git a/components/service/crypto/backend/psa_ipc/crypto_ipc_backend.h b/components/service/crypto/backend/psa_ipc/crypto_ipc_backend.h
16index c13c20e84131..ec25eaf868c7 100644
17--- a/components/service/crypto/backend/psa_ipc/crypto_ipc_backend.h
18+++ b/components/service/crypto/backend/psa_ipc/crypto_ipc_backend.h
19@@ -38,7 +38,8 @@ struct psa_ipc_crypto_pack_iovec {
20 * multipart operation
21 */
22 uint32_t capacity; /*!< Key derivation capacity */
23-
24+ uint32_t ad_length; /*!< Additional Data length for multipart AEAD */
25+ uint32_t plaintext_length; /*!< Plaintext length for multipart AEAD */
26 struct psa_ipc_crypto_aead_pack_input aead_in; /*!< FixMe: Temporarily used for
27 * AEAD until the API is
28 * restructured
29--
Patrick Williams7784c422022-11-17 07:29:11 -0600302.38.1
Patrick Williams975a06f2022-10-21 14:42:47 -050031