Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

Tagged with
0 votes
0 answers
67 views

Compiling and linking SQLCipher (SQLite) properly with ICU extension enabled

I'm trying to build SQLCipher from source and link it to another project as a static library. The configuration I use (mostly according to this topic). I obtain all necessary flags by executing "...
Nightcrawler's user avatar
0 votes
0 answers
158 views

How to include sqlcipher into a C program on windows and compile it?

I am really struggling to include sqlcipher into my C program (right now it works with regular sqlite3) I'm running windows 10 with Mingw-w64 GCC compiler. OpenSSL is installed in C:\Program Files\...
stonktrader's user avatar
0 votes
3 answers
1k views

Fatal error when building sqlcipher3 from macOS ('sqlcipher/sqlite3.h' file not found)

I have been trying to build sqlcipher3 on MacOS with the following command: git clone https://github.com/coleifer/sqlcipher3 && cd sqlcipher3 python3 setup.py build I am getting the following ...
Gab's user avatar
  • 3,422
1 vote
1 answer
691 views

Unable to build sqlcipher3 on Windows

after building sqlcipher, copied sqlite3.c and sqlite3.h in the root folder, I'm trying to build sqlcipher3 (on Windows 10, Python 3.9.0): C:\dev\py\sqlcipher3# setup.py build_static build running ...
Erathaowl's user avatar
1 vote
1 answer
3k views

Implicit declaration of function 'sqlite3_rekey' is invalid in C99

when i update Xcode from 8.3.3 to Xcode 9GM ,i used pod 'FMDB/SQLCipher' before and it was OK. now it says "Implicit declaration of function 'sqlite3_rekey' is invalid in C99" i try to solve this ...
leeSin's user avatar
  • 27
0 votes
1 answer
348 views

SQLCipher: verify key against open database

Is it possible to check if a given key is a correct decryption for already open and unlocked database? #define SQLITE_HAS_CODEC #include <sqlcipher/sqlite3.h> #include <assert.h> sqlite3 ...
el.pescado - нет войне's user avatar
0 votes
0 answers
218 views

I get "database is locked" errors on a read-only SqlCipher database

I have a single threaded application that only reads data from an encrypted SQLite database. The encryption is accomplished with the SqlCipher security extension. This application does no writing to ...
J Edward Ellis's user avatar
0 votes
0 answers
623 views

sqlcipher ./configuration Windows

How can I compile Sqlcipher on windows? I'm trying this: Git Clone sqlcipher C:\sqlcipher Install MINGW32 C:\MINGW32 Install msys C:\MINGW32\msys\1.0 Install tcltk-8.4.1-1 C:\MINGW32\bin tclsh84 to ...
user628298's user avatar
5 votes
1 answer
1k views

Does SQLite leak memory with the SQLCipher extension?

I'm using SQLCipher to store an encrypted SQLite database. However, when I use sqlite3_key to encrypt the database, I start getting a memory leak. Observe the following sample: #include <sqlite3.h&...
Elliot Cameron's user avatar
0 votes
1 answer
3k views

Can't compile SQLCipher on Windows

I'm trying to compile SQLCipher. I've downloaded source code from http://sqlcipher.net/. Then I'm doing from this post: [http://groups.google.com/group/sqlcipher/browse_thread/thread/55c6296b56bf4533:]...
Robert's user avatar
  • 2,649