implemented Entis archives decryption.

This commit is contained in:
morkt
2015-05-27 13:57:34 +04:00
parent 6fa4b53299
commit d2eb1bbf8f
9 changed files with 459 additions and 11 deletions

View File

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