Gabor Toth | 6df91b5 | 2023-05-15 14:17:16 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2023, Arm Limited and Contributors. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | #include "../psa_api_test_common.h" |
Gabor Toth | ee2e7cb | 2024-10-07 17:02:56 +0200 | [diff] [blame] | 8 | #include "libpsats.h" |
Gabor Toth | 6df91b5 | 2023-05-15 14:17:16 +0200 | [diff] [blame] | 9 | #include "trace.h" |
| 10 | |
| 11 | psa_status_t test_setup(const char *service_name_crypto, const char *service_name_iat, |
| 12 | const char *service_name_ps, const char *service_name_its) |
| 13 | { |
| 14 | psa_status_t psa_status = PSA_ERROR_GENERIC_ERROR; |
| 15 | |
| 16 | if (!service_name_crypto) |
| 17 | service_name_crypto = "sn:trustedfirmware.org:crypto:0"; |
| 18 | |
Gabor Toth | ee2e7cb | 2024-10-07 17:02:56 +0200 | [diff] [blame] | 19 | psa_status = libpsats_init_crypto_context(service_name_crypto); |
Gabor Toth | 6df91b5 | 2023-05-15 14:17:16 +0200 | [diff] [blame] | 20 | if (psa_status) { |
Gabor Toth | ee2e7cb | 2024-10-07 17:02:56 +0200 | [diff] [blame] | 21 | EMSG("libpsats_init_crypto_context failed: %d\n", psa_status); |
Gabor Toth | 6df91b5 | 2023-05-15 14:17:16 +0200 | [diff] [blame] | 22 | return psa_status; |
| 23 | } |
| 24 | |
| 25 | psa_status = psa_crypto_init(); |
| 26 | if (psa_status) { |
| 27 | EMSG("psa_crypto_init failed: %d\n", psa_status); |
| 28 | return psa_status; |
| 29 | } |
| 30 | |
| 31 | return PSA_SUCCESS; |
| 32 | } |
| 33 | |
| 34 | void test_teardown(void) |
| 35 | { |
Gabor Toth | ee2e7cb | 2024-10-07 17:02:56 +0200 | [diff] [blame] | 36 | libpsats_deinit_crypto_context(); |
Gabor Toth | 6df91b5 | 2023-05-15 14:17:16 +0200 | [diff] [blame] | 37 | } |