-
-
Notifications
You must be signed in to change notification settings - Fork 727
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update to SQLCipher 4.0 #460
Comments
Hello @vostreltsov, This is a good question. There is a difficulty, though: SQLCipher 4 is not backward compatible with SQLCipher 3. For more information about those breaking changes, don't miss the Upgrading to SQLCipher 4 article. This is a difficulty for GRDB, because:
In a word: SQLCipher 4 won't be supported out of the box until GRDB 4, which isn't even planned yet. Conclusion: if you do really want SQLCipher 4 now, you will have to do it yourself. For example, you can try to use GRDBCipher and force SQLCipher version in your Podfile, as below (don't assume this works, because I haven't tried it): pod 'GRDBCipher', '~> 3.6'
pod 'SQLCipher', '~> 4.0' I hope this enough essential information so that you can start upgrading your version of SQLCipher. Will you please tell us your journey in this uncharted territory? I'm positively certain it will be a very precious experience for the whole community. |
I also recommend reading sqlcipher/sqlcipher#296, which contains very useful information about SQLCipher 4 migration. |
GRDB 4 and SQLCipher 4: #480 |
Hi there,
When can we expect an update to sqlcipher 4.0?
Thank you!
The text was updated successfully, but these errors were encountered: