25 lines
606 B
C#
25 lines
606 B
C#
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);
|
|
}
|
|
}
|