obfuz/Editor/Virtualization/IDataObfuscationPolicy.cs

25 lines
606 B
C#
Raw Normal View History

2025-04-21 21:02:47 +08:00
using dnlib.DotNet;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Obfuz.Virtualization
{
public interface IDataObfuscationPolicy
{
bool NeedObfuscateMethod(MethodDef method);
bool NeedObfuscateInt(MethodDef method, int value);
bool NeedObfuscateLong(MethodDef method, long value);
bool NeedObfuscateFloat(MethodDef method, float value);
bool NeedObfuscateDouble(MethodDef method, double value);
bool NeedObfuscateString(MethodDef method, string value);
}
}