Lines Matching refs:options

7 SSL_get_secure_renegotiation_support - manipulate SSL options
13 uint64_t SSL_CTX_set_options(SSL_CTX *ctx, uint64_t options);
14 uint64_t SSL_set_options(SSL *ssl, uint64_t options);
16 uint64_t SSL_CTX_clear_options(SSL_CTX *ctx, uint64_t options);
17 uint64_t SSL_clear_options(SSL *ssl, uint64_t options);
26 SSL_CTX_set_options() adds the options set via bit-mask in B<options> to B<ctx>.
29 SSL_set_options() adds the options set via bit-mask in B<options> to B<ssl>.
32 SSL_CTX_clear_options() clears the options set via bit-mask in B<options>
35 SSL_clear_options() clears the options set via bit-mask in B<options> to B<ssl>.
37 SSL_CTX_get_options() returns the options set for B<ctx>.
39 SSL_get_options() returns the options set for B<ssl>.
47 The behaviour of the SSL library can be changed by setting several options.
48 The options are coded as bit-masks and can be combined by a bitwise B<or>
61 The following B<bug workaround> options are available:
96 options if compatibility with somewhat broken implementations is
99 The following B<modifying> options are available:
256 These options turn off the SSLv3, TLSv1, TLSv1.1, TLSv1.2 or TLSv1.3 protocol
259 As of OpenSSL 1.1.0, these options are deprecated, use
322 The following options no longer have any effect but their identifiers are
410 B<SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION> options is that
418 SSL_CTX_set_options() and SSL_set_options() return the new options bit-mask
419 after adding B<options>.
421 SSL_CTX_clear_options() and SSL_clear_options() return the new options bit-mask
422 after clearing B<options>.
441 The B<SSL_OP_PRIORITIZE_CHACHA> and B<SSL_OP_NO_RENEGOTIATION> options
445 options were added in OpenSSL 3.0.