aboutsummaryrefslogtreecommitdiff
path: root/include/odp/api/abi-default/crypto_types.h
blob: 8d860b6ef93cf3b39fb0ebb3612a34477651274b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* SPDX-License-Identifier: BSD-3-Clause
 * Copyright (c) 2017-2018 Linaro Limited
 * Copyright (c) 2022 Nokia
 */

#ifndef ODP_ABI_CRYPTO_TYPES_H_
#define ODP_ABI_CRYPTO_TYPES_H_

#ifdef __cplusplus
extern "C" {
#endif

#include <stdint.h>

/** @addtogroup odp_crypto
 *  @{
 */

#define ODP_CRYPTO_SESSION_INVALID (0xffffffffffffffffULL)

typedef uint64_t  odp_crypto_session_t;

/**
 * @}
 */

#ifdef __cplusplus
}
#endif

#endif