5

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.

Bhavin
  • 27,155
  • 11
  • 55
  • 94
Dhara
  • 4,093
  • 2
  • 36
  • 69

1 Answers1

-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.

Nick Parker
  • 1,378
  • 1
  • 7
  • 10