Searched refs:target_operation (Results 1 – 10 of 10) sorted by relevance
/mbedtls-3.5.0/library/ |
D | psa_crypto_hash.c | 153 mbedtls_psa_hash_operation_t *target_operation) in mbedtls_psa_hash_clone() argument 160 mbedtls_md5_clone(&target_operation->ctx.md5, in mbedtls_psa_hash_clone() 166 mbedtls_ripemd160_clone(&target_operation->ctx.ripemd160, in mbedtls_psa_hash_clone() 172 mbedtls_sha1_clone(&target_operation->ctx.sha1, in mbedtls_psa_hash_clone() 178 mbedtls_sha256_clone(&target_operation->ctx.sha256, in mbedtls_psa_hash_clone() 184 mbedtls_sha256_clone(&target_operation->ctx.sha256, in mbedtls_psa_hash_clone() 190 mbedtls_sha512_clone(&target_operation->ctx.sha512, in mbedtls_psa_hash_clone() 196 mbedtls_sha512_clone(&target_operation->ctx.sha512, in mbedtls_psa_hash_clone() 202 (void) target_operation; in mbedtls_psa_hash_clone() 206 target_operation->alg = source_operation->alg; in mbedtls_psa_hash_clone()
|
D | psa_crypto_hash.h | 128 mbedtls_psa_hash_operation_t *target_operation);
|
D | psa_crypto_driver_wrappers.c | 1973 psa_hash_operation_t *target_operation ) in psa_driver_wrapper_hash_clone() argument 1980 target_operation->id = MBEDTLS_TEST_TRANSPARENT_DRIVER_ID; in psa_driver_wrapper_hash_clone() 1983 &target_operation->ctx.test_driver_ctx ) ); in psa_driver_wrapper_hash_clone() 1987 target_operation->id = PSA_CRYPTO_CC3XX_DRIVER_ID; in psa_driver_wrapper_hash_clone() 1990 &target_operation->ctx.cc3xx_driver_ctx ) ); in psa_driver_wrapper_hash_clone() 1996 target_operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID; in psa_driver_wrapper_hash_clone() 1998 &target_operation->ctx.mbedtls_ctx ) ); in psa_driver_wrapper_hash_clone() 2001 (void) target_operation; in psa_driver_wrapper_hash_clone()
|
D | psa_crypto_driver_wrappers.h | 228 psa_hash_operation_t *target_operation);
|
D | psa_crypto.c | 2349 psa_hash_operation_t *target_operation) argument 2352 target_operation->id != 0) { 2357 target_operation); 2359 psa_hash_abort(target_operation);
|
/mbedtls-3.5.0/tests/src/drivers/ |
D | hash.c | 99 mbedtls_transparent_test_driver_hash_operation_t *target_operation) in mbedtls_test_transparent_hash_clone() argument 111 target_operation); in mbedtls_test_transparent_hash_clone() 114 mbedtls_psa_hash_clone(source_operation, target_operation); in mbedtls_test_transparent_hash_clone() 117 (void) target_operation; in mbedtls_test_transparent_hash_clone()
|
/mbedtls-3.5.0/tests/include/test/drivers/ |
D | hash.h | 59 mbedtls_transparent_test_driver_hash_operation_t *target_operation);
|
/mbedtls-3.5.0/include/psa/ |
D | crypto.h | 1166 psa_hash_operation_t *target_operation);
|
/mbedtls-3.5.0/scripts/data_files/driver_templates/ |
D | psa_crypto_driver_wrappers.c.jinja | 1692 psa_hash_operation_t *target_operation ) 1698 target_operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID; 1700 &target_operation->ctx.mbedtls_ctx ) ); 1704 target_operation->id = MBEDTLS_TEST_TRANSPARENT_DRIVER_ID; 1707 &target_operation->ctx.test_driver_ctx ) ); 1710 (void) target_operation;
|
/mbedtls-3.5.0/tests/suites/ |
D | test_suite_psa_crypto_driver_wrappers.function | 2431 psa_hash_operation_t target_operation = PSA_HASH_OPERATION_INIT; 2442 TEST_EQUAL(psa_hash_clone(&source_operation, &target_operation), 2451 TEST_EQUAL(psa_hash_clone(&source_operation, &target_operation), 2459 PSA_ASSERT(psa_hash_update(&target_operation, 2464 PSA_ASSERT(psa_hash_finish(&target_operation, 2475 psa_hash_abort(&target_operation);
|