Home
last modified time | relevance | path

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

/third_party/mbedtls/tests/include/spe/
Dcrypto_spe.h97 #define psa_hash_verify \ macro
98 PSA_FUNCTION_NAME(psa_hash_verify)
/third_party/mbedtls/tests/suites/
Dtest_suite_psa_crypto_hash.function49 PSA_ASSERT( psa_hash_verify( &operation,
Dtest_suite_psa_crypto.function1985 TEST_EQUAL( psa_hash_verify( &operation,
1994 TEST_EQUAL( psa_hash_verify( &operation,
2002 PSA_ASSERT( psa_hash_verify( &operation,
2005 TEST_EQUAL( psa_hash_verify( &operation,
2028 PSA_ASSERT( psa_hash_verify( &operation,
2055 /* psa_hash_verify with a smaller hash than expected */
2058 TEST_EQUAL( psa_hash_verify( &operation, hash, expected_size - 1 ),
2064 /* psa_hash_verify with a non-matching hash */
2066 TEST_EQUAL( psa_hash_verify( &operation, hash + 1, expected_size ),
2069 /* psa_hash_verify with a hash longer than expected */
[all …]
/third_party/mbedtls/include/psa/
Dcrypto.h1114 psa_status_t psa_hash_verify(psa_hash_operation_t *operation,
/third_party/mbedtls/docs/
Dgetting_started.md390 1. Call `psa_hash_finish()` to calculate the hash, or `psa_hash_verify()` to compare the computed h…
471 status = psa_hash_verify(&operation, expected_hash, expected_hash_len);
494 1. A call to `psa_hash_verify()` succeeds or fails.
/third_party/mbedtls/docs/proposed/
Dpsa-driver-interface.md255 * `"hash_finish"`: called by `psa_hash_finish()` and `psa_hash_verify()`.
258 To verify a hash with `psa_hash_verify()`, the core calls the driver's *prefix*`_hash_finish` entry…
/third_party/mbedtls/library/
Dpsa_crypto.c2188 psa_status_t psa_hash_verify( psa_hash_operation_t *operation, in psa_hash_verify() function