PDA

Click to See Complete Forum and Search --> : I really could use some help protecting my source code...


Daniel_Christie
May 20th, 2000, 01:36 PM
Does anyone have some source or suggestions that I can use to protect my source code from being decompiled? I need to protect my source code from prying eyes before I can hand my program out.

If it helps, I am coding in VB 5.0 Enterprise Edition
I appreciate all your time and effort,
Daniel christie

May 20th, 2000, 07:34 PM
are you compiling to p-code, or native code?
look in the project properties..
I dont know the difference, but I think native code is safer.
and there is no protection...
anyone can use a program like softice(by numega) to decompile into ASM code, I dont think its possible to decompile into VB code....

WadeD
May 24th, 2000, 09:11 PM
Dennis is right. Native code is safer. In terms of decompiling to something like vb or c, it can't be done right now. In terms of disassembling, someone can read the source but they'd have to know ASM and the effort would be tremendous. With assembly language, a little program like "hello world" becomes a 63-line program because assembly's at such a low level.