Integrate Djpeewee into Django to encrypt sqlite3 database

975 Views Asked by At

I would like to encrypt a sqlite3 database that is used by my Django project. For this purpose I would like to use pysqlcipher.

Since I haven't found any ways to easily integrate pysqlcipher with Django I started wondering if it would be possible to integrate Djpeewee into my existing Django project and then through Djpeewee encrypt and decrypt my sqlite3 database since originally PeeWee supports sqlcipher encryptions.

Is this possible?

2

There are 2 best solutions below

0
On

Since I haven't found a way to do it eventually I decided not to encrypt the whole database (using pysqlcipher) but instead encrypted single fields in this database using django-fernet-fields.

As a result one can still open the database and see its structure and tables, but individual entries and encrypted. This is enough for my required level of security. On top django-fernet-fields is very easy to use!

Maybe you might consider the same for your project if pysqlcipher will not work?

0
On

What about writing a subclass of the Django SqliteDatabase implementation that uses the pysqlcipher library as the backend? That seems to me the best solution if you're already using Django.