Questions tagged [sskeychain]

An open source wrapper for using the iOS keychain. Available on GitHub.

An open source wrapper for using the iOS keychain. Available on GitHub.

45 questions
3
votes
0 answers

Does SSKeychain sync passwords across devices?

I have to implement a UDID-like string for my application. Therefore I used identifierForVendor to make a unique ID for my app and saved it to keychain with SSKeychain, in case it is changed each time the user reinstalls my application. For each…
FlySoFast
  • 1,854
  • 6
  • 26
  • 47
3
votes
1 answer

errSecDefault for accessing iOS keychain password

I am using SSKeychain as a wrapper to store a user's access token and user ID. I make a web request for my user's access token during sign up and then I call [SSKeychain setPassword:@"password" forService:@"myService" account:@"myAccount"] However,…
Daniel Sun
  • 41
  • 2
3
votes
2 answers

SSKeychain: Accounts not stored in iCloud?

I'm using sskeychain (https://github.com/soffes/sskeychain) to store my accounts and passwords in the IOS keychain. I assume, that if I store an account, it should be available on my other device. But it doesn't appear there. I read my accounts with…
Gondomir
  • 115
  • 2
  • 5
3
votes
2 answers

CFUUID stored in SSKeychain is null in some devices

My published application makes use of the CFUUID and SSKeychain in order to identify the device (and to keep that ID unchanged even if the app is uninstalled and reinstalled) I save those device ID in the server, and I recently noticed that some…
momo
  • 3,404
  • 6
  • 37
  • 66
3
votes
2 answers

Distinguish session and system items in Mac OS X keychain

How can I query the Mac OS X keychain to retrieve only session items ? When I try to get all items like this : [SSKeychain accountsForService:nil]; A session item and a system item have exactly the same attributes for the keys : acct, cdat, class,…
Michaël
  • 6,676
  • 3
  • 36
  • 55
2
votes
1 answer

SSKeychain not retain data

I am using SSKeychain for storing UUID of device. However, sometimes SSKeychain not retains UUID, so my app has to recreate new UUID. Can someone tell me some reasons why SSKeychain not retains data. Thanks in advance! sorry for my english :)
pbcuong
  • 25
  • 4
1
vote
0 answers

Is there any chance KeyChain value is unavailable in applicationWillEnterForeground in iOS?

When opening the app from background i am calling one api, i need to send user mobile number in that api, mobile number is stored in KeyChain. Sometime in backend they are not getting mobile number. But i am not able to reproduce the issue. so i…
Shelly Pritchard
  • 10,777
  • 4
  • 18
  • 17
1
vote
1 answer

Does keychain data synced to iCloud back up

I have read so many blogs but still its not clear to me that whether iCloud backs up the keychain data which are stored programmatically using SecItemAdd or not ?
Ravi Kiran
  • 219
  • 3
  • 14
1
vote
1 answer

how to store a string from a uitextfield to KeyChain

I wana store a string in KeyChain. I am trying to use SSKeychain.h, SSKeychain.m, SSKeychainquery.h and SSKeychainquery.h As there are many methods present in these files. So am confuse and want to know which method to use and how. The string to…
Amon
  • 99
  • 1
  • 9
1
vote
1 answer

SSKeyChain not retrieving accounts

I have two iOS applications (app "A" and app "B"), and I need to offer the user the posibility to access to app "B" with the login data stored in app "A" if the user is already loggued in app "A". What I've done is to use the SSKeyChain library to…
iVela
  • 1,160
  • 1
  • 19
  • 40
1
vote
1 answer

Evernote sdk for mac can't write to keychain anymore

I wrote a Mac OSX application using the Evernote Mac OSX SDK. It ran for over a year without issues, but now all of the sudden I can't get my Evernote authentication credentials stored. Every time I log in through the popup in my app I see the…
Joris Mans
  • 6,024
  • 6
  • 42
  • 69
1
vote
1 answer

Why SSKeychain returns different result with the same parameters for different iOS apps

I tried to use SSKeychain to reserve UUID on iOS and the sample code is below NSString *retrieveuuid = [SSKeychain passwordForService:@"tempApp" account:@"tempUser"]; if (retrieveuuid == nil) { //Generate UUID CFUUIDRef cfuud =…
Kuan-Jong Wu
  • 109
  • 2
  • 7
1
vote
5 answers

SSKeychain delete account

I want to delete an account from my SSKeychain. I only get the method to delete the password, but the account is still in the keychain. Is there a way to delete an account or clear the SSKeychain?
Carmen
  • 6,177
  • 1
  • 35
  • 40
1
vote
1 answer

SSKeyChain: how to lock this keychain?

My cocoa app will have the following features: 1. password protected login. User will have to enter the password in order to use the app 2. once logged in, user can create some personal profile, which profile can store some secure info like…
Josh
  • 692
  • 2
  • 9
  • 38
1
vote
1 answer

How to create Unique Identifier and save it to identify user(device)

I want to create unique identifier on iOS 5 and use it for identifying user (user device) every time app is started. I am able to create a unique identifier by following code CFUUIDRef theUUID = CFUUIDCreate(NULL); CFStringRef string =…
Jammy
  • 11
  • 2