使用SQL cipher3.4.2解密,注意cipher_page_size使用4096
sqlite> PRAGMA key ="590ba429a0";
sqlite> PRAGMA cipher_page_size = 4096;
sqlite> ATTACH DATABASE 'plaintext.db' AS plaintext KEY "";
sqlite> SELECT sqlcipher_export('plaintext');
sqlite> DETACH DATABASE plaintext;
1