Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Read from keychain results in errSecItemNotFound 25300

Tags:

ios

keychain

I store username & password using keychain, sometimes when I tried to get the password of the username, it told me errSecItemNotFound.

I keep that the password is always existed in keychain, so why it is not found?

Thanks.

like image 738
Jason Lee Avatar asked Jun 25 '13 14:06

Jason Lee


1 Answers

Tony: that error is simply OSStatus error -34018 - client has neither application-identifier nor keychain-access-groups entitlements.

This could be happening as a result from using a nonstandard app signing method or some other problem with your entitlements. Make sure you're building simply out of Xcode and not using alternate signing methods unless you completely understand them.

like image 117
russellm Avatar answered Oct 01 '22 06:10

russellm