/* Automatically generated by generate_psa_wrappers.py, do not edit! */ /* Copyright The Mbed TLS Contributors * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later */ #if !defined(MBEDTLS_CONFIG_FILE) #include "mbedtls/config.h" #else #include MBEDTLS_CONFIG_FILE #endif #if defined(MBEDTLS_PSA_CRYPTO_C) && defined(MBEDTLS_TEST_HOOKS) && \ !defined(RECORD_PSA_STATUS_COVERAGE_LOG) #include #include #include #include /* Wrapper for mbedtls_psa_inject_entropy */ #if defined(MBEDTLS_PSA_INJECT_ENTROPY) psa_status_t mbedtls_test_wrap_mbedtls_psa_inject_entropy( const uint8_t *arg0_seed, size_t arg1_seed_size) { psa_status_t status = (mbedtls_psa_inject_entropy)(arg0_seed, arg1_seed_size); return status; } #endif /* defined(MBEDTLS_PSA_INJECT_ENTROPY) */ /* Wrapper for mbedtls_psa_platform_get_builtin_key */ #if defined(MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS) psa_status_t mbedtls_test_wrap_mbedtls_psa_platform_get_builtin_key( mbedtls_svc_key_id_t arg0_key_id, psa_key_lifetime_t *arg1_lifetime, psa_drv_slot_number_t *arg2_slot_number) { psa_status_t status = (mbedtls_psa_platform_get_builtin_key)(arg0_key_id, arg1_lifetime, arg2_slot_number); return status; } #endif /* defined(MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS) */ /* Wrapper for mbedtls_psa_register_se_key */ #if defined(MBEDTLS_PSA_CRYPTO_SE_C) psa_status_t mbedtls_test_wrap_mbedtls_psa_register_se_key( const psa_key_attributes_t *arg0_attributes) { psa_status_t status = (mbedtls_psa_register_se_key)(arg0_attributes); return status; } #endif /* defined(MBEDTLS_PSA_CRYPTO_SE_C) */ /* Wrapper for psa_aead_decrypt */ psa_status_t mbedtls_test_wrap_psa_aead_decrypt( mbedtls_svc_key_id_t arg0_key, psa_algorithm_t arg1_alg, const uint8_t *arg2_nonce, size_t arg3_nonce_length, const uint8_t *arg4_additional_data, size_t arg5_additional_data_length, const uint8_t *arg6_ciphertext, size_t arg7_ciphertext_length, uint8_t *arg8_plaintext, size_t arg9_plaintext_size, size_t *arg10_plaintext_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg2_nonce, arg3_nonce_length); MBEDTLS_TEST_MEMORY_POISON(arg4_additional_data, arg5_additional_data_length); MBEDTLS_TEST_MEMORY_POISON(arg6_ciphertext, arg7_ciphertext_length); MBEDTLS_TEST_MEMORY_POISON(arg8_plaintext, arg9_plaintext_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_aead_decrypt)(arg0_key, arg1_alg, arg2_nonce, arg3_nonce_length, arg4_additional_data, arg5_additional_data_length, arg6_ciphertext, arg7_ciphertext_length, arg8_plaintext, arg9_plaintext_size, arg10_plaintext_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg2_nonce, arg3_nonce_length); MBEDTLS_TEST_MEMORY_UNPOISON(arg4_additional_data, arg5_additional_data_length); MBEDTLS_TEST_MEMORY_UNPOISON(arg6_ciphertext, arg7_ciphertext_length); MBEDTLS_TEST_MEMORY_UNPOISON(arg8_plaintext, arg9_plaintext_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_aead_encrypt */ psa_status_t mbedtls_test_wrap_psa_aead_encrypt( mbedtls_svc_key_id_t arg0_key, psa_algorithm_t arg1_alg, const uint8_t *arg2_nonce, size_t arg3_nonce_length, const uint8_t *arg4_additional_data, size_t arg5_additional_data_length, const uint8_t *arg6_plaintext, size_t arg7_plaintext_length, uint8_t *arg8_ciphertext, size_t arg9_ciphertext_size, size_t *arg10_ciphertext_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg2_nonce, arg3_nonce_length); MBEDTLS_TEST_MEMORY_POISON(arg4_additional_data, arg5_additional_data_length); MBEDTLS_TEST_MEMORY_POISON(arg6_plaintext, arg7_plaintext_length); MBEDTLS_TEST_MEMORY_POISON(arg8_ciphertext, arg9_ciphertext_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_aead_encrypt)(arg0_key, arg1_alg, arg2_nonce, arg3_nonce_length, arg4_additional_data, arg5_additional_data_length, arg6_plaintext, arg7_plaintext_length, arg8_ciphertext, arg9_ciphertext_size, arg10_ciphertext_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg2_nonce, arg3_nonce_length); MBEDTLS_TEST_MEMORY_UNPOISON(arg4_additional_data, arg5_additional_data_length); MBEDTLS_TEST_MEMORY_UNPOISON(arg6_plaintext, arg7_plaintext_length); MBEDTLS_TEST_MEMORY_UNPOISON(arg8_ciphertext, arg9_ciphertext_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_asymmetric_decrypt */ psa_status_t mbedtls_test_wrap_psa_asymmetric_decrypt( mbedtls_svc_key_id_t arg0_key, psa_algorithm_t arg1_alg, const uint8_t *arg2_input, size_t arg3_input_length, const uint8_t *arg4_salt, size_t arg5_salt_length, uint8_t *arg6_output, size_t arg7_output_size, size_t *arg8_output_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg2_input, arg3_input_length); MBEDTLS_TEST_MEMORY_POISON(arg4_salt, arg5_salt_length); MBEDTLS_TEST_MEMORY_POISON(arg6_output, arg7_output_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_asymmetric_decrypt)(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_salt, arg5_salt_length, arg6_output, arg7_output_size, arg8_output_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg2_input, arg3_input_length); MBEDTLS_TEST_MEMORY_UNPOISON(arg4_salt, arg5_salt_length); MBEDTLS_TEST_MEMORY_UNPOISON(arg6_output, arg7_output_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_asymmetric_encrypt */ psa_status_t mbedtls_test_wrap_psa_asymmetric_encrypt( mbedtls_svc_key_id_t arg0_key, psa_algorithm_t arg1_alg, const uint8_t *arg2_input, size_t arg3_input_length, const uint8_t *arg4_salt, size_t arg5_salt_length, uint8_t *arg6_output, size_t arg7_output_size, size_t *arg8_output_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg2_input, arg3_input_length); MBEDTLS_TEST_MEMORY_POISON(arg4_salt, arg5_salt_length); MBEDTLS_TEST_MEMORY_POISON(arg6_output, arg7_output_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_asymmetric_encrypt)(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_salt, arg5_salt_length, arg6_output, arg7_output_size, arg8_output_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg2_input, arg3_input_length); MBEDTLS_TEST_MEMORY_UNPOISON(arg4_salt, arg5_salt_length); MBEDTLS_TEST_MEMORY_UNPOISON(arg6_output, arg7_output_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_cipher_abort */ psa_status_t mbedtls_test_wrap_psa_cipher_abort( psa_cipher_operation_t *arg0_operation) { psa_status_t status = (psa_cipher_abort)(arg0_operation); return status; } /* Wrapper for psa_cipher_decrypt */ psa_status_t mbedtls_test_wrap_psa_cipher_decrypt( mbedtls_svc_key_id_t arg0_key, psa_algorithm_t arg1_alg, const uint8_t *arg2_input, size_t arg3_input_length, uint8_t *arg4_output, size_t arg5_output_size, size_t *arg6_output_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg2_input, arg3_input_length); MBEDTLS_TEST_MEMORY_POISON(arg4_output, arg5_output_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_cipher_decrypt)(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_output, arg5_output_size, arg6_output_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg2_input, arg3_input_length); MBEDTLS_TEST_MEMORY_UNPOISON(arg4_output, arg5_output_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_cipher_decrypt_setup */ psa_status_t mbedtls_test_wrap_psa_cipher_decrypt_setup( psa_cipher_operation_t *arg0_operation, mbedtls_svc_key_id_t arg1_key, psa_algorithm_t arg2_alg) { psa_status_t status = (psa_cipher_decrypt_setup)(arg0_operation, arg1_key, arg2_alg); return status; } /* Wrapper for psa_cipher_encrypt */ psa_status_t mbedtls_test_wrap_psa_cipher_encrypt( mbedtls_svc_key_id_t arg0_key, psa_algorithm_t arg1_alg, const uint8_t *arg2_input, size_t arg3_input_length, uint8_t *arg4_output, size_t arg5_output_size, size_t *arg6_output_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg2_input, arg3_input_length); MBEDTLS_TEST_MEMORY_POISON(arg4_output, arg5_output_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_cipher_encrypt)(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_output, arg5_output_size, arg6_output_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg2_input, arg3_input_length); MBEDTLS_TEST_MEMORY_UNPOISON(arg4_output, arg5_output_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_cipher_encrypt_setup */ psa_status_t mbedtls_test_wrap_psa_cipher_encrypt_setup( psa_cipher_operation_t *arg0_operation, mbedtls_svc_key_id_t arg1_key, psa_algorithm_t arg2_alg) { psa_status_t status = (psa_cipher_encrypt_setup)(arg0_operation, arg1_key, arg2_alg); return status; } /* Wrapper for psa_cipher_finish */ psa_status_t mbedtls_test_wrap_psa_cipher_finish( psa_cipher_operation_t *arg0_operation, uint8_t *arg1_output, size_t arg2_output_size, size_t *arg3_output_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg1_output, arg2_output_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_cipher_finish)(arg0_operation, arg1_output, arg2_output_size, arg3_output_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg1_output, arg2_output_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_cipher_generate_iv */ psa_status_t mbedtls_test_wrap_psa_cipher_generate_iv( psa_cipher_operation_t *arg0_operation, uint8_t *arg1_iv, size_t arg2_iv_size, size_t *arg3_iv_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg1_iv, arg2_iv_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_cipher_generate_iv)(arg0_operation, arg1_iv, arg2_iv_size, arg3_iv_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg1_iv, arg2_iv_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_cipher_set_iv */ psa_status_t mbedtls_test_wrap_psa_cipher_set_iv( psa_cipher_operation_t *arg0_operation, const uint8_t *arg1_iv, size_t arg2_iv_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg1_iv, arg2_iv_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_cipher_set_iv)(arg0_operation, arg1_iv, arg2_iv_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg1_iv, arg2_iv_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_cipher_update */ psa_status_t mbedtls_test_wrap_psa_cipher_update( psa_cipher_operation_t *arg0_operation, const uint8_t *arg1_input, size_t arg2_input_length, uint8_t *arg3_output, size_t arg4_output_size, size_t *arg5_output_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg1_input, arg2_input_length); MBEDTLS_TEST_MEMORY_POISON(arg3_output, arg4_output_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_cipher_update)(arg0_operation, arg1_input, arg2_input_length, arg3_output, arg4_output_size, arg5_output_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg1_input, arg2_input_length); MBEDTLS_TEST_MEMORY_UNPOISON(arg3_output, arg4_output_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_copy_key */ psa_status_t mbedtls_test_wrap_psa_copy_key( mbedtls_svc_key_id_t arg0_source_key, const psa_key_attributes_t *arg1_attributes, mbedtls_svc_key_id_t *arg2_target_key) { psa_status_t status = (psa_copy_key)(arg0_source_key, arg1_attributes, arg2_target_key); return status; } /* Wrapper for psa_crypto_init */ psa_status_t mbedtls_test_wrap_psa_crypto_init(void) { psa_status_t status = (psa_crypto_init)(); return status; } /* Wrapper for psa_destroy_key */ psa_status_t mbedtls_test_wrap_psa_destroy_key( mbedtls_svc_key_id_t arg0_key) { psa_status_t status = (psa_destroy_key)(arg0_key); return status; } /* Wrapper for psa_export_key */ psa_status_t mbedtls_test_wrap_psa_export_key( mbedtls_svc_key_id_t arg0_key, uint8_t *arg1_data, size_t arg2_data_size, size_t *arg3_data_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg1_data, arg2_data_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_export_key)(arg0_key, arg1_data, arg2_data_size, arg3_data_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg1_data, arg2_data_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_export_public_key */ psa_status_t mbedtls_test_wrap_psa_export_public_key( mbedtls_svc_key_id_t arg0_key, uint8_t *arg1_data, size_t arg2_data_size, size_t *arg3_data_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg1_data, arg2_data_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_export_public_key)(arg0_key, arg1_data, arg2_data_size, arg3_data_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg1_data, arg2_data_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_generate_key */ psa_status_t mbedtls_test_wrap_psa_generate_key( const psa_key_attributes_t *arg0_attributes, mbedtls_svc_key_id_t *arg1_key) { psa_status_t status = (psa_generate_key)(arg0_attributes, arg1_key); return status; } /* Wrapper for psa_generate_random */ psa_status_t mbedtls_test_wrap_psa_generate_random( uint8_t *arg0_output, size_t arg1_output_size) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg0_output, arg1_output_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_generate_random)(arg0_output, arg1_output_size); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg0_output, arg1_output_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_get_key_attributes */ psa_status_t mbedtls_test_wrap_psa_get_key_attributes( mbedtls_svc_key_id_t arg0_key, psa_key_attributes_t *arg1_attributes) { psa_status_t status = (psa_get_key_attributes)(arg0_key, arg1_attributes); return status; } /* Wrapper for psa_hash_abort */ psa_status_t mbedtls_test_wrap_psa_hash_abort( psa_hash_operation_t *arg0_operation) { psa_status_t status = (psa_hash_abort)(arg0_operation); return status; } /* Wrapper for psa_hash_clone */ psa_status_t mbedtls_test_wrap_psa_hash_clone( const psa_hash_operation_t *arg0_source_operation, psa_hash_operation_t *arg1_target_operation) { psa_status_t status = (psa_hash_clone)(arg0_source_operation, arg1_target_operation); return status; } /* Wrapper for psa_hash_compare */ psa_status_t mbedtls_test_wrap_psa_hash_compare( psa_algorithm_t arg0_alg, const uint8_t *arg1_input, size_t arg2_input_length, const uint8_t *arg3_hash, size_t arg4_hash_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg1_input, arg2_input_length); MBEDTLS_TEST_MEMORY_POISON(arg3_hash, arg4_hash_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_hash_compare)(arg0_alg, arg1_input, arg2_input_length, arg3_hash, arg4_hash_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg1_input, arg2_input_length); MBEDTLS_TEST_MEMORY_UNPOISON(arg3_hash, arg4_hash_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_hash_compute */ psa_status_t mbedtls_test_wrap_psa_hash_compute( psa_algorithm_t arg0_alg, const uint8_t *arg1_input, size_t arg2_input_length, uint8_t *arg3_hash, size_t arg4_hash_size, size_t *arg5_hash_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg1_input, arg2_input_length); MBEDTLS_TEST_MEMORY_POISON(arg3_hash, arg4_hash_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_hash_compute)(arg0_alg, arg1_input, arg2_input_length, arg3_hash, arg4_hash_size, arg5_hash_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg1_input, arg2_input_length); MBEDTLS_TEST_MEMORY_UNPOISON(arg3_hash, arg4_hash_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_hash_finish */ psa_status_t mbedtls_test_wrap_psa_hash_finish( psa_hash_operation_t *arg0_operation, uint8_t *arg1_hash, size_t arg2_hash_size, size_t *arg3_hash_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg1_hash, arg2_hash_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_hash_finish)(arg0_operation, arg1_hash, arg2_hash_size, arg3_hash_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg1_hash, arg2_hash_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_hash_setup */ psa_status_t mbedtls_test_wrap_psa_hash_setup( psa_hash_operation_t *arg0_operation, psa_algorithm_t arg1_alg) { psa_status_t status = (psa_hash_setup)(arg0_operation, arg1_alg); return status; } /* Wrapper for psa_hash_update */ psa_status_t mbedtls_test_wrap_psa_hash_update( psa_hash_operation_t *arg0_operation, const uint8_t *arg1_input, size_t arg2_input_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg1_input, arg2_input_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_hash_update)(arg0_operation, arg1_input, arg2_input_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg1_input, arg2_input_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_hash_verify */ psa_status_t mbedtls_test_wrap_psa_hash_verify( psa_hash_operation_t *arg0_operation, const uint8_t *arg1_hash, size_t arg2_hash_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg1_hash, arg2_hash_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_hash_verify)(arg0_operation, arg1_hash, arg2_hash_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg1_hash, arg2_hash_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_import_key */ psa_status_t mbedtls_test_wrap_psa_import_key( const psa_key_attributes_t *arg0_attributes, const uint8_t *arg1_data, size_t arg2_data_length, mbedtls_svc_key_id_t *arg3_key) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg1_data, arg2_data_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_import_key)(arg0_attributes, arg1_data, arg2_data_length, arg3_key); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg1_data, arg2_data_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_key_derivation_abort */ psa_status_t mbedtls_test_wrap_psa_key_derivation_abort( psa_key_derivation_operation_t *arg0_operation) { psa_status_t status = (psa_key_derivation_abort)(arg0_operation); return status; } /* Wrapper for psa_key_derivation_get_capacity */ psa_status_t mbedtls_test_wrap_psa_key_derivation_get_capacity( const psa_key_derivation_operation_t *arg0_operation, size_t *arg1_capacity) { psa_status_t status = (psa_key_derivation_get_capacity)(arg0_operation, arg1_capacity); return status; } /* Wrapper for psa_key_derivation_input_bytes */ psa_status_t mbedtls_test_wrap_psa_key_derivation_input_bytes( psa_key_derivation_operation_t *arg0_operation, psa_key_derivation_step_t arg1_step, const uint8_t *arg2_data, size_t arg3_data_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg2_data, arg3_data_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_key_derivation_input_bytes)(arg0_operation, arg1_step, arg2_data, arg3_data_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg2_data, arg3_data_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_key_derivation_input_key */ psa_status_t mbedtls_test_wrap_psa_key_derivation_input_key( psa_key_derivation_operation_t *arg0_operation, psa_key_derivation_step_t arg1_step, mbedtls_svc_key_id_t arg2_key) { psa_status_t status = (psa_key_derivation_input_key)(arg0_operation, arg1_step, arg2_key); return status; } /* Wrapper for psa_key_derivation_key_agreement */ psa_status_t mbedtls_test_wrap_psa_key_derivation_key_agreement( psa_key_derivation_operation_t *arg0_operation, psa_key_derivation_step_t arg1_step, mbedtls_svc_key_id_t arg2_private_key, const uint8_t *arg3_peer_key, size_t arg4_peer_key_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg3_peer_key, arg4_peer_key_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_key_derivation_key_agreement)(arg0_operation, arg1_step, arg2_private_key, arg3_peer_key, arg4_peer_key_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg3_peer_key, arg4_peer_key_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_key_derivation_output_bytes */ psa_status_t mbedtls_test_wrap_psa_key_derivation_output_bytes( psa_key_derivation_operation_t *arg0_operation, uint8_t *arg1_output, size_t arg2_output_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg1_output, arg2_output_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_key_derivation_output_bytes)(arg0_operation, arg1_output, arg2_output_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg1_output, arg2_output_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_key_derivation_output_key */ psa_status_t mbedtls_test_wrap_psa_key_derivation_output_key( const psa_key_attributes_t *arg0_attributes, psa_key_derivation_operation_t *arg1_operation, mbedtls_svc_key_id_t *arg2_key) { psa_status_t status = (psa_key_derivation_output_key)(arg0_attributes, arg1_operation, arg2_key); return status; } /* Wrapper for psa_key_derivation_set_capacity */ psa_status_t mbedtls_test_wrap_psa_key_derivation_set_capacity( psa_key_derivation_operation_t *arg0_operation, size_t arg1_capacity) { psa_status_t status = (psa_key_derivation_set_capacity)(arg0_operation, arg1_capacity); return status; } /* Wrapper for psa_key_derivation_setup */ psa_status_t mbedtls_test_wrap_psa_key_derivation_setup( psa_key_derivation_operation_t *arg0_operation, psa_algorithm_t arg1_alg) { psa_status_t status = (psa_key_derivation_setup)(arg0_operation, arg1_alg); return status; } /* Wrapper for psa_mac_abort */ psa_status_t mbedtls_test_wrap_psa_mac_abort( psa_mac_operation_t *arg0_operation) { psa_status_t status = (psa_mac_abort)(arg0_operation); return status; } /* Wrapper for psa_mac_compute */ psa_status_t mbedtls_test_wrap_psa_mac_compute( mbedtls_svc_key_id_t arg0_key, psa_algorithm_t arg1_alg, const uint8_t *arg2_input, size_t arg3_input_length, uint8_t *arg4_mac, size_t arg5_mac_size, size_t *arg6_mac_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg2_input, arg3_input_length); MBEDTLS_TEST_MEMORY_POISON(arg4_mac, arg5_mac_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_mac_compute)(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_mac, arg5_mac_size, arg6_mac_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg2_input, arg3_input_length); MBEDTLS_TEST_MEMORY_UNPOISON(arg4_mac, arg5_mac_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_mac_sign_finish */ psa_status_t mbedtls_test_wrap_psa_mac_sign_finish( psa_mac_operation_t *arg0_operation, uint8_t *arg1_mac, size_t arg2_mac_size, size_t *arg3_mac_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg1_mac, arg2_mac_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_mac_sign_finish)(arg0_operation, arg1_mac, arg2_mac_size, arg3_mac_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg1_mac, arg2_mac_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_mac_sign_setup */ psa_status_t mbedtls_test_wrap_psa_mac_sign_setup( psa_mac_operation_t *arg0_operation, mbedtls_svc_key_id_t arg1_key, psa_algorithm_t arg2_alg) { psa_status_t status = (psa_mac_sign_setup)(arg0_operation, arg1_key, arg2_alg); return status; } /* Wrapper for psa_mac_update */ psa_status_t mbedtls_test_wrap_psa_mac_update( psa_mac_operation_t *arg0_operation, const uint8_t *arg1_input, size_t arg2_input_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg1_input, arg2_input_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_mac_update)(arg0_operation, arg1_input, arg2_input_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg1_input, arg2_input_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_mac_verify */ psa_status_t mbedtls_test_wrap_psa_mac_verify( mbedtls_svc_key_id_t arg0_key, psa_algorithm_t arg1_alg, const uint8_t *arg2_input, size_t arg3_input_length, const uint8_t *arg4_mac, size_t arg5_mac_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg2_input, arg3_input_length); MBEDTLS_TEST_MEMORY_POISON(arg4_mac, arg5_mac_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_mac_verify)(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_mac, arg5_mac_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg2_input, arg3_input_length); MBEDTLS_TEST_MEMORY_UNPOISON(arg4_mac, arg5_mac_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_mac_verify_finish */ psa_status_t mbedtls_test_wrap_psa_mac_verify_finish( psa_mac_operation_t *arg0_operation, const uint8_t *arg1_mac, size_t arg2_mac_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg1_mac, arg2_mac_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_mac_verify_finish)(arg0_operation, arg1_mac, arg2_mac_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg1_mac, arg2_mac_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_mac_verify_setup */ psa_status_t mbedtls_test_wrap_psa_mac_verify_setup( psa_mac_operation_t *arg0_operation, mbedtls_svc_key_id_t arg1_key, psa_algorithm_t arg2_alg) { psa_status_t status = (psa_mac_verify_setup)(arg0_operation, arg1_key, arg2_alg); return status; } /* Wrapper for psa_purge_key */ psa_status_t mbedtls_test_wrap_psa_purge_key( mbedtls_svc_key_id_t arg0_key) { psa_status_t status = (psa_purge_key)(arg0_key); return status; } /* Wrapper for psa_raw_key_agreement */ psa_status_t mbedtls_test_wrap_psa_raw_key_agreement( psa_algorithm_t arg0_alg, mbedtls_svc_key_id_t arg1_private_key, const uint8_t *arg2_peer_key, size_t arg3_peer_key_length, uint8_t *arg4_output, size_t arg5_output_size, size_t *arg6_output_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg2_peer_key, arg3_peer_key_length); MBEDTLS_TEST_MEMORY_POISON(arg4_output, arg5_output_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_raw_key_agreement)(arg0_alg, arg1_private_key, arg2_peer_key, arg3_peer_key_length, arg4_output, arg5_output_size, arg6_output_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg2_peer_key, arg3_peer_key_length); MBEDTLS_TEST_MEMORY_UNPOISON(arg4_output, arg5_output_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_sign_hash */ psa_status_t mbedtls_test_wrap_psa_sign_hash( mbedtls_svc_key_id_t arg0_key, psa_algorithm_t arg1_alg, const uint8_t *arg2_hash, size_t arg3_hash_length, uint8_t *arg4_signature, size_t arg5_signature_size, size_t *arg6_signature_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg2_hash, arg3_hash_length); MBEDTLS_TEST_MEMORY_POISON(arg4_signature, arg5_signature_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_sign_hash)(arg0_key, arg1_alg, arg2_hash, arg3_hash_length, arg4_signature, arg5_signature_size, arg6_signature_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg2_hash, arg3_hash_length); MBEDTLS_TEST_MEMORY_UNPOISON(arg4_signature, arg5_signature_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_sign_message */ psa_status_t mbedtls_test_wrap_psa_sign_message( mbedtls_svc_key_id_t arg0_key, psa_algorithm_t arg1_alg, const uint8_t *arg2_input, size_t arg3_input_length, uint8_t *arg4_signature, size_t arg5_signature_size, size_t *arg6_signature_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg2_input, arg3_input_length); MBEDTLS_TEST_MEMORY_POISON(arg4_signature, arg5_signature_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_sign_message)(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_signature, arg5_signature_size, arg6_signature_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg2_input, arg3_input_length); MBEDTLS_TEST_MEMORY_UNPOISON(arg4_signature, arg5_signature_size); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_verify_hash */ psa_status_t mbedtls_test_wrap_psa_verify_hash( mbedtls_svc_key_id_t arg0_key, psa_algorithm_t arg1_alg, const uint8_t *arg2_hash, size_t arg3_hash_length, const uint8_t *arg4_signature, size_t arg5_signature_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg2_hash, arg3_hash_length); MBEDTLS_TEST_MEMORY_POISON(arg4_signature, arg5_signature_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_verify_hash)(arg0_key, arg1_alg, arg2_hash, arg3_hash_length, arg4_signature, arg5_signature_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg2_hash, arg3_hash_length); MBEDTLS_TEST_MEMORY_UNPOISON(arg4_signature, arg5_signature_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } /* Wrapper for psa_verify_message */ psa_status_t mbedtls_test_wrap_psa_verify_message( mbedtls_svc_key_id_t arg0_key, psa_algorithm_t arg1_alg, const uint8_t *arg2_input, size_t arg3_input_length, const uint8_t *arg4_signature, size_t arg5_signature_length) { #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_POISON(arg2_input, arg3_input_length); MBEDTLS_TEST_MEMORY_POISON(arg4_signature, arg5_signature_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ psa_status_t status = (psa_verify_message)(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_signature, arg5_signature_length); #if !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) MBEDTLS_TEST_MEMORY_UNPOISON(arg2_input, arg3_input_length); MBEDTLS_TEST_MEMORY_UNPOISON(arg4_signature, arg5_signature_length); #endif /* !defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) */ return status; } #endif /* defined(MBEDTLS_PSA_CRYPTO_C) && defined(MBEDTLS_TEST_HOOKS) && \ !defined(RECORD_PSA_STATUS_COVERAGE_LOG) */ /* End of automatically generated file. */