blob: dad7769353f348da904e246d1cfc12be6937fc47 [file] [log] [blame]
Shawn Shan40a0dce2021-07-09 10:13:35 +08001/*
2 * Copyright (c) 2021, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 */
7
8#ifndef __TFM_ATTEST_DEFS_H__
9#define __TFM_ATTEST_DEFS_H__
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
15/* Initial Attestation message types that distinguish Attest services. */
16#define TFM_ATTEST_GET_TOKEN 1001
17#define TFM_ATTEST_GET_TOKEN_SIZE 1002
18
19#ifdef __cplusplus
20}
21#endif
22
23#endif /* __TFM_ATTEST_DEFS_H__ */