blob: 438bb5879afc8c85cae95ed2f8bdfe8377f53ecb [file] [log] [blame]
Gabor Toth6df91b52023-05-15 14:17:16 +02001/*
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 Tothee2e7cb2024-10-07 17:02:56 +02008#include "libpsats.h"
Gabor Toth6df91b52023-05-15 14:17:16 +02009#include "trace.h"
10
11psa_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
19 if (!service_name_iat)
20 service_name_iat = "sn:trustedfirmware.org:attestation:0";
21
Gabor Tothee2e7cb2024-10-07 17:02:56 +020022 psa_status = libpsats_init_crypto_context(service_name_crypto);
Gabor Toth6df91b52023-05-15 14:17:16 +020023 if (psa_status) {
Gabor Tothee2e7cb2024-10-07 17:02:56 +020024 EMSG("libpsats_init_crypto_context failed: %d\n", psa_status);
Gabor Toth6df91b52023-05-15 14:17:16 +020025 return psa_status;
26 }
27
Gabor Tothee2e7cb2024-10-07 17:02:56 +020028 psa_status = libpsats_init_attestation_context(service_name_iat);
Gabor Toth6df91b52023-05-15 14:17:16 +020029 if (psa_status) {
Gabor Tothee2e7cb2024-10-07 17:02:56 +020030 EMSG("libpsats_init_attestation_context failed: %d\n", psa_status);
Gabor Toth6df91b52023-05-15 14:17:16 +020031 return psa_status;
32 }
33
34 psa_status = psa_crypto_init();
35 if (psa_status) {
36 EMSG("psa_crypto_init failed: %d\n", psa_status);
37 return psa_status;
38 }
39
40 return PSA_SUCCESS;
41}
42
43void test_teardown(void)
44{
Gabor Tothee2e7cb2024-10-07 17:02:56 +020045 libpsats_deinit_crypto_context();
46 libpsats_deinit_attestation_context();
Gabor Toth6df91b52023-05-15 14:17:16 +020047}