Re: [openssl-users] renegotiate across exec()

2018-03-01 Thread Jakob Bohm
On 02/03/2018 06:44, Viktor Dukhovni wrote: On Mar 1, 2018, at 10:39 PM, Felipe Gasper wrote: Hi all, I’ve got a project where I’m trying to send a Hello Request from the server immediately before an exec(), then renegotiate the SSL connection.

Re: [openssl-users] renegotiate across exec()

2018-03-01 Thread Viktor Dukhovni
> On Mar 1, 2018, at 10:39 PM, Felipe Gasper wrote: > > Hi all, > > I’ve got a project where I’m trying to send a Hello Request from the > server immediately before an exec(), then renegotiate the SSL connection. > > What is the easiest way to send

[openssl-users] renegotiate across exec()

2018-03-01 Thread Felipe Gasper
Hi all, I’ve got a project where I’m trying to send a Hello Request from the server immediately before an exec(), then renegotiate the SSL connection. What is the easiest way to send *just* a Hello Request from a server? Thanks! -Felipe Gasper Mississauga, Ontario --

Re: [openssl-users] FIPS 140-2 key wrapping transition

2018-03-01 Thread Zeke Evans
I am trying to understand how validation #1747 is affected by the key wrapping transition. As far as I can tell, the FIPS module does not contain a key wrapping algorithm per se but only provides approved methods that a key wrapping algorithm could use. Does FIPS 2.0 contain approved methods

Re: [openssl-users] OpenSSL 1.1.1pre2 alpha build error: MS Windows 32 bit

2018-03-01 Thread Norm Green
SSL version-specific?  SSL 1.1.0 builds clean on the same machine I'm wondering if the solution is code changes or On 3/1/18 04:27, Andy Polyakov wrote: I mean it might happen that it's not version-specific... -- openssl-users mailing list To unsubscribe:

Re: [openssl-users] compiling cups-1.4.3 w/ OpenSSL 1.10 && BIO_METHOD

2018-03-01 Thread Salz, Rich via openssl-users
Yes, you will have to create the BIO object at run-time and use the settor methods. -- openssl-users mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users

Re: [openssl-users] OpenSSL 1.1.1pre2 alpha build error: MS Windows 32 bit

2018-03-01 Thread Andy Polyakov
On 03/01/18 01:46, Norm Green wrote: > It looks like 32 bit builds set the -WX flag (treat warnings as errors) > while the 64 bit builds don't. > > >     cl  -W3 -wd4090 -Gs0 -GF -Gy -nologo /MDd /Od -WX /Zi > /Fdossl_static /I "." /I "crypto\include" /I "include" /I >

[openssl-users] compiling cups-1.4.3 w/ OpenSSL 1.10 && BIO_METHOD

2018-03-01 Thread Matthias Apitz
Hello, Compiling cups-1.4.3 against OpenSSL 1.10 gives the following error: ... Compiling http.c... http.c:216: error: variable `http_bio_methods' has initializer but incomplete type the code in question is: #if defined(HAVE_SSL) && defined(HAVE_LIBSSL) /* * BIO methods for OpenSSL... */