Reputation: 482
I have created SQLite
database in android.
Here I decided to use encryption. I know about sqlite but I don't know how to implement sqlite encryption method, the data that is saved in database needs to be encrypted and while retrieving data it should be decrypted.
Upvotes: 4
Views: 1800
Reputation: 5236
You can use SQLChiper for Android for AES
256-bit encryption for .db files which i suppose is easier than handling encryption and decryption for each database query
Upvotes: 4