1
0
Fork 0
mirror of https://github.com/CTCaer/hekate.git synced 2024-09-22 23:14:09 +01:00
hekate/bootloader/config
Stéphane Lesimple ee884add8c [Tools] implement hashfile generation on backup
Add a configuration option "Full w/ hashfile" to
the "verification" option menu, to enable hashfile
generation when doing full verification of a backup.

When enabled, during full backup verification we save the
chunk's SHA256 digest in a hashfile next to the output file
we're currently verifying.

The performance impact is negligible between "Full verify"
and "Full verify w/ hashfile", because we already
compute the SHA256 of the chunks when verifying.

We save the SHA256 per chunks (4 MB) because due to
SE limitations, we can't compute the SHA256 of the
whole partition (or rawnand).

On the other hand a pure software implementation
is way too slow to be bearable, even asm-optimized:
between 15 and 90 seconds per 4 MB chunk for
crc32/sha1/sha256, depending on the optimizations
and the actual algorithm.

The output hash file format is as follows:
 # chunksize: <CHUNKSIZE_IN_BYTES>
 sha256_of_chunk_1
 sha256_of_chunk_2
 ...
 sha256_of_chunk_N
2019-04-26 17:53:24 +02:00
..
config.c [Tools] implement hashfile generation on backup 2019-04-26 17:53:24 +02:00
config.h [main] Add brick protection for RCM patched units 2019-04-16 20:09:04 +03:00
ini.c [config + ini] Refactor and fix bugs 2019-02-24 00:35:24 +02:00
ini.h Add payload/libtools launching prerequisites 2018-08-21 04:45:19 +03:00