Add Encryption to your NSData

1. Import files linked here into your project. 2. Import header file into your implementation to have access to encryption methods. 3. Please find the following example to understand the Encryption Technique.
1 2 |
NSData *myBlob = // get some data from some-where. myBlob = [myBlob AES256EncryptedDataUsingKey:PROTECTION_KEY error:nil]; |
4. Please find the following example to … Continue reading