Re: extracting private key from p12 certificate and encoding it as pem in pkcs#1

2012-05-09 Thread Adrian Manuel Vázquez Betancourt
Thank you Dave and Jeffrey for your answer it makes things clearer ;-) Many greetings, Adrian 2012/5/9 Jeffrey Walton > On Tue, May 8, 2012 at 4:33 PM, Dave Thompson > wrote: > >>From: owner-openssl-us...@openssl.org On Behalf Of Adrian Manuel Vázquez > > Betancourt > >>Sent: Tuesday, 08 May,

Re: extracting private key from p12 certificate and encoding it as pem in pkcs#1

2012-05-08 Thread Jeffrey Walton
On Tue, May 8, 2012 at 4:33 PM, Dave Thompson wrote: >>From: owner-openssl-us...@openssl.org On Behalf Of Adrian Manuel Vázquez > Betancourt >>Sent: Tuesday, 08 May, 2012 15:21 > >>I have a p12 certificate file and I would like to extract the private >>key from it and export it as a pem file in pl

RE: extracting private key from p12 certificate and encoding it as pem in pkcs#1

2012-05-08 Thread Dave Thompson
>From: owner-openssl-us...@openssl.org On Behalf Of Adrian Manuel Vázquez Betancourt >Sent: Tuesday, 08 May, 2012 15:21 >I have a p12 certificate file and I would like to extract the private >key from it and export it as a pem file in plain pkcs#1 format. >openssl pkcs12 -in test.p12 -out testke

extracting private key from p12 certificate and encoding it as pem in pkcs#1

2012-05-08 Thread Adrian Manuel Vázquez Betancourt
Hi everybody, I have a p12 certificate file and I would like to extract the private key from it and export it as a pem file in plain pkcs#1 format. I was able to do that from openssl whith the following commands: openssl pkcs12 -in test.p12 -out testkey.pem -nodes -nocerts and afterwards ... o