1 /* 2 * Copyright (c) 2015, ARM Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef TBB_KEY_H 8 #define TBB_KEY_H 9 10 #include "key.h" 11 12 /* 13 * Enumerate the keys that are used to establish the chain of trust 14 */ 15 enum { 16 ROT_KEY, 17 TRUSTED_WORLD_KEY, 18 NON_TRUSTED_WORLD_KEY, 19 SCP_FW_CONTENT_CERT_KEY, 20 SOC_FW_CONTENT_CERT_KEY, 21 TRUSTED_OS_FW_CONTENT_CERT_KEY, 22 NON_TRUSTED_FW_CONTENT_CERT_KEY 23 }; 24 25 #endif /* TBB_KEY_H */ 26