Re: [openssl-users] Wording in OpenSSL documentation for SSL_CTX_set_options

2016-08-04 Thread Julien ÉLIE
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

[openssl-users] Wording in OpenSSL documentation for SSL_CTX_set_options

2016-07-29 Thread Julien ÉLIE
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

RE: SSL_CTX_set_options not working for SSL_OP_NO_TLSv1_1

2012-09-03 Thread Jahn, Gerhard
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

RE: SSL_CTX_set_options not working for SSL_OP_NO_TLSv1_1

2012-09-03 Thread Jahn, Gerhard
__ 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

RE: SSL_CTX_set_options not working for SSL_OP_NO_TLSv1_1

2012-08-31 Thread Erik Tkal
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

SSL_CTX_set_options not working for SSL_OP_NO_TLSv1_1

2012-08-31 Thread Jahn, Gerhard
(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_

SSL_CTX_set_options

2000-09-08 Thread Fung
Do anyone know what does SSL_CTX_set_options affect the behaviour of SSL_CTX??? Thanks