Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update of "Prohibited TLS 1.2 Cipher Suites" #825

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 23 additions & 4 deletions draft-ietf-httpbis-http2bis.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4835,7 +4835,7 @@
</references>
</references>
<section anchor="BadCipherSuites">
<name>Prohibited TLS 1.2 Cipher Suites</name>
<name>Prohibited TLS 1.2 Cipher Suites and PskKeyExchangeModes</name>
<t>
An HTTP/2 implementation MAY treat the negotiation of any of the following cipher suites
with TLS 1.2 as a <xref target="ConnectionErrorHandler">connection error</xref> of type
Expand Down Expand Up @@ -5118,13 +5118,32 @@
<li>TLS_PSK_WITH_AES_256_CCM</li>
<li>TLS_PSK_WITH_AES_128_CCM_8</li>
<li>TLS_PSK_WITH_AES_256_CCM_8</li>
<li>TLS_PSK_WITH_CHACHA20_POLY1305_SHA256</li>
<li>TLS_RSA_PSK_WITH_CHACHA20_POLY1305_SHA256</li>
</ul>
<t>
An HTTP/2 implementation MAY treat the negotiation of any of the following cipher suites
with TLS 1.3 as a <xref target="ConnectionErrorHandler">connection error</xref> of type
<xref target="INADEQUATE_SECURITY" format="none">INADEQUATE_SECURITY</xref>:
</t>
<ul spacing="compact">
<li>TLS_SHA256_SHA256</li>
<li>TLS_SHA384_SHA384</li>
</ul>
<t>
An HTTP/2 implementation MAY treat the negotiation of any of the following PskKeyExchangeModes
with TLS 1.3 as a <xref target="ConnectionErrorHandler">connection error</xref> of type
<xref target="INADEQUATE_SECURITY" format="none">INADEQUATE_SECURITY</xref>:
</t>
<ul spacing="compact">
<li>psk_ke</li>
</ul>
<aside>
<t>Note:
This list was assembled from the set of registered TLS cipher suites at the time of
writing. This list includes those cipher suites that do not offer an ephemeral key
This list was assembled from the set of registered TLS cipher suites and PskKeyExchangeModes at the time of
writing. This list includes those cipher suites and PskKeyExchangeMode that do not offer an ephemeral key
exchange and those that are based on the TLS null, stream, or block cipher type (as
defined in <xref target="TLS12" section="6.2.3"/>). Additional cipher suites with
defined in <xref target="TLS12" section="6.2.3"/>). Additional cipher suites or PskKeyExchangeMode with
these properties could be defined; these would not be explicitly prohibited.
</t>
</aside>
Expand Down