Exemplo n.º 1
0
 protected override void scanForObfuscatorInternal()
 {
     proxyDelegateFinder = new ProxyDelegateFinder(module);
     findCliSecureAttribute();
     findCliSecureRtType();
     findStringDecryptBuffer();
     findDelegateCreatorType();
 }
Exemplo n.º 2
0
 protected override void scanForObfuscator()
 {
     findCliSecureAttribute();
     cliSecureRtType = new CliSecureRtType(module);
     cliSecureRtType.find();
     stringDecrypter = new StringDecrypter(module, cliSecureRtType.StringDecrypterMethod);
     stringDecrypter.find();
     proxyDelegateFinder = new ProxyDelegateFinder(module);
     proxyDelegateFinder.findDelegateCreator();
 }