RE: segfault in libcrypto

2012-12-03 Thread Dave Thompson
>From: owner-openssl-us...@openssl.org On Behalf Of Jeremy Mortis >Sent: Friday, 30 November, 2012 14:24 >I'm having an issue where wget (and curl) segfaults in libcrypto >when trying to access a particular https site. >The site can be accessed via IE or Firefox without problems. >I'm

Re: masm support in latest 1.x release?

2012-12-03 Thread Pierre Joye
hi Jeremy, Thanks for the reply! I read the doc, but missed the section before Visual C++ as it was what I was always doing :) Cheers, On Mon, Dec 3, 2012 at 9:12 PM, Jeremy Farrell wrote: >> From: Pierre Joye [mailto:pierre@gmail.com] >> Sent: Monday, December 03, 2012 9:22 AM >> >> While

RE: masm support in latest 1.x release?

2012-12-03 Thread Jeremy Farrell
> From: Pierre Joye [mailto:pierre@gmail.com] > Sent: Monday, December 03, 2012 9:22 AM > > While upgrading openssl to 1.x serie, I noticed that ms\do_masm.bat is > not present anymore. > > Running: > > perl Configure --openssldir=C:/phpbuild/apps_install/ VC-WIN32 enable- > camillia > > fo

Re: BIO/SSL concepts and multiple connections

2012-12-03 Thread TJ
Thanks, but that file is hardly commented at all and just makes it more confusing... On 4 December 2012 00:30, Daniel Black wrote: > On 03/12/12 14:25, TJ wrote: >> Can someone please explain these concepts to me? I can't find much >> that explains it in plain English in the docs... > > I'd sugge

Re: BIO/SSL concepts and multiple connections

2012-12-03 Thread Daniel Black
On 03/12/12 14:25, TJ wrote: > Can someone please explain these concepts to me? I can't find much > that explains it in plain English in the docs... I'd suggest using the apps/s_server.c of the openssl source as a reference. Its the implementation of the command "openssl s_server" and will contain

openssl 1.x masm support?

2012-12-03 Thread Pierre Joye
hi! While upgrading openssl to 1.x serie, I noticed that ms\do_masm.bat is not present anymore. Running: perl Configure --openssldir=C:/phpbuild/apps_install/ VC-WIN32 enable-camillia forces nasm in the makefile: 52: ASM=nasm -f win32 Is it on purpose or is ml still supported? Thanks! Cheer

loading and saving the private key to PEM file using CAPI engine

2012-12-03 Thread LN
Hi, I'm using the OpenSSL CAPI engine and ENGINE_load_private_key to load the private key for a certificate in the windows certificate store. After loading the private key, I try to save it to a PEM file with PEM_write_bio_PrivateKey (or PEM_write_bio_RSAPrivateKey). The problem is that when I

masm support in latest 1.x release?

2012-12-03 Thread Pierre Joye
hi! While upgrading openssl to 1.x serie, I noticed that ms\do_masm.bat is not present anymore. Running: perl Configure --openssldir=C:/phpbuild/apps_install/ VC-WIN32 enable-camillia forces nasm in the makefile: 52: ASM=nasm -f win32 Is it on purpose or is ml still supported? Thanks! Cheer

Re: OCSP Responder

2012-12-03 Thread Jakob Bohm
On 11/30/2012 10:32 PM, Dave Thompson wrote: ... Hint: OCSP transport is NOT SSL/TLS. It is HTTP-based. In principle it can be HTTPS, but normally needn't because it is signed and cert data is public anyway, and OpenSSL commandline responder only does HTTP (and a very minimal HTTP at that). s_c