Searched refs:s_app_elf_sha256 (Results 1 – 1 of 1) sorted by relevance
81 static char s_app_elf_sha256[CONFIG_APP_RETRIEVE_LEN_ELF_SHA / 2]; in esp_app_get_elf_sha256() local89 for (size_t i = 0; i < sizeof(s_app_elf_sha256); ++i) { in esp_app_get_elf_sha256()90 s_app_elf_sha256[i] = src[i]; in esp_app_get_elf_sha256()96 size_t n = MIN((size - 1) / 2, sizeof(s_app_elf_sha256)); in esp_app_get_elf_sha256()98 dst[2*i] = to_hex_digit(s_app_elf_sha256[i] >> 4); in esp_app_get_elf_sha256()99 dst[2*i + 1] = to_hex_digit(s_app_elf_sha256[i] & 0xf); in esp_app_get_elf_sha256()