Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Save username-password with NSUserDefault, how and how much safe?

I would save a couple of values (username-password) with NSUserDefault.

First: is there a way to save them together (like in an array for example)? Second: is it safe? or do I have encrypt the password in a some way?

like image 473
Sefran2 Avatar asked Nov 28 '22 10:11

Sefran2


1 Answers

Encryption will give you some security. The problem is your program would also have to decrypt the password, which means it must have the key stored in it somewhere. This will make it vulnerable to reverse-engineering. A better approach is to use an one-way function (such as a hash) on the password and store that hash value. When a user enters a password, you then apply the one-way function to the password and compare the result to the stored value. In this manner, the password cannot be compromised (well, there's always a dictionary attack, but that's a matter of password strength).

Instead of using NSUserDefaults, you would be better off using iOS Keychain Services. It's main purpose is to securely store user credentials. Apple has already done all the hard work for you. Take advantage of it.

like image 183
Ferruccio Avatar answered Dec 14 '22 23:12

Ferruccio