Searched refs:psa_hash_finish (Results 1 - 12 of 12) sorted by relevance
/third_party/mbedtls/tests/include/spe/ |
H A D | crypto_spe.h | 106 #define psa_hash_finish \ macro 107 PSA_FUNCTION_NAME(psa_hash_finish)
|
/third_party/mbedtls/library/ |
H A D | lmots.c | 163 status = psa_hash_finish(&op, out, in create_digit_array_with_checksum() 278 status = psa_hash_finish(&op, tmp_hash, sizeof(tmp_hash), in hash_digit_array() 351 status = psa_hash_finish(&op, pub_key, in public_key_from_hashed_digit_array() 631 status = psa_hash_finish(&op, in mbedtls_lmots_generate_private_key()
|
H A D | psa_crypto_mac.c | 122 status = psa_hash_finish(&hmac->hash_ctx, tmp, sizeof(tmp), &hash_size); in psa_hmac_finish_internal() 143 status = psa_hash_finish(&hmac->hash_ctx, tmp, sizeof(tmp), &hash_size); in psa_hmac_finish_internal()
|
H A D | lms.c | 133 status = psa_hash_finish(&op, out, MBEDTLS_LMS_M_NODE_BYTES(params->type), in create_merkle_leaf_value() 213 status = psa_hash_finish(&op, out, MBEDTLS_LMS_M_NODE_BYTES(params->type), in create_merkle_internal_value()
|
H A D | md.c | 638 psa_status_t status = psa_hash_finish(ctx->md_ctx, in mbedtls_md_finish()
|
H A D | ssl_msg.c | 142 PSA_CHK(psa_hash_finish(&aux_operation, aux_out, in mbedtls_ct_hmac() 168 PSA_CHK(psa_hash_finish(&operation, output, hash_size, &hash_length)); in mbedtls_ct_hmac()
|
H A D | ssl_tls.c | 6447 status = psa_hash_finish(&hash_operation, dst, dst_len, olen); in mbedtls_ssl_get_handshake_transcript() 7304 status = psa_hash_finish(&cloned_op, hash, buffer_size, hlen); in ssl_calc_verify_tls_psa() 8358 status = psa_hash_finish(&cloned_op, padbuf, hlen, &hash_size); in ssl_calc_finished_tls_generic() 9356 if ((status = psa_hash_finish(&hash_operation, hash, PSA_HASH_MAX_SIZE, in mbedtls_ssl_get_key_exchange_md_tls1_2() 9358 MBEDTLS_SSL_DEBUG_RET(1, "psa_hash_finish", status); in mbedtls_ssl_get_key_exchange_md_tls1_2()
|
H A D | psa_crypto.c | 2371 psa_status_t psa_hash_finish(psa_hash_operation_t *operation, in psa_hash_finish() function
|
/third_party/mbedtls/programs/psa/ |
H A D | psa_hash.c | 7 * psa_hash_finish(). The multi-part operation is popular on embedded 97 status = psa_hash_finish(&hash_operation, hash, sizeof(hash), &hash_length); in main() 99 mbedtls_printf("psa_hash_finish failed\n"); in main()
|
/third_party/mbedtls/include/psa/ |
H A D | crypto.h | 953 * -# To calculate the hash, call psa_hash_finish(). 964 * - A successful call to psa_hash_finish() or psa_hash_verify(). 1061 psa_status_t psa_hash_finish(psa_hash_operation_t *operation, 1117 * terminated by a call to psa_hash_abort(), psa_hash_finish() or 2950 * and psa_hash_finish(), or alternatively by calling psa_hash_compute(). 3004 * and psa_hash_finish(), or alternatively by calling psa_hash_compute().
|
/third_party/mbedtls/tests/include/test/ |
H A D | psa_test_wrappers.h | 399 #define psa_hash_finish(arg0_operation, arg1_hash, arg2_hash_size, arg3_hash_length) \ macro
|
/third_party/mbedtls/tests/src/ |
H A D | psa_test_wrappers.c | 687 /* Wrapper for psa_hash_finish */ 697 psa_status_t status = (psa_hash_finish)(arg0_operation, arg1_hash, arg2_hash_size, arg3_hash_length); in mbedtls_test_wrap_psa_hash_finish()
|
Completed in 39 milliseconds