1 /*
2  * Copyright (c) 2023, Arm Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef ATTESTATION_UUID_H
8 #define ATTESTATION_UUID_H
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 #define TS_PSA_ATTESTATION_SERVICE_UUID \
15 { 0xa1, 0xba, 0xf1, 0x55, 0x88, 0x76, 0x46, 0x95, 0x8f, 0x7c, 0x54, 0x95, 0x5e, 0x8d, 0xb9, 0x74 }
16 
17 #ifdef __cplusplus
18 }
19 #endif
20 
21 #endif /* ATTESTATION_UUID_H */
22