vote up -4 vote down star

Possible Duplicate:
Encrypting source code when publishing (C#)

How can I encode/encrypt c sharp code ?

flag
3  
Are you asking about how you can obfuscate so that others cannot easily decipher your source from the binaries? – BobbyShaftoe Oct 8 at 17:12
1  
Do you mean encode or obfuscate? – snicker Oct 8 at 17:12
6  
Apply ROT13 to the source. Twice for added encryption ;) – pmg Oct 8 at 17:13
maybe youre looking for a decompiler like reflector? – Nona Urbiz Oct 8 at 17:17
5  
If you don't know what ROT13 is, you probably don't need to obfuscate your code. Just sayin'... – Dave Oct 8 at 17:22
show 3 more comments

closed as exact duplicate by Jon B, James Black, Brandon, dtb, AlbertoPL Oct 8 at 17:20

3 Answers

vote up 0 vote down

To obfuscate look at http://stackoverflow.com/questions/59893/best-method-to-obfuscate-or-secure-net-assemblies

But, if someone wants to look at your code there isn't much you can do about it, as the computer will need to be able to read it, so, if it can be executed then it can be decompiled.

It is just a matter of how difficult do you want the decompilation to be.

link|flag
vote up 0 vote down

To obfuscate the compiled assembly and make it harder for your users to examine your code, you can use an obfuscator such as SmartAssembly, Dotfuscator, or Xenocode.

To encrypt the source code so that people who somehow get to your development computer can't read your source, use any encryption program, such as NTFS Encryption.

link|flag
I would recommend .NET Reactor (www.eziriz.com) over all those. I think it does a much better job. – Druid Oct 8 at 17:30
I've never compared these programs' outputs, and I'm not specifically recommending any of them. I'm just providing examples. – SLaks Oct 8 at 17:32

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