Reputation: 11124
I have implemented android database with sqlite and using content provider.
But the data in my database is not encrypted.
Is there any best practice to implement secure database for android device?
I mean not just encrypt but also any Technics that can improve security to my apps.
Upvotes: 0
Views: 1186
Reputation: 1006819
If by "secure database" you mean "a database whose data is encrypted via a passphrase that you get from the user", I recommend SQLCipher for Android.
Upvotes: 7