Manish V Badarkhe | 043fd62 | 2020-05-16 16:36:39 +0100 | [diff] [blame] | 1 | /* |
Govindraj Raja | 9c7dfb0 | 2023-01-11 18:34:58 +0000 | [diff] [blame] | 2 | * Copyright (c) 2020,2023, ARM Limited and Contributors. All rights reserved. |
Manish V Badarkhe | 043fd62 | 2020-05-16 16:36:39 +0100 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | #ifndef TBBR_COT_COMMON_H |
| 8 | #define TBBR_COT_COMMON_H |
| 9 | |
Govindraj Raja | 9c7dfb0 | 2023-01-11 18:34:58 +0000 | [diff] [blame] | 10 | #include <common/tbbr/cot_def.h> |
Manish V Badarkhe | 043fd62 | 2020-05-16 16:36:39 +0100 | [diff] [blame] | 11 | #include <drivers/auth/auth_mod.h> |
| 12 | |
| 13 | extern unsigned char tb_fw_hash_buf[HASH_DER_LEN]; |
Manish V Badarkhe | 043fd62 | 2020-05-16 16:36:39 +0100 | [diff] [blame] | 14 | extern unsigned char scp_fw_hash_buf[HASH_DER_LEN]; |
| 15 | extern unsigned char nt_world_bl_hash_buf[HASH_DER_LEN]; |
| 16 | |
| 17 | extern auth_param_type_desc_t trusted_nv_ctr; |
| 18 | extern auth_param_type_desc_t subject_pk; |
| 19 | extern auth_param_type_desc_t sig; |
| 20 | extern auth_param_type_desc_t sig_alg; |
| 21 | extern auth_param_type_desc_t raw_data; |
| 22 | |
| 23 | extern auth_param_type_desc_t tb_fw_hash; |
| 24 | extern auth_param_type_desc_t tb_fw_config_hash; |
Louis Mayencourt | 244027d | 2020-06-11 21:15:15 +0100 | [diff] [blame] | 25 | extern auth_param_type_desc_t fw_config_hash; |
Manish V Badarkhe | 043fd62 | 2020-05-16 16:36:39 +0100 | [diff] [blame] | 26 | |
| 27 | extern const auth_img_desc_t trusted_boot_fw_cert; |
| 28 | extern const auth_img_desc_t hw_config; |
| 29 | |
| 30 | #endif /* TBBR_COT_COMMON_H */ |