implemented DPK resource archives.

known encryption keys for:
Inbou no Wakusei
Ryoshuu
Ryobaku ~Haitoku no Atelier~
Ryoshuu ~Jogakusei Choukyou~
Shirogane no Cal to Soukuu no Joou
Shiromiko
Shoujotachi no Saezuri
Yumemiru Tsuki no Lunalutia
This commit is contained in:
morkt
2015-06-02 03:16:11 +04:00
parent 314f4869cd
commit 884fd12607
12 changed files with 394 additions and 3 deletions

View File

@@ -321,5 +321,41 @@ namespace GameRes.Formats.Properties {
this["NOAPassPhrase"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("65432")]
public uint DPKKey1 {
get {
return ((uint)(this["DPKKey1"]));
}
set {
this["DPKKey1"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("1139247708")]
public uint DPKKey2 {
get {
return ((uint)(this["DPKKey2"]));
}
set {
this["DPKKey2"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string DPKLastScheme {
get {
return ((string)(this["DPKLastScheme"]));
}
set {
this["DPKLastScheme"] = value;
}
}
}
}