SSL Library Error: 218570875 error:0D07207B:asn1 encoding routines:ASN1_get_object:header too long
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