Finish getStringDecrypterMethods() method

This commit is contained in:
de4dot 2012-02-05 18:59:29 +01:00
parent 191fbb84b0
commit 9e4b29034f

View File

@ -152,7 +152,8 @@ namespace de4dot.code.deobfuscators.CodeVeil {
public override IEnumerable<string> getStringDecrypterMethods() {
var list = new List<string>();
//TODO:
if (stringDecrypter.DecryptMethod != null)
list.Add(stringDecrypter.DecryptMethod.MetadataToken.ToInt32().ToString("X8"));
return list;
}
}