Add another warning message

This commit is contained in:
de4dot 2012-02-27 01:51:44 +01:00
parent ecfb79ca7f
commit 3c480f4c6c

View File

@ -88,8 +88,12 @@ namespace de4dot.code.deobfuscators.Eazfuscator_NET {
decryptType = type;
decryptMethod = method;
if (!findConstants(simpleDeobfuscator))
Log.w("Can't decrypt strings. Possibly a new Eazfuscator.NET version.");
if (!findConstants(simpleDeobfuscator)) {
if (encryptedResource == null)
Log.w("Could not find encrypted resource. Strings cannot be decrypted.");
else
Log.w("Can't decrypt strings. Possibly a new Eazfuscator.NET version.");
}
return;
}
}