Re: [openssl-users] AECDH problem: works in 1.0.2, fails in 1.1

2016-12-14 Thread Norm Green
That was it. Thanks Matt! On 12/13/16 15:48, Matt Caswell wrote: On 13/12/16 21:09, Norm Green wrote: I have a simple C program that works in 1.0.2 but fails with the same code in 1.1. Here's the psuedo code for the client and server: Server: const SSL_METHOD *meth =

Re: [openssl-users] AECDH problem: works in 1.0.2, fails in 1.1

2016-12-13 Thread Matt Caswell
On 13/12/16 21:09, Norm Green wrote: > I have a simple C program that works in 1.0.2 but fails with the same > code in 1.1. > Here's the psuedo code for the client and server: > > Server: > const SSL_METHOD *meth = TLSv1_2_server_method(); > SSL_CTX *ctx = SSL_CTX_new(meth); >

[openssl-users] AECDH problem: works in 1.0.2, fails in 1.1

2016-12-13 Thread Norm Green
I have a simple C program that works in 1.0.2 but fails with the same code in 1.1. Here's the psuedo code for the client and server: Server: const SSL_METHOD *meth = TLSv1_2_server_method(); SSL_CTX *ctx = SSL_CTX_new(meth); SSL_CTX_set_ecdh_auto(ctx, 1); SSL_CTX_set_mode(ctx,