Busta117 / SQLiteUnityKit

Framework to connect with a SQLite database from Unity for iOS, Android, MAC , Windows
300 stars 77 forks source link

SQLite with SQLcipher #7

Open ua2004 opened 9 years ago

ua2004 commented 9 years ago

I don't know which compiler options were used to compile SQLite in here to work with Android so I can't repeat it myself at the moment. But I want to suggest to recompile it with adding SQLcipher extension (http://sqlcipher.net/). It supports full db encryption which may be very useful for many users.

ua2004 commented 9 years ago

BTW, I just found an official encryption extension for SQLite which is called SEE (http://www.hwaci.com/sw/sqlite/see.html). Could you please recompile SQLite with one of the mentioned above?

neslo commented 9 years ago

Hi ua2004, It seems that the official encryption is licensed software (e.g. the source code is not availble). I had a look at the other link and they provide precompiled binaries here https://github.com/sqlcipher/android-database-sqlcipher (Check section "Download Source and Binaries")

Hope that helps.

ua2004 commented 9 years ago

@neslo but that is only for Android. I need a multi platform library to run on iOS and Windows as well. Then maybe SEE is better to use here?

neslo commented 9 years ago

@ua2004 sorry, I only know about the android part.

Don't know if SEE is better than sqlcipher (But it does seem that SEE will cost you $3000).

It looks like it is all C code so should be possible for you to compile it for Mac and Windows too.