mirror of
https://github.com/citra-emu/citra.git
synced 2024-12-18 10:00:05 +00:00
Log if common key during Ticket::Load is missing
This commit is contained in:
parent
1d92343344
commit
a4457d871c
@ -47,6 +47,7 @@ std::optional<std::array<u8, 16>> Ticket::GetTitleKey() const {
|
|||||||
std::memcpy(ctr.data(), &ticket_body.title_id, sizeof(u64));
|
std::memcpy(ctr.data(), &ticket_body.title_id, sizeof(u64));
|
||||||
HW::AES::SelectCommonKeyIndex(ticket_body.common_key_index);
|
HW::AES::SelectCommonKeyIndex(ticket_body.common_key_index);
|
||||||
if (!HW::AES::IsNormalKeyAvailable(HW::AES::KeySlotID::TicketCommonKey)) {
|
if (!HW::AES::IsNormalKeyAvailable(HW::AES::KeySlotID::TicketCommonKey)) {
|
||||||
|
LOG_ERROR(Service_FS, "CommonKey {} missing", ticket_body.common_key_index);
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
auto key = HW::AES::GetNormalKey(HW::AES::KeySlotID::TicketCommonKey);
|
auto key = HW::AES::GetNormalKey(HW::AES::KeySlotID::TicketCommonKey);
|
||||||
|
Loading…
Reference in New Issue
Block a user