Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any program that obfuscates C# source code? [closed]

Our requirement is being able to integrate our DLLs with ClickOnce. Dotfuscator does the obfuscation job nicely but the obfuscated DLLs cannot be deployed with ClickOnce on customer side. On our side, we can handle it perfectly. Moreover, the obfuscated assemblies sometime crash our .NET CF app. It turns out to a solution that creates a temporary source and obfuscates it before compiling with VS. This ensures that the compiled assembly can be integrated with ClickOnce and fully compatible with .NET CF. What is the best tool to obfuscate C# SOURCE CODE (not assemblies)?

like image 383
Mark Attwood Avatar asked May 30 '10 06:05

Mark Attwood


People also ask

Can you obfuscate C++?

If you are a C++ developer, one method to help protect your C++ applications built with C++ software is to use a technique known as code obfuscation. In the event that malicious programmers attempt to reverse engineer your code, it can make your code very difficult for them to understand.


1 Answers

{SmartAssembly} - Simple, efficient, brilliant and comes with more than just obfuscation.

We currently use it with ClickOnce and it supports the Compact Framework - You just add a post build script and you're done. It also has various levels of security, so you can simply go by trial and error to the most compatible level of protection.

like image 117
Kyle Rosendo Avatar answered Oct 24 '22 17:10

Kyle Rosendo