As some of you know, it is possible to create an SQLite DB in memory and save it later to disk. It is also possible to load a DB from disk into memory to work with it in memory. Now in my project, I am only allowed to save encrypted data to disk. The requirements are:
- I am “strictly” not allowed to first save the unencrypted data and then encrypt it.
- I have to encrypt the whole DB.
- I have to do the encryption with my own keys.
- I can’t use any third-party libraries.
EDIT: Ist it possible to convert the Sqlite-Handle to NSData? Does the Sqlite-Handle really contains every thing?