Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015, ARM Limited and Contributors. All rights reserved. |
| 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 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, |
Juan Castillo | be80120 | 2015-12-03 10:19:21 +0000 | [diff] [blame] | 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 |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 23 | }; |
| 24 | |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 25 | #endif /* TBB_KEY_H_ */ |