Home
last modified time | relevance | path

Searched refs:SECURE_BOOT_NUM_BLOCKS (Results 1 – 11 of 11) sorted by relevance

/hal_espressif-3.7.0/components/bootloader_support/src/secure_boot_v2/
Dsecure_boot.c91 for (unsigned i = 0; i < SECURE_BOOT_NUM_BLOCKS; i++) { in s_calculate_image_public_key_digests()
152 esp_efuse_purpose_t secure_boot_key_purpose[SECURE_BOOT_NUM_BLOCKS] = { in check_and_generate_secure_boot_keys()
153 #if SECURE_BOOT_NUM_BLOCKS == 1 in check_and_generate_secure_boot_keys()
171 …esp_efuse_block_t blocks[SECURE_BOOT_NUM_BLOCKS] = {[0 ... SECURE_BOOT_NUM_BLOCKS-1] = EFUSE_BLK_K… in check_and_generate_secure_boot_keys()
174 for (unsigned i = 0; i < SECURE_BOOT_NUM_BLOCKS; i++) { in check_and_generate_secure_boot_keys()
211 for (unsigned i = 0; i < SECURE_BOOT_NUM_BLOCKS; i++) { in check_and_generate_secure_boot_keys()
297 if (boot_key_digests.num_digests < SECURE_BOOT_NUM_BLOCKS) { in check_and_generate_secure_boot_keys()
299 for (unsigned i = boot_key_digests.num_digests; i < SECURE_BOOT_NUM_BLOCKS; i++) { in check_and_generate_secure_boot_keys()
Dsecure_boot_signatures_app.c30 _Static_assert(SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS == SECURE_BOOT_NUM_BLOCKS,
74 for (unsigned i = 0; i < SECURE_BOOT_NUM_BLOCKS; i++) { in esp_secure_boot_get_signature_blocks_for_running_app()
114 for (unsigned i = 0; i < SECURE_BOOT_NUM_BLOCKS; i++) { in get_secure_boot_key_digests()
179 const unsigned secure_boot_num_blocks = SECURE_BOOT_NUM_BLOCKS; in esp_secure_boot_verify_sbv2_signature_block()
Dsecure_boot_signatures_bootloader.c85 for (unsigned i = 0; i < SECURE_BOOT_NUM_BLOCKS; i++) { in get_secure_boot_key_digests()
123 for (unsigned i = 0; i < SECURE_BOOT_NUM_BLOCKS; i++) { in esp_secure_boot_verify_sbv2_signature_block()
151 for (unsigned i = 0; i < SECURE_BOOT_NUM_BLOCKS; i++) { in esp_secure_boot_verify_sbv2_signature_block()
/hal_espressif-3.7.0/components/esp_rom/include/esp32c3/rom/
Dsecure_boot.h86 #define SECURE_BOOT_NUM_BLOCKS 3 macro
90 ets_secure_boot_sig_block_t block[SECURE_BOOT_NUM_BLOCKS];
91 uint8_t _padding[4096 - (sizeof(ets_secure_boot_sig_block_t) * SECURE_BOOT_NUM_BLOCKS)];
/hal_espressif-3.7.0/components/esp_rom/include/esp32s3/rom/
Dsecure_boot.h75 #define SECURE_BOOT_NUM_BLOCKS 3 macro
79 ets_secure_boot_sig_block_t block[SECURE_BOOT_NUM_BLOCKS];
80 uint8_t _padding[4096 - (sizeof(ets_secure_boot_sig_block_t) * SECURE_BOOT_NUM_BLOCKS)];
/hal_espressif-3.7.0/components/esp_rom/include/esp32c2/rom/
Dsecure_boot.h88 #define SECURE_BOOT_NUM_BLOCKS 1 macro
92 ets_secure_boot_sig_block_t block[SECURE_BOOT_NUM_BLOCKS];
93 uint8_t _padding[4096 - (sizeof(ets_secure_boot_sig_block_t) * SECURE_BOOT_NUM_BLOCKS)];
/hal_espressif-3.7.0/components/esp_rom/include/esp32s2/rom/
Dsecure_boot.h98 #define SECURE_BOOT_NUM_BLOCKS 3 macro
102 ets_secure_boot_sig_block_t block[SECURE_BOOT_NUM_BLOCKS];
103 uint8_t _padding[4096 - (sizeof(ets_secure_boot_sig_block_t) * SECURE_BOOT_NUM_BLOCKS)];
/hal_espressif-3.7.0/components/esp_rom/include/esp32/rom/
Dsecure_boot.h40 #define SECURE_BOOT_NUM_BLOCKS 1 macro
80 const void *key_digests[SECURE_BOOT_NUM_BLOCKS];
116 #define SECURE_BOOT_NUM_BLOCKS 0 macro
/hal_espressif-3.7.0/components/esp_rom/include/esp32c6/rom/
Dsecure_boot.h112 #define SECURE_BOOT_NUM_BLOCKS 3 macro
116 ets_secure_boot_sig_block_t block[SECURE_BOOT_NUM_BLOCKS];
117 uint8_t _padding[4096 - (sizeof(ets_secure_boot_sig_block_t) * SECURE_BOOT_NUM_BLOCKS)];
/hal_espressif-3.7.0/components/esp_rom/include/esp32h2/rom/
Dsecure_boot.h112 #define SECURE_BOOT_NUM_BLOCKS 3 macro
116 ets_secure_boot_sig_block_t block[SECURE_BOOT_NUM_BLOCKS];
117 uint8_t _padding[4096 - (sizeof(ets_secure_boot_sig_block_t) * SECURE_BOOT_NUM_BLOCKS)];
/hal_espressif-3.7.0/components/bootloader_support/src/
Dsecure_boot.c161 #if CONFIG_SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT && SECURE_BOOT_NUM_BLOCKS > 1 in rsa_check_signature_on_update_check()