Home
last modified time | relevance | path

Searched refs:part_pos (Results 1 – 2 of 2) sorted by relevance

/hal_espressif-latest/components/bootloader_support/src/secure_boot_v2/
Dsecure_boot_signatures_app.c50 …public_keys, esp_image_sig_public_key_digests_t *public_key_digests, esp_partition_pos_t *part_pos) in calculate_image_public_key_digests() argument
53 esp_err_t ret = esp_image_get_metadata(part_pos, &img_metadata); in calculate_image_public_key_digests()
110 …TAG, "Secure boot sign blocks cannot be read from image at %lx (err=0x%x)", part_pos->offset, err); in calculate_image_public_key_digests()
128 esp_partition_pos_t part_pos; in esp_secure_boot_get_signature_blocks_for_running_app() local
134 part_pos.offset = running_app_part->address; in esp_secure_boot_get_signature_blocks_for_running_app()
135 part_pos.size = running_app_part->size; in esp_secure_boot_get_signature_blocks_for_running_app()
137 …err = calculate_image_public_key_digests(false, digest_public_keys, public_key_digests, &part_pos); in esp_secure_boot_get_signature_blocks_for_running_app()
283 …p_secure_boot_verify_with_efuse_digest_index(int efuse_digest_index, esp_partition_pos_t *part_pos) in esp_secure_boot_verify_with_efuse_digest_index() argument
285 …if (!part_pos || (efuse_digest_index < 0 || efuse_digest_index >= SOC_EFUSE_SECURE_BOOT_KEY_DIGEST… in esp_secure_boot_verify_with_efuse_digest_index()
289 esp_err_t ret = calculate_image_public_key_digests(true, true, &img_key_digests, part_pos); in esp_secure_boot_verify_with_efuse_digest_index()
/hal_espressif-latest/components/bootloader_support/include/
Desp_secure_boot.h298 …_secure_boot_verify_with_efuse_digest_index(int efuse_digest_index, esp_partition_pos_t *part_pos);