解决方法
下载并构建sqlcipher – 如果已安装sqlcipher,请执行此操作
从目录中拉出 https://github.com/sqlcipher/sqlcipher中的代码(比如〜/ sqlcipher)
从目录中拉出 https://github.com/sqlcipher/sqlcipher中的代码(比如〜/ sqlcipher)
mkdir ~/bld; # Build will occur in a sibling directory cd ~/bld; # Change to the build directory ../sqlcipher/configure --enable-tempstore=yes CFLAGS="-DsqlITE_HAS_CODEC" LDFLAGS="-lcrypto"; #configure sqlcipher make install; # Install the build products
$cd ~/; $./sqlcipher encrypted.db sqlite> PRAGMA key = 'testkey'; sqlite> ATTACH DATABASE 'plaintext.db' AS plaintext KEY ''; -- empty key will disable encryption sqlite> SELECT sqlcipher_export('plaintext'); sqlite> DETACH DATABASE plaintext;
在〜/ plaintext.db找到解密的数据库,你可以使用任何sqlite浏览器,如this.
更新:2015年9月
http://sqlitebrowser.org现在支持sqlcipher数据库.那很整齐.