From 28b73d36edf3c5c609bcaeb01998b262547a5f38 Mon Sep 17 00:00:00 2001 From: de4dot Date: Wed, 26 Oct 2011 22:00:32 +0200 Subject: [PATCH] It's a flags enum so should use unique bits --- de4dot.code/deobfuscators/IDeobfuscator.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/de4dot.code/deobfuscators/IDeobfuscator.cs b/de4dot.code/deobfuscators/IDeobfuscator.cs index 3fb711ac..3720ba8e 100644 --- a/de4dot.code/deobfuscators/IDeobfuscator.cs +++ b/de4dot.code/deobfuscators/IDeobfuscator.cs @@ -37,9 +37,9 @@ namespace de4dot.deobfuscators { [Flags] enum StringFeatures { - AllowNoDecryption, - AllowStaticDecryption, - AllowDynamicDecryption, + AllowNoDecryption = 1, + AllowStaticDecryption = 2, + AllowDynamicDecryption = 4, AllowAll = AllowNoDecryption | AllowStaticDecryption | AllowDynamicDecryption, }