Home
last modified time | relevance | path

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

/third_party/mbedtls/library/
Dconstant_time.c554 #define PSA_CHK(func_call) \ in mbedtls_ct_hmac() macro
566 PSA_CHK(psa_export_key(key, key_buf, block_size, &mac_key_length)); in mbedtls_ct_hmac()
576 PSA_CHK(psa_hash_setup(&operation, hash_alg)); in mbedtls_ct_hmac()
579 PSA_CHK(psa_hash_update(&operation, key_buf, block_size)); in mbedtls_ct_hmac()
580 PSA_CHK(psa_hash_update(&operation, add_data, add_data_len)); in mbedtls_ct_hmac()
581 PSA_CHK(psa_hash_update(&operation, data, min_data_len)); in mbedtls_ct_hmac()
591 PSA_CHK(psa_hash_clone(&operation, &aux_operation)); in mbedtls_ct_hmac()
592 PSA_CHK(psa_hash_finish(&aux_operation, aux_out, in mbedtls_ct_hmac()
599 PSA_CHK(psa_hash_update(&operation, data + offset, 1)); in mbedtls_ct_hmac()
604 PSA_CHK(psa_hash_abort(&operation)); in mbedtls_ct_hmac()
[all …]