I am working on a small OS X application that uses core data (sqllite) to store the data.
I am trying to encrypt the data that will be entered by the user. All properties in the entities are transformable.
I have found this post here on stackoverflow.
You can encrypt individual properties in your Core Data model entities by making them transformable properties, then creating an NSValueTransformer subclass which will encrypt and decrypt the data for that property.
Unlucky for me, the author of the answer, @Brad Larson, didn't provide an simple example of how this can be done.
Can anyone post an simple example - codesnippet of how I can encrypt the user entry and store it in the database encrypted?