frontend_common: Remove key rederivation and keep key check

This commit is contained in:
t895 2024-01-24 12:33:34 -05:00
parent 889c5d2705
commit 1a3fc3724a
4 changed files with 13 additions and 121 deletions

View file

@ -368,4 +368,11 @@ inline GameVerificationResult VerifyGameContents(
return GameVerificationResult::Success;
}
/**
* Checks if the keys required for decrypting firmware and games are available
*/
inline bool AreKeysPresent() {
return !Core::Crypto::KeyManager::Instance().BaseDeriveNecessary();
}
} // namespace ContentManager