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
|
|
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 |
|||
|
|
|
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. |
||
|
|
|
|
Maybe this is useful: |
||
|
|