I am using internal database for my application. I am using SQLite db. How can I apply a password over it so that user cant open it?
Currently I have this
var dbPath = Path.Combine(Windows.Storage.ApplicationData.Current.LocalFolder.Path, "db.sqlite");
conn = new SQLite.SQLiteAsyncConnection(dbPath);