I am pretty sure Core Data does not have any encryption/decryption features. Is there a tutorial that shows how to "manually" encrypt/decrypt data in Core Data?
1 Answer
Core Data has a binary attribute type that takes instances of NSData. Could you encrypt a file, put the encrypted data into an NSData object, and store it that way?
1 Comment
stephen
I presume that your concerned with securing user data. That being the case, consider secure removal of the encrypted file (zeroing file data, then deleting): stackoverflow.com/questions/7547517/…