C # and SQLite-net database encryption

I use SQLite-net in a Metro Windows 8.1 application to add a SQLite database to a metro application. It looks like I might need to encrypt the database for the application. Does anyone know a way to encrypt a SQLite database when using SQLite-net? I know that there are several libraries (libraries may be the wrong word, but ..) like SQLcipher or SEE, but are not sure what / how I can use them with SQLite-net. I am really new to developing applications in C # and Metro, so I would appreciate if someone could point me in the right direction, I already spent a lot of time trying to figure it out. Thank,

+4
source share
1 answer

You can use Windows Data Protection .
With it, you can encrypt and decrypt values ​​using your default user credentials. See this

0
source

All Articles