It's a flags enum so should use unique bits

This commit is contained in:
de4dot 2011-10-26 22:00:32 +02:00
parent db7edc2a72
commit 28b73d36ed

View File

@ -37,9 +37,9 @@ namespace de4dot.deobfuscators {
[Flags] [Flags]
enum StringFeatures { enum StringFeatures {
AllowNoDecryption, AllowNoDecryption = 1,
AllowStaticDecryption, AllowStaticDecryption = 2,
AllowDynamicDecryption, AllowDynamicDecryption = 4,
AllowAll = AllowNoDecryption | AllowStaticDecryption | AllowDynamicDecryption, AllowAll = AllowNoDecryption | AllowStaticDecryption | AllowDynamicDecryption,
} }