How to Encrypt, Decrypt and Delete a plist file
问题 I am making a password app that stores user logins/password etc for credit card, bank info etc into a plist file. I have googled and I know how to encrypt and decrypt a string using AES encryption with key. I got that to work for simple login and password. I encrypt and save the login and password to NSdata and then decrypt and read it - (NSData *)AES256EncryptWithKey:(NSString *)key; - (NSData *)AES256DecryptWithKey:(NSString *)key; - (NSData*) encryptString:(NSString*)plaintext withKey: