Software APIs
ecdsa_p384.h
Go to the documentation of this file.
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_LIB_CRYPTO_IMPL_ECC_ECDSA_P384_H_
6 #define OPENTITAN_SW_DEVICE_LIB_CRYPTO_IMPL_ECC_ECDSA_P384_H_
7 
8 #include "sw/device/lib/crypto/impl/ecc/ecdsa_p384_keygen.h"
9 #include "sw/device/lib/crypto/impl/ecc/ecdsa_p384_sign.h"
10 #include "sw/device/lib/crypto/impl/ecc/ecdsa_p384_verify.h"
11 
12 /**
13  * @file
14  * @brief Unified header file that includes all P-384 ECDSA operations.
15  */
16 
17 #ifdef __cplusplus
18 extern "C" {
19 #endif // __cplusplus
20 
21 #ifdef __cplusplus
22 } // extern "C"
23 #endif // __cplusplus
24 
25 #endif // OPENTITAN_SW_DEVICE_LIB_CRYPTO_IMPL_ECC_ECDSA_P384_H_