aegis_vm 0.2.52

Advanced Rust code virtualization and obfuscation framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Mutated Arithmetic Handlers
//!
//! This file is conditionally compiled based on build-time mutation selection.
//! Each build generates different handler implementations.
//!
//! Generated by build.rs - DO NOT EDIT MANUALLY

// Allow intentional identity operations (like JUNK[0] ^ JUNK[0] = 0) for obfuscation
#![allow(clippy::eq_op)]

// Include the build-time generated mutations
include!(concat!(env!("OUT_DIR"), "/mutated_handlers.rs"));