Search code examples
c#visual-studio-2010.net-4.0obfuscationeazfuscator

Cannot decode stack traces using Eazfuscator.NET


We use Eazfuscator.NET 3.3 to obfuscate our code. However, after adding this line to our AssemblyInfo.cs file for the dll we wish to encrypt, we are still unable to decode stack traces using the password defined as their help suggested:

[assembly: Obfuscation(Feature="encrypt symbol names with PASSWORD", Exclude=false)]

Has anyone had success with decoding stack traces using Eazfuscator.NET who could tell me what I am doing wrong?


Solution

  • Ahh, the problem was due to a typo. Originally the attribute read

    [assembly: Obfuscation(Feature="encrypt symbol names with PASSWORD", Exclude=false)]
    

    when it should have been

    [assembly: Obfuscation(Feature="encrypt symbol names with password PASSWORD", Exclude=false)]