I am using RestKit to perform database seeding, as well as perform local persistence. The related Core Data and Object Mapping are working as expected. However, I need to encrypt the local database now. I know that the following options are generally used to protect SQLite database
- Use some kind of a MDM/Profile Manager with Lion Server, to secure application data (remote wipe etc.)
- Use SQLCipher to encrypt database
However, SQLCipher does not work with RestKit. Anybody been in a situation like this, anything else to encrypt the local SQLite? I would like to continue to use RestKit.