Update valid name regex

This commit is contained in:
de4dot 2012-05-26 14:40:51 +02:00
parent f1c8549066
commit dbd7affaa8

View File

@ -28,9 +28,10 @@ namespace de4dot.code.deobfuscators.CodeWall {
public class DeobfuscatorInfo : DeobfuscatorInfoBase {
public const string THE_NAME = "CodeWall";
public const string THE_TYPE = "cw";
const string DEFAULT_REGEX = @"!^[_<>{}$.`-]$&" + DeobfuscatorBase.DEFAULT_VALID_NAME_REGEX;
public DeobfuscatorInfo()
: base() {
: base(DEFAULT_REGEX) {
}
public override string Name {