1 /*
2  * Copyright (c) 2020,2023, ARM Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef TBBR_COT_COMMON_H
8 #define TBBR_COT_COMMON_H
9 
10 #include <common/tbbr/cot_def.h>
11 #include <drivers/auth/auth_mod.h>
12 
13 extern unsigned char tb_fw_hash_buf[HASH_DER_LEN];
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;
25 extern auth_param_type_desc_t fw_config_hash;
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 */
31