On Tue, Apr 27, 2004, Dennis Putnam wrote: > I am having a problem with Apache's mod_ssl. It is getting an error > from OpenSSL but the message is useless without an error code > reference. I cannot find any error codes at the OpenSSL web site or > anywhere else for that matter. Can someone point me to a place to find > what these error messages mean? TIA. > > [Tue Apr 27 08:22:34 2004] [error] OpenSSL: > error:0D0680A8:lib(13):func(104):reason(168) > [Tue Apr 27 08:22:34 2004] [error] OpenSSL: > error:0D07803A:lib(13):func(120):reason(58) > >
Apache not printing out human readable error strings is a bad thing(TM). You can convert error codes by doing: openssl errstr XXXXX Where XXXX is the string of hex digits after "error:". In this case you get: error:0D0680A8:asn1 encoding routines:ASN1_CHECK_TLEN:wrong tag error:0D07803A:asn1 encoding routines:ASN1_ITEM_EX_D2I:nested asn1 error which suggests something invalid is sent to the ASN1 parser. Apache should also be printing out the error data but it apparently isn't. Without that its impossible to see what structure the ASN1 code is complaining about. Steve. -- Dr Stephen N. Henson. Email, S/MIME and PGP keys: see homepage OpenSSL project core developer and freelance consultant. Funding needed! Details on homepage. Homepage: http://www.drh-consultancy.demon.co.uk ______________________________________________________________________ OpenSSL Project http://www.openssl.org User Support Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]