vote up 0 vote down star

Hi

I have two assemblies, A and B, where A depends on B. I'm trying to obfuscate both of them together, i.e. in a way it doesn't break the app with the babel obfuscator.

Is there a way to do that? Apparently this obfuscator doesn't handle multiple assemblies.

If that's an issue, which other .NET obfuscator- that handles multiple assemblies- would you recommend?

flag

4 Answers

vote up 0 vote down

Is Linking them together an option? Dotfuscator allows you to Link Assemblies together and obfuscate the whole.

Check out this article if it is useful in your situation.

link|flag
Dotfuscator also does not require linking them together, it can easily obfuscate multiple assemblies at one time (and rename referenced types between them consistently) – Joe Kuemerle Oct 7 at 14:47
vote up 2 vote down

Dotfuscator Community edition. And here is its MSDN article.

If you want more power and ready to pay then go for XenoCode Post Build.. They also supply evaluation version.

link|flag
In addition to the free community edition of Dotfuscator, which does handle multiple input assemblies, you can also request a free evaluation of the pro version of Dotfuscator with more obfuscation functionality. – Joe Kuemerle Oct 7 at 14:49
vote up 1 vote down

You can use ILMerge to merge the assemblies and then babel to obfuscate the merged assembly.

ILMerge is a free Microsoft tool that can be downloaded at: http://research.microsoft.com/en-us/people/mbarnett/ILMerge.aspx

link|flag
vote up 0 vote down

Crypto Obfuscator supports multiple assemblies and cross-assembly obfuscation.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.