<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.6.2 (Ruby 3.0.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-tls-external-psk-importer-07" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.3 -->
  <front>
    <title abbrev="Importing External PSKs for TLS">Importing External PSKs for TLS</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-tls-external-psk-importer-07"/>
    <author initials="D." surname="Benjamin" fullname="David Benjamin">
      <organization>Google, LLC.</organization>
      <address>
        <email>davidben@google.com</email>
      </address>
    </author>
    <author initials="C. A." surname="Wood" fullname="Christopher A. Wood">
      <organization>Cloudflare</organization>
      <address>
        <email>caw@heapingbits.net</email>
      </address>
    </author>
    <date year="2022" month="March" day="07"/>
    <area>General</area>
    <workgroup>tls</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>This document describes an interface for importing external Pre-Shared Keys (PSKs)
into TLS 1.3.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Source for this draft and an issue tracker can be found at
  <eref target="https://github.com/tlswg/draft-ietf-tls-external-psk-importer"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>TLS 1.3 <xref target="RFC8446"/> supports Pre-Shared Key (PSK) authentication, wherein PSKs
can be established via session tickets from prior connections or externally via some out-of-band
mechanism. The protocol mandates that each PSK only be used with a single hash function.
This was done to simplify protocol analysis. TLS 1.2 <xref target="RFC5246"/>, in contrast,
has no such requirement, as a PSK may be used with any hash algorithm and the
TLS 1.2 pseudorandom function (PRF). While there is no known way in which the same
external PSK might produce related output in TLS 1.3 and prior versions, only limited
analysis has been done. Applications SHOULD provision separate PSKs for TLS 1.3 and
prior versions. In cases where this is not possible, e.g., there are already deployed
external PSKs or provisioning is otherwise limited, re-using external PSKs across different
versions of TLS may produce related outputs, which may in turn lead to security problems;
see <xref target="RFC8446"/>, Section E.7.</t>
      <t>To mitigate against such problems, this document specifies a PSK Importer
interface by which external PSKs may be imported and subsequently bound to a specific
key derivation function (KDF) and hash function for use in TLS 1.3 <xref target="RFC8446"/>
and DTLS 1.3 <xref target="DTLS13"/>. In particular,
it describes a mechanism for differentiating external PSKs by the target KDF, (D)TLS
protocol version, and an optional context string. This process yields a set of candidate
PSKs, each of which are bound to a target KDF and protocol, that are separate from those
used in (D)TLS 1.2 and prior versions. This expands what would normally have been a single
PSK and identity into a set of PSKs and identities.</t>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD",
"SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/>
when, and only when, they appear in all capitals, as shown here.</t>
    </section>
    <section anchor="overview">
      <name>Overview</name>
      <t>The PSK Importer interface mirrors that of the TLS Exporters interface in that
it diversifies a key based on some contextual information. In contrast to the Exporters
interface, wherein differentiation is done via an explicit label and context string,
the PSK Importer interface defined herein takes an external PSK and identity and
"imports" it into TLS, creating a set of "derived" PSKs and identities. Each of these
derived PSKs are bound a target protocol, KDF identifier, and optional context string.
Additionally, the resulting PSK binder keys are modified with a new derivation label
to prevent confusion with non-imported PSKs. Through this interface, importing external
PSKs with different identities yields distinct PSK binder keys.</t>
      <t>Imported keys do not require negotiation for use since a client and server will not agree upon
identities if imported incorrectly. Endpoints may incrementally deploy PSK Importer support
by offering non-imported keys for TLS versions prior to TLS 1.3. Non-imported and imported PSKs
are distinct since their identities are different on the wire. See <xref target="rollout"/> for more details.</t>
      <t>Endpoints which import external keys MUST NOT use the keys that are input to the
import process for any purpose other than the importer, and MUST NOT use the derived
keys for any purpose other than TLS PSKs. Moreover, each external PSK fed to the
importer process MUST be associated with at most one hash function.  This
is analogous to the rules in Section 4.2.11 of <xref target="RFC8446"/>. See <xref target="security-considerations"/> for
more discussion.</t>
      <section anchor="terminology">
        <name>Terminology</name>
        <t>The following terms are used throughout this document:</t>
        <ul spacing="normal">
          <li>External PSK (EPSK): A PSK established or provisioned out-of-band, i.e., not from a TLS
connection, which is a tuple of (Base Key, External Identity, Hash).</li>
          <li>Base Key: The secret value of an EPSK.</li>
          <li>External Identity: A sequence of bytes used to identify an EPSK.</li>
          <li>Target protocol: The protocol for which a PSK is imported for use.</li>
          <li>Target KDF: The KDF for which a PSK is imported for use.</li>
          <li>Imported PSK (IPSK): A PSK derived from an EPSK, optional context string,
target protocol, and target KDF.</li>
          <li>Imported Identity: A sequence of bytes used to identify an IPSK.</li>
        </ul>
        <t>This document uses presentation language from <xref target="RFC8446"/>, Section 3.</t>
      </section>
    </section>
    <section anchor="psk-import">
      <name>PSK Import</name>
      <t>This section describes the PSK Importer interface and its underlying diversification
mechanism and binder key computation modification.</t>
      <section anchor="external-psk-diversification">
        <name>External PSK Diversification</name>
        <t>The PSK Importer interface takes as input an EPSK with External Identity <tt>external_identity</tt> and base key <tt>epsk</tt>,
as defined in <xref target="terminology"/>, along with an optional context, and transforms it into a set of PSKs
and imported identities for use in a connection based on target protocols and KDFs.
In particular, for each supported target protocol <tt>target_protocol</tt> and KDF <tt>target_kdf</tt>,
the importer constructs an ImportedIdentity structure as follows:</t>
        <artwork><![CDATA[
struct {
   opaque external_identity<1...2^16-1>;
   opaque context<0..2^16-1>;
   uint16 target_protocol;
   uint16 target_kdf;
} ImportedIdentity;
]]></artwork>
        <t>The list of ImportedIdentity.target_kdf values is maintained by IANA as described in <xref target="IANA"/>.
External PSKs MUST NOT be imported for (D)TLS 1.2 or prior versions. See <xref target="rollout"/> for discussion on
how imported PSKs for TLS 1.3 and non-imported PSKs for earlier versions co-exist for incremental
deployment.</t>
        <t>ImportedIdentity.context MUST include the context used to determine the EPSK, if any exists.
For example, ImportedIdentity.context may include information about peer roles or identities
to mitigate Selfie-style reflection attacks <xref target="Selfie"/>. See <xref target="mitigate-selfie"/> for more details.
If the EPSK is a key derived from some other protocol or sequence of protocols,
ImportedIdentity.context MUST include a channel binding for the deriving protocols
<xref target="RFC5056"/>. The details of this binding are protocol specific and out of scope for
this document.</t>
        <t>ImportedIdentity.target_protocol MUST be the (D)TLS protocol version for which the
PSK is being imported. For example, TLS 1.3 <xref target="RFC8446"/> uses 0x0304, which will
therefore also be used by QUICv1 <xref target="QUIC"/>. Note that this
means future versions of TLS will increase the number of PSKs derived from an external
PSK.</t>
        <t>Given an ImportedIdentity and corresponding EPSK with base key <tt>epsk</tt>, an Imported PSK
IPSK with base key <tt>ipskx</tt> is computed as follows:</t>
        <artwork><![CDATA[
   epskx = HKDF-Extract(0, epsk)
   ipskx = HKDF-Expand-Label(epskx, "derived psk",
                             Hash(ImportedIdentity), L)
]]></artwork>
        <t>L corresponds to the KDF output length of ImportedIdentity.target_kdf as defined in <xref target="IANA"/>.
For hash-based KDFs, such as HKDF_SHA256(0x0001), this is the length of the hash function
output, e.g., 32 octets for SHA256. This is required for the IPSK to be of length suitable
for supported ciphersuites. Internally, HKDF-Expand-Label uses a label corresponding to
ImportedIdentity.target_protocol, e.g., "tls13" for TLS 1.3, as per <xref target="RFC8446"/>, Section 7.1,
or "dtls13" for DTLS 1.3, as per <xref target="I-D.ietf-tls-dtls13"/>, Section 5.10.</t>
        <t>The identity of <tt>ipskx</tt> as sent on the wire is ImportedIdentity, i.e., the serialized content
of ImportedIdentity is used as the content of PskIdentity.identity in the PSK extension.
The corresponding PSK input for the TLS 1.3 key schedule is 'ipskx'.</t>
        <t>As the maximum size of the PSK extension is 2^16 - 1 octets, an Imported Identity that exceeds 
this size is likely to cause a decoding error. Therefore, the PSK Importer interface SHOULD reject 
any ImportedIdentity that exceeds this size.</t>
        <t>The hash function used for HKDF <xref target="RFC5869"/> is that which is associated with the EPSK.
It is not the hash function associated with ImportedIdentity.target_kdf. If no hash function
is specified, SHA-256 <xref target="SHA2"/> SHOULD be used. Diversifying EPSK by ImportedIdentity.target_kdf ensures
that an IPSK is only used as input keying material to at most one KDF, thus satisfying
the requirements in <xref target="RFC8446"/>. See <xref target="security-considerations"/> for more details.</t>
        <t>Endpoints SHOULD generate a compatible <tt>ipskx</tt> for each target ciphersuite they offer.
For example, importing a key for TLS_AES_128_GCM_SHA256 and TLS_AES_256_GCM_SHA384 would
yield two PSKs, one for HKDF-SHA256 and another for HKDF-SHA384. In contrast, if
TLS_AES_128_GCM_SHA256 and TLS_CHACHA20_POLY1305_SHA256 are supported, only one
derived key is necessary. Each ciphersuite uniquely identifies the target KDF.
Future specifications that change the way the KDF is negotiated will need to update this
specification to make clear how target KDFs are determined for the import process.</t>
        <t>EPSKs MAY be imported before the start of a connection if the target KDFs, protocols, and
context string(s) are known a priori. EPSKs MAY also be imported for early data use
if they are bound to the protocol settings and configuration that are required for
sending early data. Minimally, that means Application-Layer Protocol Negotiation value
<xref target="RFC7301"/>, QUIC transport parameters (if used for QUIC), and any other relevant
parameters that are negotiated for early data MUST be provisioned alongside these EPSKs.</t>
      </section>
      <section anchor="schedule">
        <name>Binder Key Derivation</name>
        <t>To prevent confusion between imported and non-imported PSKs, imported PSKs change
the PSK binder key derivation label. In particular, the standard TLS 1.3 PSK binder
key computation is defined as follows:</t>
        <artwork><![CDATA[
           0
           |
           v
 PSK ->  HKDF-Extract = Early Secret
           |
           +-----> Derive-Secret(., "ext binder" | "res binder", "")
           |                     = binder_key
           V
]]></artwork>
        <t>Imported PSKs use the string "imp binder" rather than "ext binder" or "res binder"
when deriving <tt>binder_key</tt>.
This means the binder key is computed as follows:</t>
        <artwork><![CDATA[
           0
           |
           v
 PSK ->  HKDF-Extract = Early Secret
           |
           +-----> Derive-Secret(., "ext binder"
           |                      | "res binder"
           |                      | "imp binder", "")
           |                     = binder_key
           V
]]></artwork>
        <t>This new label ensures a client and server will negotiate use of an external PSK if
and only if (a) both endpoints import the PSK or (b) neither endpoint imports the
PSK. As <tt>binder_key</tt> is a leaf key, changing its computation does not affect any
other key.</t>
      </section>
    </section>
    <section anchor="deprecating-hash-functions">
      <name>Deprecating Hash Functions</name>
      <t>If a client or server wish to deprecate a hash function and no longer use it for TLS 1.3,
they remove the corresponding KDF from the set of target KDFs used for importing keys.
This does not affect the KDF operation used to derive Imported PSKs.</t>
    </section>
    <section anchor="rollout">
      <name>Incremental Deployment</name>
      <t>The mechanism defined in this document requires that an EPSK is only ever used as an
EPSK and not for any other purpose. In particular, this requirement disallows direct
use of the EPSK as a PSK in TLS 1.2. The importer process produces distinct IPSKs
derived from the target protocol and KDF, which in turn protects against cross-protocol
collisions for protocol versions using this process by ensuring that each IPSK can only
be used with one protocol and KDF. This is a distinct contrast to TLS 1.2, where a given
PSK might be used with multiple KDFs in different handshakes, and importers are not
available. Furthermore, the KDF used in TLS 1.2 might be the same KDF used by the importer
mechanism itself.</t>
      <t>In deployments that already have PSKs provisioned and in use with TLS 1.2, attempting
to incrementally deploy the importer mechanism would then result in concurrent use of
the already provisioned PSK both directly as a TLS 1.2 PSK and as an EPSK, which in
turn could mean that the same KDF and key would be used in two different protocol contexts.
There are no known related outputs or security issues that would arise from this arrangement.
However, only limited analysis has been done, and as such is not a recommended configuration.</t>
      <t>However, the benefits of using TLS 1.3 and of using PSK importers may prove sufficiently
compelling that existing deployments choose to enable this noncompliant configuration for
a brief transition period while new software (using TLS 1.3 and importers) is deployed.
Operators are advised to make any such transition period as short as possible.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The PSK Importer security goals can be roughly stated as follows: avoid PSK re-use across
KDFs while properly authenticating endpoints. When modeled as computational extractors, KDFs
assume that input keying material (IKM) is sampled from some "source" probability distribution
and that any two IKM values are chosen independently of each other <xref target="Kraw10"/>. This
source-independence requirement implies that the same IKM value cannot be used for two different
KDFs.</t>
      <t>PSK-based authentication is functionally equivalent to session resumption in that a connection
uses existing key material to authenticate both endpoints. Following the work of
<xref target="BAA15"/>, this is a form of compound authentication. Loosely
speaking, compound authentication is the property that an execution of multiple authentication
protocols, wherein at least one is uncompromised, jointly authenticates all protocols.
Authenticating with an externally provisioned PSK, therefore, should ideally authenticate both
the TLS connection and the external provisioning process. Typically, the external provision process
produces a PSK and corresponding context from which the PSK was derived and in which it should
be used. If available, this is used as the ImportedIdentity.context value. We refer to an
external PSK without such context as "context-free".</t>
      <t>Thus, in considering the source-independence and compound authentication requirements, the PSK
Import interface described in this document aims to achieve the following goals:</t>
      <ol spacing="normal" type="1"><li>Externally provisioned PSKs imported into a TLS connection achieve compound authentication
of the provisioning process and connection.</li>
        <li>Context-free PSKs only achieve authentication within the context of a single connection.</li>
        <li>Imported PSKs are not used as IKM for two different KDFs.</li>
        <li>Imported PSKs do not collide with future protocol versions and KDFs.</li>
      </ol>
      <t>There are no known related outputs or security issues caused from the process
for computing Imported PSKs from an external PSK and the processing of existing
external PSKs used in (D)TLS 1.2 and below, as noted in <xref target="rollout"/>. However,
only limited analysis has been done, which is an additional reason why applications
SHOULD provision separate PSKs for (D)TLS 1.3 and prior versions, even when the
importer interface is used in (D)TLS 1.3.</t>
      <t>The PSK Importer does not prevent applications from constructing non-importer PSK identities
that collide with imported PSK identities.</t>
    </section>
    <section anchor="privacy-considerations">
      <name>Privacy Considerations</name>
      <t>External PSK identities are typically static by design so that endpoints may use them to
lookup keying material. However, for some systems and use cases, this identity may become a
persistent tracking identifier.</t>
      <t>Note also that ImportedIdentity.context is visible in cleartext on the wire as part of
the PSK identity. Unless otherwise protected by a mechanism such as TLS Encrypted
ClientHello <xref target="ECH"/>, applications SHOULD not put sensitive information
in this field.</t>
    </section>
    <section anchor="IANA">
      <name>IANA Considerations</name>
      <t>This specification introduces a new registry for TLS KDF identifiers, titled
"TLS KDF Identifiers", under the existing "Transport Layer Security (TLS) Parameters" heading.</t>
      <t>The entries in the registry are:</t>
      <table anchor="kdf-registry">
        <name>Target KDF Registry</name>
        <thead>
          <tr>
            <th align="left">KDF Description</th>
            <th align="left">Value</th>
            <th align="left">Reference</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">Reserved</td>
            <td align="left">0x0000</td>
            <td align="left">N/A</td>
          </tr>
          <tr>
            <td align="left">HKDF_SHA256</td>
            <td align="left">0x0001</td>
            <td align="left">
              <xref target="RFC5869"/></td>
          </tr>
          <tr>
            <td align="left">HKDF_SHA384</td>
            <td align="left">0x0002</td>
            <td align="left">
              <xref target="RFC5869"/></td>
          </tr>
        </tbody>
      </table>
      <t>New target KDF values are allocated according to the following process:</t>
      <ul spacing="normal">
        <li>Values in the range 0x0000-0xfeff are assigned via Specification Required <xref target="RFC8126"/>.</li>
        <li>Values in the range 0xff00-0xffff are reserved for Private Use <xref target="RFC8126"/>.</li>
      </ul>
      <t>The procedures for requesting values in the Specification Required space are specified in Section 17 of <xref target="RFC8447"/>.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8447">
          <front>
            <title>IANA Registry Updates for TLS and DTLS</title>
            <author fullname="J. Salowey" initials="J." surname="Salowey">
              <organization/>
            </author>
            <author fullname="S. Turner" initials="S." surname="Turner">
              <organization/>
            </author>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document describes a number of changes to TLS and DTLS IANA registries that range from adding notes to the registry all the way to changing the registration policy.  These changes were mostly motivated by WG review of the TLS- and DTLS-related registries undertaken as part of the TLS 1.3 development process.</t>
              <t>This document updates the following RFCs: 3749, 5077, 4680, 5246, 5705, 5878, 6520, and 7301.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8447"/>
          <seriesInfo name="DOI" value="10.17487/RFC8447"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="DTLS13">
          <front>
            <title>The Datagram Transport Layer Security (DTLS) Protocol Version 1.3</title>
            <author fullname="Eric Rescorla">
              <organization>RTFM, Inc.</organization>
            </author>
            <author fullname="Hannes Tschofenig">
              <organization>Arm Limited</organization>
            </author>
            <author fullname="Nagendra Modadugu">
              <organization>Google, Inc.</organization>
            </author>
            <date day="30" month="April" year="2021"/>
            <abstract>
              <t>   This document specifies Version 1.3 of the Datagram Transport Layer
   Security (DTLS) protocol.  DTLS 1.3 allows client/server applications
   to communicate over the Internet in a way that is designed to prevent
   eavesdropping, tampering, and message forgery.

   The DTLS 1.3 protocol is intentionally based on the Transport Layer
   Security (TLS) 1.3 protocol and provides equivalent security
   guarantees with the exception of order protection/non-replayability.
   Datagram semantics of the underlying transport are preserved by the
   DTLS protocol.

   This document obsoletes RFC 6347.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-tls-dtls13-43"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC5056">
          <front>
            <title>On the Use of Channel Bindings to Secure Channels</title>
            <author fullname="N. Williams" initials="N." surname="Williams">
              <organization/>
            </author>
            <date month="November" year="2007"/>
            <abstract>
              <t>The concept of channel binding allows applications to establish that the two end-points of a secure channel at one network layer are the same as at a higher layer by binding authentication at the higher layer to the channel at the lower layer.  This allows applications to delegate session protection to lower layers, which has various performance benefits.</t>
              <t>This document discusses and formalizes the concept of channel binding to secure channels.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5056"/>
          <seriesInfo name="DOI" value="10.17487/RFC5056"/>
        </reference>
        <reference anchor="RFC5869">
          <front>
            <title>HMAC-based Extract-and-Expand Key Derivation Function (HKDF)</title>
            <author fullname="H. Krawczyk" initials="H." surname="Krawczyk">
              <organization/>
            </author>
            <author fullname="P. Eronen" initials="P." surname="Eronen">
              <organization/>
            </author>
            <date month="May" year="2010"/>
            <abstract>
              <t>This document specifies a simple Hashed Message Authentication Code (HMAC)-based key derivation function (HKDF), which can be used as a building block in various protocols and applications.  The key derivation function (KDF) is intended to support a wide range of applications and requirements, and is conservative in its use of cryptographic hash functions.  This document is not an Internet  Standards Track specification; it is published for informational  purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5869"/>
          <seriesInfo name="DOI" value="10.17487/RFC5869"/>
        </reference>
        <reference anchor="RFC8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton">
              <organization/>
            </author>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <author fullname="T. Narten" initials="T." surname="Narten">
              <organization/>
            </author>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters.  To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper.  For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed.  This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="SHA2">
          <front>
            <title>Secure Hash Standard</title>
            <author>
              <organization>National Institute of Standards and Technology</organization>
            </author>
            <date year="2008" month="October"/>
          </front>
          <seriesInfo name="FIPS PUB 180-3" value=""/>
        </reference>
        <reference anchor="Selfie" target="https://eprint.iacr.org/2019/347.pdf">
          <front>
            <title>Selfie: reflections on TLS 1.3 with PSK</title>
            <author initials="N." surname="Drucker" fullname="Nir Drucker">
              <organization/>
            </author>
            <author initials="S." surname="Gueron" fullname="Shay Gueron">
              <organization/>
            </author>
            <date year="2019"/>
          </front>
        </reference>
        <reference anchor="Kraw10" target="https://eprint.iacr.org/2010/264">
          <front>
            <title>Cryptographic Extraction and Key Derivation: The HKDF Scheme</title>
            <author initials="H." surname="Krawczyk">
              <organization/>
            </author>
            <date year="2010"/>
          </front>
          <seriesInfo name="Proceedings of CRYPTO 2010" value=""/>
        </reference>
        <reference anchor="RFC5246">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.2</title>
            <author fullname="T. Dierks" initials="T." surname="Dierks">
              <organization/>
            </author>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <date month="August" year="2008"/>
            <abstract>
              <t>This document specifies Version 1.2 of the Transport Layer Security (TLS) protocol.  The TLS protocol provides communications security over the Internet.  The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5246"/>
          <seriesInfo name="DOI" value="10.17487/RFC5246"/>
        </reference>
        <reference anchor="QUIC">
          <front>
            <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
            <author fullname="Jana Iyengar">
              <organization>Fastly</organization>
            </author>
            <author fullname="Martin Thomson">
              <organization>Mozilla</organization>
            </author>
            <date day="14" month="January" year="2021"/>
            <abstract>
              <t>This document defines the core of the QUIC transport protocol.  QUIC provides applications with flow-controlled streams for structured communication, low-latency connection establishment, and network path migration.  QUIC includes security measures that ensure confidentiality, integrity, and availability in a range of deployment circumstances.  Accompanying documents describe the integration of TLS for key negotiation, loss detection, and an exemplary congestion control algorithm.
              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-transport-34"/>
        </reference>
        <reference anchor="I-D.ietf-tls-dtls13">
          <front>
            <title>The Datagram Transport Layer Security (DTLS) Protocol Version 1.3</title>
            <author fullname="Eric Rescorla">
              <organization>RTFM, Inc.</organization>
            </author>
            <author fullname="Hannes Tschofenig">
              <organization>Arm Limited</organization>
            </author>
            <author fullname="Nagendra Modadugu">
              <organization>Google, Inc.</organization>
            </author>
            <date day="30" month="April" year="2021"/>
            <abstract>
              <t>   This document specifies Version 1.3 of the Datagram Transport Layer
   Security (DTLS) protocol.  DTLS 1.3 allows client/server applications
   to communicate over the Internet in a way that is designed to prevent
   eavesdropping, tampering, and message forgery.

   The DTLS 1.3 protocol is intentionally based on the Transport Layer
   Security (TLS) 1.3 protocol and provides equivalent security
   guarantees with the exception of order protection/non-replayability.
   Datagram semantics of the underlying transport are preserved by the
   DTLS protocol.

   This document obsoletes RFC 6347.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-tls-dtls13-43"/>
        </reference>
        <reference anchor="RFC7301">
          <front>
            <title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
            <author fullname="S. Friedl" initials="S." surname="Friedl">
              <organization/>
            </author>
            <author fullname="A. Popov" initials="A." surname="Popov">
              <organization/>
            </author>
            <author fullname="A. Langley" initials="A." surname="Langley">
              <organization/>
            </author>
            <author fullname="E. Stephan" initials="E." surname="Stephan">
              <organization/>
            </author>
            <date month="July" year="2014"/>
            <abstract>
              <t>This document describes a Transport Layer Security (TLS) extension for application-layer protocol negotiation within the TLS handshake. For instances in which multiple application protocols are supported on the same TCP or UDP port, this extension allows the application layer to negotiate which protocol will be used within the TLS connection.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7301"/>
          <seriesInfo name="DOI" value="10.17487/RFC7301"/>
        </reference>
        <reference anchor="BAA15">
          <front>
            <title>Verified Contributive Channel Bindings for Compound Authentication</title>
            <author fullname="Karthikeyan Bhargavan" initials="K." surname="Bhargavan">
              <organization/>
            </author>
            <author fullname="Antoine Delignat-Lavaud" initials="A." surname="Delignat-Lavaud">
              <organization/>
            </author>
            <author fullname="Alfredo Pironti" initials="A." surname="Pironti">
              <organization/>
            </author>
            <date year="2015"/>
          </front>
          <seriesInfo name="Proceedings 2015 Network and Distributed System Security" value="Symposium"/>
          <seriesInfo name="DOI" value="10.14722/ndss.2015.23277"/>
        </reference>
        <reference anchor="ECH">
          <front>
            <title>TLS Encrypted Client Hello</title>
            <author fullname="Eric Rescorla">
              <organization>RTFM, Inc.</organization>
            </author>
            <author fullname="Kazuho Oku">
              <organization>Fastly</organization>
            </author>
            <author fullname="Nick Sullivan">
              <organization>Cloudflare</organization>
            </author>
            <author fullname="Christopher A. Wood">
              <organization>Cloudflare</organization>
            </author>
            <date day="13" month="February" year="2022"/>
            <abstract>
              <t>   This document describes a mechanism in Transport Layer Security (TLS)
   for encrypting a ClientHello message under a server public key.

Discussion Venues

   This note is to be removed before publishing as an RFC.

   Source for this draft and an issue tracker can be found at
   https://github.com/tlswg/draft-ietf-tls-esni
   (https://github.com/tlswg/draft-ietf-tls-esni).

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-tls-esni-14"/>
        </reference>
      </references>
    </references>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>The authors thank Eric Rescorla and Martin Thomson for discussions that led to the
production of this document, as well as Christian Huitema for input regarding privacy
considerations of external PSKs. John Mattsson provided input regarding PSK importer
deployment considerations. Hugo Krawczyk provided guidance for the security considerations.
Martin Thomson, Jonathan Hoyland, Scott Hollenbeck, Benjamin Kaduk, and others all
provided reviews, feedback, and suggestions for improving the document.</t>
    </section>
    <section anchor="mitigate-selfie">
      <name>Addressing Selfie</name>
      <t>The Selfie attack <xref target="Selfie"/> relies on a misuse of the PSK interface.
The PSK interface makes the implicit assumption that each PSK
is known only to one client and one server. If multiple clients or
multiple servers with distinct roles share a PSK, TLS only
authenticates the entire group. A node successfully authenticates
its peer as being in the group whether the peer is another node
or itself. Note that this case can also occur when there are two
nodes sharing a PSK without predetermined roles.</t>
      <t>Applications which require authenticating finer-grained roles while still
configuring a single shared PSK across all nodes can resolve this
mismatch either by exchanging roles over the TLS connection after
the handshake or by incorporating the roles of both the client and server
into the IPSK context string. For instance, if an application
identifies each node by MAC address, it could use the following
context string.</t>
      <artwork><![CDATA[
  struct {
    opaque client_mac<0..2^8-1>;
    opaque server_mac<0..2^8-1>;
  } Context;
]]></artwork>
      <t>If an attacker then redirects a ClientHello intended for one node to a different
node, including the node that generated the ClientHello, the receiver will
compute a different context string and the handshake will not complete.</t>
      <t>Note that, in this scenario, there is still a single shared PSK across all nodes,
so each node must be trusted not to impersonate another node's role.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIADAVJmIAA81ca3fbNpr+jl+BVT+MfVZiLDtpUnc6M66dNN7mNrEze3r2
7CYQCUoYU6SWIO1okvS373sBQICS28ye/bA+nYklgri81+e9wLPZTHSmq/Sp
vFxvmrYz9VI+/djptlaVfHP1s5Vl08rrF1dCLRatvv39cUWT12oNExatKruZ
0V056yo70270bGNvZoYm0e3s6LHIVaeXTbs9lbYrhDCb9lR2bW+746Oj746O
hWq1OpU/6Vq3qhJ3TXuzbJt+A4MqK270Fr4pYFs1Tq+72QUuK4TtVF28V1VT
w1a22oqNOZX/0TX5VFpYutWlhd+2a/zlP4VQfbdq2lMh5Qz+J6Wp7am8yOSP
uv67WpuavuRzXahbU6QPmnapavMP1Zmmhq02zbLSU/nixXlGj/VamQoIgi8u
dP2XJQ3I8madrneeybNM/nvTFNFy56vW2K7ZrHSbPIU14WHV9EVZAYnihXJ1
95eVVhtg0sJ0NgOyCCHqpl3DDm81nvLts/Pj+fw79+uThw8fnwLp6zIec/X8
7PiU5nUiMrnSed9q+VzZlbxCAqu2mNAIq1ujLU5wKp9dvrmSb979KOdPjmYn
9LgAHp/K13nXLOAYwNgn9PVAdf6Z8aleESFBsC5rC0v3nZZNGRa0Ev6V1zpf
1U3VLLe4U12VRrt5hs3SlxI4XOkcZ7SyqVFG5Tw7kXemW6Hk8v53tuL4En6I
Qa8yedH2+Y1u04fMqVem3X28b5qrTP7U67ap981ytVLb5DHT7vho/p07n2qX
ujuVq67b2NMHD/SmNXWXGZW3GZDvAY58cPLwcbYpSnjj51bdzY9GtDlvt5uu
WbZqszI5KnKriEJE2p/1Vl4AP2+dPF+vgOU/XzyTV/lKr/VktK0j/hxLwJu2
ybUuQP4scu787S9vrl9HY7/iCEcPjr99uIc1gZ5EyecZnS//x/ZGiNlsJtXC
0lmEuF4ZK8EY9Wtdd7LQNm/NQqPwwKtgK0qVazJaJhg0HQxaq2fAh1YTMaw8
QAt3CPrRNV5+Ml5vbYqi0kJ8gwaobYqeyAirOyn79OlfWL++/fJF2n6DS9nR
/DT9IR0TtmpyIvtU3oHGa1OTdQUjWcuFlhrM2qIydgVv3hoFRLcW2QZv3WiY
uGybtQRiwrHypq6D2LfhbNWWX2zWoFR9N2vK2QKYLtagT2DD7Dojfm/aBmxl
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

-->

</rfc>
