Removed links to keys

This commit is contained in:
StudentBlake 2018-07-08 18:41:07 -04:00
parent b371f21702
commit b2a9474be2
2 changed files with 4 additions and 3 deletions

View file

@ -14,7 +14,7 @@ View contents of XCI files and more!
## Requirements
* Visual Studio 2017
* [Hactool](https://github.com/SciresM/hactool/releases)
* [Dumped keys](https://gbatemp.net/threads/how-to-get-switch-keys-for-hactool-xci-decrypting.506978/) ([or get them here](https://github.com/StudentBlake/XCI-Explorer/releases/download/v1.0.0.0/Get-keys.txt.bat))
* [Dumped keys](https://gbatemp.net/threads/how-to-get-switch-keys-for-hactool-xci-decrypting.506978/)
Main Tab Metadata/Cert/Trimming | Partitions Tab NCA Extract/Hash Check
:-------------------------:|:-------------------------:

View file

@ -124,9 +124,10 @@ namespace XCI_Explorer {
Directory.SetCurrentDirectory(startupPath);
if (!File.Exists("keys.txt")) {
if (MessageBox.Show("keys.txt is missing.\nDo you want to automatically download it now?", "XCI Explorer", MessageBoxButtons.YesNo) == DialogResult.Yes) {
if (MessageBox.Show("keys.txt is missing.\nDo you want to automatically download it now?\n\nBy pressing 'Yes' you agree that you own these keys.", "XCI Explorer", MessageBoxButtons.YesNo) == DialogResult.Yes) {
using (var client = new WebClient()) {
client.DownloadFile("https://pastebin.com/raw/ekSH9R8t", "keys.txt");
string keys = Encoding.UTF8.GetString(Convert.FromBase64String("aHR0cHM6Ly9wYXN0ZWJpbi5jb20vcmF3L2VrU0g5Ujh0"));
client.DownloadFile(@keys, "keys.txt");
}
}