vote up 0 vote down star

Possible Duplicate : Free obfuscation tools for .Net

Hi all,

Are there any free tools similar to Dotfuscator? I want to encrypt\obfuscate certain strings inside my .NET assembly.

Thanx

flag
Check this : stackoverflow.com/questions/805549/… – Shoban Oct 2 at 9:12

2 Answers

vote up 2 vote down

I would think obfuscators only change the symbolnames, but not string literals.

So for extra String protection you'd need to garble/ungarble (encrypt/decrypt) the text yourself

But look out. If the strings are really sensitive, the best encryption won't do you good, since if the decryption method/keys are in the same program as well (since the program needs the decrypted version of the text) than your strings are still able to be decrypted.

link|flag
vote up 0 vote down

Maybe this is useful:

string encryption with VB.NET

link|flag

Your Answer

Get an OpenID
or

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