getStringDecrypterMethods() now adds all string decrypter methods

This commit is contained in:
de4dot 2011-10-30 19:28:13 +01:00
parent 0ddbe16349
commit 35005a1a51

View File

@ -339,6 +339,8 @@ namespace de4dot.deobfuscators.dotNET_Reactor {
var list = new List<string>();
foreach (var info in stringDecrypter.DecrypterInfos)
list.Add(info.method.MetadataToken.ToInt32().ToString("X8"));
if (stringDecrypter.OtherStringDecrypter != null)
list.Add(stringDecrypter.OtherStringDecrypter.MetadataToken.ToInt32().ToString("X8"));
return list;
}
}