RK-
RK-

Reputation: 12231

can we use CoreData to manage offline data when we use SqlCipher to store data in iOS

can we use CoreData to manage offline data when we use SqlCipher to store data in iOS or we should directly use Sql queries to manage data?

Upvotes: 0

Views: 489

Answers (1)

Paul Tiarks
Paul Tiarks

Reputation: 1921

It does not appear that there is any supported way to use SqlCipher and SQLite backed CoreData together.

It should be noted though, that current iOS devices have all of their flash storage encrypted by default. This would provide security from offline attacks and adding a PIN to your iOS device would protect against live attacks. Is there some specific reason you need to use SqlCipher that is not covered by whole-disk encryption?

Upvotes: 1

Related Questions