You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using Encrypted Store to encrypt the data that i am storing in my core data models. As Encrypted Core Data uses SQLCipher for encrypting i am using SQLCipher 3.x version in my app. Now as there is an update in SQLCipher i want to migrate from 3.x to 4.x without any data loss for my live users.
What is the best way to migrate SQLCipher from 3.x to 4.x in Encrypted Core Data?
If i need to have the custom migration logic then which is the best place to have that logic?
The text was updated successfully, but these errors were encountered:
This may be late, but I have the same problem / issue to solve right now.
At first I ve updated sqlcipher and found issues opening the sqlcipher 3 database.
I quickly found, that opening the old database won't work without changing the startup code in "configureDatabasePassphrase", since this function tries to open the db before adding the pragmas which are required for backwards compatibillty.
I am using Encrypted Store to encrypt the data that i am storing in my core data models. As Encrypted Core Data uses SQLCipher for encrypting i am using SQLCipher 3.x version in my app. Now as there is an update in SQLCipher i want to migrate from 3.x to 4.x without any data loss for my live users.
What is the best way to migrate SQLCipher from 3.x to 4.x in Encrypted Core Data?
If i need to have the custom migration logic then which is the best place to have that logic?
The text was updated successfully, but these errors were encountered: