InterviewSolution
| 1. |
Almost all companies are taking the subject of data security and privacy severely. So how to protect user's sensitive data in iOS applications. |
|
Answer» APPLE provides great security MECHANISMS like Keychain, data ENCRYPTION, or App Transport Security(which FORCES developers to use SSL pinning). Keychain is the password management system developed by Apple. LOGINS, keys, and passwords should be stored in Keychain. For network request, SSL pinning is used to ensure that an application communicates with the right server. For this, we need to save the SSL certificate within the app bundle. Others security mechanisms are like using encryption methods like AES-256 encryption while saving sensitive data to persistent storage or passing data over the internet. |
|