SQLcipher Guide

1 · 0x4c2 · Oct. 19, 2020, 5:58 a.m.
SQLCipher is based on SQLite, and thus, the majority of the accessible API is identical to the C/C++ interface for SQLite 3. However, SQLCipher does add a number of security specific extensions in the form of PRAGMAs, SQL Functions and C Functions. 1. Build SQLcipher from source $ git clone https://github.com/sqlcipher/sqlcipher.git $ cd sqlcipher $ ./configure --enable-tempstore=yes CFLAGS="-DSQLITE_HAS_CODEC -DSQLITE_TEMP_STORE=2" LDFLAGS="-lcrypto" $ make $ make install #if you want to do a ...