Sanity check: Assert .code is encrypted before setting normal key

This commit is contained in:
wheremyfoodat 2024-07-11 22:27:05 +03:00
parent 096d0a89ee
commit e608436315

View file

@ -207,8 +207,8 @@ bool NCCH::loadFromHeader(Crypto::AESEngine &aesEngine, IOFile& file, const FSIn
// All files in ExeFS use the same IV, though .code uses the secondary key for decryption
// whereas .icon/.banner use the primary key.
FSInfo info = exeFS;
if (secondaryKey.has_value() && info.encryptionInfo.has_value()) {
info.encryptionInfo->normalKey = secondaryKey.value();
if (encrypted && secondaryKey.has_value() && info.encryptionInfo.has_value()) {
info.encryptionInfo->normalKey = *secondaryKey;
}
if (compressCode) {