blob: 95518559c56ec813c259bf3a2dc2476fcee492c1 [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
David Horstmann80a5dbd2024-03-12 17:02:48 +0000357psa_status_t mbedtls_test_wrap_psa_generate_key_ext(
358 const psa_key_attributes_t *arg0_attributes,
359 const psa_key_production_parameters_t *arg1_params,
360 size_t arg2_params_data_length,
361 mbedtls_svc_key_id_t *arg3_key);
362#define psa_generate_key_ext(arg0_attributes, arg1_params, arg2_params_data_length, arg3_key) \
363 mbedtls_test_wrap_psa_generate_key_ext(arg0_attributes, arg1_params, arg2_params_data_length, arg3_key)
364
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100365psa_status_t mbedtls_test_wrap_psa_generate_random(
366 uint8_t *arg0_output,
367 size_t arg1_output_size);
368#define psa_generate_random(arg0_output, arg1_output_size) \
369 mbedtls_test_wrap_psa_generate_random(arg0_output, arg1_output_size)
370
371psa_status_t mbedtls_test_wrap_psa_get_key_attributes(
372 mbedtls_svc_key_id_t arg0_key,
373 psa_key_attributes_t *arg1_attributes);
374#define psa_get_key_attributes(arg0_key, arg1_attributes) \
375 mbedtls_test_wrap_psa_get_key_attributes(arg0_key, arg1_attributes)
376
377psa_status_t mbedtls_test_wrap_psa_hash_abort(
378 psa_hash_operation_t *arg0_operation);
379#define psa_hash_abort(arg0_operation) \
380 mbedtls_test_wrap_psa_hash_abort(arg0_operation)
381
382psa_status_t mbedtls_test_wrap_psa_hash_clone(
383 const psa_hash_operation_t *arg0_source_operation,
384 psa_hash_operation_t *arg1_target_operation);
385#define psa_hash_clone(arg0_source_operation, arg1_target_operation) \
386 mbedtls_test_wrap_psa_hash_clone(arg0_source_operation, arg1_target_operation)
387
388psa_status_t mbedtls_test_wrap_psa_hash_compare(
389 psa_algorithm_t arg0_alg,
390 const uint8_t *arg1_input,
391 size_t arg2_input_length,
392 const uint8_t *arg3_hash,
393 size_t arg4_hash_length);
394#define psa_hash_compare(arg0_alg, arg1_input, arg2_input_length, arg3_hash, arg4_hash_length) \
395 mbedtls_test_wrap_psa_hash_compare(arg0_alg, arg1_input, arg2_input_length, arg3_hash, arg4_hash_length)
396
397psa_status_t mbedtls_test_wrap_psa_hash_compute(
398 psa_algorithm_t arg0_alg,
399 const uint8_t *arg1_input,
400 size_t arg2_input_length,
401 uint8_t *arg3_hash,
402 size_t arg4_hash_size,
403 size_t *arg5_hash_length);
404#define psa_hash_compute(arg0_alg, arg1_input, arg2_input_length, arg3_hash, arg4_hash_size, arg5_hash_length) \
405 mbedtls_test_wrap_psa_hash_compute(arg0_alg, arg1_input, arg2_input_length, arg3_hash, arg4_hash_size, arg5_hash_length)
406
407psa_status_t mbedtls_test_wrap_psa_hash_finish(
408 psa_hash_operation_t *arg0_operation,
409 uint8_t *arg1_hash,
410 size_t arg2_hash_size,
411 size_t *arg3_hash_length);
412#define psa_hash_finish(arg0_operation, arg1_hash, arg2_hash_size, arg3_hash_length) \
413 mbedtls_test_wrap_psa_hash_finish(arg0_operation, arg1_hash, arg2_hash_size, arg3_hash_length)
414
415psa_status_t mbedtls_test_wrap_psa_hash_setup(
416 psa_hash_operation_t *arg0_operation,
417 psa_algorithm_t arg1_alg);
418#define psa_hash_setup(arg0_operation, arg1_alg) \
419 mbedtls_test_wrap_psa_hash_setup(arg0_operation, arg1_alg)
420
421psa_status_t mbedtls_test_wrap_psa_hash_update(
422 psa_hash_operation_t *arg0_operation,
423 const uint8_t *arg1_input,
424 size_t arg2_input_length);
425#define psa_hash_update(arg0_operation, arg1_input, arg2_input_length) \
426 mbedtls_test_wrap_psa_hash_update(arg0_operation, arg1_input, arg2_input_length)
427
428psa_status_t mbedtls_test_wrap_psa_hash_verify(
429 psa_hash_operation_t *arg0_operation,
430 const uint8_t *arg1_hash,
431 size_t arg2_hash_length);
432#define psa_hash_verify(arg0_operation, arg1_hash, arg2_hash_length) \
433 mbedtls_test_wrap_psa_hash_verify(arg0_operation, arg1_hash, arg2_hash_length)
434
435psa_status_t mbedtls_test_wrap_psa_import_key(
436 const psa_key_attributes_t *arg0_attributes,
437 const uint8_t *arg1_data,
438 size_t arg2_data_length,
439 mbedtls_svc_key_id_t *arg3_key);
440#define psa_import_key(arg0_attributes, arg1_data, arg2_data_length, arg3_key) \
441 mbedtls_test_wrap_psa_import_key(arg0_attributes, arg1_data, arg2_data_length, arg3_key)
442
443psa_status_t mbedtls_test_wrap_psa_key_derivation_abort(
444 psa_key_derivation_operation_t *arg0_operation);
445#define psa_key_derivation_abort(arg0_operation) \
446 mbedtls_test_wrap_psa_key_derivation_abort(arg0_operation)
447
448psa_status_t mbedtls_test_wrap_psa_key_derivation_get_capacity(
449 const psa_key_derivation_operation_t *arg0_operation,
450 size_t *arg1_capacity);
451#define psa_key_derivation_get_capacity(arg0_operation, arg1_capacity) \
452 mbedtls_test_wrap_psa_key_derivation_get_capacity(arg0_operation, arg1_capacity)
453
454psa_status_t mbedtls_test_wrap_psa_key_derivation_input_bytes(
455 psa_key_derivation_operation_t *arg0_operation,
456 psa_key_derivation_step_t arg1_step,
457 const uint8_t *arg2_data,
458 size_t arg3_data_length);
459#define psa_key_derivation_input_bytes(arg0_operation, arg1_step, arg2_data, arg3_data_length) \
460 mbedtls_test_wrap_psa_key_derivation_input_bytes(arg0_operation, arg1_step, arg2_data, arg3_data_length)
461
462psa_status_t mbedtls_test_wrap_psa_key_derivation_input_integer(
463 psa_key_derivation_operation_t *arg0_operation,
464 psa_key_derivation_step_t arg1_step,
465 uint64_t arg2_value);
466#define psa_key_derivation_input_integer(arg0_operation, arg1_step, arg2_value) \
467 mbedtls_test_wrap_psa_key_derivation_input_integer(arg0_operation, arg1_step, arg2_value)
468
469psa_status_t mbedtls_test_wrap_psa_key_derivation_input_key(
470 psa_key_derivation_operation_t *arg0_operation,
471 psa_key_derivation_step_t arg1_step,
472 mbedtls_svc_key_id_t arg2_key);
473#define psa_key_derivation_input_key(arg0_operation, arg1_step, arg2_key) \
474 mbedtls_test_wrap_psa_key_derivation_input_key(arg0_operation, arg1_step, arg2_key)
475
476psa_status_t mbedtls_test_wrap_psa_key_derivation_key_agreement(
477 psa_key_derivation_operation_t *arg0_operation,
478 psa_key_derivation_step_t arg1_step,
479 mbedtls_svc_key_id_t arg2_private_key,
480 const uint8_t *arg3_peer_key,
481 size_t arg4_peer_key_length);
482#define psa_key_derivation_key_agreement(arg0_operation, arg1_step, arg2_private_key, arg3_peer_key, arg4_peer_key_length) \
483 mbedtls_test_wrap_psa_key_derivation_key_agreement(arg0_operation, arg1_step, arg2_private_key, arg3_peer_key, arg4_peer_key_length)
484
485psa_status_t mbedtls_test_wrap_psa_key_derivation_output_bytes(
486 psa_key_derivation_operation_t *arg0_operation,
487 uint8_t *arg1_output,
488 size_t arg2_output_length);
489#define psa_key_derivation_output_bytes(arg0_operation, arg1_output, arg2_output_length) \
490 mbedtls_test_wrap_psa_key_derivation_output_bytes(arg0_operation, arg1_output, arg2_output_length)
491
492psa_status_t mbedtls_test_wrap_psa_key_derivation_output_key(
493 const psa_key_attributes_t *arg0_attributes,
494 psa_key_derivation_operation_t *arg1_operation,
495 mbedtls_svc_key_id_t *arg2_key);
496#define psa_key_derivation_output_key(arg0_attributes, arg1_operation, arg2_key) \
497 mbedtls_test_wrap_psa_key_derivation_output_key(arg0_attributes, arg1_operation, arg2_key)
498
David Horstmann80a5dbd2024-03-12 17:02:48 +0000499psa_status_t mbedtls_test_wrap_psa_key_derivation_output_key_ext(
500 const psa_key_attributes_t *arg0_attributes,
501 psa_key_derivation_operation_t *arg1_operation,
502 const psa_key_production_parameters_t *arg2_params,
503 size_t arg3_params_data_length,
504 mbedtls_svc_key_id_t *arg4_key);
505#define psa_key_derivation_output_key_ext(arg0_attributes, arg1_operation, arg2_params, arg3_params_data_length, arg4_key) \
506 mbedtls_test_wrap_psa_key_derivation_output_key_ext(arg0_attributes, arg1_operation, arg2_params, arg3_params_data_length, arg4_key)
507
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100508psa_status_t mbedtls_test_wrap_psa_key_derivation_set_capacity(
509 psa_key_derivation_operation_t *arg0_operation,
510 size_t arg1_capacity);
511#define psa_key_derivation_set_capacity(arg0_operation, arg1_capacity) \
512 mbedtls_test_wrap_psa_key_derivation_set_capacity(arg0_operation, arg1_capacity)
513
514psa_status_t mbedtls_test_wrap_psa_key_derivation_setup(
515 psa_key_derivation_operation_t *arg0_operation,
516 psa_algorithm_t arg1_alg);
517#define psa_key_derivation_setup(arg0_operation, arg1_alg) \
518 mbedtls_test_wrap_psa_key_derivation_setup(arg0_operation, arg1_alg)
519
520psa_status_t mbedtls_test_wrap_psa_mac_abort(
521 psa_mac_operation_t *arg0_operation);
522#define psa_mac_abort(arg0_operation) \
523 mbedtls_test_wrap_psa_mac_abort(arg0_operation)
524
525psa_status_t mbedtls_test_wrap_psa_mac_compute(
526 mbedtls_svc_key_id_t arg0_key,
527 psa_algorithm_t arg1_alg,
528 const uint8_t *arg2_input,
529 size_t arg3_input_length,
530 uint8_t *arg4_mac,
531 size_t arg5_mac_size,
532 size_t *arg6_mac_length);
533#define psa_mac_compute(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_mac, arg5_mac_size, arg6_mac_length) \
534 mbedtls_test_wrap_psa_mac_compute(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_mac, arg5_mac_size, arg6_mac_length)
535
536psa_status_t mbedtls_test_wrap_psa_mac_sign_finish(
537 psa_mac_operation_t *arg0_operation,
538 uint8_t *arg1_mac,
539 size_t arg2_mac_size,
540 size_t *arg3_mac_length);
541#define psa_mac_sign_finish(arg0_operation, arg1_mac, arg2_mac_size, arg3_mac_length) \
542 mbedtls_test_wrap_psa_mac_sign_finish(arg0_operation, arg1_mac, arg2_mac_size, arg3_mac_length)
543
544psa_status_t mbedtls_test_wrap_psa_mac_sign_setup(
545 psa_mac_operation_t *arg0_operation,
546 mbedtls_svc_key_id_t arg1_key,
547 psa_algorithm_t arg2_alg);
548#define psa_mac_sign_setup(arg0_operation, arg1_key, arg2_alg) \
549 mbedtls_test_wrap_psa_mac_sign_setup(arg0_operation, arg1_key, arg2_alg)
550
551psa_status_t mbedtls_test_wrap_psa_mac_update(
552 psa_mac_operation_t *arg0_operation,
553 const uint8_t *arg1_input,
554 size_t arg2_input_length);
555#define psa_mac_update(arg0_operation, arg1_input, arg2_input_length) \
556 mbedtls_test_wrap_psa_mac_update(arg0_operation, arg1_input, arg2_input_length)
557
558psa_status_t mbedtls_test_wrap_psa_mac_verify(
559 mbedtls_svc_key_id_t arg0_key,
560 psa_algorithm_t arg1_alg,
561 const uint8_t *arg2_input,
562 size_t arg3_input_length,
563 const uint8_t *arg4_mac,
564 size_t arg5_mac_length);
565#define psa_mac_verify(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_mac, arg5_mac_length) \
566 mbedtls_test_wrap_psa_mac_verify(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_mac, arg5_mac_length)
567
568psa_status_t mbedtls_test_wrap_psa_mac_verify_finish(
569 psa_mac_operation_t *arg0_operation,
570 const uint8_t *arg1_mac,
571 size_t arg2_mac_length);
572#define psa_mac_verify_finish(arg0_operation, arg1_mac, arg2_mac_length) \
573 mbedtls_test_wrap_psa_mac_verify_finish(arg0_operation, arg1_mac, arg2_mac_length)
574
575psa_status_t mbedtls_test_wrap_psa_mac_verify_setup(
576 psa_mac_operation_t *arg0_operation,
577 mbedtls_svc_key_id_t arg1_key,
578 psa_algorithm_t arg2_alg);
579#define psa_mac_verify_setup(arg0_operation, arg1_key, arg2_alg) \
580 mbedtls_test_wrap_psa_mac_verify_setup(arg0_operation, arg1_key, arg2_alg)
581
Ronald Cron7062d3d2024-05-24 10:28:15 +0200582#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100583psa_status_t mbedtls_test_wrap_psa_pake_abort(
584 psa_pake_operation_t *arg0_operation);
585#define psa_pake_abort(arg0_operation) \
586 mbedtls_test_wrap_psa_pake_abort(arg0_operation)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200587#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100588
Ronald Cron7062d3d2024-05-24 10:28:15 +0200589#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100590psa_status_t mbedtls_test_wrap_psa_pake_get_implicit_key(
591 psa_pake_operation_t *arg0_operation,
592 psa_key_derivation_operation_t *arg1_output);
593#define psa_pake_get_implicit_key(arg0_operation, arg1_output) \
594 mbedtls_test_wrap_psa_pake_get_implicit_key(arg0_operation, arg1_output)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200595#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100596
Ronald Cron7062d3d2024-05-24 10:28:15 +0200597#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100598psa_status_t mbedtls_test_wrap_psa_pake_input(
599 psa_pake_operation_t *arg0_operation,
600 psa_pake_step_t arg1_step,
601 const uint8_t *arg2_input,
602 size_t arg3_input_length);
603#define psa_pake_input(arg0_operation, arg1_step, arg2_input, arg3_input_length) \
604 mbedtls_test_wrap_psa_pake_input(arg0_operation, arg1_step, arg2_input, arg3_input_length)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200605#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100606
Ronald Cron7062d3d2024-05-24 10:28:15 +0200607#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100608psa_status_t mbedtls_test_wrap_psa_pake_output(
609 psa_pake_operation_t *arg0_operation,
610 psa_pake_step_t arg1_step,
611 uint8_t *arg2_output,
612 size_t arg3_output_size,
613 size_t *arg4_output_length);
614#define psa_pake_output(arg0_operation, arg1_step, arg2_output, arg3_output_size, arg4_output_length) \
615 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 +0200616#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100617
Ronald Cron7062d3d2024-05-24 10:28:15 +0200618#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100619psa_status_t mbedtls_test_wrap_psa_pake_set_password_key(
620 psa_pake_operation_t *arg0_operation,
621 mbedtls_svc_key_id_t arg1_password);
622#define psa_pake_set_password_key(arg0_operation, arg1_password) \
623 mbedtls_test_wrap_psa_pake_set_password_key(arg0_operation, arg1_password)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200624#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100625
Ronald Cron7062d3d2024-05-24 10:28:15 +0200626#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100627psa_status_t mbedtls_test_wrap_psa_pake_set_peer(
628 psa_pake_operation_t *arg0_operation,
629 const uint8_t *arg1_peer_id,
630 size_t arg2_peer_id_len);
631#define psa_pake_set_peer(arg0_operation, arg1_peer_id, arg2_peer_id_len) \
632 mbedtls_test_wrap_psa_pake_set_peer(arg0_operation, arg1_peer_id, arg2_peer_id_len)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200633#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100634
Ronald Cron7062d3d2024-05-24 10:28:15 +0200635#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100636psa_status_t mbedtls_test_wrap_psa_pake_set_role(
637 psa_pake_operation_t *arg0_operation,
638 psa_pake_role_t arg1_role);
639#define psa_pake_set_role(arg0_operation, arg1_role) \
640 mbedtls_test_wrap_psa_pake_set_role(arg0_operation, arg1_role)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200641#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100642
Ronald Cron7062d3d2024-05-24 10:28:15 +0200643#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100644psa_status_t mbedtls_test_wrap_psa_pake_set_user(
645 psa_pake_operation_t *arg0_operation,
646 const uint8_t *arg1_user_id,
647 size_t arg2_user_id_len);
648#define psa_pake_set_user(arg0_operation, arg1_user_id, arg2_user_id_len) \
649 mbedtls_test_wrap_psa_pake_set_user(arg0_operation, arg1_user_id, arg2_user_id_len)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200650#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100651
Ronald Cron7062d3d2024-05-24 10:28:15 +0200652#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100653psa_status_t mbedtls_test_wrap_psa_pake_setup(
654 psa_pake_operation_t *arg0_operation,
655 const psa_pake_cipher_suite_t *arg1_cipher_suite);
656#define psa_pake_setup(arg0_operation, arg1_cipher_suite) \
657 mbedtls_test_wrap_psa_pake_setup(arg0_operation, arg1_cipher_suite)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200658#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100659
660psa_status_t mbedtls_test_wrap_psa_purge_key(
661 mbedtls_svc_key_id_t arg0_key);
662#define psa_purge_key(arg0_key) \
663 mbedtls_test_wrap_psa_purge_key(arg0_key)
664
665psa_status_t mbedtls_test_wrap_psa_raw_key_agreement(
666 psa_algorithm_t arg0_alg,
667 mbedtls_svc_key_id_t arg1_private_key,
668 const uint8_t *arg2_peer_key,
669 size_t arg3_peer_key_length,
670 uint8_t *arg4_output,
671 size_t arg5_output_size,
672 size_t *arg6_output_length);
673#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) \
674 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)
675
676psa_status_t mbedtls_test_wrap_psa_sign_hash(
677 mbedtls_svc_key_id_t arg0_key,
678 psa_algorithm_t arg1_alg,
679 const uint8_t *arg2_hash,
680 size_t arg3_hash_length,
681 uint8_t *arg4_signature,
682 size_t arg5_signature_size,
683 size_t *arg6_signature_length);
684#define psa_sign_hash(arg0_key, arg1_alg, arg2_hash, arg3_hash_length, arg4_signature, arg5_signature_size, arg6_signature_length) \
685 mbedtls_test_wrap_psa_sign_hash(arg0_key, arg1_alg, arg2_hash, arg3_hash_length, arg4_signature, arg5_signature_size, arg6_signature_length)
686
687psa_status_t mbedtls_test_wrap_psa_sign_hash_abort(
688 psa_sign_hash_interruptible_operation_t *arg0_operation);
689#define psa_sign_hash_abort(arg0_operation) \
690 mbedtls_test_wrap_psa_sign_hash_abort(arg0_operation)
691
692psa_status_t mbedtls_test_wrap_psa_sign_hash_complete(
693 psa_sign_hash_interruptible_operation_t *arg0_operation,
694 uint8_t *arg1_signature,
695 size_t arg2_signature_size,
696 size_t *arg3_signature_length);
697#define psa_sign_hash_complete(arg0_operation, arg1_signature, arg2_signature_size, arg3_signature_length) \
698 mbedtls_test_wrap_psa_sign_hash_complete(arg0_operation, arg1_signature, arg2_signature_size, arg3_signature_length)
699
700psa_status_t mbedtls_test_wrap_psa_sign_hash_start(
701 psa_sign_hash_interruptible_operation_t *arg0_operation,
702 mbedtls_svc_key_id_t arg1_key,
703 psa_algorithm_t arg2_alg,
704 const uint8_t *arg3_hash,
705 size_t arg4_hash_length);
706#define psa_sign_hash_start(arg0_operation, arg1_key, arg2_alg, arg3_hash, arg4_hash_length) \
707 mbedtls_test_wrap_psa_sign_hash_start(arg0_operation, arg1_key, arg2_alg, arg3_hash, arg4_hash_length)
708
709psa_status_t mbedtls_test_wrap_psa_sign_message(
710 mbedtls_svc_key_id_t arg0_key,
711 psa_algorithm_t arg1_alg,
712 const uint8_t *arg2_input,
713 size_t arg3_input_length,
714 uint8_t *arg4_signature,
715 size_t arg5_signature_size,
716 size_t *arg6_signature_length);
717#define psa_sign_message(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_signature, arg5_signature_size, arg6_signature_length) \
718 mbedtls_test_wrap_psa_sign_message(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_signature, arg5_signature_size, arg6_signature_length)
719
720psa_status_t mbedtls_test_wrap_psa_verify_hash(
721 mbedtls_svc_key_id_t arg0_key,
722 psa_algorithm_t arg1_alg,
723 const uint8_t *arg2_hash,
724 size_t arg3_hash_length,
725 const uint8_t *arg4_signature,
726 size_t arg5_signature_length);
727#define psa_verify_hash(arg0_key, arg1_alg, arg2_hash, arg3_hash_length, arg4_signature, arg5_signature_length) \
728 mbedtls_test_wrap_psa_verify_hash(arg0_key, arg1_alg, arg2_hash, arg3_hash_length, arg4_signature, arg5_signature_length)
729
730psa_status_t mbedtls_test_wrap_psa_verify_hash_abort(
731 psa_verify_hash_interruptible_operation_t *arg0_operation);
732#define psa_verify_hash_abort(arg0_operation) \
733 mbedtls_test_wrap_psa_verify_hash_abort(arg0_operation)
734
735psa_status_t mbedtls_test_wrap_psa_verify_hash_complete(
736 psa_verify_hash_interruptible_operation_t *arg0_operation);
737#define psa_verify_hash_complete(arg0_operation) \
738 mbedtls_test_wrap_psa_verify_hash_complete(arg0_operation)
739
740psa_status_t mbedtls_test_wrap_psa_verify_hash_start(
741 psa_verify_hash_interruptible_operation_t *arg0_operation,
742 mbedtls_svc_key_id_t arg1_key,
743 psa_algorithm_t arg2_alg,
744 const uint8_t *arg3_hash,
745 size_t arg4_hash_length,
746 const uint8_t *arg5_signature,
747 size_t arg6_signature_length);
748#define psa_verify_hash_start(arg0_operation, arg1_key, arg2_alg, arg3_hash, arg4_hash_length, arg5_signature, arg6_signature_length) \
749 mbedtls_test_wrap_psa_verify_hash_start(arg0_operation, arg1_key, arg2_alg, arg3_hash, arg4_hash_length, arg5_signature, arg6_signature_length)
750
751psa_status_t mbedtls_test_wrap_psa_verify_message(
752 mbedtls_svc_key_id_t arg0_key,
753 psa_algorithm_t arg1_alg,
754 const uint8_t *arg2_input,
755 size_t arg3_input_length,
756 const uint8_t *arg4_signature,
757 size_t arg5_signature_length);
758#define psa_verify_message(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_signature, arg5_signature_length) \
759 mbedtls_test_wrap_psa_verify_message(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_signature, arg5_signature_length)
760
Gilles Peskine4411c9c2024-01-04 20:51:38 +0100761#endif /* defined(MBEDTLS_PSA_CRYPTO_C) && defined(MBEDTLS_TEST_HOOKS) && \
762 !defined(RECORD_PSA_STATUS_COVERAGE_LOG) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100763
764#ifdef __cplusplus
765}
766#endif
767
768#endif /* TEST_PSA_TEST_WRAPPERS_H */
769
770/* End of automatically generated file. */