Skip to content Skip to sidebar Skip to footer

How To Deal With Encrypted Sqlite Database In IPhone?

I have an encrypted version of an sqlite database and also I have the KEY but honestly I have no idea about using it or how to get the data from the encrypted database? I guess the

Solution 1:

The core SQLite database implementation does not itself provide encryption support. There does however exist a number of extensions for adding encryption to SQLite. Some of these encrypt the entire database file while some other only encrypt the contents of the tables.

These extensions are for the most part not compatible, so you will most likely have to use the same extension on the iPhone as the one used on C#. And if you're lucky that extension is also supported on iOS.


Post a Comment for "How To Deal With Encrypted Sqlite Database In IPhone?"