@@ -3192,6 +3192,11 @@ the `crypto`, `tls`, and `https` modules and are generally specific to OpenSSL.
31923192 <a href="https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html">https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html</a>
31933193 for detail.</td>
31943194 </tr >
3195+ <tr >
3196+ <td><code>SSL_OP_ALLOW_NO_DHE_KEX</code></td>
3197+ <td>Instructs OpenSSL to allow a non-[EC]DHE-based key exchange mode
3198+ for TLS v1.3</td>
3199+ </tr >
31953200 <tr >
31963201 <td><code>SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION</code></td>
31973202 <td>Allows legacy insecure renegotiation between OpenSSL and unpatched
@@ -3264,10 +3269,18 @@ the `crypto`, `tls`, and `https` modules and are generally specific to OpenSSL.
32643269 <td><code>SSL_OP_NO_COMPRESSION</code></td>
32653270 <td>Instructs OpenSSL to disable support for SSL/TLS compression.</td>
32663271 </tr >
3272+ <tr >
3273+ <td><code>SSL_OP_NO_ENCRYPT_THEN_MAC</code></td>
3274+ <td>Instructs OpenSSL to disable encrypt-then-MAC.</td>
3275+ </tr >
32673276 <tr >
32683277 <td><code>SSL_OP_NO_QUERY_MTU</code></td>
32693278 <td></td>
32703279 </tr >
3280+ <tr >
3281+ <td><code>SSL_OP_NO_RENEGOTIATION</code></td>
3282+ <td>Instructs OpenSSL to disable renegotiation.</td>
3283+ </tr >
32713284 <tr >
32723285 <td><code>SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION</code></td>
32733286 <td>Instructs OpenSSL to always start a new session when performing
@@ -3296,6 +3309,10 @@ the `crypto`, `tls`, and `https` modules and are generally specific to OpenSSL.
32963309 <tr >
32973310 <td><code>SSL_OP_NO_TLSv1_2</code></td>
32983311 <td>Instructs OpenSSL to turn off TLS v1.2</td>
3312+ </tr >
3313+ <tr >
3314+ <td><code>SSL_OP_NO_TLSv1_3</code></td>
3315+ <td>Instructs OpenSSL to turn off TLS v1.3</td>
32993316 </tr >
33003317 <td><code>SSL_OP_PKCS1_CHECK_1</code></td>
33013318 <td></td>
@@ -3304,6 +3321,14 @@ the `crypto`, `tls`, and `https` modules and are generally specific to OpenSSL.
33043321 <td><code>SSL_OP_PKCS1_CHECK_2</code></td>
33053322 <td></td>
33063323 </tr >
3324+ <tr >
3325+ <td><code>SSL_OP_PRIORITIZE_CHACHA</code></td>
3326+ <td>Instructs OpenSSL server to prioritize ChaCha20Poly1305
3327+ when client does.
3328+ This option has no effect if
3329+ <code>SSL_OP_CIPHER_SERVER_PREFERENCE</code>
3330+ is not enabled.</td>
3331+ </tr >
33073332 <tr >
33083333 <td><code>SSL_OP_SINGLE_DH_USE</code></td>
33093334 <td>Instructs OpenSSL to always create a new key when using
0 commit comments