blob: 47ad1de0e42cf388b6b7bbb471b2b4df9990a175 [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
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +00007#ifndef TBB_KEY_H
8#define TBB_KEY_H
Juan Castillo11abdcd2014-10-21 11:30:42 +01009
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
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000025#endif /* TBB_KEY_H */