I want to obfuscate my dll export names.
I have come across the same question in stack overflow in the below link, However I could not find the acceptance of solution.
Modify dll exports (symbol table). I want to obfuscate the function names
Can anyone suggest?
You can use a .def file, in which you can either give exported functions other names, or just export them by ordinal. See Exporting from a DLL Using DEF Files and .def files C/C++ DLLs.