Julian Hall | dd29622 | 2021-05-27 15:31:32 +0100 | [diff] [blame] | 1 | /* |
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 | |||||
11 | int32_t val_entry(void); | ||||
12 | |||||
13 | int 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 | } |