Searched refs:target_operation (Results 1 – 9 of 9) sorted by relevance
/mbedtls-latest/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_driver_wrappers.h | 1843 psa_hash_operation_t *target_operation ) in psa_driver_wrapper_hash_clone() argument 1849 target_operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID; in psa_driver_wrapper_hash_clone() 1851 &target_operation->ctx.mbedtls_ctx ) ); in psa_driver_wrapper_hash_clone() 1856 target_operation->id = MBEDTLS_TEST_TRANSPARENT_DRIVER_ID; in psa_driver_wrapper_hash_clone() 1859 &target_operation->ctx.test_driver_ctx ) ); in psa_driver_wrapper_hash_clone() 1863 target_operation->id = PSA_CRYPTO_CC3XX_DRIVER_ID; in psa_driver_wrapper_hash_clone() 1866 &target_operation->ctx.cc3xx_driver_ctx ) ); in psa_driver_wrapper_hash_clone() 1871 (void) target_operation; in psa_driver_wrapper_hash_clone()
|
D | psa_crypto_hash.h | 114 mbedtls_psa_hash_operation_t *target_operation);
|
D | psa_crypto.c | 2553 psa_hash_operation_t *target_operation) argument 2556 target_operation->id != 0) { 2561 target_operation); 2563 psa_hash_abort(target_operation);
|
/mbedtls-latest/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()
|
/mbedtls-latest/tests/include/test/drivers/ |
D | hash.h | 47 mbedtls_transparent_test_driver_hash_operation_t *target_operation);
|
/mbedtls-latest/scripts/data_files/driver_templates/ |
D | psa_crypto_driver_wrappers.h.jinja | 1583 psa_hash_operation_t *target_operation ) 1589 target_operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID; 1591 &target_operation->ctx.mbedtls_ctx ) ); 1595 target_operation->id = MBEDTLS_TEST_TRANSPARENT_DRIVER_ID; 1598 &target_operation->ctx.test_driver_ctx ) ); 1601 (void) target_operation;
|
/mbedtls-latest/include/psa/ |
D | crypto.h | 1164 psa_hash_operation_t *target_operation);
|
/mbedtls-latest/tests/suites/ |
D | test_suite_psa_crypto_driver_wrappers.function | 2450 psa_hash_operation_t target_operation = PSA_HASH_OPERATION_INIT; 2462 TEST_EQUAL(psa_hash_clone(&source_operation, &target_operation), 2471 TEST_EQUAL(psa_hash_clone(&source_operation, &target_operation), 2479 PSA_ASSERT(psa_hash_update(&target_operation, 2484 PSA_ASSERT(psa_hash_finish(&target_operation, 2495 psa_hash_abort(&target_operation);
|