Update SQLCipher to 4.4.3-S3

This commit is contained in:
Greyson Parrelli
2021-09-08 13:08:31 -04:00
parent b6a4d01d42
commit bb446ac1d5
3 changed files with 3 additions and 4 deletions

View File

@@ -17,7 +17,6 @@ public class SqlCipherDatabaseHook implements SQLiteDatabaseHook {
@Override
public void postKey(SQLiteConnection connection) {
connection.execute("PRAGMA cipher_compatibility = 3;", null, null);
connection.execute("PRAGMA cipher_memory_security = OFF;", null, null);
connection.execute("PRAGMA kdf_iter = '1';", null, null);
connection.execute("PRAGMA cipher_page_size = 4096;", null, null);
}