pysqlcipher is an interface to the SQLite 3.x embedded relational database engine. It is almost fully compliant with the Python database API version 2.0. At the same time, it also exposes the unique features of SQLCipher.
Questions tagged [pysqlcipher]
21 questions
0
votes
1 answer
pysqlcipher app fails with 64 bit python and pyinstaller but 32 bit ok DLL Load failed
Built on Windows 11, I have a small app that uses pysqlcipher. I have compiled pysqlcipher with Python 3.8.3 x86 and Python 3.9.4 x64. The application runs fine in both on the development machine.
I compile to an exe with pyinstaller, not onefile,…

Andrew Smith
- 117
- 9
0
votes
0 answers
Low latency flask-sqlalchemy encrypted DB
Per the docs here: https://pydoc.dev/sqlalchemy/latest/sqlalchemy.dialects.sqlite.pysqlcipher.html
We connect to a DB using sqlite+pysqlcipher://:password@/dbname.db
But according to this SO answer: https://stackoverflow.com/a/53173197/557406 using…

Charles L.
- 5,795
- 10
- 40
- 60
0
votes
1 answer
Transform SQLite database to SQLCipher database
My Python program uses the standard Python SQLite database (import sqlite3). All works, I want to cypher the database. I opened it with DB Browser (sqlitebrowser.org) that uses SQLCipher 3/4 and I ciphered it using a key (SQLCipher version 3). Which…

nastiliano
- 53
- 6
0
votes
1 answer
Using SQLCipher in Python - the easy way
I'm coding a Python utility that should work on an encrypted SQLite database. Eventually I'll turn such utility into a executable, so it'll be easier to ship to the rest of my team.
I read many pages about SQLCipher but they all talk about compiling…

Marco
- 87
- 3
- 11
0
votes
2 answers
Integrate Djpeewee into Django to encrypt sqlite3 database
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…

user1544500
- 2,067
- 5
- 25
- 35
0
votes
1 answer
How to use pysqlcipher with Django?
I would like to use sqlcipher and its python binding pysqlcipher (https://pypi.python.org/pypi/pysqlcipher) to encrypt a sqlite3 database used by Django.
What would be the best way to implement this into Django? Is it doable at all?Would you do it…

user1544500
- 2,067
- 5
- 25
- 35