I was using older version of sqlcipher and open ssl for application. Now I migrated to newer version for Xcode 5 and iOS 7 compatibility, but it is not decrypting the older version of database.
Please help me out. I searched on google and found that something like cipher_migrate has to be used, but not knowing how to use it.
-
1Me,either. Did you get a workaround since then??cafedeichi– cafedeichi2014年11月20日 08:08:20 +00:00Commented Nov 20, 2014 at 8:08
1 Answer 1
The PRAGMA cipher_migrate command can be used to upgrade standard 1.x and 2.x SQLCipher database formats to the 3.x version. The pragma is to be called following the keying of the database. The documentation for it can be found here.
answered Feb 6, 2014 at 14:17
Nick Parker
1,3881 gold badge7 silver badges10 bronze badges
Sign up to request clarification or add additional context in comments.
1 Comment
cafedeichi
I'd like to know the specific coding sample. All the better for me is with FMDB.
default