Can I access the keychain on the iPhone? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T09:07:32Z http://stackoverflow.com/feeds/question/190963 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/190963/can-i-access-the-keychain-on-the-iphone 5 Can I access the keychain on the iPhone? DavidM http://stackoverflow.com/users/2183 2008-10-10T11:57:44Z 2009-06-19T21:05:49Z <p><a href="http://stackoverflow.com/questions/189925/password-encryption-in-iphone-apps">This question discusses encrypting data on the iPhone</a> 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?</p> http://stackoverflow.com/questions/190963/can-i-access-the-keychain-on-the-iphone/191042#191042 7 Answer by Adam Byram for Can I access the keychain on the iPhone? Adam Byram http://stackoverflow.com/users/25886 2008-10-10T12:32:03Z 2008-10-10T12:32:03Z <p>There is a keychain you can use - for code, the best bet is to check out the GenericKeychain sample application from Apple:</p> <p><a href="http://developer.apple.com/iphone/library/samplecode/GenericKeychain/index.html" rel="nofollow">http://developer.apple.com/iphone/library/samplecode/GenericKeychain/index.html</a></p> http://stackoverflow.com/questions/190963/can-i-access-the-keychain-on-the-iphone/194330#194330 1 Answer by whoisjake for Can I access the keychain on the iPhone? whoisjake http://stackoverflow.com/users/2609 2008-10-11T17:14:10Z 2008-10-11T17:14:10Z <p>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.*)...</p> http://stackoverflow.com/questions/190963/can-i-access-the-keychain-on-the-iphone/203657#203657 9 Answer by Ben Gottlieb for Can I access the keychain on the iPhone? Ben Gottlieb http://stackoverflow.com/users/6694 2008-10-15T03:41:55Z 2008-10-15T03:41:55Z <p>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!</p> http://stackoverflow.com/questions/190963/can-i-access-the-keychain-on-the-iphone/1020022#1020022 0 Answer by bbrown for Can I access the keychain on the iPhone? bbrown http://stackoverflow.com/users/20595 2009-06-19T21:05:49Z 2009-06-19T21:05:49Z <p>I really like <a href="http://github.com/ldandersen/scifihifi-iphone/tree/master" rel="nofollow">Buzz Anderson's Keychain abstraction layer</a> and I eagerly await <a href="http://mooseyard.com/projects/MYCrypto/" rel="nofollow">Jens Alfke's MYCrypto</a> 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.</p>