如何从 iPhone 应用程序中检索钥匙串?
当用户登录时,我将密码存储到钥匙串中。现在我正在更改密码页面。我想将钥匙串密码与旧密码进行比较。如何找回钥匙串密码?
我正在使用 ASIHttpRequest 来验证用户。 ASIHttpRequest 将密码存储在钥匙串中。
[request setUseKeychainPersistence:YES];
[request setShouldPresentAuthenticationDialog:TRUE];
[request setShouldPresentCredentialsBeforeChallenge:TRUE];
有人可以帮助我如何从钥匙串中获取存储的密码吗?
I store password to the keychain when the user logs in. Now I'm working on change password page. I want to compare the keychain password with old password. How do I retrieve the keychain password?
I'm using ASIHttpRequest to validate user. ASIHttpRequest stores the password in the keychain.
[request setUseKeychainPersistence:YES];
[request setShouldPresentAuthenticationDialog:TRUE];
[request setShouldPresentCredentialsBeforeChallenge:TRUE];
Can someone help me how do I get the stored password from Keychain?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于您使用的是
ASIHTTPRequest
,因此您可以在ASIHTTPRequest.h
中使用其钥匙串接口:该文件中还有其他几个值得关注的例程。搜索“钥匙扣”。
Since you're using
ASIHTTPRequest
, you can use its keychain interface inASIHTTPRequest.h
:There are several other routines that should be of interest in that file. Search for "keychain".
以下是关于钥匙串的简单博客文章帮助我从 iPhone 应用程序存储和检索钥匙串值。正如 Rob Napier 发布的 ASIHttpRequest 框架的答案,但我发现它有点复杂,我开始使用 Apple KeychainItemWrapper 类,它很容易实现。我会将其标记为我的问题的答案。
This following simple blog post about keychain help me to store and retrieve keychain values from iphone app. As Rob Napier posted answer to ASIHttpRequest framework but I found it bit complicated and I started using Apple KeychainItemWrapper class and it's very easy to implement. I will mark this as answer to my question.