kishikawakatsumi / KeychainAccess

Simple Swift wrapper for Keychain that works on iOS, watchOS, tvOS and macOS.
MIT License
7.95k stars 789 forks source link

.synchronizable(true) item doesn't return in Keychain.allItems(.genericPassword) #525

Open Gurbo opened 3 years ago

Gurbo commented 3 years ago

If I save items with .synchronizable(false) and then get all items with Keychain.allItems(.genericPassword) - the returned results are valid.

Next I save an item with .synchronizable(true) and then get all items with Keychain.allItems(.genericPassword) - it returns only items, which were saved with .synchronizable(false). (but this item appear in iCloud Keychain as well).

Any ideas? @kishikawakatsumi