I want to secure my sqlite database. I searched a lot but ended up with the suggestions of using SQLCipher.
Is there any new advancement in this field other than SQLCipher? Please suggest.
I want to secure my sqlite database. I searched a lot but ended up with the suggestions of using SQLCipher.
Is there any new advancement in this field other than SQLCipher? Please suggest.
If you don't want to use SQLCipher
, One thing you can do is encrypt your data before storing it in the database and decrypt it at runtime when populating it.
You can use a encryption key
that you can store on Firebase
and retrieve it from there at your app startup, this will add another layer of security to your encryption because the key
will not be exposed inside the app if someone decompiles the app.