Re: Implementing TLSv1.2 protocol

2013-08-30 Thread Viktor Dukhovni
On Fri, Aug 30, 2013 at 09:46:11AM -0400, The Phoenix wrote: > I am newbee to openssl stuff. My application just need to run only on > TLSv1.2 protocol. Which one is the correct way of implementing it: When you say only, do you mean only this specific version, or TLSv1.2 or later (when someday TL

Implementing TLSv1.2 protocol

2013-08-30 Thread The Phoenix
Hi, I am newbee to openssl stuff. My application just need to run only on TLSv1.2 protocol. Which one is the correct way of implementing it: First Way: context = SSL_CTX_new(TLSv1_2_method()); Second way: context = SSL_CTX_new( SSLv23_method() ); SSL_CTX_set_options( context, SSL_OP_NO_SSLv2 |

Re: Implementing TLSv1.2 protocol

2013-08-30 Thread Stacy Devino
What are you using to access the OpenSSL libs? You can do some special code changes in OpenVPN to force TLS 1.2 on the control and data channels. You also define it in the access of your application On Fri, Aug 30, 2013 at 8:46 AM, The Phoenix wrote: > Hi, > > I am newbee to openssl stuff.