Searched refs:psa_mac_update (Results 1 - 10 of 10) sorted by relevance
/third_party/mbedtls/programs/psa/ |
H A D | hmac_demo.c | 134 PSA_CHECK(psa_mac_update(&op, msg1_part1, sizeof(msg1_part1))); in hmac_demo() 135 PSA_CHECK(psa_mac_update(&op, msg1_part2, sizeof(msg1_part2))); in hmac_demo() 141 PSA_CHECK(psa_mac_update(&op, msg2_part1, sizeof(msg2_part1))); in hmac_demo() 142 PSA_CHECK(psa_mac_update(&op, msg2_part2, sizeof(msg2_part2))); in hmac_demo()
|
/third_party/mbedtls/library/ |
H A D | ssl_cookie.c | 221 status = psa_mac_update(&operation, *p - 4, 4); in mbedtls_ssl_cookie_write() 227 status = psa_mac_update(&operation, cli_id, cli_id_len); in mbedtls_ssl_cookie_write() 305 status = psa_mac_update(&operation, cookie, 4); in mbedtls_ssl_cookie_check() 311 status = psa_mac_update(&operation, cli_id, in mbedtls_ssl_cookie_check()
|
H A D | ssl_msg.c | 1060 status = psa_mac_update(&operation, add_data, add_data_len); in mbedtls_ssl_encrypt_buf() 1065 status = psa_mac_update(&operation, data, rec->data_len); in mbedtls_ssl_encrypt_buf() 1403 status = psa_mac_update(&operation, add_data, add_data_len); in mbedtls_ssl_encrypt_buf() 1408 status = psa_mac_update(&operation, data, rec->data_len); in mbedtls_ssl_encrypt_buf() 1753 status = psa_mac_update(&operation, add_data, add_data_len); in mbedtls_ssl_decrypt_buf() 1758 status = psa_mac_update(&operation, data, rec->data_len); in mbedtls_ssl_decrypt_buf()
|
H A D | psa_crypto.c | 2656 psa_status_t psa_mac_update(psa_mac_operation_t *operation, in psa_mac_update() function 5634 status = psa_mac_update(&hkdf->hmac, in psa_key_derivation_hkdf_read() 5641 status = psa_mac_update(&hkdf->hmac, in psa_key_derivation_hkdf_read() 5647 status = psa_mac_update(&hkdf->hmac, in psa_key_derivation_hkdf_read() 5720 status = psa_mac_update(&hmac, in psa_key_derivation_tls12_prf_generate_next_block() 5726 status = psa_mac_update(&hmac, in psa_key_derivation_tls12_prf_generate_next_block() 5734 status = psa_mac_update(&hmac, tls12_prf->Ai, hash_length); in psa_key_derivation_tls12_prf_generate_next_block() 5758 status = psa_mac_update(&hmac, tls12_prf->Ai, hash_length); in psa_key_derivation_tls12_prf_generate_next_block() 5762 status = psa_mac_update(&hmac, tls12_prf->label, tls12_prf->label_length); in psa_key_derivation_tls12_prf_generate_next_block() 5766 status = psa_mac_update( in psa_key_derivation_tls12_prf_generate_next_block() [all...] |
/third_party/mbedtls/tests/include/spe/ |
H A D | crypto_spe.h | 124 #define psa_mac_update \ macro 125 PSA_FUNCTION_NAME(psa_mac_update)
|
/third_party/mbedtls/include/psa/ |
H A D | crypto.h | 1313 * -# Call psa_mac_update() zero, one or more times, passing a fragment 1373 * -# Call psa_mac_update() zero, one or more times, passing a fragment 1450 psa_status_t psa_mac_update(psa_mac_operation_t *operation, 1458 * the inputs passed to preceding calls to psa_mac_update(). 1509 * the inputs passed to preceding calls to psa_mac_update(). It then
|
/third_party/mbedtls/tests/src/ |
H A D | psa_exercise_key.c | 143 PSA_ASSERT(psa_mac_update(&operation, in exercise_mac_key() 162 PSA_ASSERT(psa_mac_update(&operation, in exercise_mac_key()
|
H A D | psa_test_wrappers.c | 947 /* Wrapper for psa_mac_update */ 956 psa_status_t status = (psa_mac_update)(arg0_operation, arg1_input, arg2_input_length); in mbedtls_test_wrap_psa_mac_update()
|
/third_party/mbedtls/tests/include/test/ |
H A D | psa_test_wrappers.h | 542 #define psa_mac_update(arg0_operation, arg1_input, arg2_input_length) \ macro
|
/third_party/mbedtls/tests/src/test_helpers/ |
H A D | ssl_helpers.c | 1635 TEST_EQUAL(PSA_SUCCESS, psa_mac_update(&operation, add_data, 13)); in mbedtls_test_ssl_prepare_record_mac() 1636 TEST_EQUAL(PSA_SUCCESS, psa_mac_update(&operation, in mbedtls_test_ssl_prepare_record_mac()
|
Completed in 30 milliseconds