I have a C++ DLL that I have to secure. I mean my problem is that when I use a decompiler, I can see my functions names and then that's easy to reverse.
So my question is : how can I secure my code to hide the functions names, variable etc.. to prevent reverse engineering ? I've been looking for obfuscation but never found solution for native C++ code (only managed code).
Thanks.