What is the best way for blocking DLL for not publishing the code inside the library?
AmrMohammed 0 Junior Poster
Recommended Answers
Jump to PostEssentially anything that you provide to customers will essentially be prone to reverse engineering, if this is what you are asking. There are techniques for making the reverse engineering process more difficult, like obfuscation, encryption, etc. These techniques make it more difficult, but not impossible to reverse engineer. You should …
Jump to PostMy advice? Just build optimized code and strip it before shipping. Trying to make it impossible to reverse engineer is a waste of time and resources. Yes, you could encrypt it, and require a proprietary key to decrypt it as it is loaded into memory, but once in memory, it …
Jump to PostSo yes, you can determine what the original source code looks like if there is no obfuscation/cryption.
For .NET to a certain extent. It won't match the original source since higher level constructs are represented internally with lower level constructs, but you can get close enough to have …
All 12 Replies
Suzie999 245 Coding Hobbyist
AmrMohammed 0 Junior Poster
overwraith 83 Newbie Poster
Suzie999 245 Coding Hobbyist
pritaeas 2,211 ¯\_(ツ)_/¯ Moderator Featured Poster
overwraith 83 Newbie Poster
rubberman 1,355 Nearly a Posting Virtuoso Featured Poster
overwraith 83 Newbie Poster
Suzie999 245 Coding Hobbyist
overwraith 83 Newbie Poster
deceptikon 1,790 Code Sniper Team Colleague Featured Poster
Suzie999 245 Coding Hobbyist
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.