As the title of issue, how can I set password for sqlite database ? Please tell me! Thanks a lot
Asked
Active
Viewed 4,159 times
1
-
http://stackoverflow.com/questions/5118793/android-sqlite-password-encryption http://stackoverflow.com/questions/15680173/setting-password-for-android-sqlite-database – winston Oct 23 '14 at 15:30
-
Not supported in android, I suggest encrypting data. – Ali Oct 23 '14 at 15:47
1 Answers
0
SQLite has hooks built-in for encryption which are not used in the normal distribution, but here are a few implementations I know of:
- -SEE The official implementation.
- -wxSQLite - A wxWidgets style c++ wrapper that also implements SQLite's encryption.
- -SQLCipher - Uses openSSL's libcrypto to implement.
- -SQLiteCrypt - Custom implementation, modified API.
- -botansqlite3 - botansqlite3 is an encryption codec for SQLite3 that can use any algorithms in Botan for encryption.
The SEE and SQLiteCrypt require the purchase of a license.

Patrizio
- 145
- 4