Home
last modified time | relevance | path

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

/trusted-firmware-m-3.4.0/lib/ext/cryptocell-312-runtime/host/src/tests/common/
Dtst_perf.h45 #define TST_PERF_END(perfData, op) TST_PerfStatsCycleEnd(perfData, op) argument
56 #define TST_PERF_END(perfData, op) argument
/trusted-firmware-m-3.4.0/secure_fw/partitions/protected_storage/crypto/
Dps_crypto_interface.c60 psa_key_derivation_operation_t op = PSA_KEY_DERIVATION_OPERATION_INIT; in ps_crypto_setkey() local
72 status = psa_key_derivation_setup(&op, PSA_ALG_HKDF(PSA_ALG_SHA_256)); in ps_crypto_setkey()
78 status = psa_key_derivation_input_key(&op, PSA_KEY_DERIVATION_INPUT_SECRET, in ps_crypto_setkey()
85 status = psa_key_derivation_input_bytes(&op, PSA_KEY_DERIVATION_INPUT_INFO, in ps_crypto_setkey()
93 status = psa_key_derivation_output_key(&attributes, &op, &ps_key); in ps_crypto_setkey()
99 status = psa_key_derivation_abort(&op); in ps_crypto_setkey()
110 (void)psa_key_derivation_abort(&op); in ps_crypto_setkey()
/trusted-firmware-m-3.4.0/platform/ext/target/arm/rss/common/cpak_generator/
Dcpak_generator.c129 psa_key_derivation_operation_t op = PSA_KEY_DERIVATION_OPERATION_INIT; in derive_key() local
140 status = psa_key_derivation_setup(&op, PSA_ALG_HKDF(PSA_ALG_SHA_256)); in derive_key()
145 status = psa_key_derivation_input_key(&op, PSA_KEY_DERIVATION_INPUT_SECRET, in derive_key()
151 status = psa_key_derivation_input_bytes(&op, PSA_KEY_DERIVATION_INPUT_INFO, in derive_key()
162 status = psa_key_derivation_output_key(&output_attr, &op, cpak_handle); in derive_key()
167 status = psa_key_derivation_abort(&op); in derive_key()
183 (void)psa_key_derivation_abort(&op); in derive_key()
/trusted-firmware-m-3.4.0/platform/ext/target/arm/rss/common/
Dcrypto_keys.c192 psa_key_derivation_operation_t op = PSA_KEY_DERIVATION_OPERATION_INIT; in tfm_plat_get_iak() local
213 status = psa_key_derivation_setup(&op, PSA_ALG_HKDF(PSA_ALG_SHA_256)); in tfm_plat_get_iak()
218 status = psa_key_derivation_input_key(&op, PSA_KEY_DERIVATION_INPUT_SECRET, in tfm_plat_get_iak()
224 status = psa_key_derivation_input_bytes(&op, PSA_KEY_DERIVATION_INPUT_INFO, in tfm_plat_get_iak()
239 status = psa_key_derivation_output_key(&transient_attr, &op, &transient_key); in tfm_plat_get_iak()
254 status = psa_key_derivation_abort(&op); in tfm_plat_get_iak()
270 (void)psa_key_derivation_abort(&op); in tfm_plat_get_iak()
/trusted-firmware-m-3.4.0/docs/technical_references/design_docs/
Dps_key_management.rst46 status = psa_key_derivation_setup(&op, PSA_ALG_HKDF(PSA_ALG_SHA_256));
49 status = psa_key_derivation_input_key(&op, PSA_KEY_DERIVATION_INPUT_SECRET,
53 status = psa_key_derivation_input_bytes(&op, PSA_KEY_DERIVATION_INPUT_INFO,
58 status = psa_key_derivation_output_key(&attributes, &op, &ps_key);
/trusted-firmware-m-3.4.0/platform/ext/target/nxp/common/Native_Driver/drivers/
Dfsl_iap_kbp.h137 kb_operation_t op; member
/trusted-firmware-m-3.4.0/lib/ext/cryptocell-312-runtime/host/
DMakefile.rules77 CFLAGS += -Wlogical-op
/trusted-firmware-m-3.4.0/lib/ext/cryptocell-312-runtime/codesafe/src/mbedtls_api/
Drsa_alt.c155 static int error_mapping_cc_to_mbedtls_rsa (CCError_t cc_error, CC_RSA_OP op) in error_mapping_cc_to_mbedtls_rsa() argument
160 switch (op) in error_mapping_cc_to_mbedtls_rsa()