Home
last modified time | relevance | path

Searched refs:image_data (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-latest/components/bootloader_support/src/
Dbootloader_utility.c93 static void load_image(const esp_image_metadata_t *image_data);
500 esp_image_metadata_t image_data; local
501 if (bootloader_load_image_no_verify(partition, &image_data) == ESP_OK) {
504 load_image(&image_data);
519 esp_image_metadata_t image_data = {0}; local
522 if (check_anti_rollback(&bs->test) && try_load_partition(&bs->test, &image_data)) {
523 load_image(&image_data);
537 if (check_anti_rollback(&part) && try_load_partition(&part, &image_data)) {
539 load_image(&image_data);
551 if (check_anti_rollback(&part) && try_load_partition(&part, &image_data)) {
[all …]
/hal_espressif-latest/components/bootloader_support/src/secure_boot_v2/
Dsecure_boot.c141 static esp_err_t check_and_generate_secure_boot_keys(const esp_image_metadata_t *image_data) in check_and_generate_secure_boot_keys() argument
255 …ret = s_calculate_image_public_key_digests(image_data->start_addr, image_data->image_len - SIG_BLO… in check_and_generate_secure_boot_keys()
308 esp_err_t esp_secure_boot_v2_permanently_enable(const esp_image_metadata_t *image_data) in esp_secure_boot_v2_permanently_enable() argument
320 err = check_and_generate_secure_boot_keys(image_data); in esp_secure_boot_v2_permanently_enable()
/hal_espressif-latest/components/bootloader_support/src/flash_encryption/
Dflash_encrypt.c400 esp_image_metadata_t image_data = {}; in encrypt_partition() local
403 &image_data); in encrypt_partition()
408 size = image_data.image_len; in encrypt_partition()
/hal_espressif-latest/components/bootloader_support/include/
Desp_secure_boot.h152 esp_err_t esp_secure_boot_v2_permanently_enable(const esp_image_metadata_t *image_data);