blob: df634c6acdbd7f150604384a2d6853aad64388dd [file] [log] [blame]
Juan Castillo11abdcd2014-10-21 11:30:42 +01001/*
2 * Copyright (c) 2015, ARM Limited and Contributors. All rights reserved.
3 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Juan Castillo11abdcd2014-10-21 11:30:42 +01005 */
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 */
15enum {
16 ROT_KEY,
17 TRUSTED_WORLD_KEY,
18 NON_TRUSTED_WORLD_KEY,
Juan Castillobe801202015-12-03 10:19:21 +000019 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
Juan Castillo11abdcd2014-10-21 11:30:42 +010023};
24
Juan Castillo11abdcd2014-10-21 11:30:42 +010025#endif /* TBB_KEY_H_ */