Exemplo n.º 1
0
        void DeobfuscateStrings(Blocks blocks)
        {
            switch (options.StringDecrypterType)
            {
            case DecrypterType.None:
                break;

            case DecrypterType.Static:
                deob.DeobfuscateStrings(blocks);
                break;

            case DecrypterType.Delegate:
            case DecrypterType.Emulate:
                dynamicStringInliner.Decrypt(blocks);
                break;

            default:
                throw new ApplicationException(string.Format("Invalid string decrypter type '{0}'", options.StringDecrypterType));
            }
        }
Exemplo n.º 2
0
		void ISimpleDeobfuscator.DecryptStrings(MethodDef method, IDeobfuscator theDeob) {
			Deobfuscate(method, "Static string decryption", (blocks) => theDeob.DeobfuscateStrings(blocks));
		}
Exemplo n.º 3
0
 void ISimpleDeobfuscator.DecryptStrings(MethodDef method, IDeobfuscator theDeob)
 {
     Deobfuscate(method, "Static string decryption", (blocks) => theDeob.DeobfuscateStrings(blocks));
 }