Re: SSL_OP_NO_TLSv1_1 doesn't seem to disable TLS 1.1 and above protocols on Openssl 1.0.1e

2013-03-19 Thread Jakob Bohm
On 3/18/2013 10:29 PM, Santhosh Kokala wrote: Hi, The application I am working on should not support TLS 1.1 and above protocols. I am using SSL_CTX_set_options( ctx, SSL_OP_NO_TLSv1_1); to disable the same after creating the SSL context. But it doesn’t seem to disable the TLS1.1 and TLS1.2 prot

SSL_OP_NO_TLSv1_1 doesn't seem to disable TLS 1.1 and above protocols on Openssl 1.0.1e

2013-03-18 Thread Santhosh Kokala
Hi, The application I am working on should not support TLS 1.1 and above protocols. I am using SSL_CTX_set_options( ctx, SSL_OP_NO_TLSv1_1); to disable the same after creating the SSL context. But it doesn't seem to disable the TLS1.1 and TLS1.2 protocols Code Snippet: SSL_CTX *c = SSL_CTX_new