Home
last modified time | relevance | path

Searched refs:PSA_ALG_HKDF (Results 1 – 8 of 8) sorted by relevance

/trusted-firmware-m-3.7.0/platform/ext/target/arm/rse/common/
Dcrypto_keys.c39 *algorithm = PSA_ALG_HKDF(PSA_ALG_SHA_256); in tfm_plat_get_huk()
74 psa_set_key_algorithm(&seed_attributes, PSA_ALG_HKDF(PSA_ALG_SHA_256)); in tfm_plat_get_iak()
83 status = psa_key_derivation_setup(&op, PSA_ALG_HKDF(PSA_ALG_SHA_256)); in tfm_plat_get_iak()
169 *algorithm = PSA_ALG_HKDF(PSA_ALG_SHA_256); in tfm_plat_get_dak_seed()
196 *algorithm = PSA_ALG_HKDF(PSA_ALG_SHA_256); in tfm_plat_get_rot_cdi()
/trusted-firmware-m-3.7.0/platform/ext/target/arm/mps4/corstone315/
Dcrypto_keys.c38 *algorithm = PSA_ALG_HKDF(PSA_ALG_SHA_256); in tfm_plat_get_huk()
73 psa_set_key_algorithm(&seed_attributes, PSA_ALG_HKDF(PSA_ALG_SHA_256)); in tfm_plat_get_iak()
82 status = psa_key_derivation_setup(&op, PSA_ALG_HKDF(PSA_ALG_SHA_256)); in tfm_plat_get_iak()
/trusted-firmware-m-3.7.0/platform/ext/target/arm/rse/common/cpak_generator/
Dcpak_generator.c123 psa_set_key_algorithm(&seed_attributes, PSA_ALG_HKDF(PSA_ALG_SHA_256)); in derive_key()
132 status = psa_key_derivation_setup(&op, PSA_ALG_HKDF(PSA_ALG_SHA_256)); in derive_key()
/trusted-firmware-m-3.7.0/platform/ext/common/template/
Dcrypto_keys.c47 *algorithm = PSA_ALG_HKDF(PSA_ALG_SHA_256); in tfm_plat_get_huk()
/trusted-firmware-m-3.7.0/secure_fw/partitions/crypto/psa_driver_api/
Dtfm_builtin_key_loader.c146 psa_set_key_algorithm(&input_key_attr, PSA_ALG_HKDF(PSA_ALG_SHA_256)); in derive_subkey_into_buffer()
153 status = psa_key_derivation_setup(&deriv_ops, PSA_ALG_HKDF(PSA_ALG_SHA_256)); in derive_subkey_into_buffer()
/trusted-firmware-m-3.7.0/secure_fw/partitions/protected_storage/crypto/
Dps_crypto_interface.c76 status = psa_key_derivation_setup(&op, PSA_ALG_HKDF(PSA_ALG_SHA_256)); in ps_crypto_setkey()
/trusted-firmware-m-3.7.0/docs/design_docs/services/
Dps_key_management.rst46 status = psa_key_derivation_setup(&op, PSA_ALG_HKDF(PSA_ALG_SHA_256));
/trusted-firmware-m-3.7.0/interface/include/psa/
Dcrypto_values.h1820 #define PSA_ALG_HKDF(hash_alg) \ macro