Don't save a user's password in the settings bundle.
It isn't secure.
Remember, you don't need to know what the original password is, you need to know if the password the user enters matches the original password. The correct way to deal with passwords in iOS is to either
- Use the keychain, as others have mentioned
- Generate a cryptographic one-way hash function using SHA-512 or other encryption and store the resulting hash and salt in
NSUserDefaults
Of these options, encrypting the password and storing the hash+salt is by far the easiest. Here's what you do to store the password:
- Grab the password from the user
- Create a random salt value
- Create a forward-only hash using SHA-512 and the random salt value
- Store the resulting hash and salt value in
NSUserDefaults -- these values can't be used by hackers to determine the original password, so there is no need to store them in a secure place.
Now, when the user enters their password and you have to verify if it's correct, here's what you do:
- Grab the password from the user
- Grab the previously saved hash + salt value from
NSUserDefaults
- Create a forward-only hash using the same one-way hash function that you used to encrypt the original password -- passing it the attempted password and the salt value from
NSUserDefaults
- Compare the resulting hash with the one that was stored in
NSUSerDefaults. If they are the same, then the user entered the correct password.
Here's the code to generate the salt and the forward-only hash:
NSString *FZARandomSalt(void) {
uint8_t bytes[16] = {0};
int status = SecRandomCopyBytes(kSecRandomDefault, 16, bytes);
if (status == -1) {
NSLog(@"Error using randomization services: %s", strerror(errno));
return nil;
}
NSString *salt = [NSString stringWithFormat: @"%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x",
bytes[0], bytes[1], bytes[2], bytes[3],
bytes[4], bytes[5], bytes[6], bytes[7],
bytes[8], bytes[9], bytes[10], bytes[11],
bytes[12], bytes[13], bytes[14], bytes[15]];
return salt;
}
NSData *FZAHashPassword(NSString *password, NSString *salt) {
NSCParameterAssert([salt length] >= 32);
uint8_t hashBuffer[64] = {0};
NSString *saltedPassword = [[salt substringToIndex: 32] stringByAppendingString: password];
const char *passwordBytes = [saltedPassword cStringUsingEncoding: NSUTF8StringEncoding];
NSUInteger length = [saltedPassword lengthOfBytesUsingEncoding: NSUTF8StringEncoding];
CC_SHA512(passwordBytes, length, hashBuffer);
for (NSInteger i = 0; i < 4999; i++) {
CC_SHA512(hashBuffer, 64, hashBuffer);
}
return [NSData dataWithBytes: hashBuffer length: 64];
}
Code for this example was found here: http://blog.securemacprogramming.com/2011/04/storing-and-testing-credentials-cocoa-touch-edition/