How do I decrypt and encrypted database back to a normal sqlite3 db #359
Answered
by
ncruces
Aderemi-Adesada
asked this question in
Q&A
-
|
How do you decrypt an encrypted database back to a normal sqlite3 db file |
Beta Was this translation helpful? Give feedback.
Answered by
ncruces
Mar 4, 2026
Replies: 1 comment 1 reply
-
|
I don't support The easiest way, I'd say, is to use Rekeying is not implemented because it's not clear how to do so atomically, avoiding data loss under a system crash. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ncruces
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I don't support
rekey.The easiest way, I'd say, is to use
Backup, and you backup to a new file with no encryption, or a different key.Rekeying is not implemented because it's not clear how to do so atomically, avoiding data loss under a system crash.