1 /*
2  * Copyright (c) 2023, Arm Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef RPMB_UUID_H
8 #define RPMB_UUID_H
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 #define TS_RPMB_SERVICE_UUID \
15 { 0x19, 0xef, 0x70, 0xbf, 0x2f, 0xbc, 0x43, 0x09, 0xbd, 0xd3, 0xc2, 0x90, 0xe9, 0x93, 0xf6, 0x50 }
16 
17 #ifdef __cplusplus
18 }
19 #endif
20 
21 #endif /* RPMB_UUID_H */
22