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
288 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
2answers
23 views

PFX/PKCS12 to SNK conversion for mono

This is follow up on Mono xbuild error CS1548 - key file has incorrect format Hi, I have an application that is written in C# using VS2008. At present we are porting this app to Mac using Mono. I ...
1
vote
3answers
169 views

How to programmatically import a pfx with a chain of certificates into the certificate store?

I am trying to programmatically import a X509 certificate (pfx / PKCS#12) in my local machine's certificate store. This particular certificate has a chain of certificates, the certification path looks ...
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 ...