禁用钥匙串权限对话框?

发布于 2024-10-16 07:13:50 字数 144 浏览 7 评论 0原文

我想知道是否可以禁用每当我的应用程序想要访问钥匙串数据时弹出的钥匙串对话框。我的应用程序将文本字段的字符串与钥匙串条目进行比较,以检查输入的密码是否正确。

它工作正常,但需要访问它的权限。

如何避免这种行为?

此致, 阿德里安

I wonder if I might disable the keychain dialog that pops up whenever my application wants to access the keychaindata. My app compares a TextField's string with a keychain entry in order to check if the entered Password is correct.

It works fine but it asks for the permission accessing it.

How to avoid this behaviour?

Best regards,
Adrian

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

东京女 2024-10-23 07:13:50

另一个建议是对您的可执行文件进行代码签名,即使在 OS X 上也是如此。

如果您不这样做,那么系统总是会询问用户在程序更新时是否允许程序访问钥匙串,即使您的用户选择了之前的“始终允许”。这是因为系统无法判断所谓的更新程序是否是真正的更新版本。

如所写在此 Apple 文档中,如果进行代码签名,系统在程序更新时不会询问用户是否允许程序访问钥匙串,因为系统可以告诉你的新版本的应用程序确实是新版本的应用程序,由同一程序员发布。

因此,为了最大限度地减少钥匙串对话的数量,请对您的应用程序进行代码签名。是的,与 iOS 不同,它在 OS X 上是可选的,但它有一些优点。

Another advice is to code-sign your executable, even on OS X.

If you don't, then the system always asks the user if s/he allows the program to access the keychain when the program is updated, even when your user selected "Allow Always" before. This is because the system can't tell if the so-called updated program is a genuinely updated version.

As written in this Apple document, if you code-sign, the system doesn't ask the user if s/he allows the program to access the keychain when the program is updated, because the system can tell your new version of the app is really the new version of the app, issued by the same programmer.

So, to minimize the number of keychain dialogues, code-sign your app. Yes it's optional on OS X, unlike on iOS, but it has a few advantages.

星星的轨迹 2024-10-23 07:13:50

这是预期的行为,以便用户可以控制哪些应用程序可以访问他们的钥匙串。如果您想避免出现提示,请单击对话框中的“始终允许”。

This is the intended behaviour, so that Users are in control of what apps can access their keychain. If you want to avoid the prompt click "Allow always" on the dialog.

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