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

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