tbb_key.h 465 Bytes
Newer Older
1
2
3
/*
 * Copyright (c) 2015, ARM Limited and Contributors. All rights reserved.
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 */

#ifndef TBB_KEY_H_
#define TBB_KEY_H_

#include "key.h"

/*
 * Enumerate the keys that are used to establish the chain of trust
 */
enum {
	ROT_KEY,
	TRUSTED_WORLD_KEY,
	NON_TRUSTED_WORLD_KEY,
19
20
21
22
	SCP_FW_CONTENT_CERT_KEY,
	SOC_FW_CONTENT_CERT_KEY,
	TRUSTED_OS_FW_CONTENT_CERT_KEY,
	NON_TRUSTED_FW_CONTENT_CERT_KEY
23
24
25
};

#endif /* TBB_KEY_H_ */