how i can convert a pem file to a cer file using openSSL?

2007-03-19 Thread legolas
Hi Thank you for reading my post. How i can convert a pem file to a cer file in openSSL? thanks -- View this message in context: http://www.nabble.com/how-i-can-convert-a-pem-file-to-a-cer-file-using-openSSL--tf3426291.html#a9549874 Sent from the OpenSSL - User mailing list archive at

Re: how i can convert a pem file to a cer file using openSSL?

2007-03-19 Thread Vincenzo Sciarra
openssl x509 -in mykey.pem -inform PEM -out mykey.der -outform CER 2007/3/19, legolas <[EMAIL PROTECTED]>: Hi Thank you for reading my post. How i can convert a pem file to a cer file in openSSL? thanks -- View this message in context: http://www.nabble.com/how-i-can-convert-a-pem-f

Re: how i can convert a pem file to a cer file using openSSL?

2007-03-19 Thread Victor Duchovni
On Mon, Mar 19, 2007 at 12:58:22PM +0100, Vincenzo Sciarra wrote: > openssl x509 -in mykey.pem -inform PEM -out mykey.der -outform CER > That would be: ... -outform DER not ... -outform CER -- Viktor. __

Re: how i can convert a pem file to a cer file using openSSL?

2007-03-19 Thread Vincenzo Sciarra
Yes, sorry my error 2007/3/19, Victor Duchovni <[EMAIL PROTECTED]>: On Mon, Mar 19, 2007 at 12:58:22PM +0100, Vincenzo Sciarra wrote: > openssl x509 -in mykey.pem -inform PEM -out mykey.der -outform CER > That would be: ... -outform DER not ... -outform CER -- Vi