Tagged Questions

PKCS#12 is a file format to store and exchange private keys and certificates.

learn more… | top users | synonyms

6
votes
1answer
479 views

Export certificate in windows store to a p12 file using Java

I will need to export a certificate in windows store to a p12 file. Similar to what you can do from firefox/IE browser but in JAVA. The only way I am able to do it currently is doing a C# with double ...
4
votes
2answers
4k views

PKCS12 Java Keystore from CA and User certificate in java

I've recently been put in charge of mocking up an Apple product (iPhone Configuration Utility) in Java. One of the sections I've been a bit stuck on is a part about Exchange ActiveSync. In there, it ...
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. ...
3
votes
1answer
60 views

How to use StrongNameKeyPair with a password protected keyfile (pfx)?

I am trying to programatically sign an assembly using a password protected keyfile (pfx). However when I try to use the StrongNameKeyPair I get the following exception. Unable to obtain public key ...
3
votes
2answers
1k views

Error using httlib's HTTPSConnection with PKCS#12 certificate

I'm trying to use httplib's HTTPSConnection for client validation, using a PKCS #12 certificate. I know the certificate is good, as I can connect to the server using it in MSIE and Firefox. Here's ...
3
votes
4answers
2k views

Decode a PKCS#12 file

I am looking for ways to decode a PKCS#12 file in .NET, I need to extract the private key and any certificates so that i can programatically access the following. modulus publicExponent ...
2
votes
1answer
251 views

unable to export windows cert as pkcs12 - “Key not valid for use in specified state”

I am trying to export a cert with powershell to pkcs12. I can export it fine in MMC. But powershell barfs PS C:\Users\paul> $cert.export('PFX'," pass") Exception calling "Export" with "2" ...
2
votes
1answer
277 views

how to convert java jks keystore to pkcs12 certificate programatically?

Is there is any that i can convert ava jks keystore to pkcs12 certificate programatically? Abdul Khaliq
2
votes
2answers
2k views

How can constructing an X509Certificate2 from a PKCS#12 byte array throw CryptographicException(“The system cannot find the file specified.”)?

I'm trying to construct an X509Certificate2 from a PKCS#12 blob in a byte array and getting a rather puzzling error. This code is running in a desktop application with administrator rights on Windows ...
1
vote
1answer
90 views

How to sign data with .p12 file in Java?

How to sign data with .p12 file in Java? Java seems to support only until pkcs11, I just can't find the standard library for pkcs12. There's nothing in 'java.security'... for decoding .p12 file to ...
1
vote
1answer
125 views

Mono xbuild error CS1548 - key file has incorrect format

So I'm trying to get a VS2010 C# project to go cross-platform. First goal is build it in Mono 2.10.5 for Windows. I have not touched any code yet - I'm starting with xbuild's recent ability to build ...
1
vote
2answers
119 views

PKCS#12 : DerInputStream.getLength() exception

I generate a certificate using the keytool command: keytool -genkeypair -alias myRSAKey -keyalg RSA -keysize 1024 -keystore test.p12 -storepass test -storetype pkcs12 Then if I try to load it using ...
1
vote
1answer
193 views

How to parse a PKCS12 file programmatically in Java?

How to parse a PKCS12 file programmatically in Java? When I tried to use KeyStore APIs in the my program, I got an "No Such Algorithm Exception" while decrypting Authsafe. But, apart from using ...
1
vote
2answers
416 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
1answer
262 views

Converting from cert8.db to PEM

I am having a cert8.db in /home/hari/Desktop/certs directory. Now I want to convert this into PEM. tried to do this by first trying to export the cert8.db in pkcs12 to pem using pkutil pk12util -o ...
1
vote
1answer
147 views

How to import PKCS#12 into Seahorse

I have a PKCS#12 file which I have successfully imported into Firefox. Now, I would like to import the same file into Linux in order to use public-Key cryptography with these keys. I have tried to ...
1
vote
2answers
141 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
3answers
1k views

How to get private key from PKCS#12 (.p12) file using C#

Im trying to sign some data using PKCS#12 certificate ,however i have problem with obtaining private key from PKCS#12 (.p12) file. public byte[] sign(string text) { string password = ...
1
vote
2answers
773 views

Convert Keystore - Windows-my to jks

We are using SunMSCAPI to retrieve the current user keystore as below.. keystore = KeyStore.getInstance("Windows-MY", "SunMSCAPI"); We will need to build a JSSE keystore of type JKS/PKCS12 and ...
1
vote
4answers
354 views

Is there any java API to convert certificate from 'DER' format to pkcs#12 format

I need to convert certificate from DER format to pkcs#12 format. I know I can do this using openssl command. I am looking for java API / Class which can do this job. Any help will be appreciated.
1
vote
1answer
817 views

