When I retrieve a password from a keychain using SecKeychainFindGenericPassword, I get two requests for the keychain password, worded slightly differently:
<app> wants to use your confidential information stored in <item name> in your keychain.
<app> wants to access key <item name> in your keychain.
Why do I get these two prompts, and is there any way to get just one?
<app> wants to use your confidential information stored in <item name> in your keychain.
<app> wants to access key <item name> in your keychain.
Why do I get these two prompts, and is there any way to get just one?
You typically only see these prompts if you’re accessing keychain items that you didn’t create. Is that the case here?
The other possibility is that your code isn’t signed with a stable code signing identity. And if that’s the case then there’s an easy fix (-:
Share and Enjoy
—
Quinn “The Eskimo!” @ DTS @ Apple
let myEmail = "eskimo" + "1" + "@apple.com"
WWDC runs Mon, 22 Jun through to Fri, 26 Jun. During that time all of DTS will be busy with conference duties.
The other possibility is that your code isn’t signed with a stable code signing identity. And if that’s the case then there’s an easy fix (-:
Share and Enjoy
—
Quinn “The Eskimo!” @ DTS @ Apple
let myEmail = "eskimo" + "1" + "@apple.com"
WWDC runs Mon, 22 Jun through to Fri, 26 Jun. During that time all of DTS will be busy with conference duties.