ConfigObfuscator class

Utility for obfuscating configuration values This class provides methods to decode obfuscated strings at runtime Values are encoded using XOR + Base64 encoding

Constructors

ConfigObfuscator()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

decode(String obfuscated) String
Main decode method - applies multiple obfuscation layers Encoding process: Input -> XOR -> Base64 Decoding process: Base64 -> XOR -> Output