// sqlcipher command line to decrypt sqllite database // and save decrypted database as new file sqlcipher dbfile PRAGMA key='pwd'; PRAGMA cipher_migrate; // only needed when the Encryption was done by 2.x /1.x version ATTACH DATABASE 'plainMsg.db' as plaintext KEY ''; select sqlcipher_export('plaintext'); detatch database plaintext