Software APIs
sw
device
lib
crypto
include
otcrypto.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_INCLUDE_OTCRYPTO_H_
6
#define OPENTITAN_SW_DEVICE_LIB_CRYPTO_INCLUDE_OTCRYPTO_H_
7
8
#include "aes.h"
9
#include "
aes_gcm.h
"
10
#include "datatypes.h"
11
#include "drbg.h"
12
#include "
ecc_p256.h
"
13
#include "
ecc_p384.h
"
14
#include "
ed25519.h
"
15
#include "hash.h"
16
#include "
kdf.h
"
17
#include "
key_transport.h
"
18
#include "
mac.h
"
19
#include "
rsa.h
"
20
#include "
x25519.h
"
21
22
/**
23
* @file
24
* @brief Unified header file that includes the full crypto library.
25
*/
26
27
#ifdef __cplusplus
28
extern
"C"
{
29
#endif
// __cplusplus
30
31
#ifdef __cplusplus
32
}
// extern "C"
33
#endif
// __cplusplus
34
35
#endif
// OPENTITAN_SW_DEVICE_LIB_CRYPTO_INCLUDE_OTCRYPTO_H_
Return to
OpenTitan Documentation