SqlCipher 有分析器。根据文档要打开它,开发人员应该执行:
sqlite> PRAGMA cipher_profile='sqlcipher.log';
sqlite> CREATE TABLE t1(a,b);
sqlite> INSERT INTO t1(a,b) VALUES('one for the money', 'two for the show');
sqlite> PRAGMA cipher_profile=off;
在 Android 上,我在查询后添加到数据库挂钩
database.rawExecSQL(“PRAGMA cipher_profile=’” + name + “.log’;”);
,其中名称是日志文件的字符串路径。但我没有看到使用此路径创建的任何日志。
有人可以解释一下是否可以在 Android 上分析 sqlcipher?