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

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