Tagged Questions

4
votes
2answers
7k views

aps_developer_identity.cer to p12 without having to export from Key Chain?

I have a shed load of 'aps_developer_identity.cer' certificates exported from iPhone Developer portal. They were all created using the same Certificate Signing Request and (thus) the same private key. ...
1
vote
2answers
492 views

How to load a PKCS#12 file in OpenSSL programmatically?

In an SSL Server Application based on OpenSSL, how can we load a PKCS#12 file programmatically? Also, can I load a PKCS#12 file having Certificate, Key & CAs in the same file in OpenSSL?
1
vote
2answers
150 views

openssl pkcs12 -export Programatically

I was wondering if there is a way to access the pkcs12 command of openssl programatically. I intend to access the export functionality of the pkcs12 command using a (any) programming language. My ...
1
vote
1answer
2k views

Convert .PEM certificate to .PFX Programatically using OpenSSL

I've got a .PEM file that I want to convert to a PKCS12 file (PFX) and I know I can easily accomplish this using the following openssl command: Create a PKCS#12 file: openssl pkcs12 -export -in ...
0
votes
1answer
76 views

Password verification of PKCS12 file failed

My code is: FILE * fp = fopen(inputdata, "r"); PKCS12 * p12 = d2i_PKCS12_fp(fp, NULL); if (p12 == NULL) { NSLog(@"Error loading PKCS12 file to p12 \n"); } if ((ret = ...
0
votes
1answer
96 views

How to create a digital certificate and export to .p12 file in PHP?

How to create a digital certificate and export to .p12 file in PHP? I want the .p12 file to have private key included. And also want to check whether the key pair is already issued (logged in ...
0
votes
1answer
218 views

How to verify the password of a pkcs#12 certificate (.PXF) with openssl C API?

I have an .pxf (AFAIK PKCS#12) certificate. How can I confirm a given password for this certificate using the openssl C API?
0
votes
1answer
444 views

Python SSL with PKCS#12 certificates

Is there some way to wrap a socket connection with SSL using python's ssl module in python 2.6 using a pkcs#12 file? The file contains a private key and certificate. I want to use them for the ...
0
votes
1answer
919 views

Creating PKCS#12 keystore with multiple certificates using OpenSSL 1.0.0a

I am trying to create a PKCS#12 keystore with more than one certificate. this option does seem to be documented well - everyone talks about creating a .p12 file from a single certicate in a .pem file, ...