implemented Marble scripts decryption.

This commit is contained in:
morkt
2015-06-04 01:13:25 +04:00
parent 8849508e41
commit 2da5ed1961
10 changed files with 155 additions and 8 deletions

View File

@@ -357,5 +357,17 @@ namespace GameRes.Formats.Properties {
this["DPKLastScheme"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string MBLPassPhrase {
get {
return ((string)(this["MBLPassPhrase"]));
}
set {
this["MBLPassPhrase"] = value;
}
}
}
}

View File

@@ -86,5 +86,8 @@
<Setting Name="DPKLastScheme" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
<Setting Name="MBLPassPhrase" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
</Settings>
</SettingsFile>