I am trying to understand about openssl and certificates and also Python. So I have this .cert.p12 file. I would like to convert it to .pem format. I use openssl -in input.cert.p12 -out output.pem -nodes This creates the pem file. How would I do the same process in Python? Take in a p12 file and covert it to a pem format?
