blob: a8f5559d106b3a0936cbc4de59b8d1615b7b6494 [file] [log] [blame]
Patrick Williams975a06f2022-10-21 14:42:47 -05001From 3cc9c417f12f005244530d8d706a6b7f3be35627 Mon Sep 17 00:00:00 2001
2From: Satish Kumar <satish.kumar01@arm.com>
3Date: Sun, 13 Feb 2022 09:01:10 +0000
4Subject: [PATCH 15/19] Fix: Crypto interface structure aligned with tf-m
5 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--
302.38.0
31