Fix for .NETReactor versions(4.7+).

This commit is contained in:
XODE0 2016-03-19 20:13:02 +01:00
parent bbe3d325fb
commit be964e1637

View File

@ -210,7 +210,8 @@ namespace de4dot.code.deobfuscators.dotNET_Reactor.v4 {
return false;
if (DotNetUtils.GetMethod(method.DeclaringType, "System.Security.Cryptography.SymmetricAlgorithm", "()") != null)
return false;
if (localTypes.Exists("System.UInt64"))
return false;
if (!localTypes.Exists("System.Security.Cryptography.RijndaelManaged") &&
!localTypes.Exists("System.Security.Cryptography.AesManaged") &&