Store encrypted data used by the game

Hi!

My game requires some numerical data, which I am storing in an SQLite 3 database. However, I need to stop using the database because it cannot be encrypted.

Is there another way to store and encrypt this data in the game?

Maybe I can use a C++ library for that.

Thanks!

Might not be able to encypt the db, per se, but IIRC sqlite can store binary blobs, and you could probably encrypt that before writing the blob to db.