mirror of
https://github.com/Maschell/JNUSTool.git
synced 2024-11-24 00:49:20 +01:00
Using the titleid from the tmd as IV for the key decryption, not the given one
,
This commit is contained in:
parent
f03719487f
commit
8959bced34
@ -105,15 +105,16 @@ public class NUSTitle {
|
||||
System.exit(2);
|
||||
}
|
||||
}
|
||||
|
||||
if(key != null){
|
||||
Logger.log("Using ticket from parameter.");
|
||||
ticket = new TIK(key,titleId);
|
||||
ticket = new TIK(key,tmd.titleID);
|
||||
}else{
|
||||
if(Settings.useCachedFiles){
|
||||
File f = new File(getContentPath() + "/" + "title.tik");
|
||||
if(f.exists()){
|
||||
Logger.log("Using cached cetk.");
|
||||
ticket = new TIK(f,titleId);
|
||||
ticket = new TIK(f,tmd.titleID);
|
||||
}else{
|
||||
Logger.log("No cached ticket found.");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user