[openssl.org #30] AutoReply: SSL_shutdown.3 makewhatis failure under IRIX

2002-05-13 Thread OpenSSL-Bugs
Greetings, This message has been automatically generated in response to the creation of a trouble ticket regarding: SSL_shutdown.3 makewhatis failure under IRIX, a summary of which appears below. There is no need to reply to this message right now. Your ticket has been

Re: [openssl.org #30] SSL_shutdown.3 makewhatis failure under IRIX

2002-05-13 Thread [EMAIL PROTECTED] via RT
Yes, this was from http://www.openssl.org/source/openssl-0.9.6c.tar.gz Best regards, -- Rick Troxel [EMAIL PROTECTED] 301/435-2983 / All effort and exertion put forth by man from the fullness of his heart is

Re: [openssl.org #29] -Wl,-Bsymbolic in 0.9.6d broke shared builds

2002-05-13 Thread Ben Laurie
Lutz Jaenicke via RT wrote: [[EMAIL PROTECTED] - Sun May 12 22:48:56 2002]: JFYI, when updating our package from 0.9.6c to 0.9.6d I've noticed that the new shared libcrypto library doesn't work anymore. The openssl(1) binary wouldn't recognize any of the block ciphers. I tracked

Re:

2002-05-13 Thread Paul L. Allen
You appear to be using some sort of BSD compatibility mode on Solaris. If you have a cc binary /usr/ucb, *delete* it. If you have /usr/ucblib in your LD_LIBRARY_PATH, take it out. Paul Allen Yarbrough, Jeff wrote: Keep getting a fatal error when trying to run the make command for openssl

[openssl.org #10] ASN.1 sanity check missing

2002-05-13 Thread Steven Henson via RT
[[EMAIL PROTECTED] - Thu Apr 25 16:24:12 2002]: There is an input sanity check in asn1_lib.c that is #if'd out for some reason. In its absence, a corrupt certificate read by d2i_X509() can at least crash the process. Additionally, the sanity checks both there and in a_bytes.c do not take

[openssl.org #20] detecting truncated ASN messages

2002-05-13 Thread Steven Henson via RT
[[EMAIL PROTECTED] - Sat May 4 20:44:23 2002]: Experimenting with openssl smime -decrypt, I found that it did not detect that a message was truncated. Changing line 173 of crypto/asn1/a_d2i_fp.c from if (i = 0) to if (i want) fixes the problem. I think this is the right code