Principles of Web Application data:
- "Do not allow" to transmit the "clear text" of user's private data on the network
- "Do not allow" to save the "clear text" of user privacy data locally
Apple's "Eco-circle", from IOS 7.0.3 version, opens the Keychain Access feature!
- Function: Can dynamically generate complex password on Mac, protect user to remember password!
- If users use the mobile phone to access the site, you can not enter the password, direct login!
- The user's password can be saved in clear text to record, Apple uses AES encryption algorithm!
There's a set of frameworks on GitHub that can help us use keychain functionality in iOS programs
Https://github.com/soffes/sskeychain
Using the example
[SSKeychain setPassword:self.pwd.text forService:LoginServiceName account:self.userName.text];[SSKeychain passwordForService:LoginServiceName account:self.userName.text];
Key strings for Apple data encryption