Searched refs:psa_hash_update (Results 1 – 12 of 12) sorted by relevance
/openthread-3.5.0/third_party/mbedtls/repo/tests/suites/ |
D | test_suite_psa_crypto_hash.function | 23 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,
|
D | test_suite_psa_crypto_driver_wrappers.function | 1596 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,
|
D | test_suite_psa_crypto.function | 1513 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.5.0/third_party/mbedtls/repo/tests/include/spe/ |
D | crypto_spe.h | 93 #define psa_hash_update \ macro 94 PSA_FUNCTION_NAME(psa_hash_update)
|
/openthread-3.5.0/third_party/mbedtls/repo/library/ |
D | psa_crypto_mac.c | 98 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()
|
D | x509write_csr.c | 224 if( psa_hash_update( &hash_operation, c, len ) != PSA_SUCCESS ) in x509write_csr_der_internal()
|
D | ssl_tls.c | 3058 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()
|
D | x509_crt.c | 2445 if( psa_hash_update( &hash_operation, child->tbs.p, child->tbs.len ) in x509_crt_check_signature()
|
D | psa_crypto.c | 2187 psa_status_t psa_hash_update( psa_hash_operation_t *operation, in psa_hash_update() function
|
/openthread-3.5.0/third_party/mbedtls/repo/include/psa/ |
D | crypto.h | 1037 psa_status_t psa_hash_update(psa_hash_operation_t *operation,
|
/openthread-3.5.0/third_party/mbedtls/repo/docs/ |
D | getting_started.md | 389 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.5.0/third_party/mbedtls/repo/docs/proposed/ |
D | psa-driver-interface.md | 254 * `"hash_update"`: called by `psa_hash_update()`.
|