Protecting application DLL [c#]
-
Hi all, I want that the dll of my application which are on the client machine after deployment should be protected that no one can see the code and logic using some deassembler tool. How should i protect this??? i tested a third party tool to read a dll of some trial version application from internet. Its opens the code easily, but when i tried the same tool with some system32 dll, the dll showed to be locked. I want this to be in my dll also. How is it possible ??? Sample Code, Suggestion, References welcom ........ Thanx sandeep
-
Hi all, I want that the dll of my application which are on the client machine after deployment should be protected that no one can see the code and logic using some deassembler tool. How should i protect this??? i tested a third party tool to read a dll of some trial version application from internet. Its opens the code easily, but when i tried the same tool with some system32 dll, the dll showed to be locked. I want this to be in my dll also. How is it possible ??? Sample Code, Suggestion, References welcom ........ Thanx sandeep
The system32 dll is written in C++. That's the only way to stop people from reading your code at all. Otherwise, all you can do is use an obsfucator.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
The system32 dll is written in C++. That's the only way to stop people from reading your code at all. Otherwise, all you can do is use an obsfucator.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
I’m actually quite good at looking at x86 machine code and producing equivalent C++ code. It takes some time but it’s not impossible.
Steve
-
I’m actually quite good at looking at x86 machine code and producing equivalent C++ code. It takes some time but it’s not impossible.
Steve
*grin* I know, but it's hardly trivial like reflector is.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )