0
votes
1answer
114 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.
2
votes
3answers
33 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 …
0
votes
0answers
90 views
Missing X509 extensions in certificates created with Certificate Assistant
I'm reposting my question from discussions.apple.com since it hasn't been answered, yet:
Certificates created with "/System/Library/CoreServices/Certificate Assistant.app" (verion …
0
votes
0answers
26 views
How to see the keychain for iphone simulator
I have developed an iphone application in which i am encryptind and decrypting data using public and private key.
I want to see this keys in the keychain.
I got the keychain entry …
1
vote
1answer
90 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 …
0
votes
1answer
87 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:
"_kS …
0
votes
0answers
36 views
Manipulating keychain ACLs from RubyCocoa
I'm trying to translate some of the following sample code into RubyCocoa :-
SecAccessRef createAccess(NSString *accessLabel)
{
OSStatus err;
SecAccessRef access=nil;
N …
0
votes
0answers
44 views
Building the equivalent of a C structure in RubyCocoa
I'm trying to do something similar to this code sample but in RubyCocoa. In particular, I'm having some trouble trying to build a SecKeychainAttributeList. I suspect I need to make …
2
votes
1answer
121 views
iPhone certificate and provisioning…etc on new mac machine?
I had an older mac mini that I had used to register the certifications and....etc.
I never really got to the stage for actually using them since i only tested on the iPhone simulat …
0
votes
0answers
29 views
__Seckey, SecKeyRef, public and private keys and store not store in KeyChain
I would like to generate public and private key pairs and then store them in a private store, instead of the iphone's key chain. Is there a way to use to use the security apis on t …
0
votes
2answers
410 views
Adding RSA keys to the iPhone keychain
Hello everyone,
I'm trying to add a public and private RSA keys to the iPhone's keychain, so I can use the CommonCrypto library, but am not entirely sure how to do that. The MYCry …
4
votes
4answers
2k 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 …
2
votes
2answers
289 views
Store an encryption key in Keychain while application installation process
I need my application to use client's phone-number to generate unique ID for my web-service. Of course a phone-number is unique, but it must be secured. So it can be implemented wi …
0
votes
1answer
284 views
iPhone Provisioning: Is keychain is inserting wrong email address into the CSR?
I was having a problem where my Dev cert didn't expand (was not linked) to my private key.
I tracked the issue down to a discrepancy in the email used to create my Dev Cert and th …
2
votes
3answers
346 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 natura …
