vote up 4 vote down star
4

This question discusses encrypting data on the iPhone using the crypt() function. As an alternative, is there a keychain on the iPhone and if so, what code would I use to access it in order to store login details and then retrieve them for us in an application?

flag

4 Answers

vote up 5 vote down check

There is a keychain you can use - for code, the best bet is to check out the GenericKeychain sample application from Apple:

http://developer.apple.com/iphone/library/samplecode/GenericKeychain/index.html

link|flag
vote up 5 vote down

One other thing to note: the keychain APIs don't work in the simulator, only on the device. This could save you a lot of frustration when testing!

link|flag
Thank you for this! – Adam Ernst Nov 26 '08 at 23:11
vote up 0 vote down

Also remember that when generating an AppID, if you want more than one application to access the same Keychain information, you have to generate a wild card AppID (#####.com.prefix.*)...

link|flag
vote up 0 vote down

I really like Buzz Anderson's Keychain abstraction layer and I eagerly await Jens Alfke's MYCrypto to reach a usable state. The latter does a competent job of allowing use on Mac OS X and the iPhone using the same code, though its features only mimic a small subset of the Keychain's.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.