diff --git a/Editor/ObfusPasses/NotObfuscatedMethodWhiteList.cs b/Editor/NotObfuscatedMethodWhiteList.cs similarity index 85% rename from Editor/ObfusPasses/NotObfuscatedMethodWhiteList.cs rename to Editor/NotObfuscatedMethodWhiteList.cs index 4d774bb..612d293 100644 --- a/Editor/ObfusPasses/NotObfuscatedMethodWhiteList.cs +++ b/Editor/NotObfuscatedMethodWhiteList.cs @@ -5,7 +5,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace Obfuz.ObfusPasses +namespace Obfuz { public class NotObfuscatedMethodWhiteList { @@ -39,6 +39,10 @@ namespace Obfuz.ObfusPasses { return true; } + if (type.FullName == "Obfuz.EncryptionVM.GeneratedEncryptionVirtualMachine") + { + return true; + } return false; } }