Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
6answers
27k views

Can I access the keychain on the iPhone?

This question discusses encrypting data on the iPhone using the crypt() function. As an alternative, is there a keychain on the iPhone and if so, what code would I use to access it in order to store ...
16
votes
1answer
2k views

How to share keychain data between iOS applications

I am describing a problem for which it took me quite some time to learn the answer. The "GenericKeychain" example is a good start at providing a wrapper for sharing keychain data between applications ...
16
votes
4answers
4k views

iOS Keychain Security

we want to use certificates on the iPhone to authenticate for MS Exchange Sync. We are not sure how the security concept is implemented to protect this certificates. e.g. is it possible to get "full" ...
14
votes
6answers
28k views

:-( A valid signing identity matching this profile could not be found in your keychain

I hope to test my app on iPod Touch I created development provisioning profile. I dragged downloaded .mobileprovision file to Organizer There is a yellow triangle warned that "A valid signing ...
13
votes
2answers
5k views

How do I sign a Java applet using a certificate in my Mac keychain?

I have a self-signed root certificate with just the code signing extension (no other extensions) in my Mac keychain; I use it to sign all code coming out of ∞labs using Apple's codesign tool and it ...
11
votes
1answer
689 views

Remove private key from Mac OS X keychain using Terminal

I've imported a developer identity (certificate + private key) for iOS development to a keychain using the "security" Terminal application with the command security import identity.p12 -k ...
11
votes
1answer
2k views

iOS Keychain Services: only specific values allowed for kSecAttrGeneric Key?

I am trying to use the KeychainWrapper class provided in this Apple sample code: http://developer.apple.com/library/ios/#samplecode/GenericKeychain/ In the sample app, the class has this init method ...
10
votes
1answer
851 views

Storing In App Purchase receipts in the application Keychain

I've never implemented In App Purchase before, so I used the MKStoreKit wrapper and have a working implementation. MKStoreKit keeps all receipts in the UserDefaults .plist as a BOOL, thus it is very ...
8
votes
6answers
11k views

Xcode 4 - “Valid signing identity not found” error on provisioning profiles on a new Macintosh install

I had a Macintosh I used to develop iPhone apps with using XCode 4. I now have a new Macintosh with a new install of... everything. When opening Xcode projects built on the old Mac, I cannot run the ...
8
votes
2answers
8k views

How to convert SSH keypairs generated using PuttyGen(Windows) into key-pairs used by ssh-agent and KeyChain(Linux)

I've generated key pairs using PuttyGen and been logging in using Pageant , so that I have to enter my passphrase only once, when my system boots. How do I emulate this in Linux ? I've heard of ...
8
votes
3answers
4k views

Importing an SSL cert under the iPhone SDK

My app connects to the Schwab OFX server using NSURLConnection . Unfortunately the server uses a very recent intermediate certificate that is trusted on the Mac desktop but not yet the iPhone. (Try ...
7
votes
2answers
4k views

How to install developer certificate/private key and provisioning profile for iOS development via command line?

I'm configuring automated build server for iOS application project. I've done most of it. Now, it's the final round. The security. Developer certificate/private key and provisioning profile can be ...
7
votes
3answers
2k views

iPhone-like Keychain in Android?

I'm looking for something like the keychain on the iPhone, but for Android development. Something that gives me the possibility to save small key-value pairs, that are persistent and unchanged even if ...
7
votes
1answer
3k views

Help needed using Apple Keychain

I am using trying to utilize some code found here to store and retrieve username and password. However, when I add the class (SFHFKeychainUtils) I get the following errors: "_kSecAttrAccount", ...
6
votes
4answers
595 views

How do I add authorizations to code sign an app from new keychain without any human interaction

I'm trying to automate the process of building iphone apps with a particular certificate. So imagine if different users uploaded their cert into the system and it was immediately available to code ...
6
votes
1answer
2k views

iphone keychain items persist after application uninstall?

I am playing with idandersen's scifihifi-iphone code for keychain and came across the following behavior - I set the password using, say [SFHFKeychainUtils storeUsername:@"User" andPassword:@"123" ...
6
votes
2answers
2k views

Is there a quick and easy way to dump the contents of a MacOS X keychain?

I'm looking for a way to dump (export) the contents of an OS X keychain into a file that I can easily process elsewhere, such as tab-delimited plaintext or something of the sort. The Keychain Access ...
5
votes
1answer
206 views

SFHFKeychainUtils “forgot” my user's passwords

I'm using SFHFKeychainUtils for a while now. On my last update to the app store, it suddenly "forgot" my user's passwords. Meaning, when calling getPasswordForUsername for the same username and ...
5
votes
3answers
643 views

Keychain won't unlock from Jenkins script unless user logged in

I'm running a Jenkins CI server on an OS X machine. The server is running as a standard user 'john', and is started by running launchctl. One of the things this server does is build XCode projects ...
5
votes
1answer
494 views

iPhone - Export compliance when outside the U.S

We're based outside the United States and want to submit an application using: SSL to protect data in transit Keychain for saving username and password on the device "Security by obscurity" which ...
5
votes
2answers
492 views

iOS codesigning specs

I want to create a tool for codesigning iOS apps on a linux server remotely. I know codesign is oss but relies heavily on the keychain and is not as portable. I know Adobe has a codesign utility for ...
5
votes
1answer
2k views

Multiple Certificates/Provisioning Profiles in one XCode organizer?

there are several similar questions here, but none could answer my basic question: Is it possible to have two separate developer certificates in the keychain and two corresponding distribution ...
5
votes
3answers
3k views

Android Keychain for user credentials

Is there an equivalent to iOS's keychain on Android? My understanding of the Preferences API is that it is not encrypted. For my application it doesn't matter wether these credentials are persisted ...
5
votes
2answers
439 views

iPhone Passcode Integration

I want to integrate a passcode into my existing application. Does anyone know of any good tutorials, or such that would lend to my search? Is there a standard Apple tutorial to integrate one? I've not ...
5
votes
1answer
2k views

Adding a self-signed certificate to iphone Simulator?

I have a self-signed certificate at the endpoint of my API. I'm trying to test some things using the simulator but am getting "untrusted server certificate". I have tried to use safari on the ...
5
votes
6answers
6k views

IPhone app with SSL client certs

I'm building an iphone app that needs to access a web service over https using client certificates. If I put the client cert (in pkcs12 format) in the app bundle, I'm able to load it into the app and ...
5
votes
4answers
2k views

Using a non-default keychain in XCode

How can I use a non-default keychain in XCode iPhone project. I have already tried '--keychain mycerts.keychain' in 'Other Code Signing Flags' in 'Code signing' build settings.
4
votes
2answers
523 views

Get Certificates in Keychain

I've looked over the Security framework documentation but I can't seem to be able to find a way to get all of the certificates on a given keychain. Are there methods to accomplish this?
4
votes
5answers
2k views

Why does Xcode auto-install a (duplicate and expired) certificate in the keychain?

The question says it all in a nutshell. When building a project in Xcode, I receive the error message from the Check dependencies step: CodeSign error: Certificate identity 'iPhone Developer: xxxxx' ...
4
votes
3answers
431 views

Add codesign to private key ACL without Keychain

I'm trying to set up continuous builds/integration for a stable of iPhone apps. I have: A dedicated Mac Mini. A user account named "build" Hudson set up as a LaunchAgent for build, by dropping a ...
4
votes
5answers
2k views

delete iphone keychain items when application uninstall

I am using idandersen's scifihifi-iphone code for keychain and save password using [SFHFKeychainUtils storeUsername:@"User" andPassword:@"123" forServiceName:@"TestService" ...
4
votes
1answer
860 views

Importing OpenSSH RSA Public / Private Key Pair into Apple's Keychain Access

As stated in the title, I would like to import a key pair into Keychain Access. What I have done: Obtaining an RSA public / private key pair by using OpenSSH What I am going to do: ...
4
votes
1answer
566 views

Converting NSUserDefaults to Keychain?

So, NSUserDefaults is quite easy to use. But apparently, it is not too secure - there is no encryption. And of course the client wants the app prefs to be secure because it contains sensitive data. ...
3
votes
1answer
65 views

Memory Leak in iOS KeychainItemWrapper

I'm using the KeyChainItemWrapper from Apple's sample code to store user password for authentication, but when I call it to set the password: [keychain setObject:passwordField.text ...
3
votes
4answers
635 views

Missing certificates and keys in the keychain while using Jenkins/Hudson as Continuous Integration for iOS and Mac development

I'm trying to improve Hudson CI for iOS and start Hudson as soon as system starts up. To do this I'm using the following launchd script: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE ...
3
votes
2answers
362 views

Store and retrive private key from Mac keychain programatically

In a Mac application, I have a requirement to store the private key sent from the server for logged in user in a secure way and retrive it back whenever needed programmatically. I know that keychain ...
3
votes
0answers
543 views

An error has occurred. Unable to import an item. The contents of this item cannot be retrieved. Missing .pem file!

I am struck with a problem. I installed the p12 certificates once into a MacBookPro and then deleted it, now when I am again trying to install it keychain is simply not accepting the certificate for ...
3
votes
1answer
3k views

How to use Keychain access to store passwords in iPhone App?

Can someone tell me how we can store information in Keychain? How secure it would be?
3
votes
3answers
1k views

Obtaining admin privileges to delete files using rm from a Cocoa app

I am making a small app that deletes log files. I am using an NSTask instance which runs rm and srm (secure rm) to delete files. I want to be able to delete files in: /Library/Logs ~/Library/Logs ...
3
votes
1answer
137 views

OS X Keychains: 32 to 64 bit

I recently switched my application from 32 bit to 64 bit on Mac OS X. The only problem that I am having now is some users are complaining that their existing keychains are not being saved anymore and ...
3
votes
1answer
548 views

Reuse Development C.S.R. for Distribution certificate

So, I've created a development certificate for my iPhone app, and in the process I saved a C.S.R as a CertificateSigningRequest.certSigningRequest file on the computer hard drive with Keychain Access ...
3
votes
1answer
986 views

how to associate private key with a certificate in keychain

I just downloaded iphone sdk 4. when I try to install on the device I get "Code Sign error: The identity 'iPhone Developer' doesn't match any valid certificate/private key pair in the ...
3
votes
3answers
2k views

Unable to create Apple Developer certificate request using keychain access tool

I'm creating a new CSR (Certificate Signing Request) using the Keychain Access tool: Certificate Assistant -> Request a certificate from a certificate authority... In the certificate information I ...
3
votes
2answers
945 views

Getting Attributes of Keychain Items

I'm trying to get the attributes of a keychain item. This code should look up all the available attributes, then print off their tags and contents. According to the docs I should be seeing tags like ...
3
votes
3answers
2k views

Storing username/password on Mac using Java

I'm writing a small program (a twitter client) in Java, aimed at Mac OS X. As part of its functionality, it needs to have a place to store the twitter username/password. The natural place would be the ...
3
votes
1answer
1k views

SciFi-HiFi Keychain problem - SecKeychainItemRef undeclared error

I'm trying to use this class: http://log.scifihifi.com/post/55837387/simple-iphone-keychain-code to save data to the keychain on the iPhone. I've included the header and the .m file in my ...
2
votes
1answer
61 views

Importing a Private Key to Keychain returns EINVAL error

I am trying to import RSA private keys into the keychain using my application. The first time I import a key using SecKeychainImport() the operation is successful, a subsequent import gives me an ...
2
votes
0answers
85 views

Using keychain inside a launchd system daemon

We have a launchd daemon that stores usernames and passwords from inside the keychain. It works when we try to add (with SecKeychainAddGenericPassword) remove (with SecKeychainFindGenericPassword and ...
2
votes
0answers
161 views

How to solve “entitlement 'keychain-access-groups' has value not permitted by a provisioning profile”

I am using keychain in my app and I get this error when run app as AdHoc. It doesn't appear when I run it with debugger (with developer provisioning profile). If app has already been installed on the ...
2
votes
1answer
140 views

KeyChain Security command line tool works with find-internet-passwords but not find-generic-passwords

Looking into using the command line tool for KeyChain. I am able to do a lot of the things through security; listing my multiple keychains, dumping them and setting defaults. Reading through tutorials ...

1 2 3 4 5