Skip to content

Commit

Permalink
nrf_security: Fix decrypt keys location check for nRF54H20
Browse files Browse the repository at this point in the history
The case for PSA_KEY_LOCATION_CRACEN was missing.

Signed-off-by: Artur Hadasz <[email protected]>
  • Loading branch information
ahasztag authored and nordicjm committed Dec 11, 2024
1 parent 7761b16 commit 852345e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions subsys/nrf_security/src/psa_crypto_driver_wrappers.c
Original file line number Diff line number Diff line change
Expand Up @@ -1630,6 +1630,9 @@ psa_status_t psa_driver_wrapper_aead_decrypt_setup(psa_aead_operation_t *operati
#if defined(PSA_CRYPTO_DRIVER_TFM_BUILTIN_KEY_LOADER)
case TFM_BUILTIN_KEY_LOADER_KEY_LOCATION:
#endif /* defined(PSA_CRYPTO_DRIVER_TFM_BUILTIN_KEY_LOADER) */
#if defined(PSA_NEED_CRACEN_PLATFORM_KEYS)
case PSA_KEY_LOCATION_CRACEN:
#endif
#if defined(PSA_NEED_CRACEN_KMU_DRIVER)
case PSA_KEY_LOCATION_CRACEN_KMU:
#endif
Expand Down

0 comments on commit 852345e

Please sign in to comment.