Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
976 views

How can I access identity profiles and certificates with iPhone SDK?

I am trying to verify the user identity on my application using a certificate / identity that the user has stored by opening a .cer / .p12 attached to an email. The certificate appears on the settings ...
4
votes
3answers
10k views

Any good tutorials/examples for the Spring Security Framework?

Any good tutorials or samples on spring security. Thanks
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 ...
1
vote
3answers
103 views

Get the Username(s) stored in Keychain, using only the ServiceName? OR: Where are you supposed to store the Username?

So the OS X Keychain has three pieces of information: ServiceName (the name of my app) Username Password I obviously always know the ServiceName. Is there a way to find any saved Username(s) for ...
1
vote
1answer
190 views

Save a SecKeyRef Asymmetric Key Pair to disk as a Certificate

I have created two SecKeyRef items via SecKeyGeneratePair, but now I would like to turn the public key into a x509 Digital Certificate – and/or both the public and private keys into a PKCS #12 (.p12) ...
0
votes
1answer
172 views

Exporting a Symmetric Key SecKeyRef item as a CFDataRef

I am having some trouble with getting a symmetric key exported from a SecKeyRef to a CFDataRef for wrapping or storing,or simply for use with other Cocoa code. I have the following code: - ...
0
votes
1answer
230 views

Continuously getting kSecTrustResultRecoverableTrustFailure while trust evaluation - iphone

I want to securely communicate with my server and here is what I am doing... NSURLProtectionSpace *protectionSpace = [challenge protectionSpace]; SecTrustRef trust = [protectionSpace serverTrust]; ...