Can I access the keychain on the iPhone? - Stack Overflow most recent 30 from stackoverflow.com2010-03-21T09:07:32Zhttp://stackoverflow.com/feeds/question/190963http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/190963/can-i-access-the-keychain-on-the-iphone5Can I access the keychain on the iPhone?DavidMhttp://stackoverflow.com/users/21832008-10-10T11:57:44Z2009-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#1910427Answer by Adam Byram for Can I access the keychain on the iPhone?Adam Byramhttp://stackoverflow.com/users/258862008-10-10T12:32:03Z2008-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#1943301Answer by whoisjake for Can I access the keychain on the iPhone?whoisjakehttp://stackoverflow.com/users/26092008-10-11T17:14:10Z2008-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#2036579Answer by Ben Gottlieb for Can I access the keychain on the iPhone?Ben Gottliebhttp://stackoverflow.com/users/66942008-10-15T03:41:55Z2008-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#10200220Answer by bbrown for Can I access the keychain on the iPhone?bbrownhttp://stackoverflow.com/users/205952009-06-19T21:05:49Z2009-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>