Searched refs:psa_hash_clone (Results 1 – 13 of 13) sorted by relevance
/mbedtls-latest/tests/include/spe/ |
D | crypto_spe.h | 100 #define psa_hash_clone \ macro 101 PSA_FUNCTION_NAME(psa_hash_clone)
|
/mbedtls-latest/programs/psa/ |
D | psa_hash.c | 91 status = psa_hash_clone(&hash_operation, &cloned_hash_operation); in main()
|
/mbedtls-latest/tests/suites/ |
D | test_suite_psa_crypto_hash.function | 124 PSA_ASSERT(psa_hash_clone(&operation, &operation2));
|
D | test_suite_psa_crypto.function | 3367 TEST_EQUAL(psa_hash_clone(&op_source, &op_setup), 3370 PSA_ASSERT(psa_hash_clone(&op_source, &op_init)); 3373 PSA_ASSERT(psa_hash_clone(&op_source, &op_finished)); 3376 PSA_ASSERT(psa_hash_clone(&op_source, &op_aborted)); 3411 PSA_ASSERT(psa_hash_clone(&op_setup, &op_target)); 3415 TEST_EQUAL(psa_hash_clone(&op_init, &op_target), PSA_ERROR_BAD_STATE); 3416 TEST_EQUAL(psa_hash_clone(&op_finished, &op_target), 3418 TEST_EQUAL(psa_hash_clone(&op_aborted, &op_target),
|
D | test_suite_psa_crypto_driver_wrappers.function | 2462 TEST_EQUAL(psa_hash_clone(&source_operation, &target_operation), 2471 TEST_EQUAL(psa_hash_clone(&source_operation, &target_operation),
|
/mbedtls-latest/include/psa/ |
D | crypto.h | 1163 psa_status_t psa_hash_clone(const psa_hash_operation_t *source_operation,
|
/mbedtls-latest/library/ |
D | md.c | 353 psa_status_t status = psa_hash_clone(src->md_ctx, dst->md_ctx); in mbedtls_md_clone()
|
D | ssl_tls.c | 6407 status = psa_hash_clone(hash_operation_to_clone, &hash_operation); in mbedtls_ssl_get_handshake_transcript() 7264 status = psa_hash_clone(hs_op, &cloned_op); in ssl_calc_verify_tls_psa() 8130 status = psa_hash_clone(hs_op, &cloned_op); in ssl_calc_finished_tls_generic()
|
D | ssl_msg.c | 141 PSA_CHK(psa_hash_clone(&operation, &aux_operation)); in mbedtls_ct_hmac()
|
D | psa_crypto.c | 2552 psa_status_t psa_hash_clone(const psa_hash_operation_t *source_operation, function
|
/mbedtls-latest/tests/include/test/ |
D | psa_test_wrappers.h | 394 #define psa_hash_clone(arg0_source_operation, arg1_target_operation) \ macro
|
/mbedtls-latest/tests/src/ |
D | psa_test_wrappers.c | 673 psa_status_t status = (psa_hash_clone)(arg0_source_operation, arg1_target_operation); in mbedtls_test_wrap_psa_hash_clone()
|
/mbedtls-latest/docs/ |
D | psa-transition.md | 592 The equivalent of `mbedtls_md_clone` to clone a hash operation is [`psa_hash_clone`](https://mbed-t…
|