不加密 GeneratedEncryptionVirtualMachine函数体

backup
walon 2025-05-12 22:07:27 +08:00
parent d3e6e13419
commit 645621900a
1 changed files with 5 additions and 1 deletions

View File

@ -5,7 +5,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace Obfuz.ObfusPasses namespace Obfuz
{ {
public class NotObfuscatedMethodWhiteList public class NotObfuscatedMethodWhiteList
{ {
@ -39,6 +39,10 @@ namespace Obfuz.ObfusPasses
{ {
return true; return true;
} }
if (type.FullName == "Obfuz.EncryptionVM.GeneratedEncryptionVirtualMachine")
{
return true;
}
return false; return false;
} }
} }