SSL Library Error: 218570875 error:0D07207B:asn1 encoding routines:ASN1_get_object:header too long

51,758

Solution 1

The cert is probably faulty/corrupt. Can you regenerate from the authority?

For example, look at:

https://forum.startcom.org/viewtopic.php?f=15&t=2253

or

http://lists.kolab.org/pipermail/kolab-users/2005-February/001986.html

You can do some checks on the certificate using openssl:

openssl x509 -in /etc/pki/tls/certs/ssl_certificate.crt -text -noout

That should dump out the plain text of your certificate information. If it can't then there's something wrong with the certificate file.

Solution 2

I ran across the same issue. Heres my story and solution:

I've been saving the cert as UTF-8 with BOM (Byte order Mark) So you can just open that file with vim and save it without BOM:

# vim cert.pem
:set nobomb
:wq

via: https://stackoverflow.com/a/300474

Share:
51,758
Abhishek
Author by

Abhishek

Updated on September 18, 2022

Comments

  • Abhishek
    Abhishek over 1 year

    I am trying to install SSL certificate from a certificate authority into my httpd server in CentOS 5.x. When I configure it and start the server I am getting the following errors,

    [error]Init: Unable to read server certificate from file /etc/pki/tls/certs/ssl_certificate.crt
    [error] SSL Library Error: 218570875 error:0D07207B:asn1 encoding routines:ASN1_get_object:header too long
    

    I am following the procedure at http://wiki.centos.org/HowTos/Https to set up the ssl

    Any pointers would be greatly helpful

    • Admin
      Admin about 12 years
      Could you please post the certificate file and the relevant config snippets? It seems that openssl doesn't like your certificate, but without more info, it's hard to say anything.
  • Fernando Rosado
    Fernando Rosado almost 7 years
    Thank you! I could see the error using a cat file.pem and appear some strange character at the beginning of the file something like : ----- BEGIN CERTIFICATE ----