implemented Majiro RCT images decryption.

This commit is contained in:
morkt
2015-08-12 01:33:51 +04:00
parent 28a57db9e6
commit 7fb26371e3
10 changed files with 213 additions and 10 deletions

View File

@@ -393,5 +393,29 @@ namespace GameRes.Formats.Properties {
this["MCGLastKey"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string RCTPassword {
get {
return ((string)(this["RCTPassword"]));
}
set {
this["RCTPassword"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string RCTTitle {
get {
return ((string)(this["RCTTitle"]));
}
set {
this["RCTTitle"] = value;
}
}
}
}

View File

@@ -95,5 +95,11 @@
<Setting Name="MCGLastKey" Type="System.Byte" Scope="User">
<Value Profile="(Default)">0</Value>
</Setting>
<Setting Name="RCTPassword" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
<Setting Name="RCTTitle" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
</Settings>
</SettingsFile>