Ejemplo n.º 1
0
        public void ProtectConstants()
        {
            ConstantProtection cp = new ConstantProtection(module)
            {
                HideStrings    = this.HideStrings,
                HideIntegers   = this.HideIntegers,
                EncryptStrings = this.EncryptStrings,
            };

            cp.Protect();
        }
Ejemplo n.º 2
0
 public InjectPhase(ConstantProtection parent)
     : base(parent)
 {
 }
Ejemplo n.º 3
0
 public EncodePhase(ConstantProtection parent)
     : base(parent)
 {
 }
Ejemplo n.º 4
0
 public InjectPhase(ConstantProtection parent)
     : base(parent)
 {
 }
Ejemplo n.º 5
0