1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-11-26 05:42:17 +00:00

Unstub "Validate section hashes."

This commit is contained in:
TuxSH 2018-05-23 18:45:53 +02:00
parent eaf8e559d6
commit 16ad355f45

View file

@ -159,7 +159,7 @@ static bool package2_validate_metadata(package2_meta_t *metadata) {
} }
/* Validate section hashes. */ /* Validate section hashes. */
if (false && metadata->section_sizes[section]) { if (metadata->section_sizes[section]) {
void *section_data = package2->data + cur_section_offset; void *section_data = package2->data + cur_section_offset;
uint8_t calculated_hash[0x20]; uint8_t calculated_hash[0x20];
se_calculate_sha256(calculated_hash, section_data, metadata->section_sizes[section]); se_calculate_sha256(calculated_hash, section_data, metadata->section_sizes[section]);