1 /* 2 * Copyright (c) 2023, Arm Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 #ifndef SECURE_STORAGE_UUID_H 7 #define SECURE_STORAGE_UUID_H 8 9 #ifdef __cplusplus 10 extern "C" { 11 #endif 12 13 #define TS_PSA_INTERNAL_TRUSTED_STORAGE_UUID \ 14 { 0xdc, 0x1e, 0xef, 0x48, 0xb1, 0x7a, 0x4c, 0xcf, 0xac, 0x8b, 0xdf, 0xcf, 0xf7, 0x71, 0x1b, 0x14, } 15 16 #define TS_PSA_PROTECTED_STORAGE_UUID \ 17 { 0x75, 0x1b, 0xf8, 0x01, 0x3d, 0xde, 0x47, 0x68, 0xa5, 0x14, 0x0f, 0x10, 0xae, 0xed, 0x17, 0x90, } 18 19 #ifdef __cplusplus 20 } 21 #endif 22 23 #endif /* SECURE_STORAGE_UUID_H */ 24