Click here to Skip to main content
15,919,879 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
is obfuscate secure for my project ?
Posted
Updated 4-Mar-10 4:12am
v2

1 solution

.NET (just like Java) does not compile in machine code but in bytecode. Bytecode can be easily reversed, and there are many tools that do that. With using SQLite I think you mean storing data in a sqlite database instead of directly into the dll. This may help but still anyone can open a sqlite database file and read its data.

If you want to use your dll, you may want to obfuscate your code with third party tools. With the sqlite way I suggest to you to encrypt your data.

Hope this helps.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900