How to decrypt an encrypted sqlcipher database file on command line?
The question is simple What I have is: I have a database file which is encrypted using sqlcipher. I also have the passphrase which was used to encrypt this db file What I need is: I need to decrypt the database file / need a database file which is unencrypted/non encrypted/decrypted. Download and Build sqlcipher --Skip this if sqlcipher is already installed Pull the code from https://github.com/sqlcipher/sqlcipher in a directory (say ~/sqlcipher) mkdir ~/bld; # Build will occur in a sibling directory cd ~/bld; # Change to the build directory ../sqlcipher/configure --enable-tempstore=yes CFLAGS