What are the merits of JKS vs PKCS12 for code signing?

When buying a code-signing certificate, what are the merits of starting with a PKCS12 versus JKS certificate? Some vendors give instructions on starting with a JKS or PKCS12 certificate signing ...
1
vote
3answers
759 views

Extract x509 cert and private key from pkcs12 file

I want to extract x509 cert and private key from pkcs12 file using a C lib. I found lot of .net utils to do this, but did not find any C libraries. My code will run in WinPE environment, so .net will ...
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 ...
1
vote
2answers
2k views

Axis over SSL and 2-way authentication with a PKCS#12 keystore

I have PKCS#12 keystore that I've sucessfully imported in my browser for accessing a server that needs 2-way SSL authentication. Works perfectly reaching any https URL there. However, I'm unable to ...
1
vote
3answers
807 views

How to encode an RSA key using PKCS12 in Python?

I'm using Python (under Google App Engine), and I have some RSA private keys that I need to export in PKCS#12 format. Is there anything out there that will assist me with this? I'm using ...
1
vote
1answer
426 views

Internet Explorer and client authetication

I would like to have Intenet Explorer allow me to choose an identity when connecting to a client-authentication enabled web server. Currently I have my Tomcat web server configured to use client ...
0
votes
1answer
60 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
0answers
18 views

How do I generate a private key, in PKCS#1 padding, from the private exponent and modulus?

I want to convert 3 variables, the modulus, the public exponent and the private exponent (n,e,d) into PKCS#1 padding, so I can use them in the RSA implementation in the PHP Security Library. Does ...
0
votes
2answers
82 views

Generate PKCS12 file using Java

I need to generate a PKCS12 file using Java. Actually, I need to automate the following certificate generation using openssl (the ca was created previously and is not pretended to automate its ...
0
votes
1answer
61 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
0answers
126 views

Importing a client certificate into the iPhone's keychain

I am writing an application that is communicating with a server which requires the client to authenticate itself using a client certificate. I need to extract the certificate from a .p12 file in the ...
0
votes
0answers
86 views

multiple PKCS12 certificates (current and expired) to read / decrypt current and old email in iOS 5

In iOS 5, is there an available functionality where encrypted emails from an Exchange server using multiple .p12 certificates can be decrypted / read? For example, i have two p12 certificates ...
0
votes
2answers
71 views

Problems when using multiple keys in a jks (ssl)

I have two client pkcs12 keystores. I exported the certs out of both of those and added them to a new jks using keyman. The strange thing is that each keystore seperately works fine, but when i ...
0
votes
3answers
310 views

Apple Push Notification, Problem with PKCS12 in java-apns

I try to send a push notification from a java application to an iphone. there is the source code : PayLoad payLoad = new PayLoad(); payLoad.addAlert("My alert message"); payLoad.addBadge(45); ...
0
votes
0answers
113 views

Exception importing ECDSA PKCS#12 container

In the attempt of experimenting with ECDSA signatures, I'm running into a problem right at the start. Here's a demo PKCS#12 key container (password is "certECDSA"): ...
0
votes
1answer
341 views

How do I convert a combined PEM into a pkcs12 P12 file?

I have an Apple Push Notification Service PEM file which I have working in a PHP script. I can send push notifications to iOS devices that have my app installed. I am trying to make it work with the ...
0
votes
0answers
591 views

Generating (PKCS12) certificate friendly name with Bouncy Castle in Java

I am using the bouncycastle library to create certificates and export them as PKCS12 certificate files on a Java webapp. The code on my app to generate the certificate file is the same as in this ...
0
votes
1answer
174 views

Encryption using IBM JRE - NoSuchMethodError: sun.security.pkcs.ContentInfo: method<init>()V not found

I've been doing encryption using Bouncy Castle and I need to deploy it using an IBM JRE 1.4.2. However, I get an error with the following cause: ... Caused by: ...
0
votes
1answer
204 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
459 views

How to programatically add digital signature to multiple Open Office XML Docx documents?

I want to programatically add a digital signature to multiple DOCX files, using the standardized approach of the method Sign() from PackageDigitalSignatureManager object. As in for example: ...
0
votes
1answer
415 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
889 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, ...
0
votes
1answer
1k views

Import public key from trusted root CA to PKCS12 key store

How do I import a public key from trusted root CA to PKCS12 key store? Is this possible at all or am I getting the idea of this whole thing wrong?
0
votes
2answers
5k views

How to set up Java to use user specific certificates for Eclipse?

I can't believe I'm the only person to run up against this problem. I've been googling for hours and have not had any luck. The Java security documentation doesn't seem to address PKCS12 certificates ...
-2
votes
2answers
255 views

Free or Open Personal Digital Cerificate of Signing Documents?

I need to sign a pdf file with my own e-signature using a certificate where can i get one pfx file.