I am working on a SSL client server application. I want to enable all protocols above TLSv1 so what i am doing is
1)sslctx = SSL_CTX_new(SSLv23_method());
2)SSL_CTX_set_options(sslctx,SSL_OP_NO_SSLv2|SSL_OP_NO_SSLv3|SSL_OP_NO_TLSv1);
3)SSL_set_ssl_method(ssl,TLSv1_2_method());
The doubt that i have is will i also be able to connect using TLSv1_1 if i use TLSv1_2_method in SSL_set_ssl_method or will it only support TLSv1_2?
I want to support everything above TLSv1?
Thanks in advance.