initial commit

This commit is contained in:
i2p
2026-08-27 11:21:58 -06:00
commit c21fb61050
336 changed files with 74161 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
using dnlib.DotNet.Emit;
namespace Obfuscator.Obfuscator.Mutation2;
public class Utils
{
public static bool CheckArithmetic(Instruction instruction)
{
if (!instruction.IsLdcI4())
{
return false;
}
if (instruction.GetLdcI4Value() <= 1)
{
return false;
}
return true;
}
}