Home
last modified time | relevance | path

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

/mbedtls-latest/tests/suites/
Dtest_suite_psa_crypto_hash.function69 // use psa_mac_verify to compare to expected MAC
70 PSA_ASSERT(psa_mac_verify(key, alg, (uint8_t const *) input, input_len, expected_mac->x,
73 // corrupt the MAC and check that psa_mac_verify fails
75 TEST_EQUAL(psa_mac_verify(key, alg, (uint8_t const *) input, input_len, expected_mac->x,
Dtest_suite_psa_crypto_op_fail.function105 psa_mac_verify(key_id, alg,
Dtest_suite_psa_crypto.function2201 status = psa_mac_verify(key, exercise_alg, input, 128,
3783 PSA_ASSERT(psa_mac_verify(key, alg, input->x, input->len,
3795 TEST_EQUAL(psa_mac_verify(key, alg,
3813 TEST_EQUAL(psa_mac_verify(key, alg,
3832 TEST_EQUAL(psa_mac_verify(key, alg,
Dtest_suite_psa_crypto_driver_wrappers.function2020 status = psa_mac_verify(key, alg,
/mbedtls-latest/include/psa/
Dcrypto.h1255 psa_status_t psa_mac_verify(mbedtls_svc_key_id_t key,
/mbedtls-latest/tests/include/test/
Dpsa_test_wrappers.h584 #define psa_mac_verify(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_mac, arg5_mac_length… macro
/mbedtls-latest/tests/src/
Dpsa_test_wrappers.c1026 …psa_status_t status = (psa_mac_verify)(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_mac… in mbedtls_test_wrap_psa_mac_verify()
/mbedtls-latest/docs/architecture/
Dpsa-crypto-implementation-structure.md50 …ifying a MAC and those that are only capable of computing a MAC, the psa_mac_verify() API could ca…
/mbedtls-latest/docs/proposed/
Dpsa-driver-interface.md222 …MAC. Called by `psa_mac_compute()` and possibly `psa_mac_verify()`. To verify a mac with `psa_mac_…
223 * `"mac_verify"`: verification of a MAC. Called by `psa_mac_verify()`. This entry point is mainly u…
/mbedtls-latest/docs/
Dpsa-transition.md262 * To compare a MAC with a reference value, use `psa_mac_verify` rather than `psa_mac_compute` follo…
584 * [`psa_mac_verify`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/group/group___…
/mbedtls-latest/library/
Dpsa_crypto.c2926 psa_status_t psa_mac_verify(mbedtls_svc_key_id_t key, function
/mbedtls-latest/
DChangeLog1612 operations psa_mac_verify() and psa_mac_verify_setup().
1946 * Implement psa_mac_compute() and psa_mac_verify() as defined in the