blob: b83f405be16d28e22ae55827c3a1e90dd30ee640 [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
444psa_status_t mbedtls_test_wrap_psa_key_derivation_abort(
445 psa_key_derivation_operation_t *arg0_operation);
446#define psa_key_derivation_abort(arg0_operation) \
447 mbedtls_test_wrap_psa_key_derivation_abort(arg0_operation)
448
449psa_status_t mbedtls_test_wrap_psa_key_derivation_get_capacity(
450 const psa_key_derivation_operation_t *arg0_operation,
451 size_t *arg1_capacity);
452#define psa_key_derivation_get_capacity(arg0_operation, arg1_capacity) \
453 mbedtls_test_wrap_psa_key_derivation_get_capacity(arg0_operation, arg1_capacity)
454
455psa_status_t mbedtls_test_wrap_psa_key_derivation_input_bytes(
456 psa_key_derivation_operation_t *arg0_operation,
457 psa_key_derivation_step_t arg1_step,
458 const uint8_t *arg2_data,
459 size_t arg3_data_length);
460#define psa_key_derivation_input_bytes(arg0_operation, arg1_step, arg2_data, arg3_data_length) \
461 mbedtls_test_wrap_psa_key_derivation_input_bytes(arg0_operation, arg1_step, arg2_data, arg3_data_length)
462
463psa_status_t mbedtls_test_wrap_psa_key_derivation_input_integer(
464 psa_key_derivation_operation_t *arg0_operation,
465 psa_key_derivation_step_t arg1_step,
466 uint64_t arg2_value);
467#define psa_key_derivation_input_integer(arg0_operation, arg1_step, arg2_value) \
468 mbedtls_test_wrap_psa_key_derivation_input_integer(arg0_operation, arg1_step, arg2_value)
469
470psa_status_t mbedtls_test_wrap_psa_key_derivation_input_key(
471 psa_key_derivation_operation_t *arg0_operation,
472 psa_key_derivation_step_t arg1_step,
473 mbedtls_svc_key_id_t arg2_key);
474#define psa_key_derivation_input_key(arg0_operation, arg1_step, arg2_key) \
475 mbedtls_test_wrap_psa_key_derivation_input_key(arg0_operation, arg1_step, arg2_key)
476
477psa_status_t mbedtls_test_wrap_psa_key_derivation_key_agreement(
478 psa_key_derivation_operation_t *arg0_operation,
479 psa_key_derivation_step_t arg1_step,
480 mbedtls_svc_key_id_t arg2_private_key,
481 const uint8_t *arg3_peer_key,
482 size_t arg4_peer_key_length);
483#define psa_key_derivation_key_agreement(arg0_operation, arg1_step, arg2_private_key, arg3_peer_key, arg4_peer_key_length) \
484 mbedtls_test_wrap_psa_key_derivation_key_agreement(arg0_operation, arg1_step, arg2_private_key, arg3_peer_key, arg4_peer_key_length)
485
486psa_status_t mbedtls_test_wrap_psa_key_derivation_output_bytes(
487 psa_key_derivation_operation_t *arg0_operation,
488 uint8_t *arg1_output,
489 size_t arg2_output_length);
490#define psa_key_derivation_output_bytes(arg0_operation, arg1_output, arg2_output_length) \
491 mbedtls_test_wrap_psa_key_derivation_output_bytes(arg0_operation, arg1_output, arg2_output_length)
492
493psa_status_t mbedtls_test_wrap_psa_key_derivation_output_key(
494 const psa_key_attributes_t *arg0_attributes,
495 psa_key_derivation_operation_t *arg1_operation,
496 mbedtls_svc_key_id_t *arg2_key);
497#define psa_key_derivation_output_key(arg0_attributes, arg1_operation, arg2_key) \
498 mbedtls_test_wrap_psa_key_derivation_output_key(arg0_attributes, arg1_operation, arg2_key)
499
Gilles Peskineb45af2f2024-06-07 08:29:44 +0200500psa_status_t mbedtls_test_wrap_psa_key_derivation_output_key_custom(
501 const psa_key_attributes_t *arg0_attributes,
502 psa_key_derivation_operation_t *arg1_operation,
503 const psa_custom_key_parameters_t *arg2_custom,
504 const uint8_t *arg3_custom_data,
505 size_t arg4_custom_data_length,
506 mbedtls_svc_key_id_t *arg5_key);
507#define psa_key_derivation_output_key_custom(arg0_attributes, arg1_operation, arg2_custom, arg3_custom_data, arg4_custom_data_length, arg5_key) \
508 mbedtls_test_wrap_psa_key_derivation_output_key_custom(arg0_attributes, arg1_operation, arg2_custom, arg3_custom_data, arg4_custom_data_length, arg5_key)
509
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100510psa_status_t mbedtls_test_wrap_psa_key_derivation_set_capacity(
511 psa_key_derivation_operation_t *arg0_operation,
512 size_t arg1_capacity);
513#define psa_key_derivation_set_capacity(arg0_operation, arg1_capacity) \
514 mbedtls_test_wrap_psa_key_derivation_set_capacity(arg0_operation, arg1_capacity)
515
516psa_status_t mbedtls_test_wrap_psa_key_derivation_setup(
517 psa_key_derivation_operation_t *arg0_operation,
518 psa_algorithm_t arg1_alg);
519#define psa_key_derivation_setup(arg0_operation, arg1_alg) \
520 mbedtls_test_wrap_psa_key_derivation_setup(arg0_operation, arg1_alg)
521
522psa_status_t mbedtls_test_wrap_psa_mac_abort(
523 psa_mac_operation_t *arg0_operation);
524#define psa_mac_abort(arg0_operation) \
525 mbedtls_test_wrap_psa_mac_abort(arg0_operation)
526
527psa_status_t mbedtls_test_wrap_psa_mac_compute(
528 mbedtls_svc_key_id_t arg0_key,
529 psa_algorithm_t arg1_alg,
530 const uint8_t *arg2_input,
531 size_t arg3_input_length,
532 uint8_t *arg4_mac,
533 size_t arg5_mac_size,
534 size_t *arg6_mac_length);
535#define psa_mac_compute(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_mac, arg5_mac_size, arg6_mac_length) \
536 mbedtls_test_wrap_psa_mac_compute(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_mac, arg5_mac_size, arg6_mac_length)
537
538psa_status_t mbedtls_test_wrap_psa_mac_sign_finish(
539 psa_mac_operation_t *arg0_operation,
540 uint8_t *arg1_mac,
541 size_t arg2_mac_size,
542 size_t *arg3_mac_length);
543#define psa_mac_sign_finish(arg0_operation, arg1_mac, arg2_mac_size, arg3_mac_length) \
544 mbedtls_test_wrap_psa_mac_sign_finish(arg0_operation, arg1_mac, arg2_mac_size, arg3_mac_length)
545
546psa_status_t mbedtls_test_wrap_psa_mac_sign_setup(
547 psa_mac_operation_t *arg0_operation,
548 mbedtls_svc_key_id_t arg1_key,
549 psa_algorithm_t arg2_alg);
550#define psa_mac_sign_setup(arg0_operation, arg1_key, arg2_alg) \
551 mbedtls_test_wrap_psa_mac_sign_setup(arg0_operation, arg1_key, arg2_alg)
552
553psa_status_t mbedtls_test_wrap_psa_mac_update(
554 psa_mac_operation_t *arg0_operation,
555 const uint8_t *arg1_input,
556 size_t arg2_input_length);
557#define psa_mac_update(arg0_operation, arg1_input, arg2_input_length) \
558 mbedtls_test_wrap_psa_mac_update(arg0_operation, arg1_input, arg2_input_length)
559
560psa_status_t mbedtls_test_wrap_psa_mac_verify(
561 mbedtls_svc_key_id_t arg0_key,
562 psa_algorithm_t arg1_alg,
563 const uint8_t *arg2_input,
564 size_t arg3_input_length,
565 const uint8_t *arg4_mac,
566 size_t arg5_mac_length);
567#define psa_mac_verify(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_mac, arg5_mac_length) \
568 mbedtls_test_wrap_psa_mac_verify(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_mac, arg5_mac_length)
569
570psa_status_t mbedtls_test_wrap_psa_mac_verify_finish(
571 psa_mac_operation_t *arg0_operation,
572 const uint8_t *arg1_mac,
573 size_t arg2_mac_length);
574#define psa_mac_verify_finish(arg0_operation, arg1_mac, arg2_mac_length) \
575 mbedtls_test_wrap_psa_mac_verify_finish(arg0_operation, arg1_mac, arg2_mac_length)
576
577psa_status_t mbedtls_test_wrap_psa_mac_verify_setup(
578 psa_mac_operation_t *arg0_operation,
579 mbedtls_svc_key_id_t arg1_key,
580 psa_algorithm_t arg2_alg);
581#define psa_mac_verify_setup(arg0_operation, arg1_key, arg2_alg) \
582 mbedtls_test_wrap_psa_mac_verify_setup(arg0_operation, arg1_key, arg2_alg)
583
Ronald Cron7062d3d2024-05-24 10:28:15 +0200584#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100585psa_status_t mbedtls_test_wrap_psa_pake_abort(
586 psa_pake_operation_t *arg0_operation);
587#define psa_pake_abort(arg0_operation) \
588 mbedtls_test_wrap_psa_pake_abort(arg0_operation)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200589#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100590
Ronald Cron7062d3d2024-05-24 10:28:15 +0200591#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100592psa_status_t mbedtls_test_wrap_psa_pake_get_implicit_key(
593 psa_pake_operation_t *arg0_operation,
594 psa_key_derivation_operation_t *arg1_output);
595#define psa_pake_get_implicit_key(arg0_operation, arg1_output) \
596 mbedtls_test_wrap_psa_pake_get_implicit_key(arg0_operation, arg1_output)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200597#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100598
Ronald Cron7062d3d2024-05-24 10:28:15 +0200599#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100600psa_status_t mbedtls_test_wrap_psa_pake_input(
601 psa_pake_operation_t *arg0_operation,
602 psa_pake_step_t arg1_step,
603 const uint8_t *arg2_input,
604 size_t arg3_input_length);
605#define psa_pake_input(arg0_operation, arg1_step, arg2_input, arg3_input_length) \
606 mbedtls_test_wrap_psa_pake_input(arg0_operation, arg1_step, arg2_input, arg3_input_length)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200607#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100608
Ronald Cron7062d3d2024-05-24 10:28:15 +0200609#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100610psa_status_t mbedtls_test_wrap_psa_pake_output(
611 psa_pake_operation_t *arg0_operation,
612 psa_pake_step_t arg1_step,
613 uint8_t *arg2_output,
614 size_t arg3_output_size,
615 size_t *arg4_output_length);
616#define psa_pake_output(arg0_operation, arg1_step, arg2_output, arg3_output_size, arg4_output_length) \
617 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 +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_set_password_key(
622 psa_pake_operation_t *arg0_operation,
623 mbedtls_svc_key_id_t arg1_password);
624#define psa_pake_set_password_key(arg0_operation, arg1_password) \
625 mbedtls_test_wrap_psa_pake_set_password_key(arg0_operation, arg1_password)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200626#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100627
Ronald Cron7062d3d2024-05-24 10:28:15 +0200628#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100629psa_status_t mbedtls_test_wrap_psa_pake_set_peer(
630 psa_pake_operation_t *arg0_operation,
631 const uint8_t *arg1_peer_id,
632 size_t arg2_peer_id_len);
633#define psa_pake_set_peer(arg0_operation, arg1_peer_id, arg2_peer_id_len) \
634 mbedtls_test_wrap_psa_pake_set_peer(arg0_operation, arg1_peer_id, arg2_peer_id_len)
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_set_role(
639 psa_pake_operation_t *arg0_operation,
640 psa_pake_role_t arg1_role);
641#define psa_pake_set_role(arg0_operation, arg1_role) \
642 mbedtls_test_wrap_psa_pake_set_role(arg0_operation, arg1_role)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200643#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100644
Ronald Cron7062d3d2024-05-24 10:28:15 +0200645#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100646psa_status_t mbedtls_test_wrap_psa_pake_set_user(
647 psa_pake_operation_t *arg0_operation,
648 const uint8_t *arg1_user_id,
649 size_t arg2_user_id_len);
650#define psa_pake_set_user(arg0_operation, arg1_user_id, arg2_user_id_len) \
651 mbedtls_test_wrap_psa_pake_set_user(arg0_operation, arg1_user_id, arg2_user_id_len)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200652#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100653
Ronald Cron7062d3d2024-05-24 10:28:15 +0200654#if defined(PSA_WANT_ALG_SOME_PAKE)
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100655psa_status_t mbedtls_test_wrap_psa_pake_setup(
656 psa_pake_operation_t *arg0_operation,
657 const psa_pake_cipher_suite_t *arg1_cipher_suite);
658#define psa_pake_setup(arg0_operation, arg1_cipher_suite) \
659 mbedtls_test_wrap_psa_pake_setup(arg0_operation, arg1_cipher_suite)
Ronald Cron7062d3d2024-05-24 10:28:15 +0200660#endif /* defined(PSA_WANT_ALG_SOME_PAKE) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100661
662psa_status_t mbedtls_test_wrap_psa_purge_key(
663 mbedtls_svc_key_id_t arg0_key);
664#define psa_purge_key(arg0_key) \
665 mbedtls_test_wrap_psa_purge_key(arg0_key)
666
667psa_status_t mbedtls_test_wrap_psa_raw_key_agreement(
668 psa_algorithm_t arg0_alg,
669 mbedtls_svc_key_id_t arg1_private_key,
670 const uint8_t *arg2_peer_key,
671 size_t arg3_peer_key_length,
672 uint8_t *arg4_output,
673 size_t arg5_output_size,
674 size_t *arg6_output_length);
675#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) \
676 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)
677
678psa_status_t mbedtls_test_wrap_psa_sign_hash(
679 mbedtls_svc_key_id_t arg0_key,
680 psa_algorithm_t arg1_alg,
681 const uint8_t *arg2_hash,
682 size_t arg3_hash_length,
683 uint8_t *arg4_signature,
684 size_t arg5_signature_size,
685 size_t *arg6_signature_length);
686#define psa_sign_hash(arg0_key, arg1_alg, arg2_hash, arg3_hash_length, arg4_signature, arg5_signature_size, arg6_signature_length) \
687 mbedtls_test_wrap_psa_sign_hash(arg0_key, arg1_alg, arg2_hash, arg3_hash_length, arg4_signature, arg5_signature_size, arg6_signature_length)
688
689psa_status_t mbedtls_test_wrap_psa_sign_hash_abort(
690 psa_sign_hash_interruptible_operation_t *arg0_operation);
691#define psa_sign_hash_abort(arg0_operation) \
692 mbedtls_test_wrap_psa_sign_hash_abort(arg0_operation)
693
694psa_status_t mbedtls_test_wrap_psa_sign_hash_complete(
695 psa_sign_hash_interruptible_operation_t *arg0_operation,
696 uint8_t *arg1_signature,
697 size_t arg2_signature_size,
698 size_t *arg3_signature_length);
699#define psa_sign_hash_complete(arg0_operation, arg1_signature, arg2_signature_size, arg3_signature_length) \
700 mbedtls_test_wrap_psa_sign_hash_complete(arg0_operation, arg1_signature, arg2_signature_size, arg3_signature_length)
701
702psa_status_t mbedtls_test_wrap_psa_sign_hash_start(
703 psa_sign_hash_interruptible_operation_t *arg0_operation,
704 mbedtls_svc_key_id_t arg1_key,
705 psa_algorithm_t arg2_alg,
706 const uint8_t *arg3_hash,
707 size_t arg4_hash_length);
708#define psa_sign_hash_start(arg0_operation, arg1_key, arg2_alg, arg3_hash, arg4_hash_length) \
709 mbedtls_test_wrap_psa_sign_hash_start(arg0_operation, arg1_key, arg2_alg, arg3_hash, arg4_hash_length)
710
711psa_status_t mbedtls_test_wrap_psa_sign_message(
712 mbedtls_svc_key_id_t arg0_key,
713 psa_algorithm_t arg1_alg,
714 const uint8_t *arg2_input,
715 size_t arg3_input_length,
716 uint8_t *arg4_signature,
717 size_t arg5_signature_size,
718 size_t *arg6_signature_length);
719#define psa_sign_message(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_signature, arg5_signature_size, arg6_signature_length) \
720 mbedtls_test_wrap_psa_sign_message(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_signature, arg5_signature_size, arg6_signature_length)
721
722psa_status_t mbedtls_test_wrap_psa_verify_hash(
723 mbedtls_svc_key_id_t arg0_key,
724 psa_algorithm_t arg1_alg,
725 const uint8_t *arg2_hash,
726 size_t arg3_hash_length,
727 const uint8_t *arg4_signature,
728 size_t arg5_signature_length);
729#define psa_verify_hash(arg0_key, arg1_alg, arg2_hash, arg3_hash_length, arg4_signature, arg5_signature_length) \
730 mbedtls_test_wrap_psa_verify_hash(arg0_key, arg1_alg, arg2_hash, arg3_hash_length, arg4_signature, arg5_signature_length)
731
732psa_status_t mbedtls_test_wrap_psa_verify_hash_abort(
733 psa_verify_hash_interruptible_operation_t *arg0_operation);
734#define psa_verify_hash_abort(arg0_operation) \
735 mbedtls_test_wrap_psa_verify_hash_abort(arg0_operation)
736
737psa_status_t mbedtls_test_wrap_psa_verify_hash_complete(
738 psa_verify_hash_interruptible_operation_t *arg0_operation);
739#define psa_verify_hash_complete(arg0_operation) \
740 mbedtls_test_wrap_psa_verify_hash_complete(arg0_operation)
741
742psa_status_t mbedtls_test_wrap_psa_verify_hash_start(
743 psa_verify_hash_interruptible_operation_t *arg0_operation,
744 mbedtls_svc_key_id_t arg1_key,
745 psa_algorithm_t arg2_alg,
746 const uint8_t *arg3_hash,
747 size_t arg4_hash_length,
748 const uint8_t *arg5_signature,
749 size_t arg6_signature_length);
750#define psa_verify_hash_start(arg0_operation, arg1_key, arg2_alg, arg3_hash, arg4_hash_length, arg5_signature, arg6_signature_length) \
751 mbedtls_test_wrap_psa_verify_hash_start(arg0_operation, arg1_key, arg2_alg, arg3_hash, arg4_hash_length, arg5_signature, arg6_signature_length)
752
753psa_status_t mbedtls_test_wrap_psa_verify_message(
754 mbedtls_svc_key_id_t arg0_key,
755 psa_algorithm_t arg1_alg,
756 const uint8_t *arg2_input,
757 size_t arg3_input_length,
758 const uint8_t *arg4_signature,
759 size_t arg5_signature_length);
760#define psa_verify_message(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_signature, arg5_signature_length) \
761 mbedtls_test_wrap_psa_verify_message(arg0_key, arg1_alg, arg2_input, arg3_input_length, arg4_signature, arg5_signature_length)
762
Gilles Peskine4411c9c2024-01-04 20:51:38 +0100763#endif /* defined(MBEDTLS_PSA_CRYPTO_C) && defined(MBEDTLS_TEST_HOOKS) && \
764 !defined(RECORD_PSA_STATUS_COVERAGE_LOG) */
Gilles Peskine6e4332c2024-01-04 16:42:40 +0100765
766#ifdef __cplusplus
767}
768#endif
769
770#endif /* TEST_PSA_TEST_WRAPPERS_H */
771
772/* End of automatically generated file. */