[openssl-dev] [openssl.org #4111] [PATCH] fix ssl3_free NULL dereference on out of memory condition

2015-10-27 Thread Willy TARREAU via RT
This patch fixes a NULL dereference issue when SSL_new() fails due to a low memory condition. Here it is possible that ssl3_new() fails, but despite this ssl3_free() is called along the error path and doesn't check that s->s3 is valid before dereferencing it. The first victim here is ssl3_cleanup_k

[openssl-dev] [openssl.org #4110] [PATCH] fix ssl_new() error handling on out of memory condition

2015-10-27 Thread Willy TARREAU via RT
This patch fixes a reference issue when SSL_new() fails due to a low memory condition. What happens is that a few error checks end up with a "goto err" statement which calls SSL_free() to clear what was allocated, but since this function first checks that s->references was exactly one before procee

[openssl-dev] [openssl.org #4109] Re: Error installing openssl version 1.0.2

2015-10-27 Thread Dhruv Bhatt via RT
Hi, I am trying to install openssl version 1.0.2. What I do: 1. tar the version openssl-1.0.2 2. cd to that directory . 3. ./config —prefix=<> —openssldir=<> 4. make Issue is something with crypto/modes/ghash-x86_64.s file at line 890. junk ‘’ after expression. Has this issue been fixed? Als

Re: [openssl-dev] Building OpenSSL on Windows

2015-10-27 Thread Jan Ehrhardt
Tom Kacvinsky in gmane.comp.encryption.openssl.devel (Tue, 27 Oct 2015 13:15:45 -0400): >I've seen several messages float by about building OpenSSL on Windows. My >understanding is that I'll need a Perl distribution, in addition to a >specific assembler (MS's Macro Assemble is not up to the task i

Re: [openssl-dev] Building OpenSSL on Windows

2015-10-27 Thread John Foley
Take a look at the INSTALL.W32 file in the tarball. This details all the requirements and steps to compile the code. On 10/27/2015 01:15 PM, Tom Kacvinsky wrote: > Hi, > > I've seen several messages float by about building OpenSSL on > Windows. My understanding is that I'll need a Perl distribu

[openssl-dev] Building OpenSSL on Windows

2015-10-27 Thread Tom Kacvinsky
Hi, I've seen several messages float by about building OpenSSL on Windows. My understanding is that I'll need a Perl distribution, in addition to a specific assembler (MS's Macro Assemble is not up to the task is what I gather). Anything else I need to be aware of? I will be building in a DOS s