Re: [openssl-dev] TLS 1.3 client hello issue

2017-09-18 Thread Mahesh Bhoothapuri
Thanks for responding. Yes, I have done the steps mentioned above. Here are my settings: int min_version = TLS1_3_VERSION, max_version = TLS1_3_VERSION; meth = isClient ? tlsv1_3_client_method() : tlsv1_3_server_method(); //meth = isClient ? TLS_client_method() :

Re: [openssl-dev] TLS 1.3 client hello issue

2017-09-18 Thread Benjamin Kaduk via openssl-dev
On 09/18/2017 01:07 AM, Mahesh Bhoothapuri wrote: > > Hi, > > I am sending a Tls 1.3 client hello, and am seeing an issue with > > ossl_statem_client_write_transition in statem_clnt.c. > > >     /* > * Note that immediately before/after a ClientHello we don't know what > * version we are

[openssl-dev] TLS 1.3 client hello issue

2017-09-18 Thread Mahesh Bhoothapuri
Hi, I am sending a Tls 1.3 client hello, and am seeing an issue with ossl_statem_client_write_transition in statem_clnt.c. /* * Note that immediately before/after a ClientHello we don't know what * version we are going to negotiate yet, so we don't take this branch until *