我正在使用SQLite数据库来构建iOS应用程序。哪个是存储用户名和密码的最佳方式:在数据库或Keychain中?另外,如果我在数据库中存储任何数据,我怎样才能使其像钥匙串一样安全?
答案 0 :(得分:2)
Keychain is better. However, we recommend that you don't save the password. You should always save the hash value and compare the hashes to see if the login is correct!
答案 1 :(得分:0)
钥匙串是保存任何密码的最佳选择。使用库SSKeychain,这是一个轻量级的钥匙串包装。