blob: 3fd4b32cdca300785d68ff4dcd6fd681034c6ad6 [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
Paul Elliott2dc5fa32024-07-19 17:32:42 +0100366psa_status_t mbedtls_test_wrap_psa_generate_key_iop_abort(
367 psa_generate_key_iop_t *arg0_operation);
368#define psa_generate_key_iop_abort(arg0_operation) \
369 mbedtls_test_wrap_psa_generate_key_iop_abort(arg0_operation)
370
371psa_status_t mbedtls_test_wrap_psa_generate_key_iop_complete(
372 psa_generate_key_iop_t *arg0_operation,
373 psa_key_id_t *arg1_key);
374#define psa_generate_key_iop_complete(arg0_operation, arg1_key) \
375 mbedtls_test_wrap_psa_generate_key_iop_complete(arg0_operation, arg1_key)
376
377psa_status_t mbedtls_test_wrap_psa_generate_key_iop_setup(
378 psa_generate_key_iop_t *arg0_operation,
379 const psa_key_attributes_t *arg1_attributes);
380#define psa_generate_key_iop_setup(arg0_operation, arg1_attributes) \
381 mbedtls_test_wrap_psa_generate_key_iop_setup(arg0_operation, arg1_attributes)
382
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100383psa_status_t mbedtls_test_wrap_psa_generate_random(
384 uint8_t *arg0_output,
385 size_t arg1_output_size);
386#define psa_generate_random(arg0_output, arg1_output_size) \
387 mbedtls_test_wrap_psa_generate_random(arg0_output, arg1_output_size)
388
389psa_status_t mbedtls_test_wrap_psa_get_key_attributes(
390 mbedtls_svc_key_id_t arg0_key,
391 psa_key_attributes_t *arg1_attributes);
392#define psa_get_key_attributes(arg0_key, arg1_attributes) \
393 mbedtls_test_wrap_psa_get_key_attributes(arg0_key, arg1_attributes)
394
395psa_status_t mbedtls_test_wrap_psa_hash_abort(
396 psa_hash_operation_t *arg0_operation);
397#define psa_hash_abort(arg0_operation) \
398 mbedtls_test_wrap_psa_hash_abort(arg0_operation)
399
400psa_status_t mbedtls_test_wrap_psa_hash_clone(
401 const psa_hash_operation_t *arg0_source_operation,
402 psa_hash_operation_t *arg1_target_operation);
403#define psa_hash_clone(arg0_source_operation, arg1_target_operation) \
404 mbedtls_test_wrap_psa_hash_clone(arg0_source_operation, arg1_target_operation)
405
406psa_status_t mbedtls_test_wrap_psa_hash_compare(
407 psa_algorithm_t arg0_alg,
408 const uint8_t *arg1_input,
409 size_t arg2_input_length,
410 const uint8_t *arg3_hash,
411 size_t arg4_hash_length);
412#define psa_hash_compare(arg0_alg, arg1_input, arg2_input_length, arg3_hash, arg4_hash_length) \
413 mbedtls_test_wrap_psa_hash_compare(arg0_alg, arg1_input, arg2_input_length, arg3_hash, arg4_hash_length)
414
415psa_status_t mbedtls_test_wrap_psa_hash_compute(
416 psa_algorithm_t arg0_alg,
417 const uint8_t *arg1_input,
418 size_t arg2_input_length,
419 uint8_t *arg3_hash,
420 size_t arg4_hash_size,
421 size_t *arg5_hash_length);
422#define psa_hash_compute(arg0_alg, arg1_input, arg2_input_length, arg3_hash, arg4_hash_size, arg5_hash_length) \
423 mbedtls_test_wrap_psa_hash_compute(arg0_alg, arg1_input, arg2_input_length, arg3_hash, arg4_hash_size, arg5_hash_length)
424
425psa_status_t mbedtls_test_wrap_psa_hash_finish(
426 psa_hash_operation_t *arg0_operation,
427 uint8_t *arg1_hash,
428 size_t arg2_hash_size,
429 size_t *arg3_hash_length);
430#define psa_hash_finish(arg0_operation, arg1_hash, arg2_hash_size, arg3_hash_length) \
431 mbedtls_test_wrap_psa_hash_finish(arg0_operation, arg1_hash, arg2_hash_size, arg3_hash_length)
432
433psa_status_t mbedtls_test_wrap_psa_hash_setup(
434 psa_hash_operation_t *arg0_operation,
435 psa_algorithm_t arg1_alg);
436#define psa_hash_setup(arg0_operation, arg1_alg) \
437 mbedtls_test_wrap_psa_hash_setup(arg0_operation, arg1_alg)
438
439psa_status_t mbedtls_test_wrap_psa_hash_update(
440 psa_hash_operation_t *arg0_operation,
441 const uint8_t *arg1_input,
442 size_t arg2_input_length);
443#define psa_hash_update(arg0_operation, arg1_input, arg2_input_length) \
444 mbedtls_test_wrap_psa_hash_update(arg0_operation, arg1_input, arg2_input_length)
445
446psa_status_t mbedtls_test_wrap_psa_hash_verify(
447 psa_hash_operation_t *arg0_operation,
448 const uint8_t *arg1_hash,
449 size_t arg2_hash_length);
450#define psa_hash_verify(arg0_operation, arg1_hash, arg2_hash_length) \
451 mbedtls_test_wrap_psa_hash_verify(arg0_operation, arg1_hash, arg2_hash_length)
452
453psa_status_t mbedtls_test_wrap_psa_import_key(
454 const psa_key_attributes_t *arg0_attributes,
455 const uint8_t *arg1_data,
456 size_t arg2_data_length,
457 mbedtls_svc_key_id_t *arg3_key);
458#define psa_import_key(arg0_attributes, arg1_data, arg2_data_length, arg3_key) \
459 mbedtls_test_wrap_psa_import_key(arg0_attributes, arg1_data, arg2_data_length, arg3_key)
460
Paul Elliottc884b292024-07-19 17:32:42 +0100461psa_status_t mbedtls_test_wrap_psa_key_agreement_iop_abort(
462 psa_key_agreement_iop_t *arg0_operation);
463#define psa_key_agreement_iop_abort(arg0_operation) \
464 mbedtls_test_wrap_psa_key_agreement_iop_abort(arg0_operation)
465
466psa_status_t mbedtls_test_wrap_psa_key_agreement_iop_complete(
467 psa_key_agreement_iop_t *arg0_operation,
468 psa_key_id_t *arg1_key);
469#define psa_key_agreement_iop_complete(arg0_operation, arg1_key) \
470 mbedtls_test_wrap_psa_key_agreement_iop_complete(arg0_operation, arg1_key)
471
472psa_status_t mbedtls_test_wrap_psa_key_agreement_iop_setup(
473 psa_key_agreement_iop_t *arg0_operation,
474 psa_key_id_t arg1_private_key,
475 const uint8_t *arg2_peer_key,
476 size_t arg3_peer_key_length,
477 psa_algorithm_t arg4_alg,
478 const psa_key_attributes_t *arg5_attributes);
479#define psa_key_agreement_iop_setup(arg0_operation, arg1_private_key, arg2_peer_key, arg3_peer_key_length, arg4_alg, arg5_attributes) \
480 mbedtls_test_wrap_psa_key_agreement_iop_setup(arg0_operation, arg1_private_key, arg2_peer_key, arg3_peer_key_length, arg4_alg, arg5_attributes)
481
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100482psa_status_t mbedtls_test_wrap_psa_key_derivation_abort(
483 psa_key_derivation_operation_t *arg0_operation);
484#define psa_key_derivation_abort(arg0_operation) \
485 mbedtls_test_wrap_psa_key_derivation_abort(arg0_operation)
486
487psa_status_t mbedtls_test_wrap_psa_key_derivation_get_capacity(
488 const psa_key_derivation_operation_t *arg0_operation,
489 size_t *arg1_capacity);
490#define psa_key_derivation_get_capacity(arg0_operation, arg1_capacity) \
491 mbedtls_test_wrap_psa_key_derivation_get_capacity(arg0_operation, arg1_capacity)
492
493psa_status_t mbedtls_test_wrap_psa_key_derivation_input_bytes(
494 psa_key_derivation_operation_t *arg0_operation,
495 psa_key_derivation_step_t arg1_step,
496 const uint8_t *arg2_data,
497 size_t arg3_data_length);
498#define psa_key_derivation_input_bytes(arg0_operation, arg1_step, arg2_data, arg3_data_length) \
499 mbedtls_test_wrap_psa_key_derivation_input_bytes(arg0_operation, arg1_step, arg2_data, arg3_data_length)
500
501psa_status_t mbedtls_test_wrap_psa_key_derivation_input_integer(
502 psa_key_derivation_operation_t *arg0_operation,
503 psa_key_derivation_step_t arg1_step,
504 uint64_t arg2_value);
505#define psa_key_derivation_input_integer(arg0_operation, arg1_step, arg2_value) \
506 mbedtls_test_wrap_psa_key_derivation_input_integer(arg0_operation, arg1_step, arg2_value)
507
508psa_status_t mbedtls_test_wrap_psa_key_derivation_input_key(
509 psa_key_derivation_operation_t *arg0_operation,
510 psa_key_derivation_step_t arg1_step,
511 mbedtls_svc_key_id_t arg2_key);
512#define psa_key_derivation_input_key(arg0_operation, arg1_step, arg2_key) \
513 mbedtls_test_wrap_psa_key_derivation_input_key(arg0_operation, arg1_step, arg2_key)
514
515psa_status_t mbedtls_test_wrap_psa_key_derivation_key_agreement(
516 psa_key_derivation_operation_t *arg0_operation,
517 psa_key_derivation_step_t arg1_step,
518 mbedtls_svc_key_id_t arg2_private_key,
519 const uint8_t *arg3_peer_key,
520 size_t arg4_peer_key_length);
521#define psa_key_derivation_key_agreement(arg0_operation, arg1_step, arg2_private_key, arg3_peer_key, arg4_peer_key_length) \
522 mbedtls_test_wrap_psa_key_derivation_key_agreement(arg0_operation, arg1_step, arg2_private_key, arg3_peer_key, arg4_peer_key_length)
523
524psa_status_t mbedtls_test_wrap_psa_key_derivation_output_bytes(
525 psa_key_derivation_operation_t *arg0_operation,
526 uint8_t *arg1_output,
527 size_t arg2_output_length);
528#define psa_key_derivation_output_bytes(arg0_operation, arg1_output, arg2_output_length) \
529 mbedtls_test_wrap_psa_key_derivation_output_bytes(arg0_operation, arg1_output, arg2_output_length)
530
531psa_status_t mbedtls_test_wrap_psa_key_derivation_output_key(
532 const psa_key_attributes_t *arg0_attributes,
533 psa_key_derivation_operation_t *arg1_operation,
534 mbedtls_svc_key_id_t *arg2_key);
535#define psa_key_derivation_output_key(arg0_attributes, arg1_operation, arg2_key) \
536 mbedtls_test_wrap_psa_key_derivation_output_key(arg0_attributes, arg1_operation, arg2_key)
537
Gilles Peskineb45af2f2024-06-07 08:29:44 +0200538psa_status_t mbedtls_test_wrap_psa_key_derivation_output_key_custom(
539 const psa_key_attributes_t *arg0_attributes,
540 psa_key_derivation_operation_t *arg1_operation,
541 const psa_custom_key_parameters_t *arg2_custom,
542 const uint8_t *arg3_custom_data,
543 size_t arg4_custom_data_length,
544 mbedtls_svc_key_id_t *arg5_key);
545#define psa_key_derivation_output_key_custom(arg0_attributes, arg1_operation, arg2_custom, arg3_custom_data, arg4_custom_data_length, arg5_key) \
546 mbedtls_test_wrap_psa_key_derivation_output_key_custom(arg0_attributes, arg1_operation, arg2_custom, arg3_custom_data, arg4_custom_data_length, arg5_key)
547
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100548psa_status_t mbedtls_test_wrap_psa_key_derivation_set_capacity(
549 psa_key_derivation_operation_t *arg0_operation,
550 size_t arg1_capacity);
551#define psa_key_derivation_set_capacity(arg0_operation, arg1_capacity) \
552 mbedtls_test_wrap_psa_key_derivation_set_capacity(arg0_operation, arg1_capacity)
553
554psa_status_t mbedtls_test_wrap_psa_key_derivation_setup(
555 psa_key_derivation_operation_t *arg0_operation,
556 psa_algorithm_t arg1_alg);
557#define psa_key_derivation_setup(arg0_operation, arg1_alg) \
558 mbedtls_test_wrap_psa_key_derivation_setup(arg0_operation, arg1_alg)
559
560psa_status_t mbedtls_test_wrap_psa_mac_abort(
561 psa_mac_operation_t *arg0_operation);
562#define psa_mac_abort(arg0_operation) \
563 mbedtls_test_wrap_psa_mac_abort(arg0_operation)
564
565psa_status_t mbedtls_test_wrap_psa_mac_compute(
566 mbedtls_svc_key_id_t arg0_key,
567 psa_algorithm_t arg1_alg,
568 const uint8_t *arg2_input,
569 size_t arg3_input_length,
570 uint8_t *arg4_mac,
571 size_t arg5_mac_size,
572 size_t *arg6_mac_length);
573#define psa_mac_compute(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_mac, arg5_mac_size, arg6_mac_length) \
574 mbedtls_test_wrap_psa_mac_compute(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_mac, arg5_mac_size, arg6_mac_length)
575
576psa_status_t mbedtls_test_wrap_psa_mac_sign_finish(
577 psa_mac_operation_t *arg0_operation,
578 uint8_t *arg1_mac,
579 size_t arg2_mac_size,
580 size_t *arg3_mac_length);
581#define psa_mac_sign_finish(arg0_operation, arg1_mac, arg2_mac_size, arg3_mac_length) \
582 mbedtls_test_wrap_psa_mac_sign_finish(arg0_operation, arg1_mac, arg2_mac_size, arg3_mac_length)
583
584psa_status_t mbedtls_test_wrap_psa_mac_sign_setup(
585 psa_mac_operation_t *arg0_operation,
586 mbedtls_svc_key_id_t arg1_key,
587 psa_algorithm_t arg2_alg);
588#define psa_mac_sign_setup(arg0_operation, arg1_key, arg2_alg) \
589 mbedtls_test_wrap_psa_mac_sign_setup(arg0_operation, arg1_key, arg2_alg)
590
591psa_status_t mbedtls_test_wrap_psa_mac_update(
592 psa_mac_operation_t *arg0_operation,
593 const uint8_t *arg1_input,
594 size_t arg2_input_length);
595#define psa_mac_update(arg0_operation, arg1_input, arg2_input_length) \
596 mbedtls_test_wrap_psa_mac_update(arg0_operation, arg1_input, arg2_input_length)
597
598psa_status_t mbedtls_test_wrap_psa_mac_verify(
599 mbedtls_svc_key_id_t arg0_key,
600 psa_algorithm_t arg1_alg,
601 const uint8_t *arg2_input,
602 size_t arg3_input_length,
603 const uint8_t *arg4_mac,
604 size_t arg5_mac_length);
605#define psa_mac_verify(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_mac, arg5_mac_length) \
606 mbedtls_test_wrap_psa_mac_verify(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_mac, arg5_mac_length)
607
608psa_status_t mbedtls_test_wrap_psa_mac_verify_finish(
609 psa_mac_operation_t *arg0_operation,
610 const uint8_t *arg1_mac,
611 size_t arg2_mac_length);
612#define psa_mac_verify_finish(arg0_operation, arg1_mac, arg2_mac_length) \
613 mbedtls_test_wrap_psa_mac_verify_finish(arg0_operation, arg1_mac, arg2_mac_length)
614
615psa_status_t mbedtls_test_wrap_psa_mac_verify_setup(
616 psa_mac_operation_t *arg0_operation,
617 mbedtls_svc_key_id_t arg1_key,
618 psa_algorithm_t arg2_alg);
619#define psa_mac_verify_setup(arg0_operation, arg1_key, arg2_alg) \
620 mbedtls_test_wrap_psa_mac_verify_setup(arg0_operation, arg1_key, arg2_alg)
621
Ronald Cron7062d3d2024-05-24 10:28:15 +0200622#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100623psa_status_t mbedtls_test_wrap_psa_pake_abort(
624 psa_pake_operation_t *arg0_operation);
625#define psa_pake_abort(arg0_operation) \
626 mbedtls_test_wrap_psa_pake_abort(arg0_operation)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200627#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100628
Ronald Cron7062d3d2024-05-24 10:28:15 +0200629#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100630psa_status_t mbedtls_test_wrap_psa_pake_get_implicit_key(
631 psa_pake_operation_t *arg0_operation,
632 psa_key_derivation_operation_t *arg1_output);
633#define psa_pake_get_implicit_key(arg0_operation, arg1_output) \
634 mbedtls_test_wrap_psa_pake_get_implicit_key(arg0_operation, arg1_output)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200635#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100636
Ronald Cron7062d3d2024-05-24 10:28:15 +0200637#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100638psa_status_t mbedtls_test_wrap_psa_pake_input(
639 psa_pake_operation_t *arg0_operation,
640 psa_pake_step_t arg1_step,
641 const uint8_t *arg2_input,
642 size_t arg3_input_length);
643#define psa_pake_input(arg0_operation, arg1_step, arg2_input, arg3_input_length) \
644 mbedtls_test_wrap_psa_pake_input(arg0_operation, arg1_step, arg2_input, arg3_input_length)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200645#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100646
Ronald Cron7062d3d2024-05-24 10:28:15 +0200647#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100648psa_status_t mbedtls_test_wrap_psa_pake_output(
649 psa_pake_operation_t *arg0_operation,
650 psa_pake_step_t arg1_step,
651 uint8_t *arg2_output,
652 size_t arg3_output_size,
653 size_t *arg4_output_length);
654#define psa_pake_output(arg0_operation, arg1_step, arg2_output, arg3_output_size, arg4_output_length) \
655 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 +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_password_key(
660 psa_pake_operation_t *arg0_operation,
661 mbedtls_svc_key_id_t arg1_password);
662#define psa_pake_set_password_key(arg0_operation, arg1_password) \
663 mbedtls_test_wrap_psa_pake_set_password_key(arg0_operation, arg1_password)
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_peer(
668 psa_pake_operation_t *arg0_operation,
669 const uint8_t *arg1_peer_id,
670 size_t arg2_peer_id_len);
671#define psa_pake_set_peer(arg0_operation, arg1_peer_id, arg2_peer_id_len) \
672 mbedtls_test_wrap_psa_pake_set_peer(arg0_operation, arg1_peer_id, arg2_peer_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_set_role(
677 psa_pake_operation_t *arg0_operation,
678 psa_pake_role_t arg1_role);
679#define psa_pake_set_role(arg0_operation, arg1_role) \
680 mbedtls_test_wrap_psa_pake_set_role(arg0_operation, arg1_role)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200681#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100682
Ronald Cron7062d3d2024-05-24 10:28:15 +0200683#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100684psa_status_t mbedtls_test_wrap_psa_pake_set_user(
685 psa_pake_operation_t *arg0_operation,
686 const uint8_t *arg1_user_id,
687 size_t arg2_user_id_len);
688#define psa_pake_set_user(arg0_operation, arg1_user_id, arg2_user_id_len) \
689 mbedtls_test_wrap_psa_pake_set_user(arg0_operation, arg1_user_id, arg2_user_id_len)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200690#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100691
Ronald Cron7062d3d2024-05-24 10:28:15 +0200692#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100693psa_status_t mbedtls_test_wrap_psa_pake_setup(
694 psa_pake_operation_t *arg0_operation,
695 const psa_pake_cipher_suite_t *arg1_cipher_suite);
696#define psa_pake_setup(arg0_operation, arg1_cipher_suite) \
697 mbedtls_test_wrap_psa_pake_setup(arg0_operation, arg1_cipher_suite)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200698#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100699
700psa_status_t mbedtls_test_wrap_psa_purge_key(
701 mbedtls_svc_key_id_t arg0_key);
702#define psa_purge_key(arg0_key) \
703 mbedtls_test_wrap_psa_purge_key(arg0_key)
704
705psa_status_t mbedtls_test_wrap_psa_raw_key_agreement(
706 psa_algorithm_t arg0_alg,
707 mbedtls_svc_key_id_t arg1_private_key,
708 const uint8_t *arg2_peer_key,
709 size_t arg3_peer_key_length,
710 uint8_t *arg4_output,
711 size_t arg5_output_size,
712 size_t *arg6_output_length);
713#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) \
714 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)
715
716psa_status_t mbedtls_test_wrap_psa_sign_hash(
717 mbedtls_svc_key_id_t arg0_key,
718 psa_algorithm_t arg1_alg,
719 const uint8_t *arg2_hash,
720 size_t arg3_hash_length,
721 uint8_t *arg4_signature,
722 size_t arg5_signature_size,
723 size_t *arg6_signature_length);
724#define psa_sign_hash(arg0_key, arg1_alg, arg2_hash, arg3_hash_length, arg4_signature, arg5_signature_size, arg6_signature_length) \
725 mbedtls_test_wrap_psa_sign_hash(arg0_key, arg1_alg, arg2_hash, arg3_hash_length, arg4_signature, arg5_signature_size, arg6_signature_length)
726
727psa_status_t mbedtls_test_wrap_psa_sign_hash_abort(
728 psa_sign_hash_interruptible_operation_t *arg0_operation);
729#define psa_sign_hash_abort(arg0_operation) \
730 mbedtls_test_wrap_psa_sign_hash_abort(arg0_operation)
731
732psa_status_t mbedtls_test_wrap_psa_sign_hash_complete(
733 psa_sign_hash_interruptible_operation_t *arg0_operation,
734 uint8_t *arg1_signature,
735 size_t arg2_signature_size,
736 size_t *arg3_signature_length);
737#define psa_sign_hash_complete(arg0_operation, arg1_signature, arg2_signature_size, arg3_signature_length) \
738 mbedtls_test_wrap_psa_sign_hash_complete(arg0_operation, arg1_signature, arg2_signature_size, arg3_signature_length)
739
740psa_status_t mbedtls_test_wrap_psa_sign_hash_start(
741 psa_sign_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#define psa_sign_hash_start(arg0_operation, arg1_key, arg2_alg, arg3_hash, arg4_hash_length) \
747 mbedtls_test_wrap_psa_sign_hash_start(arg0_operation, arg1_key, arg2_alg, arg3_hash, arg4_hash_length)
748
749psa_status_t mbedtls_test_wrap_psa_sign_message(
750 mbedtls_svc_key_id_t arg0_key,
751 psa_algorithm_t arg1_alg,
752 const uint8_t *arg2_input,
753 size_t arg3_input_length,
754 uint8_t *arg4_signature,
755 size_t arg5_signature_size,
756 size_t *arg6_signature_length);
757#define psa_sign_message(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_signature, arg5_signature_size, arg6_signature_length) \
758 mbedtls_test_wrap_psa_sign_message(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_signature, arg5_signature_size, arg6_signature_length)
759
760psa_status_t mbedtls_test_wrap_psa_verify_hash(
761 mbedtls_svc_key_id_t arg0_key,
762 psa_algorithm_t arg1_alg,
763 const uint8_t *arg2_hash,
764 size_t arg3_hash_length,
765 const uint8_t *arg4_signature,
766 size_t arg5_signature_length);
767#define psa_verify_hash(arg0_key, arg1_alg, arg2_hash, arg3_hash_length, arg4_signature, arg5_signature_length) \
768 mbedtls_test_wrap_psa_verify_hash(arg0_key, arg1_alg, arg2_hash, arg3_hash_length, arg4_signature, arg5_signature_length)
769
770psa_status_t mbedtls_test_wrap_psa_verify_hash_abort(
771 psa_verify_hash_interruptible_operation_t *arg0_operation);
772#define psa_verify_hash_abort(arg0_operation) \
773 mbedtls_test_wrap_psa_verify_hash_abort(arg0_operation)
774
775psa_status_t mbedtls_test_wrap_psa_verify_hash_complete(
776 psa_verify_hash_interruptible_operation_t *arg0_operation);
777#define psa_verify_hash_complete(arg0_operation) \
778 mbedtls_test_wrap_psa_verify_hash_complete(arg0_operation)
779
780psa_status_t mbedtls_test_wrap_psa_verify_hash_start(
781 psa_verify_hash_interruptible_operation_t *arg0_operation,
782 mbedtls_svc_key_id_t arg1_key,
783 psa_algorithm_t arg2_alg,
784 const uint8_t *arg3_hash,
785 size_t arg4_hash_length,
786 const uint8_t *arg5_signature,
787 size_t arg6_signature_length);
788#define psa_verify_hash_start(arg0_operation, arg1_key, arg2_alg, arg3_hash, arg4_hash_length, arg5_signature, arg6_signature_length) \
789 mbedtls_test_wrap_psa_verify_hash_start(arg0_operation, arg1_key, arg2_alg, arg3_hash, arg4_hash_length, arg5_signature, arg6_signature_length)
790
791psa_status_t mbedtls_test_wrap_psa_verify_message(
792 mbedtls_svc_key_id_t arg0_key,
793 psa_algorithm_t arg1_alg,
794 const uint8_t *arg2_input,
795 size_t arg3_input_length,
796 const uint8_t *arg4_signature,
797 size_t arg5_signature_length);
798#define psa_verify_message(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_signature, arg5_signature_length) \
799 mbedtls_test_wrap_psa_verify_message(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_signature, arg5_signature_length)
800
Gilles Peskine4411c9c2024-01-04 20:51:38 +0100801#endif /* defined(MBEDTLS_PSA_CRYPTO_C) && defined(MBEDTLS_TEST_HOOKS) && \
802 !defined(RECORD_PSA_STATUS_COVERAGE_LOG) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100803
804#ifdef __cplusplus
805}
806#endif
807
808#endif /* TEST_PSA_TEST_WRAPPERS_H */
809
810/* End of automatically generated file. */