I am using UIWebView to display a webpage. I would like to know if cookies stored on an iOS device can be encrypted and decrypted. I use NSHTTPCookieStorageto store my cookie, but I noticed that it is stored as clear text in the properties list file.
I found that it is being stored in a path similar to:
Root/User/Applications/ASDSDF234ASDRSDF234/Library/Cookies/Cookies.plist
I would like to keep personal information such as usernames secure.
source
share