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

@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion ("1.0.5.56")]
[assembly: AssemblyFileVersion ("1.0.5.56")]
[assembly: AssemblyVersion ("1.0.5.57")]
[assembly: AssemblyFileVersion ("1.0.5.57")]

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;
}
}
}
}

View File

@@ -77,5 +77,14 @@
<Setting Name="NOAPassPhrase" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
<Setting Name="DPKKey1" Type="System.UInt32" Scope="User">
<Value Profile="(Default)">65432</Value>
</Setting>
<Setting Name="DPKKey2" Type="System.UInt32" Scope="User">
<Value Profile="(Default)">1139247708</Value>
</Setting>
<Setting Name="DPKLastScheme" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
</Settings>
</SettingsFile>