2025-06-22 19:33:28 +08:00
|
|
|
|
using dnlib.DotNet;
|
2025-06-22 10:39:57 +08:00
|
|
|
|
|
|
|
|
|
namespace Obfuz.ObfusPasses.ControlFlowObfus
|
|
|
|
|
{
|
|
|
|
|
interface IObfuscator
|
|
|
|
|
{
|
2025-06-22 19:33:28 +08:00
|
|
|
|
bool Obfuscate(MethodDef method, ObfusMethodContext ctx);
|
2025-06-22 10:39:57 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
abstract class ObfuscatorBase : IObfuscator
|
|
|
|
|
{
|
2025-06-22 19:33:28 +08:00
|
|
|
|
public abstract bool Obfuscate(MethodDef method, ObfusMethodContext ctx);
|
2025-06-22 10:39:57 +08:00
|
|
|
|
}
|
|
|
|
|
}
|