Software APIs
sigverify.h
1 // Copyright lowRISC contributors (OpenTitan project).
2 // Licensed under the Apache License, Version 2.0, see LICENSE for details.
3 // SPDX-License-Identifier: Apache-2.0
4 
5 #ifndef OPENTITAN_SW_DEVICE_SILICON_CREATOR_LIB_SIGVERIFY_SIGVERIFY_H_
6 #define OPENTITAN_SW_DEVICE_SILICON_CREATOR_LIB_SIGVERIFY_SIGVERIFY_H_
7 
8 #include <stddef.h>
9 #include <stdint.h>
10 
11 #include "sw/device/silicon_creator/lib/sigverify/ecdsa_p256_verify.h"
12 #include "sw/device/silicon_creator/lib/sigverify/spx_verify.h"
13 #include "sw/device/silicon_creator/lib/sigverify/usage_constraints.h"
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif // __cplusplus
18 
19 #ifdef __cplusplus
20 } // extern "C"
21 #endif // __cplusplus
22 
23 #endif // OPENTITAN_SW_DEVICE_SILICON_CREATOR_LIB_SIGVERIFY_SIGVERIFY_H_