How to encrypt sqlite database for Android?

I am creating a 2d game for Android and I am using sqlite database to store game data. Rebooted users can easily modify the database. Therefore, I need to encrypt the data, and when someone changes it, I need to understand this. can i do this?

+4
source share
1 answer

Take a look at the SQLCipher project. This is an open source library that provides transparent, secure 256-bit encryption of AES SQLite database files.

The website offers a tutorial for Android.

+7
source

All Articles