blob: be80214600cb14ed180421f8263923277619a2a2 [file] [log] [blame]
Julian Halldd296222021-05-27 15:31:32 +01001/*
2 * Copyright (c) 2021, Arm Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <stdint.h>
8#include <psa/crypto.h>
9#include <service_locator.h>
10
11int32_t val_entry(void);
12
13int main(int argc, char *argv[])
14{
15 int rval = -1;
16
17 psa_crypto_init();
18 service_locator_init();
19
20 rval = val_entry();
21
22 return rval;
23}