Basically I have this…
I have created a WPF application. It references a C++/CLI wrapper to a native static LIB.
Now the static LIB has commercially sensitive algorithms.
The code for the static LIB is small and simple.
As it stands someone could decompile the LIB with Ada Pro / Hex-Rays and work out the algorithms easily. What I was wondering was if I could obfuscate the source code then the decompiled LIB would have additional complexity.
What I would like is some way of making what is a fairly small and straight-forward code base obfuscated enough to make it difficult to work out the algorithm from the de-compilation.
Two things. Firstly, I understand that this will not prevent someone from discovering the algorithm. I just want to increase the costs of doing so in terms of time and money. Secondly, I am not actually worried too much about the code itself, it is just the algorithm I want to hide.
I ask here because, a google search gives a lot about obfuscation but says little for this particular case when the codebase is small and simple. Is there are alternative approach that I have overlooked?
Additionally. I am not concerned with obfuscating the managed code.