Searched refs:SSL_OP_ALL (Results 1 – 25 of 26) sorted by relevance
12
/third_party/nghttp2/src/ |
D | asio_server_tls_context.cc | 67 auto ssl_opts = (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) | in configure_tls_context_easy()
|
D | shrpx_tls.cc | 798 (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) | SSL_OP_NO_SSLv2 | in create_ssl_context() 1107 constexpr auto ssl_opts = (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) | in create_ssl_client_context()
|
D | HttpServer.cc | 2114 auto ssl_opts = (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) | in run()
|
D | h2load.cc | 2472 auto ssl_opts = (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) | in main()
|
D | nghttp.cc | 2278 auto ssl_opts = (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) | in communicate()
|
/third_party/boost/boost/asio/ssl/ |
D | context_base.hpp | 139 BOOST_ASIO_STATIC_CONSTANT(long, default_workarounds = SSL_OP_ALL);
|
/third_party/openssl/apps/ |
D | s_time.c | 201 SSL_CTX_set_options(ctx, SSL_OP_ALL); in s_time_main()
|
/third_party/openssl/ssl/ |
D | ssl_conf.c | 380 SSL_FLAG_TBL("Bugs", SSL_OP_ALL), in cmd_Options() 694 {SSL_OP_ALL, 0}, /* bugs */
|
/third_party/node/src/ |
D | node_constants.cc | 805 #ifdef SSL_OP_ALL in DefineCryptoConstants() 806 NODE_DEFINE_CONSTANT(target, SSL_OP_ALL); in DefineCryptoConstants()
|
/third_party/openssl/doc/man3/ |
D | SSL_CTX_set_options.pod | 83 =item SSL_OP_ALL 90 It is usually safe to use B<SSL_OP_ALL> to enable the bug workaround
|
D | SSL_CONF_cmd.pod | 171 Various bug workarounds are set, same as setting B<SSL_OP_ALL>. 444 B<Bugs>: enable various bug workarounds. Same as B<SSL_OP_ALL>.
|
/third_party/nghttp2/examples/ |
D | libevent-client.c | 337 SSL_OP_ALL | SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3 | in create_ssl_ctx()
|
D | client.c | 376 SSL_CTX_set_options(ssl_ctx, SSL_OP_ALL | SSL_OP_NO_SSLv2); in init_ssl_ctx()
|
D | libevent-server.c | 153 SSL_OP_ALL | SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3 | in create_ssl_ctx()
|
/third_party/skia/third_party/externals/microhttpd/src/testspdy/ |
D | test_new_connection.c | 490 SSL_CTX_set_options(ssl_ctx, SSL_OP_ALL|SSL_OP_NO_SSLv2); in init_ssl_ctx()
|
D | test_request_response.c | 478 SSL_CTX_set_options(ssl_ctx, SSL_OP_ALL|SSL_OP_NO_SSLv2); in init_ssl_ctx()
|
/third_party/skia/third_party/externals/microhttpd/src/examples/ |
D | mhd2spdy_spdy.c | 543 SSL_CTX_set_options(ssl_ctx, SSL_OP_ALL|SSL_OP_NO_SSLv2 | SSL_OP_NO_COMPRESSION); in spdy_ssl_init_ssl_ctx()
|
/third_party/nghttp2/doc/sources/ |
D | tutorial-client.rst | 58 SSL_OP_ALL | SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3 |
|
/third_party/python/Modules/ |
D | _ssl.c | 3192 options = SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS; in _ssl__SSLContext_impl() 6231 SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS); in PyInit__ssl()
|
/third_party/openssl/include/openssl/ |
D | ssl.h | 405 # define SSL_OP_ALL (SSL_OP_CRYPTOPRO_TLSEXT_BUG|\ macro
|
/third_party/boringssl/src/include/openssl/ |
D | ssl.h | 4286 #define SSL_OP_ALL 0 macro
|
/third_party/curl/lib/vtls/ |
D | openssl.c | 2720 ctx_options = SSL_OP_ALL; in ossl_connect_step1()
|
/third_party/openssl/ |
D | NEWS | 393 o Fix SSL_OP_NO_TLSv1_1 clash with SSL_OP_ALL in OpenSSL 1.0.0
|
D | CHANGES | 3821 *) Add option SSL_OP_SAFARI_ECDHE_ECDSA_BUG (part of SSL_OP_ALL) which 3898 *) OpenSSL 1.0.0 sets SSL_OP_ALL to 0x80000FFFL and OpenSSL 1.0.1 and 3901 SSL_OP_ALL would also set SSL_OP_NO_TLSv1_1, unintentionally disabling 6046 (part of SSL_OP_ALL). This option used to disable the 7024 (part of SSL_OP_ALL). This option used to disable the 7386 behaviour is masked when SSL_OP_ALL is used due to 7932 SSL_OP_ALL is now 0x00000FFFL instead of 0x000FFFFFL. This makes 7934 SSL_OP_ALL (such as SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION). 8046 *) Move SSL_OP_TLS_ROLLBACK_BUG out of the SSL_OP_ALL list of recommended 9314 SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG (part of SSL_OP_ALL) was set. [all …]
|
/third_party/python/Doc/library/ |
D | ssl.rst | 751 flags as OpenSSL's ``SSL_OP_ALL`` constant.
|
12