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 current installation is on Python.

I am aware of the fact that there is a command line interface to pkcs12 but that requires starting a new sub - process which is not feasible for the problem that I have.

Please let me know.

Any help on this will be greatly appreciated.

Thanks!

link|improve this question
feedback

2 Answers

In Python, the PyOpenSSL PKCS#12 module should be useful for this.

In Java, you could load the PKCS#12 file directly as a PKCS12 KeyStore and then get the private key. You may also find BouncyCastle's PEMWriter useful to export the keys or certificate.

link|improve this answer
feedback

This answer points to a related sample code in C :
how to verify a P12 certificate using openssl?

Function and class names should be similar in Python.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.