keychainitemwrapper Questions
2
Solved
I would like to add some items to the keychain using "secitemadd", but I need to know first, if this is thread safe.
I have read the documentation from apple, but I am unable to find anywhere stat...
Exhibitioner asked 11/5, 2015 at 14:9
8
I have an iOS application that stores some sensitive information in the keychain.
While writing values into the keychain, I am getting error code -34018.
I am currently using Apple's iOS KeyChainI...
Chewink asked 3/1, 2015 at 6:42
2
Solved
Apple has provided KeyChainItemWrapper class in their GenericKeyChain sample code. There is an ARC'ed solution here on SO, which I am trying to follow: wrapper to store in the KeyChain on iOS.
The...
Cushing asked 3/11, 2013 at 2:13
2
Solved
I want to store access token to keychain. But i got the error: Couldn't add the Keychain Item.'
I checked some posts on stackoverflow like:
Storing email in keychain impossible (KeychainItemWrappe...
Raasch asked 21/9, 2016 at 10:34
2
When I try to add the item to Keychain i found this crash on iOS10
*** Assertion failure in -[KeychainItemWrapper writeToKeychain]
On iOS 9.3 I write the key in the keychain without problem
Thanks...
Tannertannery asked 18/9, 2016 at 18:13
1
I'm using the ios keychain (keychainItemWrapper / SSKeychain) to store my app's login token and maintain logged in state. Currently I store a simple NSDictionary in the keychain containing my token...
Gabi asked 16/5, 2016 at 12:58
1
We are using native key-chain wrapper class to store and retrieve values from the key-chain. But in some case the value is getting deleted/empty.
We have the below items enabled in our app
...
Ugrian asked 29/3, 2016 at 13:29
4
Sigh, I have been working on this the whole afternoon... here is my nightmare:
I am trying to use the KeychainItemWrapper made by Apple. But I "translated" its Objective-C codes to Swift:
import ...
Claud asked 26/8, 2014 at 18:48
2
In order to share keychain information between applications, we needed to setup a shared keychain access group.
Before the sharing would work correctly, both apps needed to have provisioning based ...
Ghostwrite asked 24/7, 2014 at 5:25
1
Solved
I'm using KeychainItemWrapper for my application using the following line of code
KeychainItemWrapper *currentUser = [[KeychainItemWrapper alloc] initWithIdentifier:@"com.example" accessGroup:nil]...
Larrisa asked 6/6, 2014 at 2:40
1
I am trying to write to the keychain in iOS and whenever I try to write to the keychain while testing on my device, I am getting the -50 error code as the result of SecItemAdd.
I first tried to im...
Detour asked 30/6, 2013 at 9:44
1
Solved
Apple's GenericKeychain example saves a username and password in the iOS keychain. It does this using kSecAttrAccount for the username, and kSecValueData for the password.
Are all data items place...
Phebe asked 19/5, 2013 at 20:1
1
© 2022 - 2024 — McMap. All rights reserved.