Re: Error while trying to get text output from x509 cert file

2010-09-20 Thread Gaiseric Vandal
Also, look out for blank/extra lines in the file.Microsoft IE may be 
OK with them but openssl may not be.


On 09/19/2010 12:13 AM, Mounir IDRASSI wrote:

Hi,

The error says that it didn't find the expected start line for a
certificate which is -BEGIN CERTIFICATE- .
So, check that your certificate is indeed BASE64 encoded and that the
first line is -BEGIN CERTIFICATE- and the last is -END
CERTIFICATE- .

Cheers,
--
Mounir IDRASSI
IDRIX
http://www.idrix.fr

   

Hi

I am trying to get output from this x509 certificate and am getting the
below
error. Please let me know how to resolve this error and generate text
output
from this cert file.

$ openssl x509 -in TestCryptPublic.cert -pubkey
unable to load certificate
557096:error:0906D06C:PEM routines:PEM_read_bio:no start
line:pem_lib.c:647:Expecting: TRUSTED CERTIFICATE


Regards
Vivek Panikulam



 


__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager   majord...@openssl.org
   


__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager   majord...@openssl.org


Re: Error while trying to get text output from x509 cert file

2010-09-20 Thread Panikulam Vivek
Thanks for your response. It looks like the .cert file is not in the required 
format. It is a binary file and I assumed that it is in x509 format.

Regards
Vivek Panikulam





From: Mounir IDRASSI mounir.idra...@idrix.net
To: openssl-users@openssl.org
Sent: Sat, September 18, 2010 11:13:05 PM
Subject: Re: Error while trying to get text output from x509 cert file

Hi,

The error says that it didn't find the expected start line for a
certificate which is -BEGIN CERTIFICATE- .
So, check that your certificate is indeed BASE64 encoded and that the
first line is -BEGIN CERTIFICATE- and the last is -END
CERTIFICATE- .

Cheers,
--
Mounir IDRASSI
IDRIX
http://www.idrix.fr

 Hi

 I am trying to get output from this x509 certificate and am getting the
 below
 error. Please let me know how to resolve this error and generate text
 output
 from this cert file.

 $ openssl x509 -in TestCryptPublic.cert -pubkey
 unable to load certificate
 557096:error:0906D06C:PEM routines:PEM_read_bio:no start
 line:pem_lib.c:647:Expecting: TRUSTED CERTIFICATE


 Regards
 Vivek Panikulam





__
OpenSSL Project                                http://www.openssl.org
User Support Mailing List                    openssl-users@openssl.org
Automated List Manager                          majord...@openssl.org



  

RE: Error while trying to get text output from x509 cert file

2010-09-20 Thread Erik Tkal
Hi Vivek,

There is no x509 format in that context; an x509 certificate encoding can be 
represented in DER (binary) or PEM (text) mode.

Try:

  openssl x509 -in TestCryptPublic.cert -inform DER -text


Erik Tkal
Juniper OAC/UAC/Pulse Development

From: owner-openssl-us...@openssl.org [mailto:owner-openssl-us...@openssl.org] 
On Behalf Of Panikulam Vivek
Sent: Monday, September 20, 2010 10:55 AM
To: openssl-users@openssl.org
Subject: Re: Error while trying to get text output from x509 cert file

Thanks for your response. It looks like the .cert file is not in the required 
format. It is a binary file and I assumed that it is in x509 format.

Regards
Vivek Panikulam


From: Mounir IDRASSI mounir.idra...@idrix.net
To: openssl-users@openssl.org
Sent: Sat, September 18, 2010 11:13:05 PM
Subject: Re: Error while trying to get text output from x509 cert file

Hi,

The error says that it didn't find the expected start line for a
certificate which is -BEGIN CERTIFICATE- .
So, check that your certificate is indeed BASE64 encoded and that the
first line is -BEGIN CERTIFICATE- and the last is -END
CERTIFICATE- .

Cheers,
--
Mounir IDRASSI
IDRIX
http://www.idrix.fr

 Hi

 I am trying to get output from this x509 certificate and am getting the
 below
 error. Please let me know how to resolve this error and generate text
 output
 from this cert file.

 $ openssl x509 -in TestCryptPublic.cert -pubkey
 unable to load certificate
 557096:error:0906D06C:PEM routines:PEM_read_bio:no start
 line:pem_lib.c:647:Expecting: TRUSTED CERTIFICATE


 Regards
 Vivek Panikulam





__
OpenSSL Projecthttp://www.openssl.org
User Support Mailing List
openssl-users@openssl.orgmailto:openssl-users@openssl.org
Automated List Manager  
majord...@openssl.orgmailto:majord...@openssl.org



RE: Error while trying to get text output from x509 cert file

2010-09-19 Thread Gaiseric Vandal
Does the following work?

 

openssl x509 -in TestCryptPublic.cert -text

 

From: owner-openssl-us...@openssl.org
[mailto:owner-openssl-us...@openssl.org] On Behalf Of Panikulam Vivek
Sent: Saturday, September 18, 2010 10:31 PM
To: openssl-users@openssl.org
Subject: Error while trying to get text output from x509 cert file

 

Hi

 

I am trying to get output from this x509 certificate and am getting the
below error. Please let me know how to resolve this error and generate text
output from this cert file.

 

$ openssl x509 -in TestCryptPublic.cert -pubkey
unable to load certificate
557096:error:0906D06C:PEM routines:PEM_read_bio:no start
line:pem_lib.c:647:Expecting: TRUSTED CERTIFICATE

 

Regards

Vivek Panikulam

 

 

 



Re: Error while trying to get text output from x509 cert file

2010-09-18 Thread Mounir IDRASSI
Hi,

The error says that it didn't find the expected start line for a
certificate which is -BEGIN CERTIFICATE- .
So, check that your certificate is indeed BASE64 encoded and that the
first line is -BEGIN CERTIFICATE- and the last is -END
CERTIFICATE- .

Cheers,
--
Mounir IDRASSI
IDRIX
http://www.idrix.fr

 Hi

 I am trying to get output from this x509 certificate and am getting the
 below
 error. Please let me know how to resolve this error and generate text
 output
 from this cert file.

 $ openssl x509 -in TestCryptPublic.cert -pubkey
 unable to load certificate
 557096:error:0906D06C:PEM routines:PEM_read_bio:no start
 line:pem_lib.c:647:Expecting: TRUSTED CERTIFICATE


 Regards
 Vivek Panikulam





__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager   majord...@openssl.org