1 /*
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
12 extern "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__ */
24