Reputation: 21
I need to create a macro to go through my 100000 line project and rename each function to random strings.
Has anyone done something like this?
Upvotes: 2
Views: 1186
Reputation: 5836
Instead of attempting to do this yourself, use an obfuscator such as the ones named above or Crypto Obfuscator
Upvotes: 0
Reputation: 168
I highly suggest that you use a obfuscator such as dotfuscator, It will do what you want and will protect you're program further than just randomizing your function names... Dotfuscator Community Edition is included with VS
Upvotes: 0
Reputation:
This is called an obfuscation of the code. In order to do this in .NET, you have to use Dotfuscator. Visual Studio installation is bundled with Dotfuscator Community Edition (optional component).
Good luck!
Upvotes: 1
Reputation: 38778
I'd use a tool designed for this instead. For example, Dotfuscator.
Upvotes: 6