Re: [openssl.org #2778] [BUG:] OpenSSL 1.0.1 x86_64: d1_pkt.c(444): OpenSSL internal error, assertion failed: t = 0

2012-04-04 Thread John Fitzgibbon
Andy has made some recent fixes to the AES code too which may be relevant. Please check the next snapshot to see if you still have problems. I get the same results with openssl-1.0.1-stable-SNAP-20120403.tar.gz To narrow down the problem, I built the no-asm version, (which works), saved off

Re: [openssl.org #2768] Bug: internal_verify() hides errors from callbacks after X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE

2012-04-04 Thread Alex Rousskov
On 03/23/2012 07:52 AM, Stephen Henson via RT wrote: [rouss...@measurement-factory.com - Wed Mar 21 10:24:07 2012]: A verification callback registered with SSL_CTX_set_verify() gets called for most validation errors, as expected. The callback always returns 1 (keep validating) result so

participation

2012-04-04 Thread Lhoussain Aitassou
Hi, I want to participate to the developpement of the SSL library, I'm an Asic / software developper and I'm very interested by the questions of cryptography. If there is an immediate need for developpement or test I will be happy to be useful. br

[openssl.org #2778] [BUG:] OpenSSL 1.0.1 x86_64: d1_pkt.c(444): OpenSSL internal error, assertion failed: t = 0

2012-04-04 Thread Stephen Henson via RT
[john_fitzgib...@yahoo.com - Tue Apr 03 23:24:21 2012]: Andy has made some recent fixes to the AES code too which may be relevant. Please check the next snapshot to see if you still have problems. I get the same results with openssl-1.0.1-stable-SNAP-20120403.tar.gz To narrow down

Re: [openssl.org #2778] [BUG:] OpenSSL 1.0.1 x86_64: d1_pkt.c(444): OpenSSL internal error, assertion failed: t = 0

2012-04-04 Thread John Fitzgibbon via RT
Please try setting the OPENSSL_ia32cap environment variable to 0 and see if you still get the problem. That worked. I added code to the test harness to show the capability flags: OPENSSL_ia32cap=[ffeb:1fbae3ff] I then added a command-line switch to change the flags on-the-fly. Turning

Re: [openssl.org #2778] [BUG:] OpenSSL 1.0.1 x86_64: d1_pkt.c(444): OpenSSL internal error, assertion failed: t = 0

2012-04-04 Thread John Fitzgibbon
Please try setting the OPENSSL_ia32cap environment variable to 0 and see if you still get the problem. That worked. I added code to the test harness to show the capability flags: OPENSSL_ia32cap=[ffeb:1fbae3ff] I then added a command-line switch to change the flags on-the-fly. Turning

Re: [openssl.org #2778] [BUG:] OpenSSL 1.0.1 x86_64: d1_pkt.c(444): OpenSSL internal error, assertion failed: t = 0

2012-04-04 Thread Andy Polyakov via RT
Please try setting the OPENSSL_ia32cap environment variable to 0 and see if you still get the problem. That worked. http://cvs.openssl.org/chngview?cn=22334 is interim solution, proper solution will be provided at later point (if found appropriate).

[openssl.org #2783] OCSP_parse_url() does not parse URLs containing IPv6 addresses correctly

2012-04-04 Thread nanard via RT
The attached Patch also removes the square brackets --- openssl-1.0.1/crypto/ocsp/ocsp_lib.c.orig_1.0.1 2012-04-04 15:41:33.133314951 +0200 +++ openssl-1.0.1/crypto/ocsp/ocsp_lib.c 2012-04-04 16:02:49.765314655 +0200 @@ -222,8 +222,19 @@ int OCSP_parse_url(char *url, char **pho if (!*ppath)

Should this be bitwise AND?

2012-04-04 Thread Xu Zhongxing
version: openssl-1.0.1-beta3 file: s3_srvr.c line: 2933 code: if ((peer != NULL) (type | EVP_PKT_SIGN)) Should type | EVP_PKT_SIGN be type EVP_PKT_SIGN? - Xu Zhongxing