I use AES256 for security and data storage in the form of encryption, which works fine on iOS 6 and below, but when I tested my application on iOS 7, I donβt get previously stored data. After debugging, I found that decryption does not work, it is iOS 7 and returns empty.
My code is as below:
- (NSData *)AES256DecryptWithKey:(NSString *)key {
}
Can you help me get my data again in iOS 7?
thanks
Hindu source share