Tagged Questions

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
275 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
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 ...