Encryption and decryption of cookies on iOS

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.

+3
source share
1 answer

IOS has a sandbox mechanism for security, so your app data cannot be read by other apps. Therefore, I think you can store personal information in a cookie.

iOS . , / cookie .

+1

All Articles