How to encrypt data and store it in Sqlite Android

I created a database SQLitein android.

Here I decided to use encryption. I know about sqlite, but I do not know how to implement the sqlite encryption method, the data that is stored in the database must be encrypted and it must be decrypted when data is extracted.

+4
source share
1 answer

You can use SQLChiper for Android for AES256-bit encryption for .db files, which I suppose is simpler than encrypting and decrypting for each database request

+3
source

Source: https://habr.com/ru/post/1526882/


All Articles