mirror of
https://github.com/Dark98/threeSD.git
synced 2026-07-03 00:38:58 +00:00
core: Makes it possible to skip decryption part in QuickDecryptor
Bad name, huh?
This commit is contained in:
@@ -65,8 +65,8 @@ bool SDMCDecryptor::DecryptAndWriteFile(const std::string& source, const std::st
|
||||
auto key = Key::GetNormalKey(Key::SDKey);
|
||||
auto ctr = GetFileCTR(source);
|
||||
return quick_decryptor.DecryptAndWriteFile(std::move(source_file), size,
|
||||
std::move(destination_file), std::move(key),
|
||||
std::move(ctr), callback);
|
||||
std::move(destination_file), callback, true,
|
||||
std::move(key), std::move(ctr));
|
||||
}
|
||||
|
||||
void SDMCDecryptor::Abort() {
|
||||
|
||||
Reference in New Issue
Block a user