blob: 5ef1226c81d5bf3804301d6db310fe6e2e6129cd [file] [log] [blame]
Gilles Peskine6e4332c2024-01-04 16:42:40 +01001/* Automatically generated by generate_psa_wrappers.py, do not edit! */
2
3/* Copyright The Mbed TLS Contributors
4 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
5 */
6
7#ifndef TEST_PSA_TEST_WRAPPERS_H
8#define TEST_PSA_TEST_WRAPPERS_H
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14#include <mbedtls/build_info.h>
15
Gilles Peskine4411c9c2024-01-04 20:51:38 +010016#if defined(MBEDTLS_PSA_CRYPTO_C) && defined(MBEDTLS_TEST_HOOKS) && \
17 !defined(RECORD_PSA_STATUS_COVERAGE_LOG)
Gilles Peskine6e4332c2024-01-04 16:42:40 +010018
19#include <psa/crypto.h>
Gilles Peskine90d14d72024-01-04 16:59:28 +010020#include <test/memory.h>
Gilles Peskine6e4332c2024-01-04 16:42:40 +010021#include <test/psa_crypto_helpers.h>
22#include <test/psa_test_wrappers.h>
23
24#if defined(MBEDTLS_PSA_INJECT_ENTROPY)
25psa_status_t mbedtls_test_wrap_mbedtls_psa_inject_entropy(
26 const uint8_t *arg0_seed,
27 size_t arg1_seed_size);
28#define mbedtls_psa_inject_entropy(arg0_seed, arg1_seed_size) \
29 mbedtls_test_wrap_mbedtls_psa_inject_entropy(arg0_seed, arg1_seed_size)
30#endif /* defined(MBEDTLS_PSA_INJECT_ENTROPY) */
31
32#if defined(MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS)
33psa_status_t mbedtls_test_wrap_mbedtls_psa_platform_get_builtin_key(
34 mbedtls_svc_key_id_t arg0_key_id,
35 psa_key_lifetime_t *arg1_lifetime,
36 psa_drv_slot_number_t *arg2_slot_number);
37#define mbedtls_psa_platform_get_builtin_key(arg0_key_id, arg1_lifetime, arg2_slot_number) \
38 mbedtls_test_wrap_mbedtls_psa_platform_get_builtin_key(arg0_key_id, arg1_lifetime, arg2_slot_number)
39#endif /* defined(MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS) */
40
41#if defined(MBEDTLS_PSA_CRYPTO_SE_C)
42psa_status_t mbedtls_test_wrap_mbedtls_psa_register_se_key(
43 const psa_key_attributes_t *arg0_attributes);
44#define mbedtls_psa_register_se_key(arg0_attributes) \
45 mbedtls_test_wrap_mbedtls_psa_register_se_key(arg0_attributes)
46#endif /* defined(MBEDTLS_PSA_CRYPTO_SE_C) */
47
48psa_status_t mbedtls_test_wrap_psa_aead_abort(
49 psa_aead_operation_t *arg0_operation);
50#define psa_aead_abort(arg0_operation) \
51 mbedtls_test_wrap_psa_aead_abort(arg0_operation)
52
53psa_status_t mbedtls_test_wrap_psa_aead_decrypt(
54 mbedtls_svc_key_id_t arg0_key,
55 psa_algorithm_t arg1_alg,
56 const uint8_t *arg2_nonce,
57 size_t arg3_nonce_length,
58 const uint8_t *arg4_additional_data,
59 size_t arg5_additional_data_length,
60 const uint8_t *arg6_ciphertext,
61 size_t arg7_ciphertext_length,
62 uint8_t *arg8_plaintext,
63 size_t arg9_plaintext_size,
64 size_t *arg10_plaintext_length);
65#define 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) \
66 mbedtls_test_wrap_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)
67
68psa_status_t mbedtls_test_wrap_psa_aead_decrypt_setup(
69 psa_aead_operation_t *arg0_operation,
70 mbedtls_svc_key_id_t arg1_key,
71 psa_algorithm_t arg2_alg);
72#define psa_aead_decrypt_setup(arg0_operation, arg1_key, arg2_alg) \
73 mbedtls_test_wrap_psa_aead_decrypt_setup(arg0_operation, arg1_key, arg2_alg)
74
75psa_status_t mbedtls_test_wrap_psa_aead_encrypt(
76 mbedtls_svc_key_id_t arg0_key,
77 psa_algorithm_t arg1_alg,
78 const uint8_t *arg2_nonce,
79 size_t arg3_nonce_length,
80 const uint8_t *arg4_additional_data,
81 size_t arg5_additional_data_length,
82 const uint8_t *arg6_plaintext,
83 size_t arg7_plaintext_length,
84 uint8_t *arg8_ciphertext,
85 size_t arg9_ciphertext_size,
86 size_t *arg10_ciphertext_length);
87#define 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) \
88 mbedtls_test_wrap_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)
89
90psa_status_t mbedtls_test_wrap_psa_aead_encrypt_setup(
91 psa_aead_operation_t *arg0_operation,
92 mbedtls_svc_key_id_t arg1_key,
93 psa_algorithm_t arg2_alg);
94#define psa_aead_encrypt_setup(arg0_operation, arg1_key, arg2_alg) \
95 mbedtls_test_wrap_psa_aead_encrypt_setup(arg0_operation, arg1_key, arg2_alg)
96
97psa_status_t mbedtls_test_wrap_psa_aead_finish(
98 psa_aead_operation_t *arg0_operation,
99 uint8_t *arg1_ciphertext,
100 size_t arg2_ciphertext_size,
101 size_t *arg3_ciphertext_length,
102 uint8_t *arg4_tag,
103 size_t arg5_tag_size,
104 size_t *arg6_tag_length);
105#define psa_aead_finish(arg0_operation, arg1_ciphertext, arg2_ciphertext_size, arg3_ciphertext_length, arg4_tag, arg5_tag_size, arg6_tag_length) \
106 mbedtls_test_wrap_psa_aead_finish(arg0_operation, arg1_ciphertext, arg2_ciphertext_size, arg3_ciphertext_length, arg4_tag, arg5_tag_size, arg6_tag_length)
107
108psa_status_t mbedtls_test_wrap_psa_aead_generate_nonce(
109 psa_aead_operation_t *arg0_operation,
110 uint8_t *arg1_nonce,
111 size_t arg2_nonce_size,
112 size_t *arg3_nonce_length);
113#define psa_aead_generate_nonce(arg0_operation, arg1_nonce, arg2_nonce_size, arg3_nonce_length) \
114 mbedtls_test_wrap_psa_aead_generate_nonce(arg0_operation, arg1_nonce, arg2_nonce_size, arg3_nonce_length)
115
116psa_status_t mbedtls_test_wrap_psa_aead_set_lengths(
117 psa_aead_operation_t *arg0_operation,
118 size_t arg1_ad_length,
119 size_t arg2_plaintext_length);
120#define psa_aead_set_lengths(arg0_operation, arg1_ad_length, arg2_plaintext_length) \
121 mbedtls_test_wrap_psa_aead_set_lengths(arg0_operation, arg1_ad_length, arg2_plaintext_length)
122
123psa_status_t mbedtls_test_wrap_psa_aead_set_nonce(
124 psa_aead_operation_t *arg0_operation,
125 const uint8_t *arg1_nonce,
126 size_t arg2_nonce_length);
127#define psa_aead_set_nonce(arg0_operation, arg1_nonce, arg2_nonce_length) \
128 mbedtls_test_wrap_psa_aead_set_nonce(arg0_operation, arg1_nonce, arg2_nonce_length)
129
130psa_status_t mbedtls_test_wrap_psa_aead_update(
131 psa_aead_operation_t *arg0_operation,
132 const uint8_t *arg1_input,
133 size_t arg2_input_length,
134 uint8_t *arg3_output,
135 size_t arg4_output_size,
136 size_t *arg5_output_length);
137#define psa_aead_update(arg0_operation, arg1_input, arg2_input_length, arg3_output, arg4_output_size, arg5_output_length) \
138 mbedtls_test_wrap_psa_aead_update(arg0_operation, arg1_input, arg2_input_length, arg3_output, arg4_output_size, arg5_output_length)
139
140psa_status_t mbedtls_test_wrap_psa_aead_update_ad(
141 psa_aead_operation_t *arg0_operation,
142 const uint8_t *arg1_input,
143 size_t arg2_input_length);
144#define psa_aead_update_ad(arg0_operation, arg1_input, arg2_input_length) \
145 mbedtls_test_wrap_psa_aead_update_ad(arg0_operation, arg1_input, arg2_input_length)
146
147psa_status_t mbedtls_test_wrap_psa_aead_verify(
148 psa_aead_operation_t *arg0_operation,
149 uint8_t *arg1_plaintext,
150 size_t arg2_plaintext_size,
151 size_t *arg3_plaintext_length,
152 const uint8_t *arg4_tag,
153 size_t arg5_tag_length);
154#define psa_aead_verify(arg0_operation, arg1_plaintext, arg2_plaintext_size, arg3_plaintext_length, arg4_tag, arg5_tag_length) \
155 mbedtls_test_wrap_psa_aead_verify(arg0_operation, arg1_plaintext, arg2_plaintext_size, arg3_plaintext_length, arg4_tag, arg5_tag_length)
156
157psa_status_t mbedtls_test_wrap_psa_asymmetric_decrypt(
158 mbedtls_svc_key_id_t arg0_key,
159 psa_algorithm_t arg1_alg,
160 const uint8_t *arg2_input,
161 size_t arg3_input_length,
162 const uint8_t *arg4_salt,
163 size_t arg5_salt_length,
164 uint8_t *arg6_output,
165 size_t arg7_output_size,
166 size_t *arg8_output_length);
167#define 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) \
168 mbedtls_test_wrap_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)
169
170psa_status_t mbedtls_test_wrap_psa_asymmetric_encrypt(
171 mbedtls_svc_key_id_t arg0_key,
172 psa_algorithm_t arg1_alg,
173 const uint8_t *arg2_input,
174 size_t arg3_input_length,
175 const uint8_t *arg4_salt,
176 size_t arg5_salt_length,
177 uint8_t *arg6_output,
178 size_t arg7_output_size,
179 size_t *arg8_output_length);
180#define 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) \
181 mbedtls_test_wrap_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)
182
183psa_status_t mbedtls_test_wrap_psa_cipher_abort(
184 psa_cipher_operation_t *arg0_operation);
185#define psa_cipher_abort(arg0_operation) \
186 mbedtls_test_wrap_psa_cipher_abort(arg0_operation)
187
188psa_status_t mbedtls_test_wrap_psa_cipher_decrypt(
189 mbedtls_svc_key_id_t arg0_key,
190 psa_algorithm_t arg1_alg,
191 const uint8_t *arg2_input,
192 size_t arg3_input_length,
193 uint8_t *arg4_output,
194 size_t arg5_output_size,
195 size_t *arg6_output_length);
196#define psa_cipher_decrypt(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_output, arg5_output_size, arg6_output_length) \
197 mbedtls_test_wrap_psa_cipher_decrypt(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_output, arg5_output_size, arg6_output_length)
198
199psa_status_t mbedtls_test_wrap_psa_cipher_decrypt_setup(
200 psa_cipher_operation_t *arg0_operation,
201 mbedtls_svc_key_id_t arg1_key,
202 psa_algorithm_t arg2_alg);
203#define psa_cipher_decrypt_setup(arg0_operation, arg1_key, arg2_alg) \
204 mbedtls_test_wrap_psa_cipher_decrypt_setup(arg0_operation, arg1_key, arg2_alg)
205
206psa_status_t mbedtls_test_wrap_psa_cipher_encrypt(
207 mbedtls_svc_key_id_t arg0_key,
208 psa_algorithm_t arg1_alg,
209 const uint8_t *arg2_input,
210 size_t arg3_input_length,
211 uint8_t *arg4_output,
212 size_t arg5_output_size,
213 size_t *arg6_output_length);
214#define psa_cipher_encrypt(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_output, arg5_output_size, arg6_output_length) \
215 mbedtls_test_wrap_psa_cipher_encrypt(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_output, arg5_output_size, arg6_output_length)
216
217psa_status_t mbedtls_test_wrap_psa_cipher_encrypt_setup(
218 psa_cipher_operation_t *arg0_operation,
219 mbedtls_svc_key_id_t arg1_key,
220 psa_algorithm_t arg2_alg);
221#define psa_cipher_encrypt_setup(arg0_operation, arg1_key, arg2_alg) \
222 mbedtls_test_wrap_psa_cipher_encrypt_setup(arg0_operation, arg1_key, arg2_alg)
223
224psa_status_t mbedtls_test_wrap_psa_cipher_finish(
225 psa_cipher_operation_t *arg0_operation,
226 uint8_t *arg1_output,
227 size_t arg2_output_size,
228 size_t *arg3_output_length);
229#define psa_cipher_finish(arg0_operation, arg1_output, arg2_output_size, arg3_output_length) \
230 mbedtls_test_wrap_psa_cipher_finish(arg0_operation, arg1_output, arg2_output_size, arg3_output_length)
231
232psa_status_t mbedtls_test_wrap_psa_cipher_generate_iv(
233 psa_cipher_operation_t *arg0_operation,
234 uint8_t *arg1_iv,
235 size_t arg2_iv_size,
236 size_t *arg3_iv_length);
237#define psa_cipher_generate_iv(arg0_operation, arg1_iv, arg2_iv_size, arg3_iv_length) \
238 mbedtls_test_wrap_psa_cipher_generate_iv(arg0_operation, arg1_iv, arg2_iv_size, arg3_iv_length)
239
240psa_status_t mbedtls_test_wrap_psa_cipher_set_iv(
241 psa_cipher_operation_t *arg0_operation,
242 const uint8_t *arg1_iv,
243 size_t arg2_iv_length);
244#define psa_cipher_set_iv(arg0_operation, arg1_iv, arg2_iv_length) \
245 mbedtls_test_wrap_psa_cipher_set_iv(arg0_operation, arg1_iv, arg2_iv_length)
246
247psa_status_t mbedtls_test_wrap_psa_cipher_update(
248 psa_cipher_operation_t *arg0_operation,
249 const uint8_t *arg1_input,
250 size_t arg2_input_length,
251 uint8_t *arg3_output,
252 size_t arg4_output_size,
253 size_t *arg5_output_length);
254#define psa_cipher_update(arg0_operation, arg1_input, arg2_input_length, arg3_output, arg4_output_size, arg5_output_length) \
255 mbedtls_test_wrap_psa_cipher_update(arg0_operation, arg1_input, arg2_input_length, arg3_output, arg4_output_size, arg5_output_length)
256
257psa_status_t mbedtls_test_wrap_psa_copy_key(
258 mbedtls_svc_key_id_t arg0_source_key,
259 const psa_key_attributes_t *arg1_attributes,
260 mbedtls_svc_key_id_t *arg2_target_key);
261#define psa_copy_key(arg0_source_key, arg1_attributes, arg2_target_key) \
262 mbedtls_test_wrap_psa_copy_key(arg0_source_key, arg1_attributes, arg2_target_key)
263
Ronald Cron7062d3d2024-05-24 10:28:15 +0200264#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100265psa_status_t mbedtls_test_wrap_psa_crypto_driver_pake_get_cipher_suite(
266 const psa_crypto_driver_pake_inputs_t *arg0_inputs,
267 psa_pake_cipher_suite_t *arg1_cipher_suite);
268#define psa_crypto_driver_pake_get_cipher_suite(arg0_inputs, arg1_cipher_suite) \
269 mbedtls_test_wrap_psa_crypto_driver_pake_get_cipher_suite(arg0_inputs, arg1_cipher_suite)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200270#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100271
Ronald Cron7062d3d2024-05-24 10:28:15 +0200272#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100273psa_status_t mbedtls_test_wrap_psa_crypto_driver_pake_get_password(
274 const psa_crypto_driver_pake_inputs_t *arg0_inputs,
275 uint8_t *arg1_buffer,
276 size_t arg2_buffer_size,
277 size_t *arg3_buffer_length);
278#define psa_crypto_driver_pake_get_password(arg0_inputs, arg1_buffer, arg2_buffer_size, arg3_buffer_length) \
279 mbedtls_test_wrap_psa_crypto_driver_pake_get_password(arg0_inputs, arg1_buffer, arg2_buffer_size, arg3_buffer_length)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200280#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100281
Ronald Cron7062d3d2024-05-24 10:28:15 +0200282#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100283psa_status_t mbedtls_test_wrap_psa_crypto_driver_pake_get_password_len(
284 const psa_crypto_driver_pake_inputs_t *arg0_inputs,
285 size_t *arg1_password_len);
286#define psa_crypto_driver_pake_get_password_len(arg0_inputs, arg1_password_len) \
287 mbedtls_test_wrap_psa_crypto_driver_pake_get_password_len(arg0_inputs, arg1_password_len)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200288#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100289
Ronald Cron7062d3d2024-05-24 10:28:15 +0200290#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100291psa_status_t mbedtls_test_wrap_psa_crypto_driver_pake_get_peer(
292 const psa_crypto_driver_pake_inputs_t *arg0_inputs,
293 uint8_t *arg1_peer_id,
294 size_t arg2_peer_id_size,
295 size_t *arg3_peer_id_length);
296#define psa_crypto_driver_pake_get_peer(arg0_inputs, arg1_peer_id, arg2_peer_id_size, arg3_peer_id_length) \
297 mbedtls_test_wrap_psa_crypto_driver_pake_get_peer(arg0_inputs, arg1_peer_id, arg2_peer_id_size, arg3_peer_id_length)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200298#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100299
Ronald Cron7062d3d2024-05-24 10:28:15 +0200300#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100301psa_status_t mbedtls_test_wrap_psa_crypto_driver_pake_get_peer_len(
302 const psa_crypto_driver_pake_inputs_t *arg0_inputs,
303 size_t *arg1_peer_len);
304#define psa_crypto_driver_pake_get_peer_len(arg0_inputs, arg1_peer_len) \
305 mbedtls_test_wrap_psa_crypto_driver_pake_get_peer_len(arg0_inputs, arg1_peer_len)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200306#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100307
Ronald Cron7062d3d2024-05-24 10:28:15 +0200308#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100309psa_status_t mbedtls_test_wrap_psa_crypto_driver_pake_get_user(
310 const psa_crypto_driver_pake_inputs_t *arg0_inputs,
311 uint8_t *arg1_user_id,
312 size_t arg2_user_id_size,
313 size_t *arg3_user_id_len);
314#define psa_crypto_driver_pake_get_user(arg0_inputs, arg1_user_id, arg2_user_id_size, arg3_user_id_len) \
315 mbedtls_test_wrap_psa_crypto_driver_pake_get_user(arg0_inputs, arg1_user_id, arg2_user_id_size, arg3_user_id_len)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200316#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100317
Ronald Cron7062d3d2024-05-24 10:28:15 +0200318#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100319psa_status_t mbedtls_test_wrap_psa_crypto_driver_pake_get_user_len(
320 const psa_crypto_driver_pake_inputs_t *arg0_inputs,
321 size_t *arg1_user_len);
322#define psa_crypto_driver_pake_get_user_len(arg0_inputs, arg1_user_len) \
323 mbedtls_test_wrap_psa_crypto_driver_pake_get_user_len(arg0_inputs, arg1_user_len)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200324#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100325
326psa_status_t mbedtls_test_wrap_psa_crypto_init(void);
327#define psa_crypto_init() \
328 mbedtls_test_wrap_psa_crypto_init()
329
330psa_status_t mbedtls_test_wrap_psa_destroy_key(
331 mbedtls_svc_key_id_t arg0_key);
332#define psa_destroy_key(arg0_key) \
333 mbedtls_test_wrap_psa_destroy_key(arg0_key)
334
335psa_status_t mbedtls_test_wrap_psa_export_key(
336 mbedtls_svc_key_id_t arg0_key,
337 uint8_t *arg1_data,
338 size_t arg2_data_size,
339 size_t *arg3_data_length);
340#define psa_export_key(arg0_key, arg1_data, arg2_data_size, arg3_data_length) \
341 mbedtls_test_wrap_psa_export_key(arg0_key, arg1_data, arg2_data_size, arg3_data_length)
342
343psa_status_t mbedtls_test_wrap_psa_export_public_key(
344 mbedtls_svc_key_id_t arg0_key,
345 uint8_t *arg1_data,
346 size_t arg2_data_size,
347 size_t *arg3_data_length);
348#define psa_export_public_key(arg0_key, arg1_data, arg2_data_size, arg3_data_length) \
349 mbedtls_test_wrap_psa_export_public_key(arg0_key, arg1_data, arg2_data_size, arg3_data_length)
350
351psa_status_t mbedtls_test_wrap_psa_generate_key(
352 const psa_key_attributes_t *arg0_attributes,
353 mbedtls_svc_key_id_t *arg1_key);
354#define psa_generate_key(arg0_attributes, arg1_key) \
355 mbedtls_test_wrap_psa_generate_key(arg0_attributes, arg1_key)
356
Gilles Peskineb45af2f2024-06-07 08:29:44 +0200357psa_status_t mbedtls_test_wrap_psa_generate_key_custom(
358 const psa_key_attributes_t *arg0_attributes,
359 const psa_custom_key_parameters_t *arg1_custom,
360 const uint8_t *arg2_custom_data,
361 size_t arg3_custom_data_length,
362 mbedtls_svc_key_id_t *arg4_key);
363#define psa_generate_key_custom(arg0_attributes, arg1_custom, arg2_custom_data, arg3_custom_data_length, arg4_key) \
364 mbedtls_test_wrap_psa_generate_key_custom(arg0_attributes, arg1_custom, arg2_custom_data, arg3_custom_data_length, arg4_key)
365
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100366psa_status_t mbedtls_test_wrap_psa_generate_random(
367 uint8_t *arg0_output,
368 size_t arg1_output_size);
369#define psa_generate_random(arg0_output, arg1_output_size) \
370 mbedtls_test_wrap_psa_generate_random(arg0_output, arg1_output_size)
371
372psa_status_t mbedtls_test_wrap_psa_get_key_attributes(
373 mbedtls_svc_key_id_t arg0_key,
374 psa_key_attributes_t *arg1_attributes);
375#define psa_get_key_attributes(arg0_key, arg1_attributes) \
376 mbedtls_test_wrap_psa_get_key_attributes(arg0_key, arg1_attributes)
377
378psa_status_t mbedtls_test_wrap_psa_hash_abort(
379 psa_hash_operation_t *arg0_operation);
380#define psa_hash_abort(arg0_operation) \
381 mbedtls_test_wrap_psa_hash_abort(arg0_operation)
382
383psa_status_t mbedtls_test_wrap_psa_hash_clone(
384 const psa_hash_operation_t *arg0_source_operation,
385 psa_hash_operation_t *arg1_target_operation);
386#define psa_hash_clone(arg0_source_operation, arg1_target_operation) \
387 mbedtls_test_wrap_psa_hash_clone(arg0_source_operation, arg1_target_operation)
388
389psa_status_t mbedtls_test_wrap_psa_hash_compare(
390 psa_algorithm_t arg0_alg,
391 const uint8_t *arg1_input,
392 size_t arg2_input_length,
393 const uint8_t *arg3_hash,
394 size_t arg4_hash_length);
395#define psa_hash_compare(arg0_alg, arg1_input, arg2_input_length, arg3_hash, arg4_hash_length) \
396 mbedtls_test_wrap_psa_hash_compare(arg0_alg, arg1_input, arg2_input_length, arg3_hash, arg4_hash_length)
397
398psa_status_t mbedtls_test_wrap_psa_hash_compute(
399 psa_algorithm_t arg0_alg,
400 const uint8_t *arg1_input,
401 size_t arg2_input_length,
402 uint8_t *arg3_hash,
403 size_t arg4_hash_size,
404 size_t *arg5_hash_length);
405#define psa_hash_compute(arg0_alg, arg1_input, arg2_input_length, arg3_hash, arg4_hash_size, arg5_hash_length) \
406 mbedtls_test_wrap_psa_hash_compute(arg0_alg, arg1_input, arg2_input_length, arg3_hash, arg4_hash_size, arg5_hash_length)
407
408psa_status_t mbedtls_test_wrap_psa_hash_finish(
409 psa_hash_operation_t *arg0_operation,
410 uint8_t *arg1_hash,
411 size_t arg2_hash_size,
412 size_t *arg3_hash_length);
413#define psa_hash_finish(arg0_operation, arg1_hash, arg2_hash_size, arg3_hash_length) \
414 mbedtls_test_wrap_psa_hash_finish(arg0_operation, arg1_hash, arg2_hash_size, arg3_hash_length)
415
416psa_status_t mbedtls_test_wrap_psa_hash_setup(
417 psa_hash_operation_t *arg0_operation,
418 psa_algorithm_t arg1_alg);
419#define psa_hash_setup(arg0_operation, arg1_alg) \
420 mbedtls_test_wrap_psa_hash_setup(arg0_operation, arg1_alg)
421
422psa_status_t mbedtls_test_wrap_psa_hash_update(
423 psa_hash_operation_t *arg0_operation,
424 const uint8_t *arg1_input,
425 size_t arg2_input_length);
426#define psa_hash_update(arg0_operation, arg1_input, arg2_input_length) \
427 mbedtls_test_wrap_psa_hash_update(arg0_operation, arg1_input, arg2_input_length)
428
429psa_status_t mbedtls_test_wrap_psa_hash_verify(
430 psa_hash_operation_t *arg0_operation,
431 const uint8_t *arg1_hash,
432 size_t arg2_hash_length);
433#define psa_hash_verify(arg0_operation, arg1_hash, arg2_hash_length) \
434 mbedtls_test_wrap_psa_hash_verify(arg0_operation, arg1_hash, arg2_hash_length)
435
436psa_status_t mbedtls_test_wrap_psa_import_key(
437 const psa_key_attributes_t *arg0_attributes,
438 const uint8_t *arg1_data,
439 size_t arg2_data_length,
440 mbedtls_svc_key_id_t *arg3_key);
441#define psa_import_key(arg0_attributes, arg1_data, arg2_data_length, arg3_key) \
442 mbedtls_test_wrap_psa_import_key(arg0_attributes, arg1_data, arg2_data_length, arg3_key)
443
Paul Elliottc884b292024-07-19 17:32:42 +0100444psa_status_t mbedtls_test_wrap_psa_key_agreement_iop_abort(
445 psa_key_agreement_iop_t *arg0_operation);
446#define psa_key_agreement_iop_abort(arg0_operation) \
447 mbedtls_test_wrap_psa_key_agreement_iop_abort(arg0_operation)
448
449psa_status_t mbedtls_test_wrap_psa_key_agreement_iop_complete(
450 psa_key_agreement_iop_t *arg0_operation,
451 psa_key_id_t *arg1_key);
452#define psa_key_agreement_iop_complete(arg0_operation, arg1_key) \
453 mbedtls_test_wrap_psa_key_agreement_iop_complete(arg0_operation, arg1_key)
454
455psa_status_t mbedtls_test_wrap_psa_key_agreement_iop_setup(
456 psa_key_agreement_iop_t *arg0_operation,
457 psa_key_id_t arg1_private_key,
458 const uint8_t *arg2_peer_key,
459 size_t arg3_peer_key_length,
460 psa_algorithm_t arg4_alg,
461 const psa_key_attributes_t *arg5_attributes);
462#define psa_key_agreement_iop_setup(arg0_operation, arg1_private_key, arg2_peer_key, arg3_peer_key_length, arg4_alg, arg5_attributes) \
463 mbedtls_test_wrap_psa_key_agreement_iop_setup(arg0_operation, arg1_private_key, arg2_peer_key, arg3_peer_key_length, arg4_alg, arg5_attributes)
464
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100465psa_status_t mbedtls_test_wrap_psa_key_derivation_abort(
466 psa_key_derivation_operation_t *arg0_operation);
467#define psa_key_derivation_abort(arg0_operation) \
468 mbedtls_test_wrap_psa_key_derivation_abort(arg0_operation)
469
470psa_status_t mbedtls_test_wrap_psa_key_derivation_get_capacity(
471 const psa_key_derivation_operation_t *arg0_operation,
472 size_t *arg1_capacity);
473#define psa_key_derivation_get_capacity(arg0_operation, arg1_capacity) \
474 mbedtls_test_wrap_psa_key_derivation_get_capacity(arg0_operation, arg1_capacity)
475
476psa_status_t mbedtls_test_wrap_psa_key_derivation_input_bytes(
477 psa_key_derivation_operation_t *arg0_operation,
478 psa_key_derivation_step_t arg1_step,
479 const uint8_t *arg2_data,
480 size_t arg3_data_length);
481#define psa_key_derivation_input_bytes(arg0_operation, arg1_step, arg2_data, arg3_data_length) \
482 mbedtls_test_wrap_psa_key_derivation_input_bytes(arg0_operation, arg1_step, arg2_data, arg3_data_length)
483
484psa_status_t mbedtls_test_wrap_psa_key_derivation_input_integer(
485 psa_key_derivation_operation_t *arg0_operation,
486 psa_key_derivation_step_t arg1_step,
487 uint64_t arg2_value);
488#define psa_key_derivation_input_integer(arg0_operation, arg1_step, arg2_value) \
489 mbedtls_test_wrap_psa_key_derivation_input_integer(arg0_operation, arg1_step, arg2_value)
490
491psa_status_t mbedtls_test_wrap_psa_key_derivation_input_key(
492 psa_key_derivation_operation_t *arg0_operation,
493 psa_key_derivation_step_t arg1_step,
494 mbedtls_svc_key_id_t arg2_key);
495#define psa_key_derivation_input_key(arg0_operation, arg1_step, arg2_key) \
496 mbedtls_test_wrap_psa_key_derivation_input_key(arg0_operation, arg1_step, arg2_key)
497
498psa_status_t mbedtls_test_wrap_psa_key_derivation_key_agreement(
499 psa_key_derivation_operation_t *arg0_operation,
500 psa_key_derivation_step_t arg1_step,
501 mbedtls_svc_key_id_t arg2_private_key,
502 const uint8_t *arg3_peer_key,
503 size_t arg4_peer_key_length);
504#define psa_key_derivation_key_agreement(arg0_operation, arg1_step, arg2_private_key, arg3_peer_key, arg4_peer_key_length) \
505 mbedtls_test_wrap_psa_key_derivation_key_agreement(arg0_operation, arg1_step, arg2_private_key, arg3_peer_key, arg4_peer_key_length)
506
507psa_status_t mbedtls_test_wrap_psa_key_derivation_output_bytes(
508 psa_key_derivation_operation_t *arg0_operation,
509 uint8_t *arg1_output,
510 size_t arg2_output_length);
511#define psa_key_derivation_output_bytes(arg0_operation, arg1_output, arg2_output_length) \
512 mbedtls_test_wrap_psa_key_derivation_output_bytes(arg0_operation, arg1_output, arg2_output_length)
513
514psa_status_t mbedtls_test_wrap_psa_key_derivation_output_key(
515 const psa_key_attributes_t *arg0_attributes,
516 psa_key_derivation_operation_t *arg1_operation,
517 mbedtls_svc_key_id_t *arg2_key);
518#define psa_key_derivation_output_key(arg0_attributes, arg1_operation, arg2_key) \
519 mbedtls_test_wrap_psa_key_derivation_output_key(arg0_attributes, arg1_operation, arg2_key)
520
Gilles Peskineb45af2f2024-06-07 08:29:44 +0200521psa_status_t mbedtls_test_wrap_psa_key_derivation_output_key_custom(
522 const psa_key_attributes_t *arg0_attributes,
523 psa_key_derivation_operation_t *arg1_operation,
524 const psa_custom_key_parameters_t *arg2_custom,
525 const uint8_t *arg3_custom_data,
526 size_t arg4_custom_data_length,
527 mbedtls_svc_key_id_t *arg5_key);
528#define psa_key_derivation_output_key_custom(arg0_attributes, arg1_operation, arg2_custom, arg3_custom_data, arg4_custom_data_length, arg5_key) \
529 mbedtls_test_wrap_psa_key_derivation_output_key_custom(arg0_attributes, arg1_operation, arg2_custom, arg3_custom_data, arg4_custom_data_length, arg5_key)
530
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100531psa_status_t mbedtls_test_wrap_psa_key_derivation_set_capacity(
532 psa_key_derivation_operation_t *arg0_operation,
533 size_t arg1_capacity);
534#define psa_key_derivation_set_capacity(arg0_operation, arg1_capacity) \
535 mbedtls_test_wrap_psa_key_derivation_set_capacity(arg0_operation, arg1_capacity)
536
537psa_status_t mbedtls_test_wrap_psa_key_derivation_setup(
538 psa_key_derivation_operation_t *arg0_operation,
539 psa_algorithm_t arg1_alg);
540#define psa_key_derivation_setup(arg0_operation, arg1_alg) \
541 mbedtls_test_wrap_psa_key_derivation_setup(arg0_operation, arg1_alg)
542
543psa_status_t mbedtls_test_wrap_psa_mac_abort(
544 psa_mac_operation_t *arg0_operation);
545#define psa_mac_abort(arg0_operation) \
546 mbedtls_test_wrap_psa_mac_abort(arg0_operation)
547
548psa_status_t mbedtls_test_wrap_psa_mac_compute(
549 mbedtls_svc_key_id_t arg0_key,
550 psa_algorithm_t arg1_alg,
551 const uint8_t *arg2_input,
552 size_t arg3_input_length,
553 uint8_t *arg4_mac,
554 size_t arg5_mac_size,
555 size_t *arg6_mac_length);
556#define psa_mac_compute(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_mac, arg5_mac_size, arg6_mac_length) \
557 mbedtls_test_wrap_psa_mac_compute(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_mac, arg5_mac_size, arg6_mac_length)
558
559psa_status_t mbedtls_test_wrap_psa_mac_sign_finish(
560 psa_mac_operation_t *arg0_operation,
561 uint8_t *arg1_mac,
562 size_t arg2_mac_size,
563 size_t *arg3_mac_length);
564#define psa_mac_sign_finish(arg0_operation, arg1_mac, arg2_mac_size, arg3_mac_length) \
565 mbedtls_test_wrap_psa_mac_sign_finish(arg0_operation, arg1_mac, arg2_mac_size, arg3_mac_length)
566
567psa_status_t mbedtls_test_wrap_psa_mac_sign_setup(
568 psa_mac_operation_t *arg0_operation,
569 mbedtls_svc_key_id_t arg1_key,
570 psa_algorithm_t arg2_alg);
571#define psa_mac_sign_setup(arg0_operation, arg1_key, arg2_alg) \
572 mbedtls_test_wrap_psa_mac_sign_setup(arg0_operation, arg1_key, arg2_alg)
573
574psa_status_t mbedtls_test_wrap_psa_mac_update(
575 psa_mac_operation_t *arg0_operation,
576 const uint8_t *arg1_input,
577 size_t arg2_input_length);
578#define psa_mac_update(arg0_operation, arg1_input, arg2_input_length) \
579 mbedtls_test_wrap_psa_mac_update(arg0_operation, arg1_input, arg2_input_length)
580
581psa_status_t mbedtls_test_wrap_psa_mac_verify(
582 mbedtls_svc_key_id_t arg0_key,
583 psa_algorithm_t arg1_alg,
584 const uint8_t *arg2_input,
585 size_t arg3_input_length,
586 const uint8_t *arg4_mac,
587 size_t arg5_mac_length);
588#define psa_mac_verify(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_mac, arg5_mac_length) \
589 mbedtls_test_wrap_psa_mac_verify(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_mac, arg5_mac_length)
590
591psa_status_t mbedtls_test_wrap_psa_mac_verify_finish(
592 psa_mac_operation_t *arg0_operation,
593 const uint8_t *arg1_mac,
594 size_t arg2_mac_length);
595#define psa_mac_verify_finish(arg0_operation, arg1_mac, arg2_mac_length) \
596 mbedtls_test_wrap_psa_mac_verify_finish(arg0_operation, arg1_mac, arg2_mac_length)
597
598psa_status_t mbedtls_test_wrap_psa_mac_verify_setup(
599 psa_mac_operation_t *arg0_operation,
600 mbedtls_svc_key_id_t arg1_key,
601 psa_algorithm_t arg2_alg);
602#define psa_mac_verify_setup(arg0_operation, arg1_key, arg2_alg) \
603 mbedtls_test_wrap_psa_mac_verify_setup(arg0_operation, arg1_key, arg2_alg)
604
Ronald Cron7062d3d2024-05-24 10:28:15 +0200605#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100606psa_status_t mbedtls_test_wrap_psa_pake_abort(
607 psa_pake_operation_t *arg0_operation);
608#define psa_pake_abort(arg0_operation) \
609 mbedtls_test_wrap_psa_pake_abort(arg0_operation)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200610#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100611
Ronald Cron7062d3d2024-05-24 10:28:15 +0200612#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100613psa_status_t mbedtls_test_wrap_psa_pake_get_implicit_key(
614 psa_pake_operation_t *arg0_operation,
615 psa_key_derivation_operation_t *arg1_output);
616#define psa_pake_get_implicit_key(arg0_operation, arg1_output) \
617 mbedtls_test_wrap_psa_pake_get_implicit_key(arg0_operation, arg1_output)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200618#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100619
Ronald Cron7062d3d2024-05-24 10:28:15 +0200620#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100621psa_status_t mbedtls_test_wrap_psa_pake_input(
622 psa_pake_operation_t *arg0_operation,
623 psa_pake_step_t arg1_step,
624 const uint8_t *arg2_input,
625 size_t arg3_input_length);
626#define psa_pake_input(arg0_operation, arg1_step, arg2_input, arg3_input_length) \
627 mbedtls_test_wrap_psa_pake_input(arg0_operation, arg1_step, arg2_input, arg3_input_length)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200628#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100629
Ronald Cron7062d3d2024-05-24 10:28:15 +0200630#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100631psa_status_t mbedtls_test_wrap_psa_pake_output(
632 psa_pake_operation_t *arg0_operation,
633 psa_pake_step_t arg1_step,
634 uint8_t *arg2_output,
635 size_t arg3_output_size,
636 size_t *arg4_output_length);
637#define psa_pake_output(arg0_operation, arg1_step, arg2_output, arg3_output_size, arg4_output_length) \
638 mbedtls_test_wrap_psa_pake_output(arg0_operation, arg1_step, arg2_output, arg3_output_size, arg4_output_length)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200639#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100640
Ronald Cron7062d3d2024-05-24 10:28:15 +0200641#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100642psa_status_t mbedtls_test_wrap_psa_pake_set_password_key(
643 psa_pake_operation_t *arg0_operation,
644 mbedtls_svc_key_id_t arg1_password);
645#define psa_pake_set_password_key(arg0_operation, arg1_password) \
646 mbedtls_test_wrap_psa_pake_set_password_key(arg0_operation, arg1_password)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200647#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100648
Ronald Cron7062d3d2024-05-24 10:28:15 +0200649#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100650psa_status_t mbedtls_test_wrap_psa_pake_set_peer(
651 psa_pake_operation_t *arg0_operation,
652 const uint8_t *arg1_peer_id,
653 size_t arg2_peer_id_len);
654#define psa_pake_set_peer(arg0_operation, arg1_peer_id, arg2_peer_id_len) \
655 mbedtls_test_wrap_psa_pake_set_peer(arg0_operation, arg1_peer_id, arg2_peer_id_len)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200656#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100657
Ronald Cron7062d3d2024-05-24 10:28:15 +0200658#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100659psa_status_t mbedtls_test_wrap_psa_pake_set_role(
660 psa_pake_operation_t *arg0_operation,
661 psa_pake_role_t arg1_role);
662#define psa_pake_set_role(arg0_operation, arg1_role) \
663 mbedtls_test_wrap_psa_pake_set_role(arg0_operation, arg1_role)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200664#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100665
Ronald Cron7062d3d2024-05-24 10:28:15 +0200666#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100667psa_status_t mbedtls_test_wrap_psa_pake_set_user(
668 psa_pake_operation_t *arg0_operation,
669 const uint8_t *arg1_user_id,
670 size_t arg2_user_id_len);
671#define psa_pake_set_user(arg0_operation, arg1_user_id, arg2_user_id_len) \
672 mbedtls_test_wrap_psa_pake_set_user(arg0_operation, arg1_user_id, arg2_user_id_len)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200673#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100674
Ronald Cron7062d3d2024-05-24 10:28:15 +0200675#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100676psa_status_t mbedtls_test_wrap_psa_pake_setup(
677 psa_pake_operation_t *arg0_operation,
678 const psa_pake_cipher_suite_t *arg1_cipher_suite);
679#define psa_pake_setup(arg0_operation, arg1_cipher_suite) \
680 mbedtls_test_wrap_psa_pake_setup(arg0_operation, arg1_cipher_suite)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200681#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100682
683psa_status_t mbedtls_test_wrap_psa_purge_key(
684 mbedtls_svc_key_id_t arg0_key);
685#define psa_purge_key(arg0_key) \
686 mbedtls_test_wrap_psa_purge_key(arg0_key)
687
688psa_status_t mbedtls_test_wrap_psa_raw_key_agreement(
689 psa_algorithm_t arg0_alg,
690 mbedtls_svc_key_id_t arg1_private_key,
691 const uint8_t *arg2_peer_key,
692 size_t arg3_peer_key_length,
693 uint8_t *arg4_output,
694 size_t arg5_output_size,
695 size_t *arg6_output_length);
696#define psa_raw_key_agreement(arg0_alg, arg1_private_key, arg2_peer_key, arg3_peer_key_length, arg4_output, arg5_output_size, arg6_output_length) \
697 mbedtls_test_wrap_psa_raw_key_agreement(arg0_alg, arg1_private_key, arg2_peer_key, arg3_peer_key_length, arg4_output, arg5_output_size, arg6_output_length)
698
699psa_status_t mbedtls_test_wrap_psa_sign_hash(
700 mbedtls_svc_key_id_t arg0_key,
701 psa_algorithm_t arg1_alg,
702 const uint8_t *arg2_hash,
703 size_t arg3_hash_length,
704 uint8_t *arg4_signature,
705 size_t arg5_signature_size,
706 size_t *arg6_signature_length);
707#define psa_sign_hash(arg0_key, arg1_alg, arg2_hash, arg3_hash_length, arg4_signature, arg5_signature_size, arg6_signature_length) \
708 mbedtls_test_wrap_psa_sign_hash(arg0_key, arg1_alg, arg2_hash, arg3_hash_length, arg4_signature, arg5_signature_size, arg6_signature_length)
709
710psa_status_t mbedtls_test_wrap_psa_sign_hash_abort(
711 psa_sign_hash_interruptible_operation_t *arg0_operation);
712#define psa_sign_hash_abort(arg0_operation) \
713 mbedtls_test_wrap_psa_sign_hash_abort(arg0_operation)
714
715psa_status_t mbedtls_test_wrap_psa_sign_hash_complete(
716 psa_sign_hash_interruptible_operation_t *arg0_operation,
717 uint8_t *arg1_signature,
718 size_t arg2_signature_size,
719 size_t *arg3_signature_length);
720#define psa_sign_hash_complete(arg0_operation, arg1_signature, arg2_signature_size, arg3_signature_length) \
721 mbedtls_test_wrap_psa_sign_hash_complete(arg0_operation, arg1_signature, arg2_signature_size, arg3_signature_length)
722
723psa_status_t mbedtls_test_wrap_psa_sign_hash_start(
724 psa_sign_hash_interruptible_operation_t *arg0_operation,
725 mbedtls_svc_key_id_t arg1_key,
726 psa_algorithm_t arg2_alg,
727 const uint8_t *arg3_hash,
728 size_t arg4_hash_length);
729#define psa_sign_hash_start(arg0_operation, arg1_key, arg2_alg, arg3_hash, arg4_hash_length) \
730 mbedtls_test_wrap_psa_sign_hash_start(arg0_operation, arg1_key, arg2_alg, arg3_hash, arg4_hash_length)
731
732psa_status_t mbedtls_test_wrap_psa_sign_message(
733 mbedtls_svc_key_id_t arg0_key,
734 psa_algorithm_t arg1_alg,
735 const uint8_t *arg2_input,
736 size_t arg3_input_length,
737 uint8_t *arg4_signature,
738 size_t arg5_signature_size,
739 size_t *arg6_signature_length);
740#define psa_sign_message(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_signature, arg5_signature_size, arg6_signature_length) \
741 mbedtls_test_wrap_psa_sign_message(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_signature, arg5_signature_size, arg6_signature_length)
742
743psa_status_t mbedtls_test_wrap_psa_verify_hash(
744 mbedtls_svc_key_id_t arg0_key,
745 psa_algorithm_t arg1_alg,
746 const uint8_t *arg2_hash,
747 size_t arg3_hash_length,
748 const uint8_t *arg4_signature,
749 size_t arg5_signature_length);
750#define psa_verify_hash(arg0_key, arg1_alg, arg2_hash, arg3_hash_length, arg4_signature, arg5_signature_length) \
751 mbedtls_test_wrap_psa_verify_hash(arg0_key, arg1_alg, arg2_hash, arg3_hash_length, arg4_signature, arg5_signature_length)
752
753psa_status_t mbedtls_test_wrap_psa_verify_hash_abort(
754 psa_verify_hash_interruptible_operation_t *arg0_operation);
755#define psa_verify_hash_abort(arg0_operation) \
756 mbedtls_test_wrap_psa_verify_hash_abort(arg0_operation)
757
758psa_status_t mbedtls_test_wrap_psa_verify_hash_complete(
759 psa_verify_hash_interruptible_operation_t *arg0_operation);
760#define psa_verify_hash_complete(arg0_operation) \
761 mbedtls_test_wrap_psa_verify_hash_complete(arg0_operation)
762
763psa_status_t mbedtls_test_wrap_psa_verify_hash_start(
764 psa_verify_hash_interruptible_operation_t *arg0_operation,
765 mbedtls_svc_key_id_t arg1_key,
766 psa_algorithm_t arg2_alg,
767 const uint8_t *arg3_hash,
768 size_t arg4_hash_length,
769 const uint8_t *arg5_signature,
770 size_t arg6_signature_length);
771#define psa_verify_hash_start(arg0_operation, arg1_key, arg2_alg, arg3_hash, arg4_hash_length, arg5_signature, arg6_signature_length) \
772 mbedtls_test_wrap_psa_verify_hash_start(arg0_operation, arg1_key, arg2_alg, arg3_hash, arg4_hash_length, arg5_signature, arg6_signature_length)
773
774psa_status_t mbedtls_test_wrap_psa_verify_message(
775 mbedtls_svc_key_id_t arg0_key,
776 psa_algorithm_t arg1_alg,
777 const uint8_t *arg2_input,
778 size_t arg3_input_length,
779 const uint8_t *arg4_signature,
780 size_t arg5_signature_length);
781#define psa_verify_message(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_signature, arg5_signature_length) \
782 mbedtls_test_wrap_psa_verify_message(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_signature, arg5_signature_length)
783
Gilles Peskine4411c9c2024-01-04 20:51:38 +0100784#endif /* defined(MBEDTLS_PSA_CRYPTO_C) && defined(MBEDTLS_TEST_HOOKS) && \
785 !defined(RECORD_PSA_STATUS_COVERAGE_LOG) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100786
787#ifdef __cplusplus
788}
789#endif
790
791#endif /* TEST_PSA_TEST_WRAPPERS_H */
792
793/* End of automatically generated file. */