pub enum ObfuscationPass {
Show 13 variants
LoopEncodeSemantics(LoopEncodeSemantics),
MixedBooleanArithmetic(MixedBooleanArithmetic),
MutationEngine(MutationEngine),
TetherExtraction(TetherExtraction),
SplitBlockPass(SplitBlockPass),
OpaqueBlockDuplication(OpaqueBlockDuplication),
ObscureControlFlow(ObscureControlFlow),
LeaEncodeImm(LeaEncodeImm),
ObscureConstants(ObscureConstants),
SuppressConstants(SuppressConstants),
ObscureReferences(ObscureReferences),
IDADecompilerCrasher,
AntiEmulator,
}Expand description
All possible obfuscation passes.
Variants§
LoopEncodeSemantics(LoopEncodeSemantics)
MixedBooleanArithmetic(MixedBooleanArithmetic)
MutationEngine(MutationEngine)
TetherExtraction(TetherExtraction)
SplitBlockPass(SplitBlockPass)
OpaqueBlockDuplication(OpaqueBlockDuplication)
ObscureControlFlow(ObscureControlFlow)
LeaEncodeImm(LeaEncodeImm)
ObscureConstants(ObscureConstants)
SuppressConstants(SuppressConstants)
ObscureReferences(ObscureReferences)
IDADecompilerCrasher
AntiEmulator
Trait Implementations§
Source§impl Clone for ObfuscationPass
impl Clone for ObfuscationPass
Source§fn clone(&self) -> ObfuscationPass
fn clone(&self) -> ObfuscationPass
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ObfuscationPass
impl Debug for ObfuscationPass
Source§impl<'de> Deserialize<'de> for ObfuscationPass
impl<'de> Deserialize<'de> for ObfuscationPass
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ObfuscationPass
impl RefUnwindSafe for ObfuscationPass
impl Send for ObfuscationPass
impl Sync for ObfuscationPass
impl Unpin for ObfuscationPass
impl UnwindSafe for ObfuscationPass
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more