如何从 iPhone 应用程序中检索钥匙串?

发布于 2024-12-11 10:01:06 字数 373 浏览 0 评论 0原文

当用户登录时,我将密码存储到钥匙串中。现在我正在更改密码页面。我想将钥匙串密码与旧密码进行比较。如何找回钥匙串密码?

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

玉环 2024-12-18 10:01:06

由于您使用的是 ASIHTTPRequest,因此您可以在 ASIHTTPRequest.h 中使用其钥匙串接口:

// Return credentials from the keychain
+ (NSURLCredential *)savedCredentialsForHost:(NSString *)host port:(int)port protocol:(NSString *)protocol realm:(NSString *)realm;

该文件中还有其他几个值得关注的例程。搜索“钥匙扣”。

Since you're using ASIHTTPRequest, you can use its keychain interface in ASIHTTPRequest.h:

// Return credentials from the keychain
+ (NSURLCredential *)savedCredentialsForHost:(NSString *)host port:(int)port protocol:(NSString *)protocol realm:(NSString *)realm;

There are several other routines that should be of interest in that file. Search for "keychain".

甜警司 2024-12-18 10:01:06

以下是关于钥匙串的简单博客文章帮助我从 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文