Skip to content

Commit 852345e

Browse files
ahasztagnordicjm
authored andcommitted
nrf_security: Fix decrypt keys location check for nRF54H20
The case for PSA_KEY_LOCATION_CRACEN was missing. Signed-off-by: Artur Hadasz <artur.hadasz@nordicsemi.no>
1 parent 7761b16 commit 852345e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

subsys/nrf_security/src/psa_crypto_driver_wrappers.c

+3
Original file line numberDiff line numberDiff line change
@@ -1630,6 +1630,9 @@ psa_status_t psa_driver_wrapper_aead_decrypt_setup(psa_aead_operation_t *operati
16301630
#if defined(PSA_CRYPTO_DRIVER_TFM_BUILTIN_KEY_LOADER)
16311631
case TFM_BUILTIN_KEY_LOADER_KEY_LOCATION:
16321632
#endif /* defined(PSA_CRYPTO_DRIVER_TFM_BUILTIN_KEY_LOADER) */
1633+
#if defined(PSA_NEED_CRACEN_PLATFORM_KEYS)
1634+
case PSA_KEY_LOCATION_CRACEN:
1635+
#endif
16331636
#if defined(PSA_NEED_CRACEN_KMU_DRIVER)
16341637
case PSA_KEY_LOCATION_CRACEN_KMU:
16351638
#endif

0 commit comments

Comments
 (0)