Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tools/decrypt_db_with_password.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
c = conn.cursor()

c.execute("PRAGMA key = '" + key + "';")
c.execute("PRAGMA cipher_compatibility = 1;")
c.execute("PRAGMA cipher_use_hmac = OFF;")
c.execute("PRAGMA cipher_page_size = 1024;")
c.execute("PRAGMA kdf_iter = 4000;")
Expand Down