Home
last modified time | relevance | path

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

/openthread-3.6.0/third_party/mbedtls/repo/tests/suites/
Dtest_suite_psa_crypto_hash.function23 PSA_ASSERT( psa_hash_update( &operation,
46 PSA_ASSERT( psa_hash_update( &operation,
76 PSA_ASSERT( psa_hash_update( &operation,
79 PSA_ASSERT( psa_hash_update( &operation,
81 PSA_ASSERT( psa_hash_update( &operation2,
Dtest_suite_psa_crypto_driver_wrappers.function1596 PSA_ASSERT( psa_hash_update( &operation, input->x, input->len ) );
1638 TEST_EQUAL( psa_hash_update( &operation, input->x, input->len ),
1647 TEST_EQUAL( psa_hash_update( &operation, input->x, input->len ),
1703 PSA_ASSERT( psa_hash_update( &operation, input->x, input->len ) );
1765 PSA_ASSERT( psa_hash_update( &target_operation,
Dtest_suite_psa_crypto.function1513 TEST_EQUAL( psa_hash_update( &func, input, sizeof( input ) ),
1515 TEST_EQUAL( psa_hash_update( &init, input, sizeof( input ) ),
1517 TEST_EQUAL( psa_hash_update( &zero, input, sizeof( input ) ),
1689 TEST_EQUAL( psa_hash_update( &operation, input, sizeof( input ) ),
1697 TEST_EQUAL( psa_hash_update( &operation, input, sizeof( input ) ),
1707 TEST_EQUAL( psa_hash_update( &operation, input, sizeof( input ) ),
/openthread-3.6.0/third_party/mbedtls/repo/tests/include/spe/
Dcrypto_spe.h93 #define psa_hash_update \ macro
94 PSA_FUNCTION_NAME(psa_hash_update)
/openthread-3.6.0/third_party/mbedtls/repo/library/
Dpsa_crypto_mac.c98 status = psa_hash_update( &hmac->hash_ctx, ipad, block_size ); in psa_hmac_setup_internal()
111 return( psa_hash_update( &hmac->hash_ctx, data, data_length ) ); in psa_hmac_update_internal()
134 status = psa_hash_update( &hmac->hash_ctx, hmac->opad, block_size ); in psa_hmac_finish_internal()
138 status = psa_hash_update( &hmac->hash_ctx, tmp, hash_size ); in psa_hmac_finish_internal()
Dx509write_csr.c224 if( psa_hash_update( &hash_operation, c, len ) != PSA_SUCCESS ) in x509write_csr_der_internal()
Dssl_tls.c3058 psa_hash_update( &ssl->handshake->fin_sha256_psa, buf, len ); in ssl_update_checksum_start()
3065 psa_hash_update( &ssl->handshake->fin_sha384_psa, buf, len ); in ssl_update_checksum_start()
3089 psa_hash_update( &ssl->handshake->fin_sha256_psa, buf, len ); in ssl_update_checksum_sha256()
3101 psa_hash_update( &ssl->handshake->fin_sha384_psa, buf, len ); in ssl_update_checksum_sha384()
7587 if( ( status = psa_hash_update( &hash_operation, ssl->handshake->randbytes, in mbedtls_ssl_get_key_exchange_md_tls1_2()
7594 if( ( status = psa_hash_update( &hash_operation, in mbedtls_ssl_get_key_exchange_md_tls1_2()
Dx509_crt.c2445 if( psa_hash_update( &hash_operation, child->tbs.p, child->tbs.len ) in x509_crt_check_signature()
Dpsa_crypto.c2187 psa_status_t psa_hash_update( psa_hash_operation_t *operation, in psa_hash_update() function
/openthread-3.6.0/third_party/mbedtls/repo/include/psa/
Dcrypto.h1037 psa_status_t psa_hash_update(psa_hash_operation_t *operation,
/openthread-3.6.0/third_party/mbedtls/repo/docs/
Dgetting_started.md389 1. Call `psa_hash_update()` with the message to encrypt. You may call this function multiple times,…
417 status = psa_hash_update(&operation, input, sizeof(input));
466 status = psa_hash_update(&operation, input, sizeof(input));
492 1. A call to `psa_hash_update()` fails (returning any status other than `PSA_SUCCESS`).
/openthread-3.6.0/third_party/mbedtls/repo/docs/proposed/
Dpsa-driver-interface.md254 * `"hash_update"`: called by `psa_hash_update()`.