From 7d43f110189b34d390a1ba7649da36b61ce42214 Mon Sep 17 00:00:00 2001 From: Tomi Fontanilles Date: Fri, 10 Apr 2026 11:49:30 +0300 Subject: [PATCH] [nrf fromtree] secure_storage: its_transform: aead: enable PSA_CRYPTO This implementation relies on PSA Crypto. Make sure it's enabled. Signed-off-by: Tomi Fontanilles (cherry picked from commit 6b1d0f010bb7efea8deb0b46b397d3172d4cc964) --- subsys/secure_storage/Kconfig.its_transform | 1 + 1 file changed, 1 insertion(+) diff --git a/subsys/secure_storage/Kconfig.its_transform b/subsys/secure_storage/Kconfig.its_transform index 1b073a08aab5..f8008353616b 100644 --- a/subsys/secure_storage/Kconfig.its_transform +++ b/subsys/secure_storage/Kconfig.its_transform @@ -6,6 +6,7 @@ choice SECURE_STORAGE_ITS_TRANSFORM_IMPLEMENTATION config SECURE_STORAGE_ITS_TRANSFORM_IMPLEMENTATION_AEAD bool "ITS transform module implementation using AEAD to protect the data" + select PSA_CRYPTO imply HWINFO # for HWINFO_HAS_DRIVER config SECURE_STORAGE_ITS_TRANSFORM_IMPLEMENTATION_CUSTOM