Apple's GenericKeychain example saves a username and password in the iOS keychain. It does this using kSecAttrAccount
for the username, and kSecValueData
for the password.
Are all data items placed in the keychain encrypted, so including the kSecAttrAccount
/username in this example?
I'm asking because I don't want account names to be exposed.