Searched refs:target_operation (Results 1 – 9 of 9) sorted by relevance
/openthread-latest/third_party/mbedtls/repo/library/ |
D | psa_crypto_hash.c | 184 mbedtls_psa_hash_operation_t *target_operation) in mbedtls_psa_hash_clone() argument 191 mbedtls_md5_clone(&target_operation->ctx.md5, in mbedtls_psa_hash_clone() 197 mbedtls_ripemd160_clone(&target_operation->ctx.ripemd160, in mbedtls_psa_hash_clone() 203 mbedtls_sha1_clone(&target_operation->ctx.sha1, in mbedtls_psa_hash_clone() 209 mbedtls_sha256_clone(&target_operation->ctx.sha256, in mbedtls_psa_hash_clone() 215 mbedtls_sha256_clone(&target_operation->ctx.sha256, in mbedtls_psa_hash_clone() 221 mbedtls_sha512_clone(&target_operation->ctx.sha512, in mbedtls_psa_hash_clone() 227 mbedtls_sha512_clone(&target_operation->ctx.sha512, in mbedtls_psa_hash_clone() 247 mbedtls_sha3_clone(&target_operation->ctx.sha3, in mbedtls_psa_hash_clone() 253 (void) target_operation; in mbedtls_psa_hash_clone() [all …]
|
D | psa_crypto_hash.h | 114 mbedtls_psa_hash_operation_t *target_operation);
|
D | psa_crypto_driver_wrappers.h | 1619 psa_hash_operation_t *target_operation ) in psa_driver_wrapper_hash_clone() argument 1625 target_operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID; in psa_driver_wrapper_hash_clone() 1627 &target_operation->ctx.mbedtls_ctx ) ); in psa_driver_wrapper_hash_clone() 1631 target_operation->id = MBEDTLS_TEST_TRANSPARENT_DRIVER_ID; in psa_driver_wrapper_hash_clone() 1634 &target_operation->ctx.test_driver_ctx ) ); in psa_driver_wrapper_hash_clone() 1637 (void) target_operation; in psa_driver_wrapper_hash_clone()
|
D | psa_crypto.c | 2497 psa_hash_operation_t *target_operation) in psa_hash_clone() argument 2500 target_operation->id != 0) { in psa_hash_clone() 2505 target_operation); in psa_hash_clone() 2507 psa_hash_abort(target_operation); in psa_hash_clone()
|
/openthread-latest/third_party/mbedtls/repo/tests/src/drivers/ |
D | hash.c | 87 mbedtls_transparent_test_driver_hash_operation_t *target_operation) in mbedtls_test_transparent_hash_clone() argument 99 target_operation); in mbedtls_test_transparent_hash_clone() 102 mbedtls_psa_hash_clone(source_operation, target_operation); in mbedtls_test_transparent_hash_clone() 105 (void) target_operation; in mbedtls_test_transparent_hash_clone()
|
/openthread-latest/third_party/mbedtls/repo/tests/include/test/drivers/ |
D | hash.h | 47 mbedtls_transparent_test_driver_hash_operation_t *target_operation);
|
/openthread-latest/third_party/mbedtls/repo/include/psa/ |
D | crypto.h | 1161 psa_hash_operation_t *target_operation);
|
/openthread-latest/third_party/mbedtls/repo/scripts/data_files/driver_templates/ |
D | psa_crypto_driver_wrappers.h.jinja | 1582 psa_hash_operation_t *target_operation ) 1588 target_operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID; 1590 &target_operation->ctx.mbedtls_ctx ) ); 1594 target_operation->id = MBEDTLS_TEST_TRANSPARENT_DRIVER_ID; 1597 &target_operation->ctx.test_driver_ctx ) ); 1600 (void) target_operation;
|
/openthread-latest/third_party/mbedtls/repo/tests/suites/ |
D | test_suite_psa_crypto_driver_wrappers.function | 2434 psa_hash_operation_t target_operation = PSA_HASH_OPERATION_INIT; 2446 TEST_EQUAL(psa_hash_clone(&source_operation, &target_operation), 2455 TEST_EQUAL(psa_hash_clone(&source_operation, &target_operation), 2463 PSA_ASSERT(psa_hash_update(&target_operation, 2468 PSA_ASSERT(psa_hash_finish(&target_operation, 2479 psa_hash_abort(&target_operation);
|