Qt: Implement "Extract Certificates from NAND"
This commit is contained in:
parent
561d31f887
commit
1173c2f790
|
@ -117,6 +117,9 @@ void MenuBar::AddToolsMenu()
|
||||||
m_import_backup = tools_menu->addAction(tr("Import BootMii NAND Backup..."),
|
m_import_backup = tools_menu->addAction(tr("Import BootMii NAND Backup..."),
|
||||||
[this] { emit ImportNANDBackup(); });
|
[this] { emit ImportNANDBackup(); });
|
||||||
|
|
||||||
|
m_extract_certificates = tools_menu->addAction(tr("Extract Certificates from NAND"), this,
|
||||||
|
&MenuBar::NANDExtractCertificates);
|
||||||
|
|
||||||
m_boot_sysmenu->setEnabled(false);
|
m_boot_sysmenu->setEnabled(false);
|
||||||
|
|
||||||
connect(&Settings::Instance(), &Settings::NANDRefresh, [this] { UpdateToolsMenu(false); });
|
connect(&Settings::Instance(), &Settings::NANDRefresh, [this] { UpdateToolsMenu(false); });
|
||||||
|
@ -458,3 +461,15 @@ void MenuBar::ExportWiiSaves()
|
||||||
CWiiSaveCrypted::ExportAllSaves();
|
CWiiSaveCrypted::ExportAllSaves();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MenuBar::NANDExtractCertificates()
|
||||||
|
{
|
||||||
|
if (DiscIO::NANDImporter().ExtractCertificates(File::GetUserPath(D_WIIROOT_IDX)))
|
||||||
|
{
|
||||||
|
QMessageBox::information(this, tr("Success"),
|
||||||
|
tr("Successfully extracted certificates from NAND"));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
QMessageBox::critical(this, tr("Error"), tr("Failed to extract certificates from NAND"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -96,6 +96,7 @@ private:
|
||||||
void InstallWAD();
|
void InstallWAD();
|
||||||
void ImportWiiSave();
|
void ImportWiiSave();
|
||||||
void ExportWiiSaves();
|
void ExportWiiSaves();
|
||||||
|
void NANDExtractCertificates();
|
||||||
|
|
||||||
// File
|
// File
|
||||||
QAction* m_open_action;
|
QAction* m_open_action;
|
||||||
|
@ -109,6 +110,7 @@ private:
|
||||||
QAction* m_ntscu_ipl;
|
QAction* m_ntscu_ipl;
|
||||||
QAction* m_pal_ipl;
|
QAction* m_pal_ipl;
|
||||||
QAction* m_import_backup;
|
QAction* m_import_backup;
|
||||||
|
QAction* m_extract_certificates;
|
||||||
|
|
||||||
// Emulation
|
// Emulation
|
||||||
QAction* m_play_action;
|
QAction* m_play_action;
|
||||||
|
|
Loading…
Reference in New Issue