n for SSL_CTX_set_options
Date : Fri, 29 Jul 2016 21:15:16 +0200
Hi,
In a recent discussion in the news.software.nntp newsgroup, we discussed
the use of SSL_OP_CIPHER_SERVER_PREFERENCE, and would like to point out
a possible improvement in the wording of the documentation of
SSL_CTX_set_op
Hi,
In a recent discussion in the news.software.nntp newsgroup, we discussed
the use of SSL_OP_CIPHER_SERVER_PREFERENCE, and would like to point out
a possible improvement in the wording of the documentation of
SSL_CTX_set_options.
Currently, there is in OpenSSL documentation:
https
d its attachments from
your system. Thank you.
From: owner-openssl-us...@openssl.org [mailto:owner-openssl-us...@openssl.org]
On Behalf Of Erik Tkal
Sent: Friday, August 31, 2012 10:01 PM
To: openssl-users@openssl.org
Subject: RE: SSL_CTX_set_options not workin
__
From: owner-openssl-us...@openssl.org [mailto:owner-openssl-us...@openssl.org]
On Behalf Of Erik Tkal
Sent: Friday, August 31, 2012 10:01 PM
To: openssl-users@openssl.org
Subject: RE: SSL_CTX_set_options not working for SSL_OP_NO_TLSv1_1
Hi Gerhard,
I have been playing with those
Jahn, Gerhard
Sent: Friday, August 31, 2012 5:33 AM
To: 'openssl-users@openssl.org'
Subject: SSL_CTX_set_options not working for SSL_OP_NO_TLSv1_1
Hello,
I'm usinng OpenSSL 1.0.1c in my Server application.
This application can be configured to disallow accepting certain SSL/TLS
protoc
(meth);
.....
SSL_CTX_set_options(OpenSSLctx, SSL_OP_NO_SSLv2); // never use SSL2
if (!allowed_ssl3)
SSL_CTX_set_options(OpenSSLctx, SSL_OP_NO_SSLv3);
if (!allowed_tls1)
SSL_CTX_set_options(OpenSSLctx, SSL_OP_NO_TLSv1);
if (!allowed_tls11)
SSL_CTX_set_options(OpenSSLctx, SSL_OP_NO_TLSv1_1);
if (!allowed_
Do anyone know what does SSL_CTX_set_options affect the
behaviour of SSL_CTX???
Thanks