<?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-rfc version 1.7.5 (Ruby 3.0.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-lake-edhoc-23" category="std" consensus="true" submissionType="IETF" tocDepth="2" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.19.1 -->
  <front>
    <title abbrev="EDHOC">Ephemeral Diffie-Hellman Over COSE (EDHOC)</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-lake-edhoc-23"/>
    <author initials="G." surname="Selander" fullname="Göran Selander">
      <organization abbrev="Ericsson">Ericsson AB</organization>
      <address>
        <postal>
          <street>SE-164 80 Stockholm</street>
          <country>Sweden</country>
        </postal>
        <email>goran.selander@ericsson.com</email>
      </address>
    </author>
    <author initials="J" surname="Preuß Mattsson" fullname="John Preuß Mattsson">
      <organization abbrev="Ericsson">Ericsson AB</organization>
      <address>
        <postal>
          <street>SE-164 80 Stockholm</street>
          <country>Sweden</country>
        </postal>
        <email>john.mattsson@ericsson.com</email>
      </address>
    </author>
    <author initials="F." surname="Palombini" fullname="Francesca Palombini">
      <organization abbrev="Ericsson">Ericsson AB</organization>
      <address>
        <postal>
          <street>SE-164 80 Stockholm</street>
          <country>Sweden</country>
        </postal>
        <email>francesca.palombini@ericsson.com</email>
      </address>
    </author>
    <date year="2024" month="January" day="22"/>
    <area>SEC</area>
    <workgroup>LAKE Working Group</workgroup>
    <abstract>
      <?line 278?>

<t>This document specifies Ephemeral Diffie-Hellman Over COSE (EDHOC), a very compact and lightweight authenticated Diffie-Hellman key exchange with ephemeral keys. EDHOC provides mutual authentication, forward secrecy, and identity protection. EDHOC is intended for usage in constrained scenarios and a main use case is to establish an OSCORE security context. By reusing COSE for cryptography, CBOR for encoding, and CoAP for transport, the additional code size can be kept very low.</t>
    </abstract>
  </front>
  <middle>
    <?line 282?>

<section anchor="introduction">
      <name>Introduction</name>
      <section anchor="motivation">
        <name>Motivation</name>
        <t>Many Internet of Things (IoT) deployments require technologies which are highly performant in constrained environments <xref target="RFC7228"/>. IoT devices may be constrained in various ways, including memory, storage, processing capacity, and power. The connectivity for these settings may also exhibit constraints such as unreliable and lossy channels, highly restricted bandwidth, and dynamic topology. The IETF has acknowledged this problem by standardizing a range of lightweight protocols and enablers designed for the IoT, including the Constrained Application Protocol (CoAP, <xref target="RFC7252"/>), Concise Binary Object Representation (CBOR, <xref target="RFC8949"/>), and Static Context Header Compression (SCHC, <xref target="RFC8724"/>).</t>
        <t>The need for special protocols targeting constrained IoT deployments extends also to the security domain <xref target="I-D.ietf-lake-reqs"/>. Important characteristics in constrained environments are the number of round trips and protocol message sizes, which if kept low can contribute to good performance by enabling transport over a small number of radio frames, reducing latency due to fragmentation or duty cycles, etc. Another important criterion is code size, which may be prohibitively large for certain deployments due to device capabilities or network load during firmware update. Some IoT deployments also need to support a variety of underlying transport technologies, potentially even with a single connection.</t>
        <t>Some security solutions for such settings exist already. CBOR Object Signing and Encryption (COSE, <xref target="RFC9052"/>) specifies basic application-layer security services efficiently encoded in CBOR. Another example is Object Security for Constrained RESTful Environments (OSCORE, <xref target="RFC8613"/>) which is a lightweight communication security extension to CoAP using CBOR and COSE. In order to establish good quality cryptographic keys for security protocols such as COSE and OSCORE, the two endpoints may run an authenticated Diffie-Hellman key exchange protocol, from which shared secret keying material can be derived. Such a key exchange protocol should also be lightweight; to prevent bad performance in case of repeated use, e.g., due to device rebooting or frequent rekeying for security reasons; or to avoid latencies in a network formation setting with many devices authenticating at the same time.</t>
        <t>This document specifies Ephemeral Diffie-Hellman Over COSE (EDHOC), a lightweight authenticated key exchange protocol providing good security properties including forward secrecy, identity protection, and cipher suite negotiation. Authentication can be based on raw public keys (RPK) or public key certificates and requires the application to provide input on how to verify that endpoints are trusted. This specification supports the referencing of credentials in order to reduce message overhead, but credentials may alternatively be embedded in the messages.
EDHOC does not currently support pre-shared key (PSK) authentication as authentication with static Diffie-Hellman public keys by reference produces equally small message sizes but with much simpler key distribution and identity protection.</t>
        <t>EDHOC makes use of known protocol constructions, such as SIGMA <xref target="SIGMA"/>, the Noise XX pattern <xref target="Noise"/>, and Extract-and-Expand <xref target="RFC5869"/>. EDHOC uses COSE for cryptography and identification of credentials (including COSE_Key, CBOR Web Token (CWT), CWT Claims Set (CCS), X.509, and CBOR encoded X.509 (C509) certificates, see <xref target="auth-cred"/>). COSE provides crypto agility and enables the use of future algorithms and credential types targeting IoT.</t>
        <t>EDHOC is designed for highly constrained settings making it especially suitable for low-power networks <xref target="RFC8376"/> such as Cellular IoT, 6TiSCH, and LoRaWAN. A main objective for EDHOC is to be a lightweight authenticated key exchange for OSCORE, i.e., to provide authentication and session key establishment for IoT use cases such as those built on CoAP <xref target="RFC7252"/> involving 'things' with embedded microcontrollers, sensors, and actuators. By reusing the same lightweight primitives as OSCORE (CBOR, COSE, CoAP) the additional code size can be kept very low. Note that while CBOR and COSE primitives are built into the protocol messages, EDHOC is not bound to a particular transport.</t>
        <t>A typical setting is when one of the endpoints is constrained or in a constrained network, and the other endpoint is a node on the Internet (such as a mobile phone). Thing-to-thing interactions over constrained networks are also relevant since both endpoints would then benefit from the lightweight properties of the protocol. EDHOC could, e.g., be run when a device connects for the first time, or to establish fresh keys which are not revealed by a later compromise of the long-term keys.</t>
      </section>
      <section anchor="message-size-examples">
        <name>Message Size Examples</name>
        <t>Examples of EDHOC message sizes are shown in <xref target="fig-sizes"/>, using different kinds of authentication keys and COSE header parameters for identification: static Diffie-Hellman keys or signature keys, either in CBOR Web Token (CWT) / CWT Claims Set (CCS) <xref target="RFC8392"/> identified by a key identifier using 'kid' <xref target="RFC9052"/>, or in X.509 certificates identified by a hash value using 'x5t' <xref target="RFC9360"/>. As a comparison, in the case of RPK authentication, the EDHOC message size when transferred in CoAP can be less than 1/7 of the DTLS 1.3 handshake <xref target="RFC9147"/> with ECDHE and connection ID, see <xref section="2" sectionFormat="of" target="I-D.ietf-iotops-security-protocol-comparison"/>.</t>
        <figure anchor="fig-sizes">
          <name>Examples of EDHOC message sizes in bytes.</name>
          <artset>
            <artwork type="svg" align="center"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="208" width="472" viewBox="0 0 472 208" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,32 L 464,32" fill="none" stroke="black"/>
                <path d="M 168,64 L 288,64" fill="none" stroke="black"/>
                <path d="M 344,64 L 464,64" fill="none" stroke="black"/>
                <path d="M 8,96 L 464,96" fill="none" stroke="black"/>
                <path d="M 8,160 L 464,160" fill="none" stroke="black"/>
                <path d="M 8,192 L 464,192" fill="none" stroke="black"/>
                <g class="text">
                  <text x="196" y="52">Static</text>
                  <text x="236" y="52">DH</text>
                  <text x="268" y="52">Keys</text>
                  <text x="384" y="52">Signature</text>
                  <text x="444" y="52">Keys</text>
                  <text x="184" y="84">kid</text>
                  <text x="272" y="84">x5t</text>
                  <text x="360" y="84">kid</text>
                  <text x="448" y="84">x5t</text>
                  <text x="48" y="116">message_1</text>
                  <text x="188" y="116">37</text>
                  <text x="276" y="116">37</text>
                  <text x="364" y="116">37</text>
                  <text x="452" y="116">37</text>
                  <text x="48" y="132">message_2</text>
                  <text x="188" y="132">45</text>
                  <text x="276" y="132">58</text>
                  <text x="360" y="132">102</text>
                  <text x="448" y="132">115</text>
                  <text x="48" y="148">message_3</text>
                  <text x="188" y="148">19</text>
                  <text x="276" y="148">33</text>
                  <text x="364" y="148">77</text>
                  <text x="452" y="148">90</text>
                  <text x="32" y="180">Total</text>
                  <text x="184" y="180">101</text>
                  <text x="272" y="180">128</text>
                  <text x="360" y="180">216</text>
                  <text x="448" y="180">242</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art" align="center"><![CDATA[
----------------------------------------------------------
                     Static DH Keys        Signature Keys
                    ----------------      ----------------
                     kid        x5t        kid        x5t
----------------------------------------------------------
 message_1            37         37         37         37
 message_2            45         58        102        115
 message_3            19         33         77         90
----------------------------------------------------------
 Total               101        128        216        242
----------------------------------------------------------
]]></artwork>
          </artset>
        </figure>
      </section>
      <section anchor="document-structure">
        <name>Document Structure</name>
        <t>The remainder of the document is organized as follows: <xref target="background"/> outlines EDHOC authenticated with signature keys, <xref target="overview"/> describes the protocol elements of EDHOC, including formatting of the ephemeral public keys, <xref target="key-der"/> specifies the key derivation, <xref target="asym"/> specifies message processing for EDHOC authenticated with signature keys or static Diffie-Hellman keys, <xref target="error"/> describes the error messages, <xref target="duplication"/> describes EDHOC support for transport that does not handle message duplication, and <xref target="mti"/> lists compliance requirements. Note that normative text is also used in appendices, in particular <xref target="transfer"/>.</t>
      </section>
      <section anchor="term">
        <name>Terminology and Requirements Language</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.
<?line -6?>
        </t>
        <t>Readers are expected to be familiar with the terms and concepts described in CBOR <xref target="RFC8949"/>, CBOR Sequences <xref target="RFC8742"/>, COSE structures and processing <xref target="RFC9052"/>, COSE algorithms <xref target="RFC9053"/>, CWT and CWT Claims Set <xref target="RFC8392"/>, and the Concise Data Definition Language (CDDL, <xref target="RFC8610"/>), which is used to express CBOR data structures. Examples of CBOR and CDDL are provided in <xref target="CBOR"/>. When referring to CBOR, this specification always refers to Deterministically Encoded CBOR as specified in Sections 4.2.1 and 4.2.2 of <xref target="RFC8949"/>. The single output from authenticated encryption (including the authentication tag) is called "ciphertext", following <xref target="RFC5116"/>.</t>
      </section>
    </section>
    <section anchor="background">
      <name>EDHOC Outline</name>
      <t>EDHOC specifies different authentication methods of the ephemeral-ephemeral Diffie-Hellman key exchange: signature keys and static Diffie-Hellman keys. This section outlines the signature key based method. Further details of protocol elements and other authentication methods are provided in the remainder of this document.</t>
      <t>SIGMA (SIGn-and-MAc) is a family of theoretical protocols with a large number of variants <xref target="SIGMA"/>. Like in IKEv2 <xref target="RFC7296"/> and (D)TLS 1.3 <xref target="RFC8446"/><xref target="RFC9147"/>, EDHOC authenticated with signature keys is built on a variant of the SIGMA protocol, SIGMA-I, which provides identity protection against active attacks on the party initiating the protocol. Also like IKEv2, EDHOC implements the MAC-then-Sign variant of the SIGMA-I protocol. The message flow (excluding an optional fourth message) is shown in <xref target="fig-sigma"/>.</t>
      <figure anchor="fig-sigma">
        <name>MAC-then-Sign variant of the SIGMA-I protocol used by EDHOC method 0.</name>
        <artset>
          <artwork type="svg" align="center"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="192" width="560" viewBox="0 0 560 192" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
              <path d="M 8,48 L 8,176" fill="none" stroke="black"/>
              <path d="M 552,48 L 552,176" fill="none" stroke="black"/>
              <path d="M 8,64 L 544,64" fill="none" stroke="black"/>
              <path d="M 16,112 L 552,112" fill="none" stroke="black"/>
              <path d="M 8,160 L 544,160" fill="none" stroke="black"/>
              <polygon class="arrowhead" points="552,160 540,154.4 540,165.6" fill="black" transform="rotate(0,544,160)"/>
              <polygon class="arrowhead" points="552,64 540,58.4 540,69.6" fill="black" transform="rotate(0,544,64)"/>
              <polygon class="arrowhead" points="24,112 12,106.4 12,117.6" fill="black" transform="rotate(180,16,112)"/>
              <g class="text">
                <text x="40" y="36">Initiator</text>
                <text x="520" y="36">Responder</text>
                <text x="280" y="52">G_X</text>
                <text x="76" y="100">G_Y,</text>
                <text x="116" y="100">Enc(</text>
                <text x="180" y="100">ID_CRED_R,</text>
                <text x="244" y="100">Sig(</text>
                <text x="276" y="100">R;</text>
                <text x="308" y="100">MAC(</text>
                <text x="360" y="100">CRED_R,</text>
                <text x="412" y="100">G_X,</text>
                <text x="448" y="100">G_Y</text>
                <text x="472" y="100">)</text>
                <text x="488" y="100">)</text>
                <text x="504" y="100">)</text>
                <text x="96" y="148">AEAD(</text>
                <text x="164" y="148">ID_CRED_I,</text>
                <text x="228" y="148">Sig(</text>
                <text x="260" y="148">I;</text>
                <text x="292" y="148">MAC(</text>
                <text x="344" y="148">CRED_I,</text>
                <text x="396" y="148">G_Y,</text>
                <text x="432" y="148">G_X</text>
                <text x="456" y="148">)</text>
                <text x="472" y="148">)</text>
                <text x="488" y="148">)</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art" align="center"><![CDATA[
Initiator                                                   Responder
|                                G_X                                |
+------------------------------------------------------------------>|
|                                                                   |
|      G_Y, Enc( ID_CRED_R, Sig( R; MAC( CRED_R, G_X, G_Y ) ) )     |
|<------------------------------------------------------------------+
|                                                                   |
|        AEAD( ID_CRED_I, Sig( I; MAC( CRED_I, G_Y, G_X ) ) )       |
+------------------------------------------------------------------>|
|                                                                   |
]]></artwork>
        </artset>
      </figure>
      <t>The parties exchanging messages in an EDHOC session are called Initiator (I) and Responder (R), where the Initiator sends message_1 (see <xref target="overview"/>). They exchange ephemeral public keys, compute a shared secret session key PRK_out, and derive symmetric application keys used to protect application data.</t>
      <ul spacing="normal">
        <li>
          <t>G_X and G_Y are the ECDH ephemeral public keys of I and R, respectively.</t>
        </li>
        <li>
          <t>CRED_I and CRED_R are the authentication credentials containing the public authentication keys of I and R, respectively.</t>
        </li>
        <li>
          <t>ID_CRED_I and ID_CRED_R are used to identify and optionally transport the credentials of the Initiator and the Responder, respectively.</t>
        </li>
        <li>
          <t>Sig(I; . ) and Sig(R; . ) denote signatures made with the private authentication key of I and R, respectively.</t>
        </li>
        <li>
          <t>Enc(), AEAD(), and MAC() denotes encryption, authenticated encryption with additional data, and message authentication code - crypto algorithms applied with keys derived from one or more shared secrets calculated during the protocol.</t>
        </li>
      </ul>
      <t>In order to create a "full-fledged" protocol some additional protocol elements are needed. EDHOC adds:</t>
      <ul spacing="normal">
        <li>
          <t>Transcript hashes (hashes of message data) TH_2, TH_3, TH_4 used for key derivation and as additional authenticated data.</t>
        </li>
        <li>
          <t>Computationally independent keys derived from the ECDH shared secret and used for authenticated encryption of different messages.</t>
        </li>
        <li>
          <t>An optional fourth message giving key confirmation to I in deployments where no protected application data is sent from R to I.</t>
        </li>
        <li>
          <t>A keying material exporter and a key update function with forward secrecy.</t>
        </li>
        <li>
          <t>Secure negotiation of cipher suite.</t>
        </li>
        <li>
          <t>Method types, error handling, and padding.</t>
        </li>
        <li>
          <t>Selection of connection identifiers C_I and C_R which may be used in EDHOC to identify protocol state.</t>
        </li>
        <li>
          <t>Transport of external authorization data.</t>
        </li>
      </ul>
      <t>EDHOC is designed to encrypt and integrity protect as much information as possible. Symmetric keys and random material used in EDHOC are derived using EDHOC_KDF with as much previous information as possible, see <xref target="fig-edhoc-kdf"/>. EDHOC is furthermore designed to be as compact and lightweight as possible, in terms of message sizes, processing, and the ability to reuse already existing CBOR, COSE, and CoAP libraries. Like in (D)TLS, authentication is the responsibility of the application. EDHOC identifies (and optionally transports) authentication credentials, and provides proof-of-possession of the private authentication key.</t>
      <t>To simplify for implementors, the use of CBOR and COSE in EDHOC is summarized in <xref target="CBORandCOSE"/>. Test vectors including CBOR diagnostic notation are provided in <xref target="I-D.ietf-lake-traces"/>.</t>
    </section>
    <section anchor="overview">
      <name>Protocol Elements</name>
      <section anchor="general">
        <name>General</name>
        <t>The EDHOC protocol consists of three mandatory messages (message_1, message_2, message_3), an optional fourth message (message_4), and an error message, between an Initiator (I) and a Responder (R). The odd messages are sent by I, the even by R. Both I and R can send error messages.
The roles have slightly different security properties which should be considered when the roles are assigned, see <xref target="sec-prop"/>.
All EDHOC messages are CBOR Sequences <xref target="RFC8742"/>, and are defined to be deterministically encoded CBOR as specified in Section 4.2.1 of <xref target="RFC8949"/>. <xref target="fig-flow"/> illustrates an EDHOC message flow with the optional fourth message as well as the content of each message. The protocol elements in the figure are introduced in <xref target="overview"/> and <xref target="asym"/>. Message formatting and processing are specified in <xref target="asym"/> and <xref target="error"/>.</t>
        <t>Application data may be protected using the agreed application algorithms (AEAD, hash) in the selected cipher suite (see <xref target="cs"/>) and the application can make use of the established connection identifiers C_I and C_R (see <xref target="ci"/>). Media types that may be used for EDHOC are defined in <xref target="media-type"/>.</t>
        <t>The Initiator can derive symmetric application keys after creating EDHOC message_3, see <xref target="exporter"/>. Protected application data can therefore be sent in parallel or together with EDHOC message_3. EDHOC message_4 is typically not sent.</t>
        <figure anchor="fig-flow">
          <name>EDHOC message flow including the optional fourth message.</name>
          <artset>
            <artwork type="svg" align="center"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="288" width="560" viewBox="0 0 560 288" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,48 L 8,272" fill="none" stroke="black"/>
                <path d="M 552,48 L 552,272" fill="none" stroke="black"/>
                <path d="M 8,64 L 544,64" fill="none" stroke="black"/>
                <path d="M 16,128 L 552,128" fill="none" stroke="black"/>
                <path d="M 8,192 L 544,192" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="552,192 540,186.4 540,197.6" fill="black" transform="rotate(0,544,192)"/>
                <polygon class="arrowhead" points="552,64 540,58.4 540,69.6" fill="black" transform="rotate(0,544,64)"/>
                <polygon class="arrowhead" points="24,128 12,122.4 12,133.6" fill="black" transform="rotate(180,16,128)"/>
                <g class="text">
                  <text x="40" y="36">Initiator</text>
                  <text x="520" y="36">Responder</text>
                  <text x="176" y="52">METHOD,</text>
                  <text x="248" y="52">SUITES_I,</text>
                  <text x="308" y="52">G_X,</text>
                  <text x="348" y="52">C_I,</text>
                  <text x="392" y="52">EAD_1</text>
                  <text x="280" y="84">message_1</text>
                  <text x="84" y="116">G_Y,</text>
                  <text x="124" y="116">Enc(</text>
                  <text x="164" y="116">C_R,</text>
                  <text x="228" y="116">ID_CRED_R,</text>
                  <text x="352" y="116">Signature_or_MAC_2,</text>
                  <text x="456" y="116">EAD_2</text>
                  <text x="488" y="116">)</text>
                  <text x="280" y="148">message_2</text>
                  <text x="128" y="180">AEAD(</text>
                  <text x="196" y="180">ID_CRED_I,</text>
                  <text x="320" y="180">Signature_or_MAC_3,</text>
                  <text x="424" y="180">EAD_3</text>
                  <text x="456" y="180">)</text>
                  <text x="280" y="212">message_3</text>
                  <text x="248" y="244">AEAD(</text>
                  <text x="296" y="244">EAD_4</text>
                  <text x="328" y="244">)</text>
                  <text x="20" y="260">&lt;-</text>
                  <text x="40" y="260">-</text>
                  <text x="56" y="260">-</text>
                  <text x="72" y="260">-</text>
                  <text x="88" y="260">-</text>
                  <text x="104" y="260">-</text>
                  <text x="120" y="260">-</text>
                  <text x="136" y="260">-</text>
                  <text x="152" y="260">-</text>
                  <text x="168" y="260">-</text>
                  <text x="184" y="260">-</text>
                  <text x="200" y="260">-</text>
                  <text x="216" y="260">-</text>
                  <text x="232" y="260">-</text>
                  <text x="248" y="260">-</text>
                  <text x="264" y="260">-</text>
                  <text x="280" y="260">-</text>
                  <text x="296" y="260">-</text>
                  <text x="312" y="260">-</text>
                  <text x="328" y="260">-</text>
                  <text x="344" y="260">-</text>
                  <text x="360" y="260">-</text>
                  <text x="376" y="260">-</text>
                  <text x="392" y="260">-</text>
                  <text x="408" y="260">-</text>
                  <text x="424" y="260">-</text>
                  <text x="440" y="260">-</text>
                  <text x="456" y="260">-</text>
                  <text x="472" y="260">-</text>
                  <text x="488" y="260">-</text>
                  <text x="504" y="260">-</text>
                  <text x="520" y="260">-</text>
                  <text x="536" y="260">-</text>
                  <text x="280" y="276">message_4</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art" align="center"><![CDATA[
Initiator                                                   Responder
|                 METHOD, SUITES_I, G_X, C_I, EAD_1                 |
+------------------------------------------------------------------>|
|                             message_1                             |
|                                                                   |
|       G_Y, Enc( C_R, ID_CRED_R, Signature_or_MAC_2, EAD_2 )       |
|<------------------------------------------------------------------+
|                             message_2                             |
|                                                                   |
|            AEAD( ID_CRED_I, Signature_or_MAC_3, EAD_3 )           |
+------------------------------------------------------------------>|
|                             message_3                             |
|                                                                   |
|                           AEAD( EAD_4 )                           |
|<- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
|                             message_4                             |
]]></artwork>
          </artset>
        </figure>
      </section>
      <section anchor="method">
        <name>Method</name>
        <t>The data item METHOD in message_1 (see <xref target="asym-msg1-form"/>), is an integer specifying the authentication method. EDHOC supports authentication with signature or static Diffie-Hellman keys, as defined in the four authentication methods: 0, 1, 2, and 3, see <xref target="fig-method-types"/>. When using a static Diffie-Hellman key the authentication is provided by a Message Authentication Code (MAC) computed from an ephemeral-static ECDH shared secret which enables significant reductions in message sizes. Note that also in the static Diffie-Hellman based authentication methods there is an ephemeral-ephemeral Diffie-Hellman key exchange.</t>
        <t>The Initiator and the Responder need to have agreed on a single method to be used for EDHOC, see <xref target="applicability"/>.</t>
        <figure anchor="fig-method-types">
          <name>Authentication keys for method types.</name>
          <artset>
            <artwork type="svg" align="center"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="176" width="464" viewBox="0 0 464 176" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,32 L 8,160" fill="none" stroke="black"/>
                <path d="M 120,32 L 120,160" fill="none" stroke="black"/>
                <path d="M 288,32 L 288,160" fill="none" stroke="black"/>
                <path d="M 456,32 L 456,160" fill="none" stroke="black"/>
                <path d="M 8,32 L 456,32" fill="none" stroke="black"/>
                <path d="M 8,78 L 456,78" fill="none" stroke="black"/>
                <path d="M 8,82 L 456,82" fill="none" stroke="black"/>
                <path d="M 8,160 L 456,160" fill="none" stroke="black"/>
                <g class="text">
                  <text x="44" y="52">Method</text>
                  <text x="92" y="52">Type</text>
                  <text x="168" y="52">Initiator</text>
                  <text x="336" y="52">Responder</text>
                  <text x="88" y="68">Value</text>
                  <text x="188" y="68">Authentication</text>
                  <text x="264" y="68">Key</text>
                  <text x="356" y="68">Authentication</text>
                  <text x="432" y="68">Key</text>
                  <text x="104" y="100">0</text>
                  <text x="168" y="100">Signature</text>
                  <text x="224" y="100">Key</text>
                  <text x="336" y="100">Signature</text>
                  <text x="392" y="100">Key</text>
                  <text x="104" y="116">1</text>
                  <text x="168" y="116">Signature</text>
                  <text x="224" y="116">Key</text>
                  <text x="324" y="116">Static</text>
                  <text x="364" y="116">DH</text>
                  <text x="392" y="116">Key</text>
                  <text x="104" y="132">2</text>
                  <text x="156" y="132">Static</text>
                  <text x="196" y="132">DH</text>
                  <text x="224" y="132">Key</text>
                  <text x="336" y="132">Signature</text>
                  <text x="392" y="132">Key</text>
                  <text x="104" y="148">3</text>
                  <text x="156" y="148">Static</text>
                  <text x="196" y="148">DH</text>
                  <text x="224" y="148">Key</text>
                  <text x="324" y="148">Static</text>
                  <text x="364" y="148">DH</text>
                  <text x="392" y="148">Key</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art" align="center"><![CDATA[
+-------------+--------------------+--------------------+
| Method Type | Initiator          | Responder          |
|       Value | Authentication Key | Authentication Key |
+=============+====================+====================+
|           0 | Signature Key      | Signature Key      |
|           1 | Signature Key      | Static DH Key      |
|           2 | Static DH Key      | Signature Key      |
|           3 | Static DH Key      | Static DH Key      |
+-------------+--------------------+--------------------+
]]></artwork>
          </artset>
        </figure>
        <t>EDHOC does not have a dedicated message field to indicate the protocol version. Breaking changes to EDHOC can be introduced by specifying and registering new methods.</t>
      </section>
      <section anchor="ci">
        <name>Connection Identifiers</name>
        <t>EDHOC includes the selection of connection identifiers (C_I, C_R) identifying a connection for which keys are agreed.</t>
        <t>Connection identifiers may be used to correlate EDHOC messages and facilitate the retrieval of protocol state during an EDHOC session (see <xref target="transport"/>), or may be used in applications of EDHOC, e.g., in OSCORE (see <xref target="ci-oscore"/>). The connection identifiers do not have any cryptographic purpose in EDHOC and only facilitate the retrieval of security data associated with the protocol state.</t>
        <t>Connection identifiers in EDHOC are intrinsically byte strings. Most constrained devices only have a few connections for which short identifiers may be sufficient. In some cases minimum length identifiers are necessary to comply with overhead requirements. However, CBOR byte strings - with the exception of the empty byte string h’’ which encodes as one byte (0x40) - are encoded as two or more bytes. To enable one-byte encoding of certain byte strings while maintaining CBOR encoding, EDHOC represents certain identifiers as CBOR integers on the wire, see <xref target="bstr-repr"/>.</t>
        <section anchor="selection-of-connection-identifiers">
          <name>Selection of Connection Identifiers</name>
          <t>C_I and C_R are chosen by I and R, respectively. The Initiator selects C_I and sends it in message_1 for the Responder to use as a reference to the connection in communication with the Initiator. The Responder selects C_R and sends it in message_2 for the Initiator to use as a reference to the connection in communications with the Responder.</t>
          <t>If connection identifiers are used by an application protocol for which EDHOC establishes keys then the selected connection identifiers SHALL adhere to the requirements for that protocol, see <xref target="ci-oscore"/> for an example.</t>
        </section>
        <section anchor="bstr-repr">
          <name>Representation of Byte String Identifiers</name>
          <t>To allow identifiers with minimal overhead on the wire, certain byte strings used in connection identifiers and credential identifiers (see Section <xref target="id_cred"/>) are defined to have integer representations.</t>
          <t>The integers with one-byte CBOR encoding are -24, ..., 23, see <xref target="fig-int-one-byte"/>.</t>
          <figure anchor="fig-int-one-byte">
            <name>One-byte CBOR encoded integers.</name>
            <artwork align="center"><![CDATA[
Integer:  -24  -23  ... -11  ...  -2   -1    0    1  ...  15  ...  23
Encoding:  37   36  ...  2A  ...  21   20   00   01  ...  0F  ...  17
]]></artwork>
          </figure>
          <t>The byte strings which coincide with a one-byte CBOR encoding of an integer MUST be represented by the CBOR encoding of that integer. Other byte strings are simply encoded as CBOR byte strings.</t>
          <t>For example:</t>
          <ul spacing="normal">
            <li>
              <t>0x21 is represented by 0x21 (CBOR encoding of the integer -2), not by 0x4121 (CBOR encoding of the byte string 0x21).</t>
            </li>
            <li>
              <t>0x0D is represented by 0x0D (CBOR encoding of the integer 13), not by 0x410D (CBOR encoding of the byte string 0x0D).</t>
            </li>
            <li>
              <t>0x18 is represented by 0x4118 (CBOR encoding of the byte string 0x18).</t>
            </li>
            <li>
              <t>0x38 is represented by 0x4138 (CBOR encoding of the byte string 0x38).</t>
            </li>
            <li>
              <t>0xABCD is represented by 0x42ABCD (CBOR encoding of the byte string 0xABCD).</t>
            </li>
          </ul>
          <t>One may view this representation of byte strings as a transport encoding: a byte string which parses as the one-byte CBOR encoding of an integer (i.e., integer in the interval -24, ..., 23) is just copied directly into the message, a byte string which does not is encoded as a CBOR byte string during transport.</t>
          <t>Implementation Note: When implementing the byte string identifier representation, it can in some programming languages help to define a new type, or other data structure, which (in its user facing API) behaves like a byte string, but when serializing to CBOR produces a CBOR byte string or a CBOR integer depending on its value.</t>
        </section>
        <section anchor="ci-oscore">
          <name>Use of Connection Identifiers with OSCORE</name>
          <t>For OSCORE, the choice of connection identifier results in the endpoint selecting its Recipient ID, see Section 3.1 of <xref target="RFC8613"/>, for which certain uniqueness requirements apply, see Section 3.3 of <xref target="RFC8613"/>. Therefore, the Initiator and the Responder MUST NOT select connection identifiers such that it results in the same OSCORE Recipient ID. Since the connection identifier is a byte string, it is converted to an OSCORE Recipient ID equal to the byte string.</t>
          <t>Examples:</t>
          <ul spacing="normal">
            <li>
              <t>A connection identifier 0xFF (represented in the EDHOC message as 0x41FF, see <xref target="bstr-repr"/>) is converted to the OSCORE Recipient ID 0xFF.</t>
            </li>
            <li>
              <t>A connection identifier 0x21 (represented in the EDHOC message as 0x21, see <xref target="bstr-repr"/>) is converted to the OSCORE Recipient ID 0x21.</t>
            </li>
          </ul>
        </section>
      </section>
      <section anchor="transport">
        <name>Transport</name>
        <t>Cryptographically, EDHOC does not put requirements on the underlying layers. Received messages are processed as the expected next message according to protocol state, see <xref target="asym"/>. If processing fails for any reason then, typically, an error message is attempted to be sent and the EDHOC session is aborted.</t>
        <t>EDHOC is not bound to a particular transport layer and can even be used in environments without IP. Ultimately, the application is free to choose how to transport EDHOC messages including errors. In order to avoid unnecessary message processing or protocol termination, it is RECOMMENDED to use reliable transport, such as CoAP in reliable mode, which is the default transport, see <xref target="coap"/>. In general, the transport SHOULD handle:</t>
        <ul spacing="normal">
          <li>
            <t>message loss,</t>
          </li>
          <li>
            <t>message duplication, see <xref target="duplication"/> for an alternative,</t>
          </li>
          <li>
            <t>flow control,</t>
          </li>
          <li>
            <t>congestion control,</t>
          </li>
          <li>
            <t>fragmentation and reassembly,</t>
          </li>
          <li>
            <t>demultiplexing EDHOC messages from other types of messages,</t>
          </li>
          <li>
            <t>denial-of-service mitigation,</t>
          </li>
          <li>
            <t>message correlation, see <xref target="ci-edhoc"/>.</t>
          </li>
        </ul>
        <t>EDHOC does not require error free transport since a change in message content is detected through the transcript hashes in a subsequent integrity verification, see <xref target="asym"/>. The transport does not require additional means to handle message reordering because of the lockstep processing of EDHOC.</t>
        <t>EDHOC is designed to enable an authenticated key exchange with small messages, where the minimum message sizes are of the order illustrated in the first column of <xref target="fig-sizes"/>. There is no maximum message size specified by the protocol; this is for example dependent on the size of authentication credentials (if they are transported, see <xref target="auth-key-id"/>).</t>
        <t>The use of transport is specified in the application profile, which in particular may specify limitations in message sizes, see <xref target="applicability"/>.</t>
        <section anchor="ci-edhoc">
          <name>EDHOC Message Correlation</name>
          <t>Correlation between EDHOC messages is needed to facilitate the retrieval of protocol state and security context during an EDHOC session. It is also helpful for the Responder to get an indication that a received EDHOC message is the beginning of a new EDHOC session, such that no existing protocol state or security context needs to be retrieved.</t>
          <t>Correlation may be based on existing mechanisms in the transport protocol, for example, the CoAP Token may be used to correlate EDHOC messages in a CoAP response and in an associated CoAP request. The connection identifiers may also be used to correlate EDHOC messages.</t>
          <t>If correlation between consecutive messages is not provided by other means then the transport binding SHOULD mandate prepending of an appropriate connection identifier (when available from the EDHOC protocol) to the EDHOC message. If message_1 indication is not provided by other means, then the transport binding SHOULD mandate prepending of message_1 with the CBOR simple value <tt>true</tt> (0xf5).</t>
          <t>Transport of EDHOC in CoAP payloads is described in <xref target="coap"/>, including how to use connection identifiers and message_1 indication with CoAP. A similar construction is possible for other client-server protocols. Protocols that do not provide any correlation at all can prescribe prepending of the peer's connection identifier to all messages.</t>
          <t>Note that correlation between EDHOC messages may be obtained without transport support or connection identifiers, for example if the endpoints only accept a single instance of the protocol at a time, and execute conditionally on a correct sequence of messages.</t>
        </section>
      </section>
      <section anchor="auth-key-id">
        <name>Authentication Parameters</name>
        <t>EDHOC supports various settings for how the other endpoint's authentication (public) key may be transported, identified, and trusted.</t>
        <t>EDHOC performs the following authentication related operations:</t>
        <ul spacing="normal">
          <li>
            <t>EDHOC transports information about credentials in ID_CRED_I and ID_CRED_R (described in <xref target="id_cred"/>). Based on this information, the authentication credentials CRED_I and CRED_R (described in <xref target="auth-cred"/>) can be obtained. EDHOC may also transport certain authentication related information as External Authorization Data (see <xref target="AD"/>).</t>
          </li>
          <li>
            <t>EDHOC uses the authentication credentials in two ways (see <xref target="asym-msg2-proc"/> and <xref target="asym-msg3-proc"/>):
            </t>
            <ul spacing="normal">
              <li>
                <t>The authentication credential is input to the integrity verification using the MAC fields.</t>
              </li>
              <li>
                <t>The authentication key of the authentication credential is used with the Signature_or_MAC field to verify proof-of-possession of the private key.</t>
              </li>
            </ul>
          </li>
        </ul>
        <t>Other authentication related verifications are out of scope for EDHOC, and is the responsibility of the application. In particular, the authentication credential needs to be validated in the context of the connection for which EDHOC is used, see <xref target="auth-validation"/>. EDHOC MUST allow the application to read received information about credential (ID_CRED_R, ID_CRED_I). EDHOC MUST have access to the authentication key and the authentication credential.</t>
        <t>Note that the type of authentication key, authentication credential, and the identification of the credential have a large impact on the message size. For example, the Signature_or_MAC field is much smaller with a static DH key than with a signature key. A CWT Claims Set (CCS) is much smaller than a self-signed certificate/CWT, but if it is possible to reference the credential with a COSE header like 'kid', then that is in turn much smaller than a CCS.</t>
        <section anchor="auth-keys">
          <name>Authentication Keys</name>
          <t>The authentication key (i.e., the public key used for authentication) MUST be a signature key or static Diffie-Hellman key. The Initiator and the Responder MAY use different types of authentication keys, e.g., one uses a signature key and the other uses a static Diffie-Hellman key.</t>
          <t>The authentication key algorithm needs to be compatible with the method and the selected cipher suite (see <xref target="cs"/>). The authentication key algorithm needs to be compatible with the EDHOC key exchange algorithm when static Diffie-Hellman authentication is used, and compatible with the EDHOC signature algorithm when signature authentication is used.</t>
          <t>Note that for most signature algorithms, the signature is determined by the signature algorithm and the authentication key algorithm together. When using static Diffie-Hellman keys the Initiator's and Responder's private authentication keys are denoted as I and R, respectively, and the public authentication keys are denoted G_I and G_R, respectively.</t>
          <t>For X.509 certificates the authentication key is represented by a SubjectPublicKeyInfo field. For CWT and CCS (see <xref target="auth-cred"/>)) the authentication key is represented by a 'cnf' claim <xref target="RFC8747"/> containing a COSE_Key <xref target="RFC9052"/>. In EDHOC, a raw public key (RPK) is an authentication key encoded as a COSE_Key wrapped in a CCS.</t>
        </section>
        <section anchor="auth-cred">
          <name>Authentication Credentials</name>
          <t>The authentication credentials, CRED_I and CRED_R, contains the public authentication key of the Initiator and the Responder, respectively.
We use the notation CRED_x to refer to CRED_I or CRED_R.
Requirements on CRED_x applies both to CRED_I and to CRED_R.
The authentication credential typically also contains other parameters that needs to be verified by the application, see <xref target="auth-validation"/>, and in particular information about the identity ("subject") of the endpoint to prevent misbinding attacks, see <xref target="identities"/>.</t>
          <t>EDHOC relies on COSE for identification of credentials (see <xref target="id_cred"/>), for example X.509 certificates <xref target="RFC9360"/>, C509 certificates <xref target="I-D.ietf-cose-cbor-encoded-cert"/>, CWTs <xref target="RFC8392"/> and CWT Claims Sets (CCS) <xref target="RFC8392"/>. When the identified credential is a chain or a bag, the authentication credential CRED_x is just the end entity X.509 or C509 certificate / CWT. In the choice between chain or bag it is RECOMMENDED to use a chain, since the certificates in a bag are unordered and may contain self-signed and extraneous certificates, which can add complexity to the process of extracting the end entity certificate. The Initiator and the Responder MAY use different types of authentication credentials, e.g., one uses an RPK and the other uses a public key certificate.</t>
          <t>Since CRED_R is used in the integrity verification, see <xref target="asym-msg2-proc"/>, it needs to be specified such that it is identical when used by Initiator or Responder. Similarly for CRED_I, see <xref target="asym-msg3-proc"/>. The Initiator and Responder are expected to agree on the specific encoding of the authentication credentials, see <xref target="applicability"/>. It is RECOMMENDED that the COSE 'kid' parameter, when used to identify the authentication credential, refers to a such a specific encoding of the authentication credential. The Initiator and Responder SHOULD use an available authentication credential (transported in EDHOC or otherwise provisioned) without re-encoding. If for some reason re-encoding of an authentication credential passed by reference may occur, then a potential common encoding for CBOR based credentials is deterministically encoded CBOR as specified in Sections 4.2.1 and 4.2.2 of <xref target="RFC8949"/>.</t>
          <ul spacing="normal">
            <li>
              <t>When the authentication credential is an X.509 certificate, CRED_x SHALL be the DER encoded certificate, encoded as a bstr <xref target="RFC9360"/>.</t>
            </li>
            <li>
              <t>When the authentication credential is a C509 certificate, CRED_x SHALL be the C509Certificate <xref target="I-D.ietf-cose-cbor-encoded-cert"/>.</t>
            </li>
            <li>
              <t>When the authentication credential is a CWT including a COSE_Key, CRED_x SHALL be the untagged CWT.</t>
            </li>
            <li>
              <t>When the authentication credential includes a COSE_Key but is not in a CWT, CRED_x SHALL be an untagged CWT Claims Set (CCS). This is how RPKs are encoded, see <xref target="fig-ccs"/> for an example.
              </t>
              <ul spacing="normal">
                <li>
                  <t>Naked COSE_Keys are thus dressed as CCS when used in EDHOC, in its simplest form by prefixing the COSE_Key with 0xA108A101 (a map with a 'cnf' claim). In that case the resulting authentication credential contains no other identity than the public key itself, see <xref target="identities"/>.</t>
                </li>
              </ul>
            </li>
          </ul>
          <t>An example of CRED_x is shown below:</t>
          <figure anchor="fig-ccs">
            <name>CWT Claims Set (CCS) containing an X25519 static Diffie-Hellman key and an EUI-64 identity.</name>
            <artwork><![CDATA[
{                                              /CCS/
  2 : "42-50-31-FF-EF-37-32-39",               /sub/
  8 : {                                        /cnf/
    1 : {                                      /COSE_Key/
      1 : 1,                                   /kty/
      2 : h'00',                               /kid/
     -1 : 4,                                   /crv/
     -2 : h'b1a3e89460e88d3a8d54211dc95f0b90   /x/
            3ff205eb71912d6db8f4af980d2db83a'
    }
  }
}
]]></artwork>
          </figure>
        </section>
        <section anchor="id_cred">
          <name>Identification of Credentials</name>
          <t>The ID_CRED fields, ID_CRED_R and ID_CRED_I, are transported in message_2 and message_3, respectively, see <xref target="asym-msg2-proc"/> and <xref target="asym-msg3-proc"/>.
We use the notation ID_CRED_x to refer to ID_CRED_I or ID_CRED_R.
Requirements on ID_CRED_x applies both to ID_CRED_I and to ID_CRED_R.
The ID_CRED fields are used to identify and optionally transport credentials:</t>
          <ul spacing="normal">
            <li>
              <t>ID_CRED_R is intended to facilitate for the Initiator retrieving the authentication credential CRED_R and the authentication key of R.</t>
            </li>
            <li>
              <t>ID_CRED_I is intended to facilitate for the Responder retrieving the authentication credential CRED_I and the authentication key of I.</t>
            </li>
          </ul>
          <t>ID_CRED_x may contain the authentication credential CRED_x, for x = I or R, but for many settings it is not necessary to transport the authentication credential within EDHOC. For example, it may be pre-provisioned or acquired out-of-band over less constrained links. ID_CRED_I and ID_CRED_R do not have any cryptographic purpose in EDHOC since the authentication credentials are integrity protected.</t>
          <t>EDHOC relies on COSE for identification of credentials and supports all credential types for which COSE header parameters are defined including X.509 certificates (<xref target="RFC9360"/>), C509 certificates (<xref target="I-D.ietf-cose-cbor-encoded-cert"/>), CWT (see <xref target="new-header-param"/>) and CWT Claims Set (see <xref target="new-header-param"/>).</t>
          <t>ID_CRED_I and ID_CRED_R are of type COSE header_map, as defined in Section 3 of <xref target="RFC9052"/>, and contains one or more COSE header parameters. If a map contains several header paramerers, the labels do not need to be sorted in bytewise lexicographic order. ID_CRED_I and ID_CRED_R MAY contain different header parameters. The header parameters typically provide some information about the format of the credential.</t>
          <t>Example: X.509 certificates can be identified by a hash value using the 'x5t' parameter, see Section 2 of <xref target="RFC9360"/>:</t>
          <ul spacing="normal">
            <li>
              <t>ID_CRED_x = { 34 : COSE_CertHash }, for x = I or R,</t>
            </li>
          </ul>
          <t>Example: CWT or CCS can be identified by a key identifier using the 'kid' parameter, see Section 3.1 of <xref target="RFC9052"/>:</t>
          <ul spacing="normal">
            <li>
              <t>ID_CRED_x = { 4 : kid_x }, where kid_x : kid, for x = I or R.</t>
            </li>
          </ul>
          <t>Note that COSE header parameters in ID_CRED_x are used to identify the message sender's credential. There is therefore no reason to use the "-sender" header parameters, such as x5t-sender, defined in Section 3 of <xref target="RFC9360"/>. Instead, the corresponding parameter without "-sender", such as x5t, SHOULD be used.</t>
          <t>As stated in Section 3.1 of <xref target="RFC9052"/>, applications MUST NOT assume that 'kid' values are unique and several keys associated with a 'kid' may need to be checked before the correct one is found. Applications might use additional information such as 'kid context' or lower layers to determine which key to try first. Applications should strive to make ID_CRED_x as unique as possible, since the recipient may otherwise have to try several keys.</t>
          <t>See <xref target="COSE"/> for more examples.</t>
          <section anchor="new-header-param">
            <name>COSE Header Parameters for CWT and CWT Claims Set</name>
            <t>This document registers two new COSE header parameters 'kcwt' and 'kccs' for use with CBOR Web Token (CWT, <xref target="RFC8392"/>) and CWT Claims Set (CCS, <xref target="RFC8392"/>), respectively. The CWT/CCS MUST contain a COSE_Key in a 'cnf' claim <xref target="RFC8747"/>. There may be any number of additional claims present in the CWT/CCS.</t>
            <t>CWTs sent in 'kcwt' are protected using a MAC or a signature and are similar to a certificate (when with public key cryptography) or a Kerberos ticket (when used with symmetric key cryptography). CCSs sent in 'kccs' are not protected and are therefore similar to raw public keys or self-signed certificates.</t>
            <t>Security considerations for 'kcwt' and 'kccs' are made in <xref target="impl-cons"/>.</t>
          </section>
          <section anchor="compact-kid">
            <name>Compact Encoding of ID_CRED Fields for 'kid'</name>
            <t>To comply with the LAKE message size requirements, see <xref target="I-D.ietf-lake-reqs"/>, two optimizations are made for the case when ID_CRED_x, for x = I or R, contains a single 'kid' parameter.</t>
            <ol spacing="normal" type="1"><li>
                <t>The CBOR map { 4 : kid_x } is replaced by the byte string kid_x.</t>
              </li>
              <li>
                <t>The representation of identifiers specified in <xref target="bstr-repr"/> is applied to kid_x.</t>
              </li>
            </ol>
            <t>These optimizations MUST be applied if and only if ID_CRED_x = { 4 : kid_x } and ID_CRED_x in PLAINTEXT_y of message_y, y = 2 or 3, see <xref target="asym-msg2-proc"/> and <xref target="asym-msg3-proc"/>. Note that these optimizations are not applied to instances of ID_CRED_x which have no impact on message size, e.g., context_y, or the COSE protected header. Examples:</t>
            <ul spacing="normal">
              <li>
                <t>For ID_CRED_x = { 4 : h'FF' }, the encoding in PLAINTEXT_y is not the CBOR map 0xA10441FF but the CBOR byte string h'FF', i.e., 0x41FF.</t>
              </li>
              <li>
                <t>For ID_CRED_x = { 4 : h'21' }, the encoding in PLAINTEXT_y is neither the CBOR map 0xA1044121, nor the CBOR byte string h'21', i.e., 0x4121, but the CBOR integer 0x21.</t>
              </li>
            </ul>
          </section>
        </section>
      </section>
      <section anchor="cs">
        <name>Cipher Suites</name>
        <t>An EDHOC cipher suite consists of an ordered set of algorithms from the "COSE Algorithms" and "COSE Elliptic Curves" registries as well as the EDHOC MAC length. All algorithm names and definitions follow from COSE algorithms <xref target="RFC9053"/>. Note that COSE sometimes uses peculiar names such as ES256 for ECDSA with SHA-256, A128 for AES-128, and Ed25519 for the curve edwards25519. Algorithms need to be specified with enough parameters to make them completely determined. The EDHOC MAC length MUST be at least 8 bytes. Any cryptographic algorithm used in the COSE header parameters in ID_CRED fields is selected independently of the selected cipher suite. EDHOC is currently only specified for use with key exchange algorithms of type ECDH curves, but any Key Encapsulation Method (KEM), including Post-Quantum Cryptography (PQC) KEMs, can be used in method 0, see <xref target="pqc"/>. Use of other types of key exchange algorithms to replace static DH authentication (method 1,2,3) would likely require a specification updating EDHOC with new methods.</t>
        <t>EDHOC supports all signature algorithms defined by COSE. Just like in (D)TLS 1.3 <xref target="RFC8446"/><xref target="RFC9147"/> and IKEv2 <xref target="RFC7296"/>, a signature in COSE is determined by the signature algorithm and the authentication key algorithm together, see <xref target="auth-keys"/>. The exact details of the authentication key algorithm depend on the type of authentication credential. COSE supports different formats for storing the public authentication keys including COSE_Key and X.509, which use different names and ways to represent the authentication key and the authentication key algorithm.</t>
        <t>An EDHOC cipher suite consists of the following parameters:</t>
        <ul spacing="normal">
          <li>
            <t>EDHOC AEAD algorithm</t>
          </li>
          <li>
            <t>EDHOC hash algorithm</t>
          </li>
          <li>
            <t>EDHOC MAC length in bytes (Static DH)</t>
          </li>
          <li>
            <t>EDHOC key exchange algorithm (ECDH curve)</t>
          </li>
          <li>
            <t>EDHOC signature algorithm</t>
          </li>
          <li>
            <t>Application AEAD algorithm</t>
          </li>
          <li>
            <t>Application hash algorithm</t>
          </li>
        </ul>
        <t>Each cipher suite is identified with a pre-defined integer label.</t>
        <t>EDHOC can be used with all algorithms and curves defined for COSE. Implementations can either use any combination of COSE algorithms and parameters to define their own private cipher suite, or use one of the pre-defined cipher suites. Private cipher suites can be identified with any of the four values -24, -23, -22, -21. The pre-defined cipher suites are listed in the IANA registry (<xref target="suites-registry"/>) with initial content outlined here:</t>
        <ul spacing="normal">
          <li>
            <t>Cipher suites 0-3, based on AES-CCM, are intended for constrained IoT where message overhead is a very important factor. Note that AES-CCM-16-64-128 and AES-CCM-16-128-128 are compatible with the IEEE CCM* mode.
            </t>
            <ul spacing="normal">
              <li>
                <t>Cipher suites 1 and 3 use a larger tag length (128-bit) in EDHOC than in the Application AEAD algorithm (64-bit).</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Cipher suites 4 and 5, based on ChaCha20, are intended for less constrained applications and only use 128-bit tag lengths.</t>
          </li>
          <li>
            <t>Cipher suite 6, based on AES-GCM, is for general non-constrained applications. It consists of high performance algorithms that are widely used in non-constrained applications.</t>
          </li>
          <li>
            <t>Cipher suites 24 and 25 are intended for high security applications such as government use and financial applications. These cipher suites do not share any algorithms. Cipher suite 24 consists of algorithms from the CNSA 1.0 suite <xref target="CNSA"/>.</t>
          </li>
        </ul>
        <t>The different methods (<xref target="method"/>) use the same cipher suites, but some algorithms are not used in some methods. The EDHOC signature algorithm is not used in methods without signature authentication.</t>
        <t>The Initiator needs to have a list of cipher suites it supports in order of preference. The Responder needs to have a list of cipher suites it supports. SUITES_I contains cipher suites supported by the Initiator, formatted and processed as detailed in <xref target="asym-msg1-form"/> to secure the cipher suite negotiation. Examples of cipher suite negotiation are given in <xref target="ex-neg"/>.</t>
      </section>
      <section anchor="cose_key">
        <name>Ephemeral Public Keys</name>
        <t>The ephemeral public keys in EDHOC (G_X and G_Y) use compact representation of elliptic curve points, see <xref target="comrep"/>. In COSE, compact representation is achieved by formatting the ECDH ephemeral public keys as COSE_Keys of type EC2 or OKP according to Sections 7.1 and 7.2 of <xref target="RFC9053"/>, but only including the 'x' parameter in G_X and G_Y. For Elliptic Curve Keys of type EC2, compact representation MAY be used also in the COSE_Key. COSE always uses compact output for Elliptic Curve Keys of type EC2. If the COSE implementation requires a 'y' parameter, the value y = false or a calculated y-coordinate can be used, see <xref target="comrep"/>.</t>
      </section>
      <section anchor="AD">
        <name>External Authorization Data (EAD)</name>
        <t>In order to reduce round trips and the number of messages, or to simplify processing, external security applications may be integrated into EDHOC by transporting authorization related data in the messages.</t>
        <t>EDHOC allows processing of external authorization data (EAD) to be defined in a separate specification, and sent in dedicated fields of the four EDHOC messages (EAD_1, EAD_2, EAD_3, EAD_4). EAD is opaque data to EDHOC.</t>
        <t>Each EAD field, EAD_x for x = 1, 2, 3 or 4, is a CBOR sequence (see <xref target="CBOR"/>) consisting of one or more EAD items. An EAD item ead is a CBOR sequence of an ead_label and an optional ead_value, see <xref target="fig-ead-item"/> and  <xref target="CDDL"/> for the CDDL definitions.</t>
        <figure anchor="fig-ead-item">
          <name>EAD item.</name>
          <sourcecode type="CDDL"><![CDATA[
ead = (
  ead_label : int,
  ? ead_value : bstr,
)
]]></sourcecode>
        </figure>
        <t>A security application may register one or more EAD labels, see <xref target="iana-ead"/>, and specify the associated processing and security considerations. The IANA registry contains the absolute value of the ead_label, |ead_label|; the same ead_value applies independently of sign of ead_label.</t>
        <t>An EAD item can be either critical or non-critical, determined by the sign of the ead_label in the EAD item transported in the EAD field. A negative value indicates that the EAD item is critical and a non-negative value indicates that the EAD item is non-critical.</t>
        <t>If an endpoint receives a critical EAD item it does not recognize, or a critical EAD item that contains information that it cannot process, then the endpoint MUST send an EDHOC error message back as defined in <xref target="error"/>, and the EDHOC session MUST be aborted. The EAD item specification defines the error processing. A non-critical EAD item can be ignored.</t>
        <t>The security application registering a new EAD item needs to describe under what conditions the EAD item is critical or non-critical, and thus whether the ead_label is used with negative or positive sign. ead_label = 0 is used for padding, see <xref target="padding"/>.</t>
        <t>The security application may define multiple uses of certain EAD items, e.g., the same EAD item may be used in different EDHOC messages. Multiple occurrences of an EAD item in one EAD field may also be specified, but the criticality of the repeated EAD item is expected to be the same.</t>
        <t>The EAD fields of EDHOC MUST only be used with registered EAD items, see <xref target="iana-ead"/>. Examples of the use of EAD are provided in <xref target="ead-appendix"/>.</t>
        <section anchor="padding">
          <name>Padding</name>
          <t>EDHOC message_1 and the plaintext of message_2, message_3 and message_4 can be padded with the use of the corresponding EAD_x field, for x = 1, 2, 3, 4. Padding in EAD_1 mitigates amplification attacks (see <xref target="dos"/>), and padding in EAD_2, EAD_3, and EAD_4 hides the true length of the plaintext (see <xref target="internet-threat"/>). Padding MUST be ignored and discarded by the receiving application.</t>
          <t>Padding is obtained by using an EAD item with ead_label = 0 and a (pseudo-)randomly generated byte string of appropriate length as ead_value, noting that the ead_label and the CBOR encoding of ead_value also add bytes. Examples:</t>
          <ul spacing="normal">
            <li>
              <t>One byte padding (optional ead_value omitted):
              </t>
              <ul spacing="normal">
                <li>
                  <t>EAD_x = 0x00</t>
                </li>
              </ul>
            </li>
            <li>
              <t>Two bytes padding, using the empty byte string (0x40) as ead_value:
              </t>
              <ul spacing="normal">
                <li>
                  <t>EAD_x = 0x0040</t>
                </li>
              </ul>
            </li>
            <li>
              <t>Three bytes padding, constructed from the pseudorandomly generated ead_value 0xe9 encoded as byte string:
              </t>
              <ul spacing="normal">
                <li>
                  <t>EAD_x = 0x0041e9</t>
                </li>
              </ul>
            </li>
          </ul>
          <t>Multiple occurrences of EAD items with ead_label = 0 are allowed. Certain padding lengths require the use of at least two such EAD items.</t>
          <t>Note that padding is non-critical because the intended behaviour when receiving is to ignore it.</t>
        </section>
      </section>
      <section anchor="applicability">
        <name>Application Profile</name>
        <t>EDHOC requires certain parameters to be agreed upon between Initiator and Responder. Some parameters can be negotiated through the protocol execution (specifically, cipher suite, see <xref target="cs"/>) but other parameters are only communicated and may not be negotiated (e.g., which authentication method is used, see <xref target="method"/>). Yet other parameters need to be known out-of-band to ensure successful completion, e.g., whether message_4 is used or not. The application decides which endpoint is Initiator and which is Responder.</t>
        <t>The purpose of an application profile is to describe the intended use of EDHOC to allow for the relevant processing and verifications to be made, including things like:</t>
        <ol spacing="normal" type="1"><li>
            <t>How the endpoint detects that an EDHOC message is received. This includes how EDHOC messages are transported, for example in the payload of a CoAP message with a certain Uri-Path or Content-Format; see <xref target="coap"/>.
            </t>
            <ul spacing="normal">
              <li>
                <t>The method of transporting EDHOC messages may also describe data carried along with the messages that are needed for the transport to satisfy the requirements of <xref target="transport"/>, e.g., connection identifiers used with certain messages, see <xref target="coap"/>.</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Authentication method (METHOD; see <xref target="method"/>).</t>
          </li>
          <li>
            <t>Profile for authentication credentials (CRED_I, CRED_R; see <xref target="auth-cred"/>), e.g., profile for certificate or CCS, including supported authentication key algorithms (subject public key algorithm in X.509 or C509 certificate).</t>
          </li>
          <li>
            <t>Type used to identify credentials (ID_CRED_I, ID_CRED_R; see <xref target="id_cred"/>).</t>
          </li>
          <li>
            <t>Use and type of external authorization data (EAD_1, EAD_2, EAD_3, EAD_4; see <xref target="AD"/>).</t>
          </li>
          <li>
            <t>Identifier used as the identity of the endpoint; see <xref target="identities"/>.</t>
          </li>
          <li>
            <t>If message_4 shall be sent/expected, and if not, how to ensure a protected application message is sent from the Responder to the Initiator; see <xref target="m4"/>.</t>
          </li>
        </ol>
        <t>The application profile may also contain information about supported cipher suites. The procedure for selecting and verifying a cipher suite is still performed as described in <xref target="asym-msg1-form"/> and <xref target="wrong-selected"/>, but it may become simplified by this knowledge. EDHOC messages can be processed without the application profile, i.e., the EDHOC messages includes information about the type and length of all fields.</t>
        <t>An example of an application profile is shown in <xref target="appl-temp"/>.</t>
        <t>For some parameters, like METHOD, type of ID_CRED field or EAD, the receiver of an EDHOC message is able to verify compliance with the application profile, and if it needs to fail because of lack of compliance, to infer the reason why the EDHOC session failed.</t>
        <t>For other encodings, like the profiling of CRED_x in the case that it is not transported, it may not be possible to verify that lack of compliance with the application profile was the reason for failure: Integrity verification in message_2 or message_3 may fail not only because of a wrong credential. For example, in case the Initiator uses a public key certificate by reference (i.e., not transported within the protocol) then both endpoints need to use an identical data structure as CRED_I or else the integrity verification will fail.</t>
        <t>Note that it is not necessary for the endpoints to specify a single transport for the EDHOC messages. For example, a mix of CoAP and HTTP may be used along the path, and this may still allow correlation between messages.</t>
        <t>The application profile may be dependent on the identity of the other endpoint, or other information carried in an EDHOC message, but it then applies only to the later phases of the protocol when such information is known. (The Initiator does not know the identity of the Responder before having verified message_2, and the Responder does not know the identity of the Initiator before having verified message_3.)</t>
        <t>Other conditions may be part of the application profile, such as what is the target application or use (if there is more than one application/use) to the extent that EDHOC can distinguish between them. In case multiple application profiles are used, the receiver needs to be able to determine which is applicable for a given EDHOC session, for example based on URI to which the EDHOC message is sent, or external authorization data type.</t>
      </section>
    </section>
    <section anchor="key-der">
      <name>Key Derivation</name>
      <section anchor="keys-for-edhoc-message-processing">
        <name>Keys for EDHOC Message Processing</name>
        <t>EDHOC uses Extract-and-Expand <xref target="RFC5869"/> with the EDHOC hash algorithm in the selected cipher suite to derive keys used in message processing. This section defines EDHOC_Extract (<xref target="extract"/>) and EDHOC_Expand (<xref target="expand"/>), and how to use them to derive PRK_out (<xref target="prkout"/>) which is the shared secret session key resulting from a completed EDHOC session.</t>
        <t>EDHOC_Extract is used to derive fixed-length uniformly pseudorandom keys (PRK) from ECDH shared secrets. EDHOC_Expand is used to define EDHOC_KDF for generating MACs and for deriving output keying material (OKM) from PRKs.</t>
        <t>In EDHOC a specific message is protected with a certain pseudorandom key, but how the key is derived depends on the authentication method (<xref target="method"/>) as detailed in <xref target="asym"/>.</t>
        <!-- A diagram of the EDHOC key schedule can be found in Figure 2 of {{Vucinic22}}. TBD: Rewrite the diagram -->

<section anchor="extract">
          <name>EDHOC_Extract</name>
          <t>The pseudorandom keys (PRKs) used for EDHOC message processing are derived using EDHOC_Extract:</t>
          <artwork><![CDATA[
   PRK = EDHOC_Extract( salt, IKM )
]]></artwork>
          <t>where the input keying material (IKM) and salt are defined for each PRK below.</t>
          <t>The definition of EDHOC_Extract depends on the EDHOC hash algorithm of the selected cipher suite:</t>
          <ul spacing="normal">
            <li>
              <t>if the EDHOC hash algorithm is SHA-2, then EDHOC_Extract( salt, IKM ) = HKDF-Extract( salt, IKM ) <xref target="RFC5869"/></t>
            </li>
            <li>
              <t>if the EDHOC hash algorithm is SHAKE128, then EDHOC_Extract( salt, IKM ) = KMAC128( salt, IKM, 256, "" )</t>
            </li>
            <li>
              <t>if the EDHOC hash algorithm is SHAKE256, then EDHOC_Extract( salt, IKM ) = KMAC256( salt, IKM, 512, "" )</t>
            </li>
          </ul>
          <t>where the Keccak message authentication code (KMAC) is specified in <xref target="SP800-185"/>.</t>
          <t>The rest of the section defines the pseudorandom keys PRK_2e, PRK_3e2m and PRK_4e3m; their use is shown in <xref target="fig-edhoc-kdf"/>. The index of a PRK indicates its use or in what message protection operation it is involved. For example, PRK_3e2m is involved in the encryption of message 3 and in calculating the MAC of message 2.</t>
          <section anchor="prk2e">
            <name>PRK_2e</name>
            <t>The pseudorandom key PRK_2e is derived with the following input:</t>
            <ul spacing="normal">
              <li>
                <t>The salt SHALL be TH_2.</t>
              </li>
              <li>
                <t>The IKM SHALL be the ephemeral-ephemeral ECDH shared secret G_XY (calculated from G_X and Y or G_Y and X) as defined in <xref section="6.3.1" sectionFormat="of" target="RFC9053"/>. The use of G_XY gives forward secrecy, in the sense that compromise of the private authentication keys does not compromise past session keys.</t>
              </li>
            </ul>
            <t>Example: Assuming the use of curve25519, the ECDH shared secret G_XY is the output of the X25519 function <xref target="RFC7748"/>:</t>
            <artwork><![CDATA[
   G_XY = X25519( Y, G_X ) = X25519( X, G_Y )
]]></artwork>
            <t>Example: Assuming the use of SHA-256 the extract phase of HKDF produces PRK_2e as follows:</t>
            <artwork><![CDATA[
   PRK_2e = HMAC-SHA-256( TH_2, G_XY )
]]></artwork>
          </section>
          <section anchor="prk3e2m">
            <name>PRK_3e2m</name>
            <t>The pseudorandom key PRK_3e2m is derived as follows:</t>
            <t>If the Responder authenticates with a static Diffie-Hellman key, then PRK_3e2m = EDHOC_Extract( SALT_3e2m, G_RX ), where</t>
            <ul spacing="normal">
              <li>
                <t>SALT_3e2m is derived from PRK_2e, see <xref target="expand"/>, and</t>
              </li>
              <li>
                <t>G_RX is the ECDH shared secret calculated from G_R and X, or G_X and R (the Responder's private authentication key, see <xref target="auth-keys"/>),</t>
              </li>
            </ul>
            <t>else PRK_3e2m = PRK_2e.</t>
          </section>
          <section anchor="prk4e3m">
            <name>PRK_4e3m</name>
            <t>The pseudorandom key PRK_4e3m is derived as follows:</t>
            <t>If the Initiator authenticates with a static Diffie-Hellman key, then PRK_4e3m = EDHOC_Extract( SALT_4e3m, G_IY ), where</t>
            <ul spacing="normal">
              <li>
                <t>SALT_4e3m is derived from PRK_3e2m, see <xref target="expand"/>, and</t>
              </li>
              <li>
                <t>G_IY is the ECDH shared secret calculated from G_I and Y, or G_Y and I (the Initiator's private authentication key, see <xref target="auth-keys"/>),</t>
              </li>
            </ul>
            <t>else PRK_4e3m = PRK_3e2m.</t>
          </section>
        </section>
        <section anchor="expand">
          <name>EDHOC_Expand and EDHOC_KDF</name>
          <t>The output keying material (OKM) - including keys, IVs, and salts - are derived from the PRKs using the EDHOC_KDF, which is defined through EDHOC_Expand:</t>
          <artwork><![CDATA[
   OKM = EDHOC_KDF( PRK, info_label, context, length )
       = EDHOC_Expand( PRK, info, length )
]]></artwork>
          <t>where info is encoded as the CBOR sequence</t>
          <sourcecode type="CDDL"><![CDATA[
info = (
  info_label : int,
  context : bstr,
  length : uint,
)
]]></sourcecode>
          <t>where</t>
          <ul spacing="normal">
            <li>
              <t>info_label is an int</t>
            </li>
            <li>
              <t>context is a bstr</t>
            </li>
            <li>
              <t>length is the length of OKM in bytes</t>
            </li>
          </ul>
          <t>When EDHOC_KDF is used to derive OKM for EDHOC message processing, then context includes one of the transcript hashes TH_2, TH_3, or TH_4 defined in Sections <xref target="asym-msg2-proc" format="counter"/> and <xref target="asym-msg3-proc" format="counter"/>.</t>
          <t>The definition of EDHOC_Expand depends on the EDHOC hash algorithm of the selected cipher suite:</t>
          <ul spacing="normal">
            <li>
              <t>if the EDHOC hash algorithm is SHA-2, then EDHOC_Expand( PRK, info, length ) = HKDF-Expand( PRK, info, length ) <xref target="RFC5869"/></t>
            </li>
            <li>
              <t>if the EDHOC hash algorithm is SHAKE128, then EDHOC_Expand( PRK, info, length ) = KMAC128( PRK, info, L, "" )</t>
            </li>
            <li>
              <t>if the EDHOC hash algorithm is SHAKE256, then EDHOC_Expand( PRK, info, length ) = KMAC256( PRK, info, L, "" )</t>
            </li>
          </ul>
          <t>where L = 8 <contact fullname="⋅"/> length, the output length in bits.</t>
          <t><xref target="fig-edhoc-kdf"/> lists derivations made with EDHOC_KDF, where</t>
          <ul spacing="normal">
            <li>
              <t>hash_length - length of output size of the EDHOC hash algorithm of the selected cipher suite</t>
            </li>
            <li>
              <t>key_length - length of the encryption key of the EDHOC AEAD algorithm of the selected cipher suite</t>
            </li>
            <li>
              <t>iv_length - length of the initialization vector of the EDHOC AEAD algorithm of the selected cipher suite</t>
            </li>
          </ul>
          <t>Further details of the key derivation and how the output keying material is used are specified in <xref target="asym"/>.</t>
          <figure anchor="fig-edhoc-kdf">
            <name>Key derivations using EDHOC_KDF. h'' is CBOR diagnostic notation for the empty byte string, 0x40.</name>
            <artwork align="center"><![CDATA[
KEYSTREAM_2   = EDHOC_KDF( PRK_2e,   0, TH_2,      plaintext_length )
SALT_3e2m     = EDHOC_KDF( PRK_2e,   1, TH_2,      hash_length )
MAC_2         = EDHOC_KDF( PRK_3e2m, 2, context_2, mac_length_2 )
K_3           = EDHOC_KDF( PRK_3e2m, 3, TH_3,      key_length )
IV_3          = EDHOC_KDF( PRK_3e2m, 4, TH_3,      iv_length )
SALT_4e3m     = EDHOC_KDF( PRK_3e2m, 5, TH_3,      hash_length )
MAC_3         = EDHOC_KDF( PRK_4e3m, 6, context_3, mac_length_3 )
PRK_out       = EDHOC_KDF( PRK_4e3m, 7, TH_4,      hash_length )
K_4           = EDHOC_KDF( PRK_4e3m, 8, TH_4,      key_length )
IV_4          = EDHOC_KDF( PRK_4e3m, 9, TH_4,      iv_length )
PRK_exporter  = EDHOC_KDF( PRK_out, 10, h'',       hash_length )
]]></artwork>
          </figure>
        </section>
        <section anchor="prkout">
          <name>PRK_out</name>
          <t>The pseudorandom key PRK_out, derived as shown in <xref target="fig-edhoc-kdf"/>, is the output session key of a completed EDHOC session.</t>
          <t>Keys for applications are derived using EDHOC_Exporter (see <xref target="exporter"/>) from PRK_exporter, which in turn is derived from PRK_out as shown in <xref target="fig-edhoc-kdf"/>. For the purpose of generating application keys, it is sufficient to store PRK_out or PRK_exporter. (Note that the word "store" used here does not imply that the application has access to the plaintext PRK_out since that may be reserved for code within a Trusted Execution Environment, see <xref target="impl-cons"/>).</t>
        </section>
      </section>
      <section anchor="keys-for-edhoc-applications">
        <name>Keys for EDHOC Applications</name>
        <t>This section defines EDHOC_Exporter in terms of EDHOC_KDF and PRK_exporter. A key update function is defined in <xref target="keyupdate"/>.</t>
        <section anchor="exporter">
          <name>EDHOC_Exporter</name>
          <t>Keying material for the application can be derived using the EDHOC_Exporter interface defined as:</t>
          <artwork><![CDATA[
   EDHOC_Exporter(exporter_label, context, length)
     = EDHOC_KDF(PRK_exporter, exporter_label, context, length)
]]></artwork>
          <t>where</t>
          <ul spacing="normal">
            <li>
              <t>exporter_label is a registered uint from the EDHOC_Exporter Label registry (<xref target="exporter-label"/>)</t>
            </li>
            <li>
              <t>context is a bstr defined by the application</t>
            </li>
            <li>
              <t>length is a uint defined by the application</t>
            </li>
          </ul>
          <t>The (exporter_label, context) pair used in EDHOC_Exporter must be unique, i.e., an (exporter_label, context) MUST NOT be used for two different purposes. However, an application can re-derive the same key several times as long as it is done securely. For example, in most encryption algorithms the same key can be reused with different nonces. The context can for example be the empty CBOR byte string.</t>
          <t>Examples of use of the EDHOC_Exporter are given in <xref target="transfer"/>.</t>
        </section>
      </section>
    </section>
    <section anchor="asym">
      <name>Message Formatting and Processing</name>
      <t>This section specifies formatting of the messages and processing steps. Error messages are specified in <xref target="error"/>. Annotated traces of EDHOC sessions are provided in <xref target="I-D.ietf-lake-traces"/>.</t>
      <t>An EDHOC message is encoded as a sequence of CBOR data items (CBOR Sequence, <xref target="RFC8742"/>).
Additional optimizations are made to reduce message overhead.</t>
      <t>While EDHOC uses the COSE_Key, COSE_Sign1, and COSE_Encrypt0 structures, only a subset of the parameters is included in the EDHOC messages, see <xref target="COSE"/>. In order to recreate the COSE object, the recipient endpoint may need to add parameters to the COSE headers not included in the EDHOC message, for example the parameter 'alg' to COSE_Sign1 or COSE_Encrypt0.</t>
      <section anchor="proc-outline">
        <name>EDHOC Message Processing Outline</name>
        <t>For each new/ongoing EDHOC session, the endpoints are assumed to keep an associated protocol state containing identifiers, keying material, etc. used for subsequent processing of protocol related data. The protocol state is assumed to be associated with an application profile (<xref target="applicability"/>) which provides the context for how messages are transported, identified, and processed.</t>
        <t>EDHOC messages SHALL be processed according to the current protocol state. The following steps are expected to be performed at reception of an EDHOC message:</t>
        <ol spacing="normal" type="1"><li>
            <t>Detect that an EDHOC message has been received, for example by means of port number, URI, or media type (<xref target="applicability"/>).</t>
          </li>
          <li>
            <t>Retrieve the protocol state according to the message correlation, see <xref target="ci-edhoc"/>. If there is no protocol state, in the case of message_1, a new protocol state is created. The Responder endpoint needs to make use of available denial-of-service mitigation (<xref target="dos"/>).</t>
          </li>
          <li>
            <t>If the message received is an error message, then process it according to <xref target="error"/>, else process it as the expected next message according to the protocol state.</t>
          </li>
        </ol>
        <t>The message processing steps SHALL be processed in order, unless otherwise stated. If the processing fails for some reason then, typically, an error message is sent, the EDHOC session is aborted, and the protocol state erased. When the composition and sending of one message is completed and before the next message is received, error messages SHALL NOT be sent.</t>
        <t>After having successfully processed the last message (message_3 or message_4 depending on application profile) the EDHOC session is completed, after which no error messages are sent and EDHOC session output MAY be maintained even if error messages are received. Further details are provided in the following subsections and in <xref target="error"/>.</t>
        <t>Different instances of the same message MUST NOT be processed in one EDHOC session.  Note that processing will fail if the same message appears a second time for EDHOC processing in the same EDHOC session because the state of the protocol has moved on and now expects something else. Message deduplication MUST be done by the transport protocol (see <xref target="transport"/>) or, if not supported by the transport, as described in <xref target="duplication"/>.</t>
      </section>
      <section anchor="m1">
        <name>EDHOC Message 1</name>
        <section anchor="asym-msg1-form">
          <name>Formatting of Message 1</name>
          <t>message_1 SHALL be a CBOR Sequence (see <xref target="CBOR"/>) as defined below</t>
          <sourcecode type="CDDL"><![CDATA[
message_1 = (
  METHOD : int,
  SUITES_I : suites,
  G_X : bstr,
  C_I : bstr / -24..23,
  ? EAD_1,
)

suites = [ 2* int ] / int
EAD_1 = 1* ead
]]></sourcecode>
          <t>where:</t>
          <ul spacing="normal">
            <li>
              <t>METHOD - authentication method, see <xref target="method"/>.</t>
            </li>
            <li>
              <t>SUITES_I - array of cipher suites which the Initiator supports constructed as specified in <xref target="init-proc-msg1"/>.</t>
            </li>
            <li>
              <t>G_X - the ephemeral public key of the Initiator</t>
            </li>
            <li>
              <t>C_I - variable length connection identifier. Note that connection identifiers are byte strings but certain values are represented as integers in the message, see <xref target="bstr-repr"/>.</t>
            </li>
            <li>
              <t>EAD_1 - external authorization data, see <xref target="AD"/>.</t>
            </li>
          </ul>
        </section>
        <section anchor="init-proc-msg1">
          <name>Initiator Composition of Message 1</name>
          <t>The processing steps are detailed below and in <xref target="wrong-selected"/>.</t>
          <t>The Initiator SHALL compose message_1 as follows:</t>
          <ul spacing="normal">
            <li>
              <t>Construct SUITES_I as an array of cipher suites supported by I in order of preference by I with the first cipher suite in the array being the most preferred by I, and the last being the one selected by I for this EDHOC session. If the cipher suite most preferred by I is selected then SUITES_I contains only that cipher suite and is encoded as an int. All cipher suites, if any, preferred by I over the selected one MUST be included. (See also <xref target="wrong-selected"/>.)
              </t>
              <ul spacing="normal">
                <li>
                  <t>The selected suite is based on what the Initiator can assume to be supported by the Responder; if the Initiator previously received from the Responder an error message with error code 2 containing SUITES_R (see <xref target="wrong-selected"/>) indicating cipher suites supported by the Responder, then the Initiator SHOULD select its most preferred supported cipher suite among those (bearing in mind that error messages may be forged).</t>
                </li>
                <li>
                  <t>The Initiator MUST NOT change its order of preference for cipher suites, and MUST NOT omit a cipher suite preferred to the selected one because of previous error messages received from the Responder.</t>
                </li>
              </ul>
            </li>
            <li>
              <t>Generate an ephemeral ECDH key pair using the curve in the selected cipher suite and format it as a COSE_Key. Let G_X be the 'x' parameter of the COSE_Key.</t>
            </li>
            <li>
              <t>Choose a connection identifier C_I and store it during the EDHOC session.</t>
            </li>
            <li>
              <t>Encode message_1 as a sequence of CBOR encoded data items as specified in <xref target="asym-msg1-form"/></t>
            </li>
          </ul>
        </section>
        <section anchor="resp-proc-msg1">
          <name>Responder Processing of Message 1</name>
          <t>The Responder SHALL process message_1 in the following order:</t>
          <ul spacing="normal">
            <li>
              <t>Decode message_1 (see <xref target="CBOR"/>).</t>
            </li>
            <li>
              <t>Process message_1, in particular verify that the selected cipher suite is supported and that no prior cipher suite as ordered in SUITES_I is supported.</t>
            </li>
            <li>
              <t>If all processing completed successfully, and if EAD_1 is present, then make it available to the application for EAD processing.</t>
            </li>
          </ul>
          <t>If any processing step fails, then the Responder MUST send an EDHOC error message back as defined in <xref target="error"/>, and the EDHOC session MUST be aborted.</t>
        </section>
      </section>
      <section anchor="m2">
        <name>EDHOC Message 2</name>
        <section anchor="asym-msg2-form">
          <name>Formatting of Message 2</name>
          <t>message_2 SHALL be a CBOR Sequence (see <xref target="CBOR"/>) as defined below</t>
          <sourcecode type="CDDL"><![CDATA[
message_2 = (
  G_Y_CIPHERTEXT_2 : bstr,
)
]]></sourcecode>
          <t>where:</t>
          <ul spacing="normal">
            <li>
              <t>G_Y_CIPHERTEXT_2 - the concatenation of G_Y (i.e., the ephemeral public key of the Responder) and CIPHERTEXT_2.</t>
            </li>
          </ul>
        </section>
        <section anchor="asym-msg2-proc">
          <name>Responder Composition of Message 2</name>
          <t>The Responder SHALL compose message_2 as follows:</t>
          <ul spacing="normal">
            <li>
              <t>Generate an ephemeral ECDH key pair using the curve in the selected cipher suite and format it as a COSE_Key. Let G_Y be the 'x' parameter of the COSE_Key.</t>
            </li>
            <li>
              <t>Choose a connection identifier C_R and store it for the length of the EDHOC session.</t>
            </li>
            <li>
              <t>Compute the transcript hash TH_2 = H( G_Y, H(message_1) ) where H() is the EDHOC hash algorithm of the selected cipher suite. The input to the hash function is a CBOR Sequence. Note that H(message_1) can be computed and cached already in the processing of message_1.</t>
            </li>
            <li>
              <t>Compute MAC_2 as in <xref target="expand"/> with context_2 = &lt;&lt; C_R, ID_CRED_R, TH_2, CRED_R, ? EAD_2 &gt;&gt; (see <xref target="CBOR"/> for notation)
              </t>
              <ul spacing="normal">
                <li>
                  <t>If the Responder authenticates with a static Diffie-Hellman key (method equals 1 or 3), then mac_length_2 is the EDHOC MAC length of the selected cipher suite. If the Responder authenticates with a signature key (method equals 0 or 2), then mac_length_2 is equal to hash_length.</t>
                </li>
                <li>
                  <t>C_R - variable length connection identifier. Note that connection identifiers are byte strings but certain values are represented as integers in the message, see <xref target="bstr-repr"/>.</t>
                </li>
                <li>
                  <t>ID_CRED_R - identifier to facilitate the retrieval of CRED_R, see <xref target="id_cred"/></t>
                </li>
                <li>
                  <t>CRED_R - CBOR item containing the authentication credential of the Responder, see <xref target="auth-cred"/></t>
                </li>
                <li>
                  <t>EAD_2 - external authorization data, see <xref target="AD"/></t>
                </li>
              </ul>
            </li>
            <li>
              <t>If the Responder authenticates with a static Diffie-Hellman key (method equals 1 or 3), then Signature_or_MAC_2 is MAC_2. If the Responder authenticates with a signature key (method equals 0 or 2), then Signature_or_MAC_2 is the 'signature' field of a COSE_Sign1 object, computed as specified in Section 4.4 of <xref target="RFC9053"/> using the signature algorithm of the selected cipher suite, the private authentication key of the Responder, and the following parameters as input (see <xref target="COSE"/> for an overview of COSE and <xref target="CBOR"/> for notation):  </t>
              <ul spacing="normal">
                <li>
                  <t>protected =  &lt;&lt; ID_CRED_R &gt;&gt;</t>
                </li>
                <li>
                  <t>external_aad = &lt;&lt; TH_2, CRED_R, ? EAD_2 &gt;&gt;</t>
                </li>
                <li>
                  <t>payload = MAC_2</t>
                </li>
              </ul>
            </li>
            <li>
              <t>CIPHERTEXT_2 is calculated with a binary additive stream cipher, using a keystream generated with EDHOC_Expand, and the following plaintext:  </t>
              <ul spacing="normal">
                <li>
                  <t>PLAINTEXT_2 = ( C_R, ID_CRED_R / bstr / -24..23, Signature_or_MAC_2, ? EAD_2 )      </t>
                  <ul spacing="normal">
                    <li>
                      <t>If ID_CRED_R contains a single 'kid' parameter, i.e., ID_CRED_R = { 4 : kid_R }, then the compact encoding is applied, see <xref target="compact-kid"/>.</t>
                    </li>
                    <li>
                      <t>C_R - variable length connection identifier. Note that connection identifiers are byte strings but certain values are represented as integers in the message, see <xref target="bstr-repr"/>.</t>
                    </li>
                  </ul>
                </li>
                <li>
                  <t>Compute KEYSTREAM_2 as in <xref target="expand"/>, where plaintext_length is the length of PLAINTEXT_2. For the case of plaintext_length exceeding the EDHOC_KDF output size, see <xref target="large-plaintext_2"/>.</t>
                </li>
                <li>
                  <t>CIPHERTEXT_2 = PLAINTEXT_2 XOR KEYSTREAM_2</t>
                </li>
              </ul>
            </li>
            <li>
              <t>Encode message_2 as a sequence of CBOR encoded data items as specified in <xref target="asym-msg2-form"/>.</t>
            </li>
          </ul>
        </section>
        <section anchor="initiator-processing-of-message-2">
          <name>Initiator Processing of Message 2</name>
          <t>The Initiator SHALL process message_2 in the following order:</t>
          <ul spacing="normal">
            <li>
              <t>Decode message_2 (see <xref target="CBOR"/>).</t>
            </li>
            <li>
              <t>Retrieve the protocol state using available message correlation (e.g., the CoAP Token, the 5-tuple, or the prepended C_I, see <xref target="ci-edhoc"/>).</t>
            </li>
            <li>
              <t>Decrypt CIPHERTEXT_2, see <xref target="asym-msg2-proc"/>.</t>
            </li>
            <li>
              <t>If all processing completed successfully, then make ID_CRED_R and (if present) EAD_2 available to the application for authentication- and EAD processing. When and how to perform authentication is up to the application.</t>
            </li>
            <li>
              <t>Obtain the authentication credential (CRED_R) and the authentication key of R from the application (or by other means).</t>
            </li>
            <li>
              <t>Verify Signature_or_MAC_2 using the algorithm in the selected cipher suite. The verification process depends on the method, see <xref target="asym-msg2-proc"/>. Make the result of the verification available to the application.</t>
            </li>
          </ul>
          <t>If any processing step fails, then the Initiator MUST send an EDHOC error message back as defined in <xref target="error"/>, and the EDHOC session MUST be aborted.</t>
        </section>
      </section>
      <section anchor="m3">
        <name>EDHOC Message 3</name>
        <section anchor="asym-msg3-form">
          <name>Formatting of Message 3</name>
          <t>message_3 SHALL be a CBOR Sequence (see <xref target="CBOR"/>) as defined below</t>
          <sourcecode type="CDDL"><![CDATA[
message_3 = (
  CIPHERTEXT_3 : bstr,
)
]]></sourcecode>
        </section>
        <section anchor="asym-msg3-proc">
          <name>Initiator Composition of Message 3</name>
          <t>The Initiator SHALL compose message_3 as follows:</t>
          <ul spacing="normal">
            <li>
              <t>Compute the transcript hash TH_3 = H(TH_2, PLAINTEXT_2, CRED_R) where H() is the EDHOC hash algorithm of the selected cipher suite. The input to the hash function is a CBOR Sequence. Note that TH_3 can be computed and cached already in the processing of message_2.</t>
            </li>
            <li>
              <t>Compute MAC_3 as in <xref target="expand"/>, with context_3 = &lt;&lt; ID_CRED_I, TH_3, CRED_I, ? EAD_3 &gt;&gt;
              </t>
              <ul spacing="normal">
                <li>
                  <t>If the Initiator authenticates with a static Diffie-Hellman key (method equals 2 or 3), then mac_length_3 is the EDHOC MAC length of the selected cipher suite.  If the Initiator authenticates with a signature key (method equals 0 or 1), then mac_length_3 is equal to hash_length.</t>
                </li>
                <li>
                  <t>ID_CRED_I - identifier to facilitate the retrieval of CRED_I, see <xref target="id_cred"/></t>
                </li>
                <li>
                  <t>CRED_I - CBOR item containing the authentication credential of the Initiator, see <xref target="auth-cred"/></t>
                </li>
                <li>
                  <t>EAD_3 - external authorization data, see <xref target="AD"/></t>
                </li>
              </ul>
            </li>
            <li>
              <t>If the Initiator authenticates with a static Diffie-Hellman key (method equals 2 or 3), then Signature_or_MAC_3 is MAC_3. If the Initiator authenticates with a signature key (method equals 0 or 1), then Signature_or_MAC_3 is the 'signature' field of a COSE_Sign1 object, computed as specified in Section 4.4 of <xref target="RFC9052"/> using the signature algorithm of the selected cipher suite, the private authentication key of the Initiator, and the following parameters as input (see <xref target="COSE"/>):  </t>
              <ul spacing="normal">
                <li>
                  <t>protected =  &lt;&lt; ID_CRED_I &gt;&gt;</t>
                </li>
                <li>
                  <t>external_aad = &lt;&lt; TH_3, CRED_I, ? EAD_3 &gt;&gt;</t>
                </li>
                <li>
                  <t>payload = MAC_3</t>
                </li>
              </ul>
            </li>
            <li>
              <t>Compute a COSE_Encrypt0 object as defined in Sections 5.2 and 5.3 of <xref target="RFC9052"/>, with the EDHOC AEAD algorithm of the selected cipher suite, using the encryption key K_3, the initialization vector IV_3 (if used by the AEAD algorithm), the plaintext PLAINTEXT_3, and the following parameters as input (see <xref target="COSE"/>):  </t>
              <ul spacing="normal">
                <li>
                  <t>protected = h''</t>
                </li>
                <li>
                  <t>external_aad = TH_3</t>
                </li>
                <li>
                  <t>K_3 and IV_3 are defined in <xref target="expand"/></t>
                </li>
                <li>
                  <t>PLAINTEXT_3 = ( ID_CRED_I / bstr / -24..23, Signature_or_MAC_3, ? EAD_3 )      </t>
                  <ul spacing="normal">
                    <li>
                      <t>If ID_CRED_I contains a single 'kid' parameter, i.e., ID_CRED_I = { 4 : kid_I }, then the compact encoding is applied, see <xref target="compact-kid"/>.</t>
                    </li>
                  </ul>
                </li>
              </ul>
              <t>
CIPHERTEXT_3 is the 'ciphertext' of COSE_Encrypt0.</t>
            </li>
            <li>
              <t>Compute the transcript hash TH_4 = H(TH_3, PLAINTEXT_3, CRED_I) where H() is the EDHOC hash algorithm of the selected cipher suite. The input to the hash function is a CBOR Sequence.</t>
            </li>
            <li>
              <t>Calculate PRK_out as defined in <xref target="fig-edhoc-kdf"/>. The Initiator can now derive application keys using the EDHOC_Exporter interface, see <xref target="exporter"/>.</t>
            </li>
            <li>
              <t>Encode message_3 as a CBOR data item as specified in <xref target="asym-msg3-form"/>.</t>
            </li>
            <li>
              <t>Make the connection identifiers (C_I, C_R) and the application algorithms in the selected cipher suite available to the application.</t>
            </li>
          </ul>
          <t>After creating message_3, the Initiator can compute PRK_out, see <xref target="prkout"/>, and derive application keys using the EDHOC_Exporter interface, see <xref target="exporter"/>. The Initiator SHOULD NOT persistently store PRK_out or application keys until the Initiator has verified message_4 or a message protected with a derived application key, such as an OSCORE message, from the Responder and the application has authenticated the Responder. This is similar to waiting for an acknowledgment (ACK) in a transport protocol. The Initiator SHOULD NOT send protected application data until the application has authenticated the Responder.</t>
        </section>
        <section anchor="responder-processing-of-message-3">
          <name>Responder Processing of Message 3</name>
          <t>The Responder SHALL process message_3 in the following order:</t>
          <ul spacing="normal">
            <li>
              <t>Decode message_3 (see <xref target="CBOR"/>).</t>
            </li>
            <li>
              <t>Retrieve the protocol state using available message correlation (e.g., the CoAP Token, the 5-tuple, or the prepended C_R, see <xref target="ci-edhoc"/>).</t>
            </li>
            <li>
              <t>Decrypt and verify the COSE_Encrypt0 as defined in Sections 5.2 and 5.3 of <xref target="RFC9052"/>, with the EDHOC AEAD algorithm in the selected cipher suite, and the parameters defined in <xref target="asym-msg3-proc"/>.</t>
            </li>
            <li>
              <t>If all processing completed successfully, then make ID_CRED_I and (if present) EAD_3 available to the application for authentication- and EAD processing. When and how to perform authentication is up to the application.</t>
            </li>
            <li>
              <t>Obtain the authentication credential (CRED_I) and the authentication key of I from the application (or by other means).</t>
            </li>
            <li>
              <t>Verify Signature_or_MAC_3 using the algorithm in the selected cipher suite. The verification process depends on the method, see <xref target="asym-msg3-proc"/>. Make the result of the verification available to the application.</t>
            </li>
            <li>
              <t>Make the connection identifiers (C_I, C_R) and the application algorithms in the selected cipher suite available to the application.</t>
            </li>
          </ul>
          <t>After processing message_3, the Responder can compute PRK_out, see <xref target="prkout"/>, and derive application keys using the EDHOC_Exporter interface, see <xref target="exporter"/>. The Responder SHOULD NOT persistently store PRK_out or application keys until the application has authenticated the Initiator. The Responder SHOULD NOT send protected application data until the application has authenticated the Initiator.</t>
          <t>If any processing step fails, then the Responder MUST send an EDHOC error message back as defined in <xref target="error"/>, and the EDHOC session MUST be aborted.</t>
        </section>
      </section>
      <section anchor="m4">
        <name>EDHOC Message 4</name>
        <t>This section specifies message_4 which is OPTIONAL to support. Key confirmation is normally provided by sending an application message from the Responder to the Initiator protected with a key derived with the EDHOC_Exporter, e.g., using OSCORE (see <xref target="transfer"/>). In deployments where no protected application message is sent from the Responder to the Initiator, message_4 MUST be supported and MUST be used. Two examples of such deployments are:</t>
        <ol spacing="normal" type="1"><li>
            <t>When EDHOC is only used for authentication and no application data is sent.</t>
          </li>
          <li>
            <t>When application data is only sent from the Initiator to the Responder.</t>
          </li>
        </ol>
        <t>Further considerations about when to use message_4 are provided in <xref target="applicability"/> and <xref target="sec-prop"/>.</t>
        <section anchor="asym-msg4-form">
          <name>Formatting of Message 4</name>
          <t>message_4 SHALL be a CBOR Sequence (see <xref target="CBOR"/>) as defined below</t>
          <sourcecode type="CDDL"><![CDATA[
message_4 = (
  CIPHERTEXT_4 : bstr,
)
]]></sourcecode>
        </section>
        <section anchor="asym-msg4-proc">
          <name>Responder Composition of Message 4</name>
          <t>The Responder SHALL compose message_4 as follows:</t>
          <ul spacing="normal">
            <li>
              <t>Compute a COSE_Encrypt0 as defined in Sections 5.2 and 5.3 of <xref target="RFC9052"/>, with the EDHOC AEAD algorithm of the selected cipher suite, using the encryption key K_4, the initialization vector IV_4 (if used by the AEAD algorithm), the plaintext PLAINTEXT_4, and the following parameters as input (see <xref target="COSE"/>):  </t>
              <ul spacing="normal">
                <li>
                  <t>protected = h''</t>
                </li>
                <li>
                  <t>external_aad = TH_4</t>
                </li>
                <li>
                  <t>K_4 and IV_4 are defined in <xref target="expand"/></t>
                </li>
                <li>
                  <t>PLAINTEXT_4 = ( ? EAD_4 )
                  </t>
                  <ul spacing="normal">
                    <li>
                      <t>EAD_4 - external authorization data, see <xref target="AD"/>.</t>
                    </li>
                  </ul>
                </li>
              </ul>
              <t>
CIPHERTEXT_4 is the 'ciphertext' of COSE_Encrypt0.</t>
            </li>
            <li>
              <t>Encode message_4 as a CBOR data item as specified in <xref target="asym-msg4-form"/>.</t>
            </li>
          </ul>
        </section>
        <section anchor="initiator-processing-of-message-4">
          <name>Initiator Processing of Message 4</name>
          <t>The Initiator SHALL process message_4 as follows:</t>
          <ul spacing="normal">
            <li>
              <t>Decode message_4 (see <xref target="CBOR"/>).</t>
            </li>
            <li>
              <t>Retrieve the protocol state using available message correlation (e.g., the CoAP Token, the 5-tuple, or the prepended C_I, see <xref target="ci-edhoc"/>).</t>
            </li>
            <li>
              <t>Decrypt and verify the COSE_Encrypt0 as defined in Sections 5.2 and 5.3 of <xref target="RFC9052"/>, with the EDHOC AEAD algorithm in the selected cipher suite, and the parameters defined in <xref target="asym-msg4-proc"/>.</t>
            </li>
            <li>
              <t>Make (if present) EAD_4 available to the application for EAD processing.</t>
            </li>
          </ul>
          <t>If any processing step fails, then the Initiator MUST send an EDHOC error message back as defined in <xref target="error"/>, and the EDHOC session MUST be aborted.</t>
          <t>After verifying message_4, the Initiator is assured that the Responder has calculated the key PRK_out (key confirmation) and that no other party can derive the key.</t>
        </section>
      </section>
    </section>
    <section anchor="error">
      <name>Error Handling</name>
      <t>This section defines the format for error messages, and the processing associated with the currently defined error codes. Additional error codes may be registered, see <xref target="error-code-reg"/>.</t>
      <t>Many kinds of errors that can occur during EDHOC processing. As in CoAP, an error can be triggered by errors in the received message or internal errors in the receiving endpoint. Except for processing and formatting errors, it is up to the application when to send an error message. Sending error messages is essential for debugging but MAY be skipped if, for example, an EDHOC session cannot be found or due to denial-of-service reasons, see <xref target="dos"/>. Error messages in EDHOC are always fatal. After sending an error message, the sender MUST abort the EDHOC session. The receiver SHOULD treat an error message as an indication that the other party likely has aborted the EDHOC session.  But since error messages might be forged, the receiver MAY try to continue the EDHOC session.</t>
      <t>An EDHOC error message can be sent by either endpoint as a reply to any non-error EDHOC message. How errors at the EDHOC layer are transported depends on lower layers, which need to enable error messages to be sent and processed as intended.</t>
      <t>error SHALL be a CBOR Sequence (see <xref target="CBOR"/>) as defined below</t>
      <figure anchor="fig-error-message">
        <name>EDHOC error message.</name>
        <sourcecode type="CDDL"><![CDATA[
error = (
  ERR_CODE : int,
  ERR_INFO : any,
)
]]></sourcecode>
      </figure>
      <t>where:</t>
      <ul spacing="normal">
        <li>
          <t>ERR_CODE - error code encoded as an integer. The value 0 is reserved for success and can only be used internally, all other values (negative or positive) indicate errors.</t>
        </li>
        <li>
          <t>ERR_INFO - error information. Content and encoding depend on error code.</t>
        </li>
      </ul>
      <t>The remainder of this section specifies the currently defined error codes, see <xref target="fig-error-codes"/>. Additional error codes and corresponding error information may be specified.</t>
      <figure anchor="fig-error-codes">
        <name>EDHOC error codes and error information.</name>
        <artset>
          <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="208" width="560" viewBox="0 0 560 208" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
              <path d="M 8,32 L 8,192" fill="none" stroke="black"/>
              <path d="M 96,32 L 96,192" fill="none" stroke="black"/>
              <path d="M 224,32 L 224,192" fill="none" stroke="black"/>
              <path d="M 552,32 L 552,192" fill="none" stroke="black"/>
              <path d="M 8,32 L 552,32" fill="none" stroke="black"/>
              <path d="M 8,62 L 552,62" fill="none" stroke="black"/>
              <path d="M 8,66 L 552,66" fill="none" stroke="black"/>
              <path d="M 8,96 L 552,96" fill="none" stroke="black"/>
              <path d="M 8,128 L 552,128" fill="none" stroke="black"/>
              <path d="M 8,160 L 552,160" fill="none" stroke="black"/>
              <path d="M 8,192 L 552,192" fill="none" stroke="black"/>
              <g class="text">
                <text x="52" y="52">ERR_CODE</text>
                <text x="140" y="52">ERR_INFO</text>
                <text x="196" y="52">Type</text>
                <text x="280" y="52">Description</text>
                <text x="80" y="84">0</text>
                <text x="252" y="84">This</text>
                <text x="296" y="84">value</text>
                <text x="332" y="84">is</text>
                <text x="380" y="84">reserved</text>
                <text x="80" y="116">1</text>
                <text x="124" y="116">tstr</text>
                <text x="280" y="116">Unspecified</text>
                <text x="352" y="116">error</text>
                <text x="80" y="148">2</text>
                <text x="132" y="148">suites</text>
                <text x="256" y="148">Wrong</text>
                <text x="316" y="148">selected</text>
                <text x="380" y="148">cipher</text>
                <text x="432" y="148">suite</text>
                <text x="80" y="180">3</text>
                <text x="124" y="180">true</text>
                <text x="264" y="180">Unknown</text>
                <text x="340" y="180">credential</text>
                <text x="428" y="180">referenced</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art"><![CDATA[
+----------+---------------+----------------------------------------+
| ERR_CODE | ERR_INFO Type | Description                            |
+==========+===============+========================================+
|        0 |               | This value is reserved                 |
+----------+---------------+----------------------------------------+
|        1 | tstr          | Unspecified error                      |
+----------+---------------+----------------------------------------+
|        2 | suites        | Wrong selected cipher suite            |
+----------+---------------+----------------------------------------+
|        3 | true          | Unknown credential referenced          |
+----------+---------------+----------------------------------------+
]]></artwork>
        </artset>
      </figure>
      <section anchor="success">
        <name>Success</name>
        <t>Error code 0 MAY be used internally in an application to indicate success, i.e., as a standard value in case of no error, e.g., in status reporting or log files. Error code 0 MUST NOT be used as part of the EDHOC message exchange. If an endpoint receives an error message with error code 0, then it MUST abort the EDHOC session and MUST NOT send an error message.</t>
      </section>
      <section anchor="unspecified-error">
        <name>Unspecified Error</name>
        <t>Error code 1 is used for errors that do not have a specific error code defined. ERR_INFO MUST be a text string containing a human-readable diagnostic message which SHOULD be written in English, for example "Method not supported". The diagnostic text message is mainly intended for software engineers that during debugging need to interpret it in the context of the EDHOC specification. The diagnostic message SHOULD be provided to the calling application where it SHOULD be logged.</t>
      </section>
      <section anchor="wrong-selected">
        <name>Wrong Selected Cipher Suite</name>
        <t>Error code 2 MUST only be used when replying to message_1 in case the cipher suite selected by the Initiator is not supported by the Responder, or if the Responder supports a cipher suite more preferred by the Initiator than the selected cipher suite, see <xref target="resp-proc-msg1"/>. In this case, ERR_INFO = SUITES_R and is of type suites, see <xref target="asym-msg1-form"/>. If the Responder does not support the selected cipher suite, then SUITES_R MUST include one or more supported cipher suites. If the Responder supports a cipher suite in SUITES_I other than the selected cipher suite (independently of if the selected cipher suite is supported or not) then SUITES_R MUST include the supported cipher suite in SUITES_I which is most preferred by the Initiator. SUITES_R MAY include a single cipher suite, in which case it is encoded as an int. If the Responder does not support any cipher suite in SUITES_I, then it SHOULD include all its supported cipher suites in SUITES_R.</t>
        <t>In contrast to SUITES_I, the order of the cipher suites in SUITES_R has no significance.</t>
        <section anchor="cipher-suite-negotiation">
          <name>Cipher Suite Negotiation</name>
          <t>After receiving SUITES_R, the Initiator can determine which cipher suite to select (if any) for the next EDHOC run with the Responder.</t>
          <t>If the Initiator intends to contact the Responder in the future, the Initiator SHOULD remember which selected cipher suite to use until the next message_1 has been sent, otherwise the Initiator and Responder will likely run into an infinite loop where the Initiator selects its most preferred cipher suite and the Responder sends an error with supported cipher suites. After a completed EDHOC session, the Initiator MAY remember the selected cipher suite to use in future EDHOC sessions. Note that if the Initiator or Responder is updated with new cipher suite policies, any cached information may be outdated.</t>
          <t>Note that the Initiator's list of supported cipher suites and order of preference is fixed (see <xref target="asym-msg1-form"/> and <xref target="init-proc-msg1"/>). Furthermore, the Responder SHALL only accept message_1 if the selected cipher suite is the first cipher suite in SUITES_I that the Responder also supports (see <xref target="resp-proc-msg1"/>). Following this procedure ensures that the selected cipher suite is the most preferred (by the Initiator) cipher suite supported by both parties. For examples, see <xref target="ex-neg"/>.</t>
          <t>If the selected cipher suite is not the first cipher suite which the Responder supports in SUITES_I received in message_1, then the Responder MUST abort the EDHOC session, see <xref target="resp-proc-msg1"/>. If SUITES_I in message_1 is manipulated, then the integrity verification of message_2 containing the transcript hash TH_2 will fail and the Initiator will abort the EDHOC session.</t>
        </section>
        <section anchor="ex-neg">
          <name>Examples</name>
          <t>Assume that the Initiator supports the five cipher suites 5, 6, 7, 8, and 9 in decreasing order of preference. Figures <xref target="fig-error1" format="counter"/> and <xref target="fig-error2" format="counter"/> show two examples of how the Initiator can format SUITES_I and how SUITES_R is used by Responders to give the Initiator information about the cipher suites that the Responder supports.</t>
          <t>In Example 1 (<xref target="fig-error1"/>), the Responder supports cipher suite 6 but not the initially selected cipher suite 5. The Responder rejects the first message_1 with an error indicating support for suite 6 in SUITES_R. The Initiator also supports suite 6, and therefore selects suite 6 in the second message_1. The Initiator prepends in SUITES_I the selected suite 6 with the more preferred suites, in this case suite 5, to mitigate a potential attack on the cipher suite negotiation.</t>
          <figure anchor="fig-error1">
            <name>Cipher suite negotiation example 1.</name>
            <artset>
              <artwork type="svg" align="center"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="224" width="560" viewBox="0 0 560 224" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                  <path d="M 8,48 L 8,208" fill="none" stroke="black"/>
                  <path d="M 552,48 L 552,208" fill="none" stroke="black"/>
                  <path d="M 8,64 L 544,64" fill="none" stroke="black"/>
                  <path d="M 16,128 L 552,128" fill="none" stroke="black"/>
                  <path d="M 8,192 L 544,192" fill="none" stroke="black"/>
                  <polygon class="arrowhead" points="552,192 540,186.4 540,197.6" fill="black" transform="rotate(0,544,192)"/>
                  <polygon class="arrowhead" points="552,64 540,58.4 540,69.6" fill="black" transform="rotate(0,544,64)"/>
                  <polygon class="arrowhead" points="24,128 12,122.4 12,133.6" fill="black" transform="rotate(180,16,128)"/>
                  <g class="text">
                    <text x="40" y="36">Initiator</text>
                    <text x="520" y="36">Responder</text>
                    <text x="152" y="52">METHOD,</text>
                    <text x="220" y="52">SUITES_I</text>
                    <text x="264" y="52">=</text>
                    <text x="284" y="52">5,</text>
                    <text x="316" y="52">G_X,</text>
                    <text x="356" y="52">C_I,</text>
                    <text x="400" y="52">EAD_1</text>
                    <text x="280" y="84">message_1</text>
                    <text x="196" y="116">ERR_CODE</text>
                    <text x="240" y="116">=</text>
                    <text x="260" y="116">2,</text>
                    <text x="308" y="116">SUITES_R</text>
                    <text x="352" y="116">=</text>
                    <text x="368" y="116">6</text>
                    <text x="280" y="148">error</text>
                    <text x="144" y="180">METHOD,</text>
                    <text x="212" y="180">SUITES_I</text>
                    <text x="256" y="180">=</text>
                    <text x="280" y="180">[5,</text>
                    <text x="312" y="180">6],</text>
                    <text x="348" y="180">G_X,</text>
                    <text x="388" y="180">C_I,</text>
                    <text x="432" y="180">EAD_1</text>
                    <text x="280" y="212">message_1</text>
                  </g>
                </svg>
              </artwork>
              <artwork type="ascii-art" align="center"><![CDATA[
Initiator                                                   Responder
|              METHOD, SUITES_I = 5, G_X, C_I, EAD_1                |
+------------------------------------------------------------------>|
|                             message_1                             |
|                                                                   |
|                   ERR_CODE = 2, SUITES_R = 6                      |
|<------------------------------------------------------------------+
|                               error                               |
|                                                                   |
|             METHOD, SUITES_I = [5, 6], G_X, C_I, EAD_1            |
+------------------------------------------------------------------>|
|                             message_1                             |
]]></artwork>
            </artset>
          </figure>
          <t>In Example 2 (<xref target="fig-error2"/>), the Responder supports cipher suites 8 and 9 but not the more preferred (by the Initiator) cipher suites 5, 6 or 7. To illustrate the negotiation mechanics we let the Initiator first make a guess that the Responder supports suite 6 but not suite 5. Since the Responder supports neither 5 nor 6, it rejects the first message_1 with an error indicating support for suites 8 and 9 in SUITES_R (in any order). The Initiator also supports suites 8 and 9, and prefers suite 8, so selects suite 8 in the second message_1. The Initiator prepends in SUITES_I the selected suite 8 with the more preferred suites in order of preference, in this case suites 5, 6 and 7, to mitigate a potential attack on the cipher suite negotiation.</t>
          <t>Note 1. If the Responder had supported suite 5, then the first message_1 would not have been accepted either, since the Responder observes that suite 5 is more preferred by the Initiator than the selected suite 6. In that case the Responder would have included suite 5 in SUITES_R of the response, and it would then have become the selected and only suite in the second message_1.</t>
          <t>Note 2. For each message_1 the Initiator MUST generate a new ephemeral ECDH key pair matching the selected cipher suite.</t>
          <figure anchor="fig-error2">
            <name>Cipher suite negotiation example 2.</name>
            <artset>
              <artwork type="svg" align="center"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="224" width="560" viewBox="0 0 560 224" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                  <path d="M 8,48 L 8,208" fill="none" stroke="black"/>
                  <path d="M 552,48 L 552,208" fill="none" stroke="black"/>
                  <path d="M 8,64 L 544,64" fill="none" stroke="black"/>
                  <path d="M 16,128 L 552,128" fill="none" stroke="black"/>
                  <path d="M 8,192 L 544,192" fill="none" stroke="black"/>
                  <polygon class="arrowhead" points="552,192 540,186.4 540,197.6" fill="black" transform="rotate(0,544,192)"/>
                  <polygon class="arrowhead" points="552,64 540,58.4 540,69.6" fill="black" transform="rotate(0,544,64)"/>
                  <polygon class="arrowhead" points="24,128 12,122.4 12,133.6" fill="black" transform="rotate(180,16,128)"/>
                  <g class="text">
                    <text x="40" y="36">Initiator</text>
                    <text x="520" y="36">Responder</text>
                    <text x="136" y="52">METHOD,</text>
                    <text x="204" y="52">SUITES_I</text>
                    <text x="248" y="52">=</text>
                    <text x="272" y="52">[5,</text>
                    <text x="304" y="52">6],</text>
                    <text x="340" y="52">G_X,</text>
                    <text x="380" y="52">C_I,</text>
                    <text x="424" y="52">EAD_1</text>
                    <text x="280" y="84">message_1</text>
                    <text x="188" y="116">ERR_CODE</text>
                    <text x="232" y="116">=</text>
                    <text x="252" y="116">2,</text>
                    <text x="300" y="116">SUITES_R</text>
                    <text x="344" y="116">=</text>
                    <text x="368" y="116">[9,</text>
                    <text x="396" y="116">8]</text>
                    <text x="280" y="148">error</text>
                    <text x="128" y="180">METHOD,</text>
                    <text x="196" y="180">SUITES_I</text>
                    <text x="240" y="180">=</text>
                    <text x="264" y="180">[5,</text>
                    <text x="292" y="180">6,</text>
                    <text x="316" y="180">7,</text>
                    <text x="344" y="180">8],</text>
                    <text x="380" y="180">G_X,</text>
                    <text x="420" y="180">C_I,</text>
                    <text x="464" y="180">EAD_1</text>
                    <text x="280" y="212">message_1</text>
                  </g>
                </svg>
              </artwork>
              <artwork type="ascii-art" align="center"><![CDATA[
Initiator                                                   Responder
|            METHOD, SUITES_I = [5, 6], G_X, C_I, EAD_1             |
+------------------------------------------------------------------>|
|                             message_1                             |
|                                                                   |
|                  ERR_CODE = 2, SUITES_R = [9, 8]                  |
|<------------------------------------------------------------------+
|                               error                               |
|                                                                   |
|           METHOD, SUITES_I = [5, 6, 7, 8], G_X, C_I, EAD_1        |
+------------------------------------------------------------------>|
|                             message_1                             |
]]></artwork>
            </artset>
          </figure>
        </section>
      </section>
      <section anchor="unknown-credential-referenced">
        <name>Unknown Credential Referenced</name>
        <t>Error code 3 is used for errors due to a received credential identifier (ID_CRED_R in message_2 or ID_CRED_I message_3) containing a reference to a credential which the receiving endpoint does not have access to. The intent with this error code is that the endpoint who sent the credential identifier should for the next EDHOC session try another credential identifier supported according to the application profile.</t>
        <t>For example, an application profile could list x5t and x5chain as supported credential identifiers, and state that x5t should be used if it can be assumed that the X.509 certificate is available at the receiving side. This error code thus enables the certificate chain to be sent only when needed, bearing in mind that error messages are not protected so an adversary can try to cause unnecessary large credential identifiers.</t>
        <t>For the error code 3, the error information SHALL be the CBOR simple value <tt>true</tt> (0xf5). Error code 3 MUST NOT be used when the received credential identifier type is not supported.</t>
      </section>
    </section>
    <section anchor="duplication">
      <name>EDHOC Message Deduplication</name>
      <t>EDHOC by default assumes that message duplication is handled by the transport, in this section exemplified with CoAP, see <xref target="coap"/>.</t>
      <t>Deduplication of CoAP messages is described in Section 4.5 of <xref target="RFC7252"/>. This handles the case when the same Confirmable (CON) message is received multiple times due to missing acknowledgment on the CoAP messaging layer. The recommended processing in <xref target="RFC7252"/> is that the duplicate message is acknowledged (ACK), but the received message is only processed once by the CoAP stack.</t>
      <t>Message deduplication is resource demanding and therefore not supported in all CoAP implementations. Since EDHOC is targeting constrained environments, it is desirable that EDHOC can optionally support transport layers which do not handle message duplication. Special care is needed to avoid issues with duplicate messages, see <xref target="proc-outline"/>.</t>
      <t>The guiding principle here is similar to the deduplication processing on the CoAP messaging layer: a received duplicate EDHOC message SHALL NOT result in another instance of the next EDHOC message. The result MAY be that a duplicate next EDHOC message is sent, provided it is still relevant with respect to the current protocol state. In any case, the received message MUST NOT be processed more than once in the same EDHOC session. This is called "EDHOC message deduplication".</t>
      <t>An EDHOC implementation MAY store the previously sent EDHOC message to be able to resend it.</t>
      <t>In principle, if the EDHOC implementation would deterministically regenerate the identical EDHOC message previously sent, it would be possible to instead store the protocol state to be able to recreate and resend the previously sent EDHOC message. However, even if the protocol state is fixed, the message generation may introduce differences which compromise security. For example, in the generation of message_3, if I is performing a (non-deterministic) ECDSA signature (say, method 0 or 1, cipher suite 2 or 3) then PLAINTEXT_3 is randomized, but K_3 and IV_3 are the same, leading to a key and nonce reuse.</t>
      <t>The EDHOC implementation MUST NOT store previous protocol state and regenerate an EDHOC message if there is a risk that the same key and IV are used for two (or more) distinct messages.</t>
      <t>The previous message or protocol state MUST NOT be kept longer than what is required for retransmission, for example, in the case of CoAP transport, no longer than the EXCHANGE_LIFETIME (see Section 4.8.2 of <xref target="RFC7252"/>).</t>
    </section>
    <section anchor="mti">
      <name>Compliance Requirements</name>
      <t>In the absence of an application profile specifying otherwise:</t>
      <t>An implementation MAY support only Initiator or only Responder.</t>
      <t>An implementation MAY support only a single method. None of the methods are mandatory-to-implement.</t>
      <t>Implementations MUST support 'kid' parameters. None of the other COSE header parameters are mandatory-to-implement.</t>
      <t>An implementation MAY support only a single credential type (CCS, CWT, X.509, C509). None of the credential types are mandatory-to-implement.</t>
      <t>Implementations MUST support the EDHOC_Exporter.</t>
      <t>Implementations MAY support message_4. Error codes (ERR_CODE) 1 and 2 MUST be supported.</t>
      <t>Implementations MUST support EAD.</t>
      <t>Implementations MUST support cipher suite 2 and 3. Cipher suites 2 (AES-CCM-16-64-128, SHA-256, 8, P-256, ES256, AES-CCM-16-64-128, SHA-256) and 3 (AES-CCM-16-128-128, SHA-256, 16, P-256, ES256, AES-CCM-16-64-128, SHA-256) only differ in the size of the MAC length, so supporting one or both of these is not significantly different. Implementations only need to implement the algorithms needed for their supported methods.</t>
    </section>
    <section anchor="security">
      <name>Security Considerations</name>
      <section anchor="sec-prop">
        <name>Security Properties</name>
        <t>EDHOC has similar security properties as can be expected from the theoretical SIGMA-I protocol <xref target="SIGMA"/> and the Noise XX pattern <xref target="Noise"/>, which are similar to methods 0 and 3, respectively. Proven security properties are detailed in the security analysis publications referenced at the end of this section.</t>
        <t>Using the terminology from <xref target="SIGMA"/>, EDHOC provides forward secrecy, mutual authentication with aliveness, consistency, and peer awareness. As described in <xref target="SIGMA"/>, message_3 provides peer awareness to the Responder while message_4 provides peer awareness to the Initiator. By including the authentication credentials in the transcript hash, EDHOC protects against Duplicate Signature Key Selection (DSKS)-like identity mis-binding attack that the MAC-then-Sign variant of SIGMA-I is otherwise vulnerable to.</t>
        <t>As described in <xref target="SIGMA"/>, different levels of identity protection are provided to the Initiator and the Responder. EDHOC provides identity protection of the Initiator against active attacks and identity protection of the Responder against passive attacks. An active attacker can get the credential identifier of the Responder by eavesdropping on the destination address used for transporting message_1 and then sending its own message_1 to the same address. The roles should be assigned to protect the most sensitive identity/identifier, typically that which is not possible to infer from routing information in the lower layers.</t>
        <t>EDHOC messages might change in transit due to a noisy channel or through modification by an attacker. Changes in message_1 and message_2 (except Signature_or_MAC_2 when the signature scheme is not strongly unforgeable) are detected when verifying Signature_or_MAC_2. Changes to not strongly unforgeable Signature_or_MAC_2, and message_3 are detected when verifying CIPHERTEXT_3. Changes to message_4 are detected when verifying CIPHERTEXT_4.</t>
        <t>Compared to <xref target="SIGMA"/>, EDHOC adds an explicit method type and expands the message authentication coverage to additional elements such as algorithms, external authorization data, and previous plaintext messages. This protects against an attacker replaying messages or injecting messages from another EDHOC session.</t>
        <t>EDHOC also adds selection of connection identifiers and downgrade protected negotiation of cryptographic parameters, i.e., an attacker cannot affect the negotiated parameters. A single session of EDHOC does not include negotiation of cipher suites, but it enables the Responder to verify that the selected cipher suite is the most preferred cipher suite by the Initiator which is supported by both the Initiator and the Responder, and to abort the EDHOC session if not.</t>
        <t>As required by <xref target="RFC7258"/>, IETF protocols need to mitigate pervasive monitoring when possible. EDHOC therefore only supports methods with ephemeral Diffie-Hellman and provides a key update function (see <xref target="keyupdate"/>) for lightweight application protocol rekeying. Either of these provides forward secrecy, in the sense that compromise of the private authentication keys does not compromise past session keys (PRK_out), and compromise of a session key does not compromise past session keys. Frequently re-running EDHOC with ephemeral Diffie-Hellman forces attackers to perform dynamic key exfiltration where the attacker must have continuous interactions with the collaborator, which is a significant sustained attack.</t>
        <t>To limit the effect of breaches, it is important to limit the use of symmetric group keys for bootstrapping. EDHOC therefore strives to make the additional cost of using raw public keys and self-signed certificates as small as possible. Raw public keys and self-signed certificates are not a replacement for a public key infrastructure but SHOULD be used instead of symmetric group keys for bootstrapping.</t>
        <t>Compromise of the long-term keys (private signature or static DH keys) does not compromise the security of completed EDHOC sessions. Compromising the private authentication keys of one party lets an active attacker impersonate that compromised party in EDHOC sessions with other parties but does not let the attacker impersonate other parties in EDHOC sessions with the compromised party. Compromise of the long-term keys does not enable a passive attacker to compromise future session keys (PRK_out). Compromise of the HDKF input parameters (ECDH shared secret) leads to compromise of all session keys derived from that compromised shared secret. Compromise of one session key does not compromise other session keys. Compromise of PRK_out leads to compromise of all keying material derived with the EDHOC_Exporter.</t>
        <t>Based on the cryptographic algorithms requirements <xref target="sec_algs"/>, EDHOC provides a minimum of 64-bit security against online brute force attacks and a minimum of 128-bit security against offline brute force attacks. To break 64-bit security against online brute force an attacker would on average have to send 4.3 billion messages per second for 68 years, which is infeasible in constrained IoT radio technologies. A forgery against a 64-bit MAC in EDHOC breaks the security of all future application data, while a forgery against a 64-bit MAC in the subsequent application protocol (e.g., OSCORE <xref target="RFC8613"/>) typically only breaks the security of the data in the forged packet.</t>
        <t>As the EDHOC session is aborted when verification fails, the security against online attacks is given by the sum of the strength of the verified signatures and MACs (including MAC in AEAD). As an example, if EDHOC is used with method 3, cipher suite 2, and message_4, the Responder is authenticated with 128-bit security against online attacks (the sum of the 64-bit MACs in message_2 and message_4). The same principle applies for MACs in an application protocol keyed by EDHOC as long as EDHOC is rerun when verification of the first MACs in the application protocol fails. As an example, if EDHOC with method 3 and cipher suite 2 is used as in Figure 2 of <xref target="I-D.ietf-core-oscore-edhoc"/>, 128-bit mutual authentication against online attacks can be achieved after completion of the first OSCORE request and response.</t>
        <t>After sending message_3, the Initiator is assured that no other party than the Responder can compute the key PRK_out. While the Initiator can securely send protected application data, the Initiator SHOULD NOT persistently store the keying material PRK_out until the Initiator has verified message_4 or a message protected with a derived application key, such as an OSCORE message, from the Responder. After verifying message_3, the Responder is assured that an honest Initiator has computed the key PRK_out. The Responder can securely derive and store the keying material PRK_out, and send protected application data.</t>
        <t>External authorization data sent in message_1 (EAD_1) or message_2 (EAD_2) should be considered unprotected by EDHOC, see <xref target="unprot-data"/>. EAD_2 is encrypted but the Responder has not yet authenticated the Initiator and the encryption does not provide confidentiality against active attacks.</t>
        <t>External authorization data sent in message_3 (EAD_3) or message_4 (EAD_4) is protected between Initiator and Responder by the protocol, but note that EAD fields may be used by the application before the message verification is completed, see <xref target="AD"/>. Designing a secure mechanism that uses EAD is not necessarily straightforward. This document only provides the EAD transport mechanism, but the problem of agreeing on the surrounding context and the meaning of the information passed to and from the application remains. Any new uses of EAD should be subject to careful review.</t>
        <t>Key compromise impersonation (KCI): In EDHOC authenticated with signature keys, EDHOC provides KCI protection against an attacker having access to the long-term key or the ephemeral secret key. With static Diffie-Hellman key authentication, KCI protection would be provided against an attacker having access to the long-term Diffie-Hellman key, but not to an attacker having access to the ephemeral secret key. Note that the term KCI has typically been used for compromise of long-term keys, and that an attacker with access to the ephemeral secret key can only attack that specific EDHOC session.</t>
        <t>Repudiation: If an endpoint authenticates with a signature, the other endpoint can prove that the endpoint performed a run of the protocol by presenting the data being signed as well as the signature itself. With static Diffie-Hellman key authentication, the authenticating endpoint can deny having participated in the protocol.</t>
        <t>Earlier versions of EDHOC have been formally analyzed <xref target="Bruni18"/> <xref target="Norrman20"/> <xref target="CottierPointcheval22"/> <xref target="Jacomme23"/> <xref target="GuentherIlunga22"/> and the specification has been updated based on the analysis.</t>
      </section>
      <section anchor="crypto">
        <name>Cryptographic Considerations</name>
        <t>The SIGMA protocol requires that the encryption of message_3 provides confidentiality against active attackers and EDHOC message_4 relies on the use of
authenticated encryption. Hence, the message authenticating functionality of the authenticated encryption in EDHOC is critical: authenticated encryption MUST NOT be replaced by plain encryption only, even if authentication is provided at another level or through a different mechanism.</t>
        <t>To reduce message overhead EDHOC does not use explicit nonces and instead relies on the ephemeral public keys to provide randomness to each EDHOC session. A good amount of randomness is important for the key generation, to provide liveness, and to protect against interleaving attacks. For this reason, the ephemeral keys MUST NOT be used in more than one EDHOC message, and both parties SHALL generate fresh random ephemeral key pairs. Note that an ephemeral key may be used to calculate several ECDH shared secrets. When static Diffie-Hellman authentication is used the same ephemeral key is used in both ephemeral-ephemeral and ephemeral-static ECDH.</t>
        <t>As discussed in <xref target="SIGMA"/>, the encryption of message_2 does only need to protect against passive attacker as active attackers can always get the Responder's identity by sending their own message_1. EDHOC uses the EDHOC_Expand function (typically HKDF-Expand) as a binary additive stream cipher which is proven secure as long as the expand function is a PRF.  HKDF-Expand is not often used as a stream cipher as it is slow on long messages, and most applications require both confidentiality with indistinguishability under chosen ciphertext (IND-CCA) as well as integrity protection. For the encryption of message_2, any speed difference is negligible, IND-CCA does not increase security, and integrity is provided by the inner MAC (and signature depending on method).</t>
        <t>Requirements for how to securely generate, validate, and process the public keys depend on the elliptic curve. For X25519 and X448, the requirements are defined in <xref target="RFC7748"/>. For X25519 and X448, the check for all-zero output as specified in Section 6 of <xref target="RFC7748"/> MUST be done. For secp256r1, secp384r1, and secp521r1, the requirements are defined in Section 5 of <xref target="SP-800-56A"/>. For secp256r1, secp384r1, and secp521r1, at least partial public-key validation MUST be done.</t>
        <t>The same authentication credential MAY be used for both the Initiator and Responder roles. As noted in Section 12 of <xref target="RFC9052"/> the use of a single key for multiple algorithms is strongly discouraged unless proven secure by a dedicated cryptographic analysis. In particular this recommendation applies to using the same private key for static Diffie-Hellman authentication and digital signature authentication. A preliminary conjecture is that a minor change to EDHOC may be sufficient to fit the analysis of secure shared signature and ECDH key usage in <xref target="Degabriele11"/> and <xref target="Thormarker21"/>.</t>
        <t>The property that a completed EDHOC session implies that another identity has been active is upheld as long as the Initiator does not have its own identity in the set of Responder identities it is allowed to communicate with. In Trust on first use (TOFU) use cases, see <xref target="tofu"/>, the Initiator should verify that the Responder's identity is not equal to its own. Any future EDHOC methods using e.g., pre-shared keys might need to mitigate this in other ways. However, an active attacker can gain information about the set of identities an Initiator is willing to communicate with. If the Initiator is willing to communicate with all identities except its own an attacker can determine that a guessed Initiator identity is correct. To not leak any long-term identifiers, using a freshly generated authentication key as identity in each initial TOFU session is RECOMMENDED.</t>
        <t>NIST SP 800-56A <xref target="SP-800-56A"/> forbids deriving secret and non-secret randomness from the same KDF instance, but this decision has been criticized by Krawczyk <xref target="HKDFpaper"/> and doing so is common practice. In addition to IVs, other examples are the challenge in EAP-TTLS, the RAND in 3GPP AKAs, and the Session-Id in EAP-TLS 1.3. Note that part of KEYSTREAM_2 is also non-secret randomness as it is known or predictable to an attacker. The more recent NIST SP 800-108 <xref target="SP-800-108"/> aligns with <xref target="HKDFpaper"/> and states that for a secure KDF, the revelation of one portion of the derived keying material must not degrade the security of any other portion of that keying material.</t>
      </section>
      <section anchor="sec_algs">
        <name>Cipher Suites and Cryptographic Algorithms</name>
        <t>When using private cipher suite or registering new cipher suites, the choice of key length used in the different algorithms needs to be harmonized, so that a sufficient security level is maintained for authentication credentials, the EDHOC session, and the protection of application data. The Initiator and the Responder should enforce a minimum security level.</t>
        <t>The output size of the EDHOC hash algorithm MUST be at least 256-bits, i.e., the hash algorithms SHA-1 and SHA-256/64 (SHA-256 truncated to 64-bits) SHALL NOT be supported for use in EDHOC except for certificate identification with x5t and c5t. For security considerations of SHA-1, see <xref target="RFC6194"/>. As EDHOC integrity protects the whole authentication credentials, the choice of hash algorithm in x5t and c5t does not affect security, and using the same hash algorithm as in the cipher suite, but with as much truncation as possible, is RECOMMENDED. That is, when the EDHOC hash algorithm is SHA-256, using SHA-256/64 in x5t and c5t is RECOMMENDED. The EDHOC MAC length MUST be at least 8 bytes and the tag length of the EDHOC AEAD algorithm MUST be at least 64-bits. Note that secp256k1 is only defined for use with ECDSA and not for ECDH. Note that some COSE algorithms are marked as not recommended in the COSE IANA registry.</t>
      </section>
      <section anchor="pqc">
        <name>Post-Quantum Considerations</name>
        <t>As of the publication of this specification, it is unclear when or even if a quantum computer of sufficient size and power to exploit public key cryptography will exist. Deployments that need to consider risks decades into the future should transition to Post-Quantum Cryptography (PQC) in the not-too-distant future. Many other systems should take a slower wait-and-see approach where PQC is phased in when the quantum threat is more imminent. Current PQC algorithms have limitations compared to Elliptic Curve Cryptography (ECC) and the data sizes would be problematic in many constrained IoT systems.</t>
        <t>Symmetric algorithms used in EDHOC such as SHA-256 and AES-CCM-16-64-128 are practically secure against even large quantum computers. Two of NIST's security levels for quantum-resistant public-key cryptography are based on AES-128 and SHA-256. Quantum computer will likely be expensive, slow due to heavy error correction, and Grover’s algorithm, which is proven to be optimal, cannot effectively be parallelized. Grover’s algorithm will provide little or no advantage in attacking AES, and AES-128 will remain secure for decades to come <xref target="NISTPQC"/>.</t>
        <t>EDHOC supports all signature algorithms defined by COSE, including PQC signature algorithms such as HSS-LMS. EDHOC is currently only specified for use with key exchange algorithms of type ECDH curves, but any Key Encapsulation Method (KEM), including PQC KEMs, can be used in method 0. While the key exchange in method 0 is specified with terms of the Diffie-Hellman protocol, the key exchange adheres to a KEM interface: G_X is then the public key of the Initiator, G_Y is the encapsulation, and G_XY is the shared secret. Use of PQC KEMs to replace static DH authentication would likely require a specification updating EDHOC with new methods.</t>
      </section>
      <section anchor="unprot-data">
        <name>Unprotected Data and Privacy</name>
        <t>The Initiator and the Responder must make sure that unprotected data and metadata do not reveal any sensitive information. This also applies for encrypted data sent to an unauthenticated party. In particular, it applies to EAD_1, ID_CRED_R, EAD_2, and error messages. Using the same EAD_1 in several EDHOC sessions allows passive eavesdroppers to correlate the different sessions. Note that even if ead_value is encrypted outside of EDHOC, the ead_labels in EAD_1 is revealed to passive attackers and the ead_labels in EAD_2 is revealed to active attackers. Another consideration is that the list of supported cipher suites may potentially be used to identify the application. The Initiator and the Responder must also make sure that unauthenticated data does not trigger any harmful actions. In particular, this applies to EAD_1 and error messages.</t>
        <t>An attacker observing network traffic may use connection identifiers sent in clear in EDHOC or the subsequent application protocol to correlate packets sent on different paths or at different times. The attacker may use this information for traffic flow analysis or to track an endpoint. Application protocols using connection identifiers from EDHOC SHOULD provide mechanisms to update the connection identifiers and MAY provide mechanisms to issue several simultaneously active connection identifiers. See <xref target="RFC9000"/> for a non-constrained example of such mechanisms. Connection identifiers can e.g., be chosen randomly among the set of unused 1-byte connection identifiers. Connection identity privacy mechanisms are only useful when there are not fixed identifiers such as IP address or MAC address in the lower layers.</t>
      </section>
      <section anchor="internet-threat">
        <name>Updated Internet Threat Model Considerations</name>
        <t>Since the publication of <xref target="RFC3552"/> there has been an increased awareness of the need to protect against endpoints that are compromised, malicious, or whose interests simply do not align with the interests of users <xref target="I-D.arkko-arch-internet-threat-model-guidance"/>. <xref target="RFC7624"/> describes an updated threat model for Internet confidentiality, see <xref target="sec-prop"/>. <xref target="I-D.arkko-arch-internet-threat-model-guidance"/> further expands the threat model. Implementations and users should take these threat models into account and consider actions to reduce the risk of tracking by other endpoints. In particular, even data sent protected to the other endpoint such as ID_CRED fields and EAD fields can be used for tracking, see Section 2.7 of <xref target="I-D.arkko-arch-internet-threat-model-guidance"/>.</t>
        <t>The fields ID_CRED_I, ID_CRED_R, EAD_2, EAD_3, and EAD_4 have variable length, and information regarding the length may leak to an attacker. A passive attacker may, e.g., be able to differentiate endpoints using identifiers of different length. To mitigate this information leakage an implementation may ensure that the fields have fixed length or use padding. An implementation may, e.g., only use fixed length identifiers like 'kid' of length 1. Alternatively, padding may be used (see <xref target="padding"/>) to hide the true length of, e.g., certificates by value in 'x5chain' or 'c5c'.</t>
      </section>
      <section anchor="dos">
        <name>Denial-of-Service</name>
        <t>EDHOC itself does not provide countermeasures against denial-of-service attacks. In particular, by sending a number of new or replayed message_1 an attacker may cause the Responder to allocate state, perform cryptographic operations, and amplify messages. To mitigate such attacks, an implementation SHOULD make use of available lower layer mechanisms. For instance, when EDHOC is transferred as an exchange of CoAP messages, the CoAP server can use the Echo option defined in <xref target="RFC9175"/> which forces the CoAP client to demonstrate reachability at its apparent network address. To avoid an additional roundtrip the Initiator can reduce the amplification factor by padding message_1, i.e., using EAD_1, see <xref target="padding"/>.
Note that while the Echo option mitigates some resource exhaustion aspects of
spoofing, it does not protect against a distributed denial-of-service attack made by real, potentially compromised, clients. Similarly, limiting amplification only reduces the impact, which still may be significant because of a large number of clients engaged in the attack.</t>
        <t>An attacker can also send faked message_2, message_3, message_4, or error in an attempt to trick the receiving party to send an error message and abort the EDHOC session. EDHOC implementations MAY evaluate if a received message is likely to have been forged by an attacker and ignore it without sending an error message or aborting the EDHOC session.</t>
      </section>
      <section anchor="impl-cons">
        <name>Implementation Considerations</name>
        <t>The availability of a secure random number generator is essential for the security of EDHOC. If no true random number generator is available, a random seed MUST be provided from an external source and used with a cryptographically secure pseudorandom number generator. As each pseudorandom number must only be used once, an implementation needs to get a unique input to the pseudorandom number generator after reboot, or continuously store state in nonvolatile memory. Appendix B.1.1 in <xref target="RFC8613"/> describes issues and solution approaches for writing to nonvolatile memory. Intentionally or unintentionally weak or predictable pseudorandom number generators can be abused or exploited for malicious purposes. <xref target="RFC8937"/> describes a way for security protocol implementations to augment their (pseudo)random number generators using a long-term private key and a deterministic signature function. This improves randomness from broken or otherwise subverted random number generators. The same idea can be used with other secrets and functions such as a Diffie-Hellman function or a symmetric secret and a PRF like HMAC or KMAC. It is RECOMMENDED to not trust a single source of randomness and to not put unaugmented random numbers on the wire.</t>
        <t>For many constrained IoT devices it is problematic to support several crypto primitives. Existing devices can be expected to support either ECDSA or EdDSA. If ECDSA is supported, "deterministic ECDSA" as specified in <xref target="RFC6979"/> MAY be used. Pure deterministic elliptic-curve signatures such as deterministic ECDSA and EdDSA have gained popularity over randomized ECDSA as their security do not depend on a source of high-quality randomness. Recent research has however found that implementations of these signature algorithms may be vulnerable to certain side-channel and fault injection attacks due to their determinism. See e.g., Section 1 of <xref target="I-D.irtf-cfrg-det-sigs-with-noise"/> for a list of attack papers. As suggested in Section 2.1.1 of <xref target="RFC9053"/> this can be addressed by combining randomness and determinism.</t>
        <t>Appendix D of <xref target="I-D.ietf-lwig-curve-representations"/> describes how Montgomery curves such as X25519 and X448 and (twisted) Edwards curves as curves such as Ed25519 and Ed448 can be mapped to and from short-Weierstrass form for implementation on platforms that accelerate elliptic curve group operations in short-Weierstrass form.</t>
        <t>All private keys, symmetric keys, and IVs MUST be secret. Only the Responder SHALL have access to the Responder's private authentication key and only the Initiator SHALL have access to the Initiator's private authentication key. Implementations should provide countermeasures to side-channel attacks such as timing attacks. Intermediate computed values such as ephemeral ECDH keys and ECDH shared secrets MUST be deleted after key derivation is completed.</t>
        <t>The Initiator and the Responder are responsible for verifying the integrity and validity of certificates. Verification of validity may require the use of a Real-Time Clock (RTC). The selection of trusted CAs should be done very carefully and certificate revocation should be supported. The choice of revocation mechanism is left to the application. For example, in case of X.509 certificates, Certificate Revocation Lists <xref target="RFC5280"/> or OCSP <xref target="RFC6960"/> may be used.</t>
        <t>Similar considerations as for certificates are needed for CWT/CCS. The endpoints are responsible for verifying the integrity and validity of CWT/CCS, and to handle revocation. The application needs to determine what trust anchors are relevant, and have a well-defined trust-establishment process. A self-signed certificate/CWT or CCS appearing in the protocol cannot be a trigger to modify the set of trust anchors. One common way for a new trust anchor to be added to (or removed from) a device is by means firmware upgrade. See <xref target="RFC9360"/> for a longer discussion on trust and validation in constrained devices.</t>
        <t>Just like for certificates, the contents of the COSE header parameters 'kcwt' and 'kccs' defined in <xref target="cwt-header-param"/> must be processed as untrusted input. Endpoints that intend to rely on the assertions made by a CWT/CCS obtained from any of these methods need to validate the contents. For 'kccs', which enables transport of raw public keys, the data structure used does not include any protection or verification data. 'kccs' may be used for unauthenticated operations, e.g. trust on first use, with the limitations and caveats entailed, see <xref target="tofu"/>.</t>
        <t>The Initiator and the Responder are allowed to select the connection identifier C_I and C_R, respectively, for the other party to use in the ongoing EDHOC session as well as in a subsequent application protocol (e.g., OSCORE <xref target="RFC8613"/>). The choice of connection identifier is not security critical in EDHOC but intended to simplify the retrieval of the right security context in combination with using short identifiers. If the wrong connection identifier of the other party is used in a protocol message it will result in the receiving party not being able to retrieve a security context (which will abort the EDHOC session) or retrieve the wrong security context (which also aborts the EDHOC session as the message cannot be verified).</t>
        <t>If two nodes unintentionally initiate two simultaneous EDHOC sessions with each other even if they only want to complete a single EDHOC session, they MAY abort the EDHOC session with the lexicographically smallest G_X. Note that in cases where several EDHOC sessions with different parameter sets (method, COSE headers, etc.) are used, an attacker can affect which parameter set will be used by blocking some of the parameter sets.</t>
        <t>If supported by the device, it is RECOMMENDED that at least the long-term private keys are stored in a Trusted Execution Environment (TEE, see for example <xref target="RFC9397"/>) and that sensitive operations using these keys are performed inside the TEE.  To achieve even higher security it is RECOMMENDED that additional operations such as ephemeral key generation, all computations of shared secrets, and storage of the PRK keys can be done inside the TEE. The use of a TEE aims at preventing code within that environment to be tampered with, and preventing data used by such code to be read or tampered with by code outside that environment.</t>
        <t>Note that HKDF-Expand has a relatively small maximum output length of 255 <contact fullname="⋅"/> hash_length, where hash_length is the output size in bytes of the EDHOC hash algorithm of the selected cipher suite. This means that when SHA-256 is used as hash algorithm, PLAINTEXT_2 cannot be longer than 8160 bytes. This is probably not a limitation for most intended applications, but to be able to support for example long certificate chains or large external authorization data, there is a backwards compatible method specified in <xref target="large-plaintext_2"/>.</t>
        <t>The sequence of transcript hashes in EDHOC (TH_2, TH_3, TH_4) does not make use of a so-called running hash. This is a design choice as running hashes are often not supported on constrained platforms.</t>
        <t>When parsing a received EDHOC message, implementations MUST abort the EDHOC session if the message does not comply with the CDDL for that message. Implementations are not required to support non-deterministic encodings and MAY abort the EDHOC session if the received EDHOC message is not encoded using deterministic CBOR. Implementations MUST abort the EDHOC session if validation of a received public key fails or if any cryptographic field has the wrong length.</t>
      </section>
    </section>
    <section anchor="iana">
      <name>IANA Considerations</name>
      <t>This Section gives IANA Considerations and, unless otherwise noted, conforms with <xref target="RFC8126"/>.</t>
      <section anchor="exporter-label">
        <name>EDHOC Exporter Label Registry</name>
        <t>IANA is requested to create a new registry under the new registry group "Ephemeral Diffie-Hellman Over COSE (EDHOC)" as follows:</t>
        <t>Registry Name: EDHOC Exporter Label</t>
        <t>Reference: [[this document]]</t>
        <figure anchor="fig-exporter-label">
          <name>EDHOC exporter label.</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="288" width="536" viewBox="0 0 536 288" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,32 L 8,256" fill="none" stroke="black"/>
                <path d="M 120,32 L 120,256" fill="none" stroke="black"/>
                <path d="M 368,32 L 368,256" fill="none" stroke="black"/>
                <path d="M 528,32 L 528,256" fill="none" stroke="black"/>
                <path d="M 8,32 L 528,32" fill="none" stroke="black"/>
                <path d="M 8,62 L 528,62" fill="none" stroke="black"/>
                <path d="M 8,66 L 528,66" fill="none" stroke="black"/>
                <path d="M 8,96 L 528,96" fill="none" stroke="black"/>
                <path d="M 8,128 L 528,128" fill="none" stroke="black"/>
                <path d="M 8,160 L 528,160" fill="none" stroke="black"/>
                <path d="M 8,192 L 528,192" fill="none" stroke="black"/>
                <path d="M 8,224 L 528,224" fill="none" stroke="black"/>
                <path d="M 8,256 L 528,256" fill="none" stroke="black"/>
                <g class="text">
                  <text x="40" y="52">Label</text>
                  <text x="176" y="52">Description</text>
                  <text x="416" y="52">Reference</text>
                  <text x="24" y="84">0</text>
                  <text x="160" y="84">Derived</text>
                  <text x="220" y="84">OSCORE</text>
                  <text x="276" y="84">Master</text>
                  <text x="332" y="84">Secret</text>
                  <text x="404" y="84">[[this</text>
                  <text x="476" y="84">document]]</text>
                  <text x="24" y="116">1</text>
                  <text x="160" y="116">Derived</text>
                  <text x="220" y="116">OSCORE</text>
                  <text x="276" y="116">Master</text>
                  <text x="324" y="116">Salt</text>
                  <text x="404" y="116">[[this</text>
                  <text x="476" y="116">document]]</text>
                  <text x="36" y="148">2-22</text>
                  <text x="172" y="148">Unassigned</text>
                  <text x="28" y="180">23</text>
                  <text x="164" y="180">Reserved</text>
                  <text x="404" y="180">[[this</text>
                  <text x="476" y="180">document]]</text>
                  <text x="52" y="212">24-32767</text>
                  <text x="172" y="212">Unassigned</text>
                  <text x="64" y="244">32768-65535</text>
                  <text x="160" y="244">Private</text>
                  <text x="208" y="244">Use</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
+-------------+------------------------------+-------------------+
| Label       | Description                  | Reference         |
+=============+==============================+===================+
| 0           | Derived OSCORE Master Secret | [[this document]] |
+-------------+------------------------------+-------------------+
| 1           | Derived OSCORE Master Salt   | [[this document]] |
+-------------+------------------------------+-------------------+
| 2-22        | Unassigned                   |                   |
+-------------+------------------------------+-------------------+
| 23          | Reserved                     | [[this document]] |
+-------------+------------------------------+-------------------+
| 24-32767    | Unassigned                   |                   |
+-------------+------------------------------+-------------------+
| 32768-65535 | Private Use                  |                   |
+-------------+------------------------------+-------------------+

]]></artwork>
          </artset>
        </figure>
        <artset>
          <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="160" width="432" viewBox="0 0 432 160" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
              <path d="M 8,32 L 8,128" fill="none" stroke="black"/>
              <path d="M 120,32 L 120,128" fill="none" stroke="black"/>
              <path d="M 424,32 L 424,128" fill="none" stroke="black"/>
              <path d="M 8,32 L 424,32" fill="none" stroke="black"/>
              <path d="M 8,62 L 424,62" fill="none" stroke="black"/>
              <path d="M 8,66 L 424,66" fill="none" stroke="black"/>
              <path d="M 8,96 L 424,96" fill="none" stroke="black"/>
              <path d="M 8,128 L 424,128" fill="none" stroke="black"/>
              <g class="text">
                <text x="40" y="52">Range</text>
                <text x="180" y="52">Registration</text>
                <text x="276" y="52">Procedures</text>
                <text x="24" y="84">0</text>
                <text x="44" y="84">to</text>
                <text x="68" y="84">23</text>
                <text x="168" y="84">Standards</text>
                <text x="236" y="84">Action</text>
                <text x="28" y="116">24</text>
                <text x="52" y="116">to</text>
                <text x="88" y="116">32767</text>
                <text x="156" y="116">Expert</text>
                <text x="212" y="116">Review</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art"><![CDATA[
+-------------+-------------------------------------+
| Range       | Registration Procedures             |
+=============+=====================================+
| 0 to 23     | Standards Action                    |
+-------------+-------------------------------------+
| 24 to 32767 | Expert Review                       |
+-------------+-------------------------------------+

]]></artwork>
        </artset>
      </section>
      <section anchor="suites-registry">
        <name>EDHOC Cipher Suites Registry</name>
        <t>IANA is requested to create a new registry under the new registry group "Ephemeral Diffie-Hellman Over COSE (EDHOC)" as follows:</t>
        <t>Registry Name: EDHOC Cipher Suites</t>
        <t>Reference: [[this document]]</t>
        <t>The columns of the registry are Value, Array and Description, where Value is an integer and the other columns are text strings. The initial contents of the registry are:</t>
        <artwork><![CDATA[
Value: -24
Array: N/A
Description: Private Use
Reference: [[this document]]
]]></artwork>
        <artwork><![CDATA[
Value: -23
Array: N/A
Description: Private Use
Reference: [[this document]]
]]></artwork>
        <artwork><![CDATA[
Value: -22
Array: N/A
Description: Private Use
Reference: [[this document]]
]]></artwork>
        <artwork><![CDATA[
Value: -21
Array: N/A
Description: Private Use
Reference: [[this document]]
]]></artwork>
        <artwork><![CDATA[
Value: 0
Array: 10, -16, 8, 4, -8, 10, -16
Description: AES-CCM-16-64-128, SHA-256, 8, X25519, EdDSA,
      AES-CCM-16-64-128, SHA-256
Reference: [[this document]]
]]></artwork>
        <artwork><![CDATA[
Value: 1
Array: 30, -16, 16, 4, -8, 10, -16
Description: AES-CCM-16-128-128, SHA-256, 16, X25519, EdDSA,
      AES-CCM-16-64-128, SHA-256
Reference: [[this document]]
]]></artwork>
        <artwork><![CDATA[
Value: 2
Array: 10, -16, 8, 1, -7, 10, -16
Description: AES-CCM-16-64-128, SHA-256, 8, P-256, ES256,
      AES-CCM-16-64-128, SHA-256
Reference: [[this document]]
]]></artwork>
        <artwork><![CDATA[
Value: 3
Array: 30, -16, 16, 1, -7, 10, -16
Description: AES-CCM-16-128-128, SHA-256, 16, P-256, ES256,
      AES-CCM-16-64-128, SHA-256
Reference: [[this document]]
]]></artwork>
        <artwork><![CDATA[
Value: 4
Array: 24, -16, 16, 4, -8, 24, -16
Description: ChaCha20/Poly1305, SHA-256, 16, X25519, EdDSA,
      ChaCha20/Poly1305, SHA-256
Reference: [[this document]]
]]></artwork>
        <artwork><![CDATA[
Value: 5
Array: 24, -16, 16, 1, -7, 24, -16
Description: ChaCha20/Poly1305, SHA-256, 16, P-256, ES256,
      ChaCha20/Poly1305, SHA-256
Reference: [[this document]]
]]></artwork>
        <artwork><![CDATA[
Value: 6
Array: 1, -16, 16, 4, -7, 1, -16
Description: A128GCM, SHA-256, 16, X25519, ES256,
      A128GCM, SHA-256
Reference: [[this document]]
]]></artwork>
        <artwork><![CDATA[
Value: 23
Reserved
Reference: [[this document]]
]]></artwork>
        <artwork><![CDATA[
Value: 24
Array: 3, -43, 16, 2, -35, 3, -43
Description: A256GCM, SHA-384, 16, P-384, ES384,
      A256GCM, SHA-384
Reference: [[this document]]
]]></artwork>
        <artwork><![CDATA[
Value: 25
Array: 24, -45, 16, 5, -8, 24, -45
Description: ChaCha20/Poly1305, SHAKE256, 16, X448, EdDSA,
      ChaCha20/Poly1305, SHAKE256
Reference: [[this document]]
]]></artwork>
        <artset>
          <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="176" width="456" viewBox="0 0 456 176" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
              <path d="M 8,32 L 8,160" fill="none" stroke="black"/>
              <path d="M 144,32 L 144,160" fill="none" stroke="black"/>
              <path d="M 448,32 L 448,160" fill="none" stroke="black"/>
              <path d="M 8,32 L 448,32" fill="none" stroke="black"/>
              <path d="M 8,62 L 448,62" fill="none" stroke="black"/>
              <path d="M 8,66 L 448,66" fill="none" stroke="black"/>
              <path d="M 8,96 L 448,96" fill="none" stroke="black"/>
              <path d="M 8,128 L 448,128" fill="none" stroke="black"/>
              <path d="M 8,160 L 448,160" fill="none" stroke="black"/>
              <g class="text">
                <text x="40" y="52">Range</text>
                <text x="204" y="52">Registration</text>
                <text x="300" y="52">Procedures</text>
                <text x="44" y="84">-65536</text>
                <text x="84" y="84">to</text>
                <text x="112" y="84">-25</text>
                <text x="208" y="84">Specification</text>
                <text x="300" y="84">Required</text>
                <text x="32" y="116">-20</text>
                <text x="60" y="116">to</text>
                <text x="84" y="116">23</text>
                <text x="192" y="116">Standards</text>
                <text x="260" y="116">Action</text>
                <text x="308" y="116">with</text>
                <text x="356" y="116">Expert</text>
                <text x="412" y="116">Review</text>
                <text x="28" y="148">24</text>
                <text x="52" y="148">to</text>
                <text x="88" y="148">65535</text>
                <text x="208" y="148">Specification</text>
                <text x="300" y="148">Required</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art"><![CDATA[
+----------------+-------------------------------------+
| Range          | Registration Procedures             |
+================+=====================================+
| -65536 to -25  | Specification Required              |
+----------------+-------------------------------------+
| -20 to 23      | Standards Action with Expert Review |
+----------------+-------------------------------------+
| 24 to 65535    | Specification Required              |
+----------------+-------------------------------------+
]]></artwork>
        </artset>
      </section>
      <section anchor="method-types">
        <name>EDHOC Method Type Registry</name>
        <t>IANA is requested to create a new registry under the new registry group "Ephemeral Diffie-Hellman Over COSE (EDHOC)" as follows:</t>
        <t>Registry Name: EDHOC Method Type</t>
        <t>Reference: [[this document]]</t>
        <t>The columns of the registry are Value, Initiator Authentication Key, and Responder Authentication Key, and Reference, where Value is an integer and the key columns are text strings describing the authentication keys.</t>
        <t>The initial contents of the registry are shown in <xref target="fig-method-types"/>. Method 23 is Reserved.</t>
        <artset>
          <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="176" width="456" viewBox="0 0 456 176" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
              <path d="M 8,32 L 8,160" fill="none" stroke="black"/>
              <path d="M 144,32 L 144,160" fill="none" stroke="black"/>
              <path d="M 448,32 L 448,160" fill="none" stroke="black"/>
              <path d="M 8,32 L 448,32" fill="none" stroke="black"/>
              <path d="M 8,62 L 448,62" fill="none" stroke="black"/>
              <path d="M 8,66 L 448,66" fill="none" stroke="black"/>
              <path d="M 8,96 L 448,96" fill="none" stroke="black"/>
              <path d="M 8,128 L 448,128" fill="none" stroke="black"/>
              <path d="M 8,160 L 448,160" fill="none" stroke="black"/>
              <g class="text">
                <text x="40" y="52">Range</text>
                <text x="204" y="52">Registration</text>
                <text x="300" y="52">Procedures</text>
                <text x="44" y="84">-65536</text>
                <text x="84" y="84">to</text>
                <text x="112" y="84">-25</text>
                <text x="208" y="84">Specification</text>
                <text x="300" y="84">Required</text>
                <text x="32" y="116">-24</text>
                <text x="60" y="116">to</text>
                <text x="84" y="116">23</text>
                <text x="192" y="116">Standards</text>
                <text x="260" y="116">Action</text>
                <text x="308" y="116">with</text>
                <text x="356" y="116">Expert</text>
                <text x="412" y="116">Review</text>
                <text x="28" y="148">24</text>
                <text x="52" y="148">to</text>
                <text x="88" y="148">65535</text>
                <text x="208" y="148">Specification</text>
                <text x="300" y="148">Required</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art"><![CDATA[
+----------------+-------------------------------------+
| Range          | Registration Procedures             |
+================+=====================================+
| -65536 to -25  | Specification Required              |
+----------------+-------------------------------------+
| -24 to 23      | Standards Action with Expert Review |
+----------------+-------------------------------------+
| 24 to 65535    | Specification Required              |
+----------------+-------------------------------------+
]]></artwork>
        </artset>
      </section>
      <section anchor="error-code-reg">
        <name>EDHOC Error Codes Registry</name>
        <t>IANA is requested to create a new registry under the new registry group "Ephemeral Diffie-Hellman Over COSE (EDHOC)" as follows:</t>
        <t>Registry Name: EDHOC Error Codes</t>
        <t>Reference: [[this document]]</t>
        <t>The columns of the registry are ERR_CODE, ERR_INFO Type, Description, and Reference, where ERR_CODE is an integer, ERR_INFO is a CDDL defined type, and Description is a text string. The initial contents of the registry are shown in <xref target="fig-error-codes"/>. Error code 23 is Reserved.</t>
        <artset>
          <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="176" width="456" viewBox="0 0 456 176" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
              <path d="M 8,32 L 8,160" fill="none" stroke="black"/>
              <path d="M 144,32 L 144,160" fill="none" stroke="black"/>
              <path d="M 448,32 L 448,160" fill="none" stroke="black"/>
              <path d="M 8,32 L 448,32" fill="none" stroke="black"/>
              <path d="M 8,62 L 448,62" fill="none" stroke="black"/>
              <path d="M 8,66 L 448,66" fill="none" stroke="black"/>
              <path d="M 8,96 L 448,96" fill="none" stroke="black"/>
              <path d="M 8,128 L 448,128" fill="none" stroke="black"/>
              <path d="M 8,160 L 448,160" fill="none" stroke="black"/>
              <g class="text">
                <text x="40" y="52">Range</text>
                <text x="204" y="52">Registration</text>
                <text x="300" y="52">Procedures</text>
                <text x="44" y="84">-65536</text>
                <text x="84" y="84">to</text>
                <text x="112" y="84">-25</text>
                <text x="180" y="84">Expert</text>
                <text x="236" y="84">Review</text>
                <text x="32" y="116">-24</text>
                <text x="60" y="116">to</text>
                <text x="84" y="116">23</text>
                <text x="192" y="116">Standards</text>
                <text x="260" y="116">Action</text>
                <text x="28" y="148">24</text>
                <text x="52" y="148">to</text>
                <text x="88" y="148">65535</text>
                <text x="180" y="148">Expert</text>
                <text x="236" y="148">Review</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art"><![CDATA[
+----------------+-------------------------------------+
| Range          | Registration Procedures             |
+================+=====================================+
| -65536 to -25  | Expert Review                       |
+----------------+-------------------------------------+
| -24 to 23      | Standards Action                    |
+----------------+-------------------------------------+
| 24 to 65535    | Expert Review                       |
+----------------+-------------------------------------+
]]></artwork>
        </artset>
      </section>
      <section anchor="iana-ead">
        <name>EDHOC External Authorization Data Registry</name>
        <t>IANA is requested to create a new registry under the new registry group "Ephemeral Diffie-Hellman Over COSE (EDHOC)" as follows:</t>
        <t>Registry Name: EDHOC External Authorization Data</t>
        <t>Reference: [[this document]]</t>
        <t>The columns of the registry are Name, Label, Description, and Reference, where Label is a non-negative integer and the other columns are text strings. The initial contents of the registry is shown in <xref target="fig-ead-labels"/>. EAD label 23 is Reserved.</t>
        <figure anchor="fig-ead-labels">
          <name>EAD labels.</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="128" width="536" viewBox="0 0 536 128" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,32 L 8,112" fill="none" stroke="black"/>
                <path d="M 104,32 L 104,112" fill="none" stroke="black"/>
                <path d="M 168,32 L 168,112" fill="none" stroke="black"/>
                <path d="M 368,32 L 368,112" fill="none" stroke="black"/>
                <path d="M 528,32 L 528,112" fill="none" stroke="black"/>
                <path d="M 8,32 L 528,32" fill="none" stroke="black"/>
                <path d="M 8,62 L 528,62" fill="none" stroke="black"/>
                <path d="M 8,66 L 528,66" fill="none" stroke="black"/>
                <path d="M 8,112 L 528,112" fill="none" stroke="black"/>
                <g class="text">
                  <text x="36" y="52">Name</text>
                  <text x="136" y="52">Label</text>
                  <text x="224" y="52">Description</text>
                  <text x="416" y="52">Reference</text>
                  <text x="48" y="84">Padding</text>
                  <text x="136" y="84">0</text>
                  <text x="212" y="84">Randomly</text>
                  <text x="288" y="84">generated</text>
                  <text x="404" y="84">[[this</text>
                  <text x="476" y="84">document]]</text>
                  <text x="196" y="100">CBOR</text>
                  <text x="236" y="100">byte</text>
                  <text x="284" y="100">string</text>
                  <text x="408" y="100">Section</text>
                  <text x="464" y="100">3.8.1</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
+-----------+-------+------------------------+-------------------+
| Name      | Label | Description            | Reference         |
+===========+=======+========================+===================+
| Padding   |   0   | Randomly generated     | [[this document]] |
|           |       | CBOR byte string       | Section 3.8.1     |
+-----------+-------+------------------------+-------------------+
]]></artwork>
          </artset>
        </figure>
        <artset>
          <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="160" width="432" viewBox="0 0 432 160" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
              <path d="M 8,32 L 8,128" fill="none" stroke="black"/>
              <path d="M 120,32 L 120,128" fill="none" stroke="black"/>
              <path d="M 424,32 L 424,128" fill="none" stroke="black"/>
              <path d="M 8,32 L 424,32" fill="none" stroke="black"/>
              <path d="M 8,62 L 424,62" fill="none" stroke="black"/>
              <path d="M 8,66 L 424,66" fill="none" stroke="black"/>
              <path d="M 8,96 L 424,96" fill="none" stroke="black"/>
              <path d="M 8,128 L 424,128" fill="none" stroke="black"/>
              <g class="text">
                <text x="40" y="52">Range</text>
                <text x="180" y="52">Registration</text>
                <text x="276" y="52">Procedures</text>
                <text x="24" y="84">0</text>
                <text x="44" y="84">to</text>
                <text x="68" y="84">23</text>
                <text x="168" y="84">Standards</text>
                <text x="236" y="84">Action</text>
                <text x="284" y="84">with</text>
                <text x="332" y="84">Expert</text>
                <text x="388" y="84">Review</text>
                <text x="28" y="116">24</text>
                <text x="52" y="116">to</text>
                <text x="88" y="116">65535</text>
                <text x="184" y="116">Specification</text>
                <text x="276" y="116">Required</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art"><![CDATA[
+-------------+-------------------------------------+
| Range       | Registration Procedures             |
+=============+=====================================+
| 0 to 23     | Standards Action with Expert Review |
+-------------+-------------------------------------+
| 24 to 65535 | Specification Required              |
+-------------+-------------------------------------+

]]></artwork>
        </artset>
      </section>
      <section anchor="cwt-header-param">
        <name>COSE Header Parameters Registry</name>
        <t>IANA is requested to register the following entries in the "COSE Header Parameters" registry under the registry group "CBOR Object Signing and Encryption (COSE)" (see <xref target="fig-header-params"/>): The value of the 'kcwt' header parameter is a COSE Web Token (CWT) <xref target="RFC8392"/>, and the value of the 'kccs' header parameter is a CWT Claims Set (CCS), see <xref target="term"/>. The CWT/CCS must contain a COSE_Key in a 'cnf' claim <xref target="RFC8747"/>. The Value Registry for this item is empty and omitted from the table below.</t>
        <figure anchor="fig-header-params">
          <name>COSE header parameter labels.</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="256" width="560" viewBox="0 0 560 256" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,32 L 8,240" fill="none" stroke="black"/>
                <path d="M 64,32 L 64,240" fill="none" stroke="black"/>
                <path d="M 128,32 L 128,240" fill="none" stroke="black"/>
                <path d="M 256,32 L 256,240" fill="none" stroke="black"/>
                <path d="M 552,32 L 552,240" fill="none" stroke="black"/>
                <path d="M 8,32 L 552,32" fill="none" stroke="black"/>
                <path d="M 8,62 L 552,62" fill="none" stroke="black"/>
                <path d="M 8,66 L 552,66" fill="none" stroke="black"/>
                <path d="M 8,160 L 552,160" fill="none" stroke="black"/>
                <path d="M 8,240 L 552,240" fill="none" stroke="black"/>
                <g class="text">
                  <text x="36" y="52">Name</text>
                  <text x="96" y="52">Label</text>
                  <text x="160" y="52">Value</text>
                  <text x="204" y="52">Type</text>
                  <text x="312" y="52">Description</text>
                  <text x="36" y="84">kcwt</text>
                  <text x="92" y="84">TBD1</text>
                  <text x="192" y="84">COSE_Messages</text>
                  <text x="272" y="84">A</text>
                  <text x="300" y="84">CBOR</text>
                  <text x="336" y="84">Web</text>
                  <text x="376" y="84">Token</text>
                  <text x="424" y="84">(CWT)</text>
                  <text x="492" y="84">containing</text>
                  <text x="272" y="100">a</text>
                  <text x="316" y="100">COSE_Key</text>
                  <text x="364" y="100">in</text>
                  <text x="384" y="100">a</text>
                  <text x="416" y="100">'cnf'</text>
                  <text x="464" y="100">claim</text>
                  <text x="504" y="100">and</text>
                  <text x="300" y="116">possibly</text>
                  <text x="360" y="116">other</text>
                  <text x="416" y="116">claims.</text>
                  <text x="464" y="116">CWT</text>
                  <text x="492" y="116">is</text>
                  <text x="296" y="132">defined</text>
                  <text x="340" y="132">in</text>
                  <text x="368" y="132">RFC</text>
                  <text x="408" y="132">8392.</text>
                  <text x="488" y="132">COSE_Messages</text>
                  <text x="276" y="148">is</text>
                  <text x="320" y="148">defined</text>
                  <text x="364" y="148">in</text>
                  <text x="392" y="148">RFC</text>
                  <text x="432" y="148">9052.</text>
                  <text x="36" y="180">kccs</text>
                  <text x="92" y="180">TBD2</text>
                  <text x="152" y="180">map</text>
                  <text x="272" y="180">A</text>
                  <text x="296" y="180">CWT</text>
                  <text x="340" y="180">Claims</text>
                  <text x="384" y="180">Set</text>
                  <text x="424" y="180">(CCS)</text>
                  <text x="492" y="180">containing</text>
                  <text x="272" y="196">a</text>
                  <text x="316" y="196">COSE_Key</text>
                  <text x="364" y="196">in</text>
                  <text x="384" y="196">a</text>
                  <text x="416" y="196">'cnf'</text>
                  <text x="464" y="196">claim</text>
                  <text x="504" y="196">and</text>
                  <text x="300" y="212">possibly</text>
                  <text x="360" y="212">other</text>
                  <text x="416" y="212">claims.</text>
                  <text x="464" y="212">CCS</text>
                  <text x="492" y="212">is</text>
                  <text x="296" y="228">defined</text>
                  <text x="340" y="228">in</text>
                  <text x="368" y="228">RFC</text>
                  <text x="408" y="228">8392.</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
+------+-------+---------------+------------------------------------+
| Name | Label | Value Type    | Description                        |
+======+=======+===============+====================================+
| kcwt | TBD1  | COSE_Messages | A CBOR Web Token (CWT) containing  |
|      |       |               | a COSE_Key in a 'cnf' claim and    |
|      |       |               | possibly other claims. CWT is      |
|      |       |               | defined in RFC 8392. COSE_Messages |
|      |       |               | is defined in RFC 9052.            |
+------+-------+---------------+------------------------------------+
| kccs | TBD2  | map           | A CWT Claims Set (CCS) containing  |
|      |       |               | a COSE_Key in a 'cnf' claim and    |
|      |       |               | possibly other claims. CCS is      |
|      |       |               | defined in RFC 8392.               |
+------+-------+---------------+------------------------------------+
]]></artwork>
          </artset>
        </figure>
      </section>
      <section anchor="well-known">
        <name>The Well-Known URI Registry</name>
        <t>IANA is requested to add the well-known URI "edhoc" to the "Well-Known URIs" registry.</t>
        <ul spacing="normal">
          <li>
            <t>URI suffix: edhoc</t>
          </li>
          <li>
            <t>Change controller: IETF</t>
          </li>
          <li>
            <t>Specification document(s): [[this document]]</t>
          </li>
          <li>
            <t>Related information: None</t>
          </li>
        </ul>
      </section>
      <section anchor="media-type">
        <name>Media Types Registry</name>
        <t>IANA is requested to add the media types "application/edhoc+cbor-seq" and "application/cid-edhoc+cbor-seq" to the "Media Types" registry.</t>
        <section anchor="applicationedhoccbor-seq-media-type-registration">
          <name>application/edhoc+cbor-seq Media Type Registration</name>
          <ul spacing="normal">
            <li>
              <t>Type name: application</t>
            </li>
            <li>
              <t>Subtype name: edhoc+cbor-seq</t>
            </li>
            <li>
              <t>Required parameters: N/A</t>
            </li>
            <li>
              <t>Optional parameters: N/A</t>
            </li>
            <li>
              <t>Encoding considerations: binary</t>
            </li>
            <li>
              <t>Security considerations: See Section 7 of this document.</t>
            </li>
            <li>
              <t>Interoperability considerations: N/A</t>
            </li>
            <li>
              <t>Published specification: [[this document]] (this document)</t>
            </li>
            <li>
              <t>Applications that use this media type: To be identified</t>
            </li>
            <li>
              <t>Fragment identifier considerations: N/A</t>
            </li>
            <li>
              <t>Additional information:  </t>
              <ul spacing="normal">
                <li>
                  <t>Magic number(s): N/A</t>
                </li>
                <li>
                  <t>File extension(s): N/A</t>
                </li>
                <li>
                  <t>Macintosh file type code(s): N/A</t>
                </li>
              </ul>
            </li>
            <li>
              <t>Person &amp; email address to contact for further information: See "Authors' Addresses" section.</t>
            </li>
            <li>
              <t>Intended usage: COMMON</t>
            </li>
            <li>
              <t>Restrictions on usage: N/A</t>
            </li>
            <li>
              <t>Author: See "Authors' Addresses" section.</t>
            </li>
            <li>
              <t>Change Controller: IESG</t>
            </li>
          </ul>
        </section>
        <section anchor="applicationcid-edhoccbor-seq-media-type-registration">
          <name>application/cid-edhoc+cbor-seq Media Type Registration</name>
          <ul spacing="normal">
            <li>
              <t>Type name: application</t>
            </li>
            <li>
              <t>Subtype name: cid-edhoc+cbor-seq</t>
            </li>
            <li>
              <t>Required parameters: N/A</t>
            </li>
            <li>
              <t>Optional parameters: N/A</t>
            </li>
            <li>
              <t>Encoding considerations: binary</t>
            </li>
            <li>
              <t>Security considerations: See Section 7 of this document.</t>
            </li>
            <li>
              <t>Interoperability considerations: N/A</t>
            </li>
            <li>
              <t>Published specification: [[this document]] (this document)</t>
            </li>
            <li>
              <t>Applications that use this media type: To be identified</t>
            </li>
            <li>
              <t>Fragment identifier considerations: N/A</t>
            </li>
            <li>
              <t>Additional information:  </t>
              <ul spacing="normal">
                <li>
                  <t>Magic number(s): N/A</t>
                </li>
                <li>
                  <t>File extension(s): N/A</t>
                </li>
                <li>
                  <t>Macintosh file type code(s): N/A</t>
                </li>
              </ul>
            </li>
            <li>
              <t>Person &amp; email address to contact for further information: See "Authors' Addresses" section.</t>
            </li>
            <li>
              <t>Intended usage: COMMON</t>
            </li>
            <li>
              <t>Restrictions on usage: N/A</t>
            </li>
            <li>
              <t>Author: See "Authors' Addresses" section.</t>
            </li>
            <li>
              <t>Change Controller: IESG</t>
            </li>
          </ul>
        </section>
      </section>
      <section anchor="content-format">
        <name>CoAP Content-Formats Registry</name>
        <t>IANA is requested to add the media types "application/edhoc+cbor-seq" and "application/cid-edhoc+cbor-seq" to the "CoAP Content-Formats" registry under the registry group "Constrained RESTful Environments (CoRE) Parameters".</t>
        <figure anchor="fig-format-ids">
          <name>CoAP Content-Format IDs</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="128" width="584" viewBox="0 0 584 128" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,32 L 8,112" fill="none" stroke="black"/>
                <path d="M 272,32 L 272,112" fill="none" stroke="black"/>
                <path d="M 360,32 L 360,112" fill="none" stroke="black"/>
                <path d="M 416,32 L 416,112" fill="none" stroke="black"/>
                <path d="M 576,32 L 576,112" fill="none" stroke="black"/>
                <path d="M 8,32 L 576,32" fill="none" stroke="black"/>
                <path d="M 8,62 L 576,62" fill="none" stroke="black"/>
                <path d="M 8,66 L 576,66" fill="none" stroke="black"/>
                <path d="M 8,112 L 576,112" fill="none" stroke="black"/>
                <g class="text">
                  <text x="40" y="52">Media</text>
                  <text x="84" y="52">Type</text>
                  <text x="316" y="52">Encoding</text>
                  <text x="380" y="52">ID</text>
                  <text x="464" y="52">Reference</text>
                  <text x="124" y="84">application/edhoc+cbor-seq</text>
                  <text x="288" y="84">-</text>
                  <text x="388" y="84">TBD5</text>
                  <text x="452" y="84">[[this</text>
                  <text x="524" y="84">document]]</text>
                  <text x="140" y="100">application/cid-edhoc+cbor-seq</text>
                  <text x="288" y="100">-</text>
                  <text x="388" y="100">TBD6</text>
                  <text x="452" y="100">[[this</text>
                  <text x="524" y="100">document]]</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
+--------------------------------+----------+------+-------------------+
| Media Type                     | Encoding | ID   | Reference         |
+================================+==========+======+===================+
| application/edhoc+cbor-seq     | -        | TBD5 | [[this document]] |
| application/cid-edhoc+cbor-seq | -        | TBD6 | [[this document]] |
+--------------------------------+----------+------+-------------------+
]]></artwork>
          </artset>
        </figure>
      </section>
      <section anchor="rt">
        <name>Resource Type (rt=) Link Target Attribute Values Registry</name>
        <t>IANA is requested to add the resource type "core.edhoc" to the "Resource Type (rt=) Link Target Attribute Values" registry under the registry group "Constrained RESTful Environments (CoRE) Parameters".</t>
        <ul spacing="normal">
          <li>
            <t>Value: "core.edhoc"</t>
          </li>
          <li>
            <t>Description: EDHOC resource.</t>
          </li>
          <li>
            <t>Reference: [[this document]]</t>
          </li>
        </ul>
      </section>
      <section anchor="expert-review-instructions">
        <name>Expert Review Instructions</name>
        <t>The IANA Registries established in this document are defined as "Expert Review",  "Specification Required" or "Standards Action with Expert Review". This section gives some general guidelines for what the experts should be looking for, but they are being designated as experts for a reason so they should be given substantial latitude.</t>
        <t>Expert reviewers should take into consideration the following points:</t>
        <ul spacing="normal">
          <li>
            <t>Clarity and correctness of registrations. Experts are expected to check the clarity of purpose and use of the requested entries. Expert needs to make sure the values of algorithms are taken from the right registry, when that is required. Experts should consider requesting an opinion on the correctness of registered parameters from relevant IETF working groups. Encodings that do not meet these objective of clarity and completeness should not be registered.</t>
          </li>
          <li>
            <t>Experts should take into account the expected usage of fields when approving code point assignment. The length of the encoded value should be weighed against how many code points of that length are left, the size of device it will be used on, and the number of code points left that encode to that size.</t>
          </li>
          <li>
            <t>Even for "Expert Review" specifications are recommended. When specifications are not provided for a request where Expert Review is the assignment policy, the description provided needs to have sufficient information to verify the code points above.</t>
          </li>
        </ul>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.2119.xml">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <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="RFC3279" target="https://www.rfc-editor.org/info/rfc3279" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.3279.xml">
          <front>
            <title>Algorithms and Identifiers for the Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
            <author fullname="L. Bassham" initials="L." surname="Bassham"/>
            <author fullname="W. Polk" initials="W." surname="Polk"/>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <date month="April" year="2002"/>
            <abstract>
              <t>This document specifies algorithm identifiers and ASN.1 encoding formats for digital signatures and subject public keys used in the Internet X.509 Public Key Infrastructure (PKI). Digital signatures are used to sign certificates and certificate revocation list (CRLs). Certificates include the public key of the named subject. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3279"/>
          <seriesInfo name="DOI" value="10.17487/RFC3279"/>
        </reference>
        <reference anchor="RFC3552" target="https://www.rfc-editor.org/info/rfc3552" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.3552.xml">
          <front>
            <title>Guidelines for Writing RFC Text on Security Considerations</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <author fullname="B. Korver" initials="B." surname="Korver"/>
            <date month="July" year="2003"/>
            <abstract>
              <t>All RFCs are required to have a Security Considerations section. Historically, such sections have been relatively weak. This document provides guidelines to RFC authors on how to write a good Security Considerations section. 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="72"/>
          <seriesInfo name="RFC" value="3552"/>
          <seriesInfo name="DOI" value="10.17487/RFC3552"/>
        </reference>
        <reference anchor="RFC5116" target="https://www.rfc-editor.org/info/rfc5116" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.5116.xml">
          <front>
            <title>An Interface and Algorithms for Authenticated Encryption</title>
            <author fullname="D. McGrew" initials="D." surname="McGrew"/>
            <date month="January" year="2008"/>
            <abstract>
              <t>This document defines algorithms for Authenticated Encryption with Associated Data (AEAD), and defines a uniform interface and a registry for such algorithms. The interface and registry can be used as an application-independent set of cryptoalgorithm suites. This approach provides advantages in efficiency and security, and promotes the reuse of crypto implementations. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5116"/>
          <seriesInfo name="DOI" value="10.17487/RFC5116"/>
        </reference>
        <reference anchor="RFC5869" target="https://www.rfc-editor.org/info/rfc5869" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.5869.xml">
          <front>
            <title>HMAC-based Extract-and-Expand Key Derivation Function (HKDF)</title>
            <author fullname="H. Krawczyk" initials="H." surname="Krawczyk"/>
            <author fullname="P. Eronen" initials="P." surname="Eronen"/>
            <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="RFC6090" target="https://www.rfc-editor.org/info/rfc6090" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6090.xml">
          <front>
            <title>Fundamental Elliptic Curve Cryptography Algorithms</title>
            <author fullname="D. McGrew" initials="D." surname="McGrew"/>
            <author fullname="K. Igoe" initials="K." surname="Igoe"/>
            <author fullname="M. Salter" initials="M." surname="Salter"/>
            <date month="February" year="2011"/>
            <abstract>
              <t>This note describes the fundamental algorithms of Elliptic Curve Cryptography (ECC) as they were defined in some seminal references from 1994 and earlier. These descriptions may be useful for implementing the fundamental algorithms without using any of the specialized methods that were developed in following years. Only elliptic curves defined over fields of characteristic greater than three are in scope; these curves are those used in Suite B. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6090"/>
          <seriesInfo name="DOI" value="10.17487/RFC6090"/>
        </reference>
        <reference anchor="RFC6960" target="https://www.rfc-editor.org/info/rfc6960" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6960.xml">
          <front>
            <title>X.509 Internet Public Key Infrastructure Online Certificate Status Protocol - OCSP</title>
            <author fullname="S. Santesson" initials="S." surname="Santesson"/>
            <author fullname="M. Myers" initials="M." surname="Myers"/>
            <author fullname="R. Ankney" initials="R." surname="Ankney"/>
            <author fullname="A. Malpani" initials="A." surname="Malpani"/>
            <author fullname="S. Galperin" initials="S." surname="Galperin"/>
            <author fullname="C. Adams" initials="C." surname="Adams"/>
            <date month="June" year="2013"/>
            <abstract>
              <t>This document specifies a protocol useful in determining the current status of a digital certificate without requiring Certificate Revocation Lists (CRLs). Additional mechanisms addressing PKIX operational requirements are specified in separate documents. This document obsoletes RFCs 2560 and 6277. It also updates RFC 5912.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6960"/>
          <seriesInfo name="DOI" value="10.17487/RFC6960"/>
        </reference>
        <reference anchor="RFC6979" target="https://www.rfc-editor.org/info/rfc6979" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6979.xml">
          <front>
            <title>Deterministic Usage of the Digital Signature Algorithm (DSA) and Elliptic Curve Digital Signature Algorithm (ECDSA)</title>
            <author fullname="T. Pornin" initials="T." surname="Pornin"/>
            <date month="August" year="2013"/>
            <abstract>
              <t>This document defines a deterministic digital signature generation procedure. Such signatures are compatible with standard Digital Signature Algorithm (DSA) and Elliptic Curve Digital Signature Algorithm (ECDSA) digital signatures and can be processed with unmodified verifiers, which need not be aware of the procedure described therein. Deterministic signatures retain the cryptographic security features associated with digital signatures but can be more easily implemented in various environments, since they do not need access to a source of high-quality randomness.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6979"/>
          <seriesInfo name="DOI" value="10.17487/RFC6979"/>
        </reference>
        <reference anchor="RFC7252" target="https://www.rfc-editor.org/info/rfc7252" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7252.xml">
          <front>
            <title>The Constrained Application Protocol (CoAP)</title>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby"/>
            <author fullname="K. Hartke" initials="K." surname="Hartke"/>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <date month="June" year="2014"/>
            <abstract>
              <t>The Constrained Application Protocol (CoAP) is a specialized web transfer protocol for use with constrained nodes and constrained (e.g., low-power, lossy) networks. The nodes often have 8-bit microcontrollers with small amounts of ROM and RAM, while constrained networks such as IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs) often have high packet error rates and a typical throughput of 10s of kbit/s. The protocol is designed for machine- to-machine (M2M) applications such as smart energy and building automation.</t>
              <t>CoAP provides a request/response interaction model between application endpoints, supports built-in discovery of services and resources, and includes key concepts of the Web such as URIs and Internet media types. CoAP is designed to easily interface with HTTP for integration with the Web while meeting specialized requirements such as multicast support, very low overhead, and simplicity for constrained environments.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7252"/>
          <seriesInfo name="DOI" value="10.17487/RFC7252"/>
        </reference>
        <reference anchor="RFC7748" target="https://www.rfc-editor.org/info/rfc7748" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7748.xml">
          <front>
            <title>Elliptic Curves for Security</title>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <author fullname="M. Hamburg" initials="M." surname="Hamburg"/>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <date month="January" year="2016"/>
            <abstract>
              <t>This memo specifies two elliptic curves over prime fields that offer a high level of practical security in cryptographic applications, including Transport Layer Security (TLS). These curves are intended to operate at the ~128-bit and ~224-bit security level, respectively, and are generated deterministically based on a list of required properties.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7748"/>
          <seriesInfo name="DOI" value="10.17487/RFC7748"/>
        </reference>
        <reference anchor="RFC7959" target="https://www.rfc-editor.org/info/rfc7959" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7959.xml">
          <front>
            <title>Block-Wise Transfers in the Constrained Application Protocol (CoAP)</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <author fullname="Z. Shelby" initials="Z." role="editor" surname="Shelby"/>
            <date month="August" year="2016"/>
            <abstract>
              <t>The Constrained Application Protocol (CoAP) is a RESTful transfer protocol for constrained nodes and networks. Basic CoAP messages work well for small payloads from sensors and actuators; however, applications will need to transfer larger payloads occasionally -- for instance, for firmware updates. In contrast to HTTP, where TCP does the grunt work of segmenting and resequencing, CoAP is based on datagram transports such as UDP or Datagram Transport Layer Security (DTLS). These transports only offer fragmentation, which is even more problematic in constrained nodes and networks, limiting the maximum size of resource representations that can practically be transferred.</t>
              <t>Instead of relying on IP fragmentation, this specification extends basic CoAP with a pair of "Block" options for transferring multiple blocks of information from a resource representation in multiple request-response pairs. In many important cases, the Block options enable a server to be truly stateless: the server can handle each block transfer separately, with no need for a connection setup or other server-side memory of previous block transfers. Essentially, the Block options provide a minimal way to transfer larger representations in a block-wise fashion.</t>
              <t>A CoAP implementation that does not support these options generally is limited in the size of the representations that can be exchanged, so there is an expectation that the Block options will be widely used in CoAP implementations. Therefore, this specification updates RFC 7252.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7959"/>
          <seriesInfo name="DOI" value="10.17487/RFC7959"/>
        </reference>
        <reference anchor="RFC8126" target="https://www.rfc-editor.org/info/rfc8126" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8126.xml">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton"/>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <author fullname="T. Narten" initials="T." surname="Narten"/>
            <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>
        <reference anchor="RFC8174" target="https://www.rfc-editor.org/info/rfc8174" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8174.xml">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <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="RFC8392" target="https://www.rfc-editor.org/info/rfc8392" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8392.xml">
          <front>
            <title>CBOR Web Token (CWT)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="E. Wahlstroem" initials="E." surname="Wahlstroem"/>
            <author fullname="S. Erdtman" initials="S." surname="Erdtman"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <date month="May" year="2018"/>
            <abstract>
              <t>CBOR Web Token (CWT) is a compact means of representing claims to be transferred between two parties. The claims in a CWT are encoded in the Concise Binary Object Representation (CBOR), and CBOR Object Signing and Encryption (COSE) is used for added application-layer security protection. A claim is a piece of information asserted about a subject and is represented as a name/value pair consisting of a claim name and a claim value. CWT is derived from JSON Web Token (JWT) but uses CBOR rather than JSON.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8392"/>
          <seriesInfo name="DOI" value="10.17487/RFC8392"/>
        </reference>
        <reference anchor="RFC8410" target="https://www.rfc-editor.org/info/rfc8410" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8410.xml">
          <front>
            <title>Algorithm Identifiers for Ed25519, Ed448, X25519, and X448 for Use in the Internet X.509 Public Key Infrastructure</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies algorithm identifiers and ASN.1 encoding formats for elliptic curve constructs using the curve25519 and curve448 curves. The signature algorithms covered are Ed25519 and Ed448. The key agreement algorithms covered are X25519 and X448. The encoding for public key, private key, and Edwards-curve Digital Signature Algorithm (EdDSA) structures is provided.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8410"/>
          <seriesInfo name="DOI" value="10.17487/RFC8410"/>
        </reference>
        <reference anchor="RFC8610" target="https://www.rfc-editor.org/info/rfc8610" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8610.xml">
          <front>
            <title>Concise Data Definition Language (CDDL): A Notational Convention to Express Concise Binary Object Representation (CBOR) and JSON Data Structures</title>
            <author fullname="H. Birkholz" initials="H." surname="Birkholz"/>
            <author fullname="C. Vigano" initials="C." surname="Vigano"/>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <date month="June" year="2019"/>
            <abstract>
              <t>This document proposes a notational convention to express Concise Binary Object Representation (CBOR) data structures (RFC 7049). Its main goal is to provide an easy and unambiguous way to express structures for protocol messages and data formats that use CBOR or JSON.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8610"/>
          <seriesInfo name="DOI" value="10.17487/RFC8610"/>
        </reference>
        <reference anchor="RFC8613" target="https://www.rfc-editor.org/info/rfc8613" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8613.xml">
          <front>
            <title>Object Security for Constrained RESTful Environments (OSCORE)</title>
            <author fullname="G. Selander" initials="G." surname="Selander"/>
            <author fullname="J. Mattsson" initials="J." surname="Mattsson"/>
            <author fullname="F. Palombini" initials="F." surname="Palombini"/>
            <author fullname="L. Seitz" initials="L." surname="Seitz"/>
            <date month="July" year="2019"/>
            <abstract>
              <t>This document defines Object Security for Constrained RESTful Environments (OSCORE), a method for application-layer protection of the Constrained Application Protocol (CoAP), using CBOR Object Signing and Encryption (COSE). OSCORE provides end-to-end protection between endpoints communicating using CoAP or CoAP-mappable HTTP. OSCORE is designed for constrained nodes and networks supporting a range of proxy operations, including translation between different transport protocols.</t>
              <t>Although an optional functionality of CoAP, OSCORE alters CoAP options processing and IANA registration. Therefore, this document updates RFC 7252.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8613"/>
          <seriesInfo name="DOI" value="10.17487/RFC8613"/>
        </reference>
        <reference anchor="RFC8724" target="https://www.rfc-editor.org/info/rfc8724" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8724.xml">
          <front>
            <title>SCHC: Generic Framework for Static Context Header Compression and Fragmentation</title>
            <author fullname="A. Minaburo" initials="A." surname="Minaburo"/>
            <author fullname="L. Toutain" initials="L." surname="Toutain"/>
            <author fullname="C. Gomez" initials="C." surname="Gomez"/>
            <author fullname="D. Barthel" initials="D." surname="Barthel"/>
            <author fullname="JC. Zuniga" initials="JC." surname="Zuniga"/>
            <date month="April" year="2020"/>
            <abstract>
              <t>This document defines the Static Context Header Compression and fragmentation (SCHC) framework, which provides both a header compression mechanism and an optional fragmentation mechanism. SCHC has been designed with Low-Power Wide Area Networks (LPWANs) in mind.</t>
              <t>SCHC compression is based on a common static context stored both in the LPWAN device and in the network infrastructure side. This document defines a generic header compression mechanism and its application to compress IPv6/UDP headers.</t>
              <t>This document also specifies an optional fragmentation and reassembly mechanism. It can be used to support the IPv6 MTU requirement over the LPWAN technologies. Fragmentation is needed for IPv6 datagrams that, after SCHC compression or when such compression was not possible, still exceed the Layer 2 maximum payload size.</t>
              <t>The SCHC header compression and fragmentation mechanisms are independent of the specific LPWAN technology over which they are used. This document defines generic functionalities and offers flexibility with regard to parameter settings and mechanism choices. This document standardizes the exchange over the LPWAN between two SCHC entities. Settings and choices specific to a technology or a product are expected to be grouped into profiles, which are specified in other documents. Data models for the context and profiles are out of scope.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8724"/>
          <seriesInfo name="DOI" value="10.17487/RFC8724"/>
        </reference>
        <reference anchor="RFC8742" target="https://www.rfc-editor.org/info/rfc8742" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8742.xml">
          <front>
            <title>Concise Binary Object Representation (CBOR) Sequences</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <date month="February" year="2020"/>
            <abstract>
              <t>This document describes the Concise Binary Object Representation (CBOR) Sequence format and associated media type "application/cbor-seq". A CBOR Sequence consists of any number of encoded CBOR data items, simply concatenated in sequence.</t>
              <t>Structured syntax suffixes for media types allow other media types to build on them and make it explicit that they are built on an existing media type as their foundation. This specification defines and registers "+cbor-seq" as a structured syntax suffix for CBOR Sequences.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8742"/>
          <seriesInfo name="DOI" value="10.17487/RFC8742"/>
        </reference>
        <reference anchor="RFC8747" target="https://www.rfc-editor.org/info/rfc8747" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8747.xml">
          <front>
            <title>Proof-of-Possession Key Semantics for CBOR Web Tokens (CWTs)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="L. Seitz" initials="L." surname="Seitz"/>
            <author fullname="G. Selander" initials="G." surname="Selander"/>
            <author fullname="S. Erdtman" initials="S." surname="Erdtman"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <date month="March" year="2020"/>
            <abstract>
              <t>This specification describes how to declare in a CBOR Web Token (CWT) (which is defined by RFC 8392) that the presenter of the CWT possesses a particular proof-of-possession key. Being able to prove possession of a key is also sometimes described as being the holder-of-key. This specification provides equivalent functionality to "Proof-of-Possession Key Semantics for JSON Web Tokens (JWTs)" (RFC 7800) but using Concise Binary Object Representation (CBOR) and CWTs rather than JavaScript Object Notation (JSON) and JSON Web Tokens (JWTs).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8747"/>
          <seriesInfo name="DOI" value="10.17487/RFC8747"/>
        </reference>
        <reference anchor="RFC8949" target="https://www.rfc-editor.org/info/rfc8949" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8949.xml">
          <front>
            <title>Concise Binary Object Representation (CBOR)</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <date month="December" year="2020"/>
            <abstract>
              <t>The Concise Binary Object Representation (CBOR) is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation. These design goals make it different from earlier binary serializations such as ASN.1 and MessagePack.</t>
              <t>This document obsoletes RFC 7049, providing editorial improvements, new details, and errata fixes while keeping full compatibility with the interchange format of RFC 7049. It does not create a new version of the format.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="94"/>
          <seriesInfo name="RFC" value="8949"/>
          <seriesInfo name="DOI" value="10.17487/RFC8949"/>
        </reference>
        <reference anchor="RFC9052" target="https://www.rfc-editor.org/info/rfc9052" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9052.xml">
          <front>
            <title>CBOR Object Signing and Encryption (COSE): Structures and Process</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>Concise Binary Object Representation (CBOR) is a data format designed for small code size and small message size. There is a need to be able to define basic security services for this data format. This document defines the CBOR Object Signing and Encryption (COSE) protocol. This specification describes how to create and process signatures, message authentication codes, and encryption using CBOR for serialization. This specification additionally describes how to represent cryptographic keys using CBOR.</t>
              <t>This document, along with RFC 9053, obsoletes RFC 8152.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="96"/>
          <seriesInfo name="RFC" value="9052"/>
          <seriesInfo name="DOI" value="10.17487/RFC9052"/>
        </reference>
        <reference anchor="RFC9053" target="https://www.rfc-editor.org/info/rfc9053" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9053.xml">
          <front>
            <title>CBOR Object Signing and Encryption (COSE): Initial Algorithms</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>Concise Binary Object Representation (CBOR) is a data format designed for small code size and small message size. There is a need to be able to define basic security services for this data format. This document defines a set of algorithms that can be used with the CBOR Object Signing and Encryption (COSE) protocol (RFC 9052).</t>
              <t>This document, along with RFC 9052, obsoletes RFC 8152.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9053"/>
          <seriesInfo name="DOI" value="10.17487/RFC9053"/>
        </reference>
        <reference anchor="RFC9175" target="https://www.rfc-editor.org/info/rfc9175" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9175.xml">
          <front>
            <title>Constrained Application Protocol (CoAP): Echo, Request-Tag, and Token Processing</title>
            <author fullname="C. Amsüss" initials="C." surname="Amsüss"/>
            <author fullname="J. Preuß Mattsson" initials="J." surname="Preuß Mattsson"/>
            <author fullname="G. Selander" initials="G." surname="Selander"/>
            <date month="February" year="2022"/>
            <abstract>
              <t>This document specifies enhancements to the Constrained Application Protocol (CoAP) that mitigate security issues in particular use cases. The Echo option enables a CoAP server to verify the freshness of a request or to force a client to demonstrate reachability at its claimed network address. The Request-Tag option allows the CoAP server to match block-wise message fragments belonging to the same request. This document updates RFC 7252 with respect to the following: processing requirements for client Tokens, forbidding non-secure reuse of Tokens to ensure response-to-request binding when CoAP is used with a security protocol, and amplification mitigation (where the use of the Echo option is now recommended).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9175"/>
          <seriesInfo name="DOI" value="10.17487/RFC9175"/>
        </reference>
        <reference anchor="RFC9360" target="https://www.rfc-editor.org/info/rfc9360" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9360.xml">
          <front>
            <title>CBOR Object Signing and Encryption (COSE): Header Parameters for Carrying and Referencing X.509 Certificates</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <date month="February" year="2023"/>
            <abstract>
              <t>The CBOR Object Signing and Encryption (COSE) message structure uses references to keys in general. For some algorithms, additional properties are defined that carry parameters relating to keys as needed. The COSE Key structure is used for transporting keys outside of COSE messages. This document extends the way that keys can be identified and transported by providing attributes that refer to or contain X.509 certificates.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9360"/>
          <seriesInfo name="DOI" value="10.17487/RFC9360"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC2986" target="https://www.rfc-editor.org/info/rfc2986" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.2986.xml">
          <front>
            <title>PKCS #10: Certification Request Syntax Specification Version 1.7</title>
            <author fullname="M. Nystrom" initials="M." surname="Nystrom"/>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski"/>
            <date month="November" year="2000"/>
            <abstract>
              <t>This memo represents a republication of PKCS #10 v1.7 from RSA Laboratories' Public-Key Cryptography Standards (PKCS) series, and change control is retained within the PKCS process. The body of this document, except for the security considerations section, is taken directly from the PKCS #9 v2.0 or the PKCS #10 v1.7 document. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2986"/>
          <seriesInfo name="DOI" value="10.17487/RFC2986"/>
        </reference>
        <reference anchor="RFC5280" target="https://www.rfc-editor.org/info/rfc5280" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.5280.xml">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
            <author fullname="D. Cooper" initials="D." surname="Cooper"/>
            <author fullname="S. Santesson" initials="S." surname="Santesson"/>
            <author fullname="S. Farrell" initials="S." surname="Farrell"/>
            <author fullname="S. Boeyen" initials="S." surname="Boeyen"/>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <author fullname="W. Polk" initials="W." surname="Polk"/>
            <date month="May" year="2008"/>
            <abstract>
              <t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet. An overview of this approach and model is provided as an introduction. The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms. Standard certificate extensions are described and two Internet-specific extensions are defined. A set of required certificate extensions is specified. The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions. An algorithm for X.509 certification path validation is described. An ASN.1 module and examples are provided in the appendices. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5280"/>
          <seriesInfo name="DOI" value="10.17487/RFC5280"/>
        </reference>
        <reference anchor="RFC6194" target="https://www.rfc-editor.org/info/rfc6194" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6194.xml">
          <front>
            <title>Security Considerations for the SHA-0 and SHA-1 Message-Digest Algorithms</title>
            <author fullname="T. Polk" initials="T." surname="Polk"/>
            <author fullname="L. Chen" initials="L." surname="Chen"/>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <date month="March" year="2011"/>
            <abstract>
              <t>This document includes security considerations for the SHA-0 and SHA-1 message digest algorithm. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6194"/>
          <seriesInfo name="DOI" value="10.17487/RFC6194"/>
        </reference>
        <reference anchor="RFC7228" target="https://www.rfc-editor.org/info/rfc7228" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7228.xml">
          <front>
            <title>Terminology for Constrained-Node Networks</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <author fullname="M. Ersue" initials="M." surname="Ersue"/>
            <author fullname="A. Keranen" initials="A." surname="Keranen"/>
            <date month="May" year="2014"/>
            <abstract>
              <t>The Internet Protocol Suite is increasingly used on small devices with severe constraints on power, memory, and processing resources, creating constrained-node networks. This document provides a number of basic terms that have been useful in the standardization work for constrained-node networks.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7228"/>
          <seriesInfo name="DOI" value="10.17487/RFC7228"/>
        </reference>
        <reference anchor="RFC7258" target="https://www.rfc-editor.org/info/rfc7258" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7258.xml">
          <front>
            <title>Pervasive Monitoring Is an Attack</title>
            <author fullname="S. Farrell" initials="S." surname="Farrell"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <date month="May" year="2014"/>
            <abstract>
              <t>Pervasive monitoring is a technical attack that should be mitigated in the design of IETF protocols, where possible.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="188"/>
          <seriesInfo name="RFC" value="7258"/>
          <seriesInfo name="DOI" value="10.17487/RFC7258"/>
        </reference>
        <reference anchor="RFC7296" target="https://www.rfc-editor.org/info/rfc7296" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7296.xml">
          <front>
            <title>Internet Key Exchange Protocol Version 2 (IKEv2)</title>
            <author fullname="C. Kaufman" initials="C." surname="Kaufman"/>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <author fullname="Y. Nir" initials="Y." surname="Nir"/>
            <author fullname="P. Eronen" initials="P." surname="Eronen"/>
            <author fullname="T. Kivinen" initials="T." surname="Kivinen"/>
            <date month="October" year="2014"/>
            <abstract>
              <t>This document describes version 2 of the Internet Key Exchange (IKE) protocol. IKE is a component of IPsec used for performing mutual authentication and establishing and maintaining Security Associations (SAs). This document obsoletes RFC 5996, and includes all of the errata for it. It advances IKEv2 to be an Internet Standard.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="79"/>
          <seriesInfo name="RFC" value="7296"/>
          <seriesInfo name="DOI" value="10.17487/RFC7296"/>
        </reference>
        <reference anchor="RFC7624" target="https://www.rfc-editor.org/info/rfc7624" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7624.xml">
          <front>
            <title>Confidentiality in the Face of Pervasive Surveillance: A Threat Model and Problem Statement</title>
            <author fullname="R. Barnes" initials="R." surname="Barnes"/>
            <author fullname="B. Schneier" initials="B." surname="Schneier"/>
            <author fullname="C. Jennings" initials="C." surname="Jennings"/>
            <author fullname="T. Hardie" initials="T." surname="Hardie"/>
            <author fullname="B. Trammell" initials="B." surname="Trammell"/>
            <author fullname="C. Huitema" initials="C." surname="Huitema"/>
            <author fullname="D. Borkmann" initials="D." surname="Borkmann"/>
            <date month="August" year="2015"/>
            <abstract>
              <t>Since the initial revelations of pervasive surveillance in 2013, several classes of attacks on Internet communications have been discovered. In this document, we develop a threat model that describes these attacks on Internet confidentiality. We assume an attacker that is interested in undetected, indiscriminate eavesdropping. The threat model is based on published, verified attacks.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7624"/>
          <seriesInfo name="DOI" value="10.17487/RFC7624"/>
        </reference>
        <reference anchor="RFC8366" target="https://www.rfc-editor.org/info/rfc8366" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8366.xml">
          <front>
            <title>A Voucher Artifact for Bootstrapping Protocols</title>
            <author fullname="K. Watsen" initials="K." surname="Watsen"/>
            <author fullname="M. Richardson" initials="M." surname="Richardson"/>
            <author fullname="M. Pritikin" initials="M." surname="Pritikin"/>
            <author fullname="T. Eckert" initials="T." surname="Eckert"/>
            <date month="May" year="2018"/>
            <abstract>
              <t>This document defines a strategy to securely assign a pledge to an owner using an artifact signed, directly or indirectly, by the pledge's manufacturer. This artifact is known as a "voucher".</t>
              <t>This document defines an artifact format as a YANG-defined JSON document that has been signed using a Cryptographic Message Syntax (CMS) structure. Other YANG-derived formats are possible. The voucher artifact is normally generated by the pledge's manufacturer (i.e., the Manufacturer Authorized Signing Authority (MASA)).</t>
              <t>This document only defines the voucher artifact, leaving it to other documents to describe specialized protocols for accessing it.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8366"/>
          <seriesInfo name="DOI" value="10.17487/RFC8366"/>
        </reference>
        <reference anchor="RFC8376" target="https://www.rfc-editor.org/info/rfc8376" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8376.xml">
          <front>
            <title>Low-Power Wide Area Network (LPWAN) Overview</title>
            <author fullname="S. Farrell" initials="S." role="editor" surname="Farrell"/>
            <date month="May" year="2018"/>
            <abstract>
              <t>Low-Power Wide Area Networks (LPWANs) are wireless technologies with characteristics such as large coverage areas, low bandwidth, possibly very small packet and application-layer data sizes, and long battery life operation. This memo is an informational overview of the set of LPWAN technologies being considered in the IETF and of the gaps that exist between the needs of those technologies and the goal of running IP in LPWANs.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8376"/>
          <seriesInfo name="DOI" value="10.17487/RFC8376"/>
        </reference>
        <reference anchor="RFC8446" target="https://www.rfc-editor.org/info/rfc8446" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8446.xml">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <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="RFC8937" target="https://www.rfc-editor.org/info/rfc8937" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8937.xml">
          <front>
            <title>Randomness Improvements for Security Protocols</title>
            <author fullname="C. Cremers" initials="C." surname="Cremers"/>
            <author fullname="L. Garratt" initials="L." surname="Garratt"/>
            <author fullname="S. Smyshlyaev" initials="S." surname="Smyshlyaev"/>
            <author fullname="N. Sullivan" initials="N." surname="Sullivan"/>
            <author fullname="C. Wood" initials="C." surname="Wood"/>
            <date month="October" year="2020"/>
            <abstract>
              <t>Randomness is a crucial ingredient for Transport Layer Security (TLS) and related security protocols. Weak or predictable "cryptographically secure" pseudorandom number generators (CSPRNGs) can be abused or exploited for malicious purposes. An initial entropy source that seeds a CSPRNG might be weak or broken as well, which can also lead to critical and systemic security problems. This document describes a way for security protocol implementations to augment their CSPRNGs using long-term private keys. This improves randomness from broken or otherwise subverted CSPRNGs.</t>
              <t>This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8937"/>
          <seriesInfo name="DOI" value="10.17487/RFC8937"/>
        </reference>
        <reference anchor="RFC9000" target="https://www.rfc-editor.org/info/rfc9000" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9000.xml">
          <front>
            <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar"/>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <date month="May" 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="RFC" value="9000"/>
          <seriesInfo name="DOI" value="10.17487/RFC9000"/>
        </reference>
        <reference anchor="RFC9147" target="https://www.rfc-editor.org/info/rfc9147" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9147.xml">
          <front>
            <title>The Datagram Transport Layer Security (DTLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <author fullname="N. Modadugu" initials="N." surname="Modadugu"/>
            <date month="April" year="2022"/>
            <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.</t>
              <t>The DTLS 1.3 protocol is 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.</t>
              <t>This document obsoletes RFC 6347.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9147"/>
          <seriesInfo name="DOI" value="10.17487/RFC9147"/>
        </reference>
        <reference anchor="RFC9176" target="https://www.rfc-editor.org/info/rfc9176" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9176.xml">
          <front>
            <title>Constrained RESTful Environments (CoRE) Resource Directory</title>
            <author fullname="C. Amsüss" initials="C." role="editor" surname="Amsüss"/>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby"/>
            <author fullname="M. Koster" initials="M." surname="Koster"/>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <author fullname="P. van der Stok" initials="P." surname="van der Stok"/>
            <date month="April" year="2022"/>
            <abstract>
              <t>In many Internet of Things (IoT) applications, direct discovery of resources is not practical due to sleeping nodes or networks where multicast traffic is inefficient. These problems can be solved by employing an entity called a Resource Directory (RD), which contains information about resources held on other servers, allowing lookups to be performed for those resources. The input to an RD is composed of links, and the output is composed of links constructed from the information stored in the RD. This document specifies the web interfaces that an RD supports for web servers to discover the RD and to register, maintain, look up, and remove information on resources. Furthermore, new target attributes useful in conjunction with an RD are defined.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9176"/>
          <seriesInfo name="DOI" value="10.17487/RFC9176"/>
        </reference>
        <reference anchor="RFC9397" target="https://www.rfc-editor.org/info/rfc9397" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9397.xml">
          <front>
            <title>Trusted Execution Environment Provisioning (TEEP) Architecture</title>
            <author fullname="M. Pei" initials="M." surname="Pei"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <author fullname="D. Thaler" initials="D." surname="Thaler"/>
            <author fullname="D. Wheeler" initials="D." surname="Wheeler"/>
            <date month="July" year="2023"/>
            <abstract>
              <t>A Trusted Execution Environment (TEE) is an environment that enforces the following: any code within the environment cannot be tampered with, and any data used by such code cannot be read or tampered with by any code outside the environment. This architecture document discusses the motivation for designing and standardizing a protocol for managing the lifecycle of Trusted Applications running inside such a TEE.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9397"/>
          <seriesInfo name="DOI" value="10.17487/RFC9397"/>
        </reference>
        <reference anchor="I-D.ietf-rats-eat" target="https://datatracker.ietf.org/doc/html/draft-ietf-rats-eat-25" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-rats-eat.xml">
          <front>
            <title>The Entity Attestation Token (EAT)</title>
            <author fullname="Laurence Lundblade" initials="L." surname="Lundblade">
              <organization>Security Theory LLC</organization>
            </author>
            <author fullname="Giridhar Mandyam" initials="G." surname="Mandyam"/>
            <author fullname="Jeremy O'Donoghue" initials="J." surname="O'Donoghue">
              <organization>Qualcomm Technologies Inc.</organization>
            </author>
            <author fullname="Carl Wallace" initials="C." surname="Wallace">
              <organization>Red Hound Software, Inc.</organization>
            </author>
            <date day="15" month="January" year="2024"/>
            <abstract>
              <t>An Entity Attestation Token (EAT) provides an attested claims set that describes state and characteristics of an entity, a device like a smartphone, IoT device, network equipment or such. This claims set is used by a relying party, server or service to determine the type and degree of trust placed in the entity. An EAT is either a CBOR Web Token (CWT) or JSON Web Token (JWT) with attestation-oriented claims.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-rats-eat-25"/>
        </reference>
        <reference anchor="I-D.ietf-lake-reqs" target="https://datatracker.ietf.org/doc/html/draft-ietf-lake-reqs-04" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-lake-reqs.xml">
          <front>
            <title>Requirements for a Lightweight AKE for OSCORE</title>
            <author fullname="Mališa Vučinić" initials="M." surname="Vučinić">
              <organization>Inria</organization>
            </author>
            <author fullname="Göran Selander" initials="G." surname="Selander">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="John Preuß Mattsson" initials="J. P." surname="Mattsson">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="Dan Garcia-Carillo" initials="D." surname="Garcia-Carillo">
              <organization>Odin Solutions S.L.</organization>
            </author>
            <date day="8" month="June" year="2020"/>
            <abstract>
              <t>This document compiles the requirements for a lightweight authenticated key exchange protocol for OSCORE. This draft has completed a working group last call (WGLC) in the LAKE working group. Post-WGLC, the requirements are considered sufficiently stable for the working group to proceed with its work. It is not currently planned to publish this draft as an RFC.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-lake-reqs-04"/>
        </reference>
        <reference anchor="I-D.ietf-lake-traces" target="https://datatracker.ietf.org/doc/html/draft-ietf-lake-traces-08" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-lake-traces.xml">
          <front>
            <title>Traces of EDHOC</title>
            <author fullname="Göran Selander" initials="G." surname="Selander">
              <organization>Ericsson</organization>
            </author>
            <author fullname="John Preuß Mattsson" initials="J. P." surname="Mattsson">
              <organization>Ericsson</organization>
            </author>
            <author fullname="Marek Serafin" initials="M." surname="Serafin">
              <organization>ASSA ABLOY</organization>
            </author>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE</organization>
            </author>
            <author fullname="Mališa Vučinić" initials="M." surname="Vučinić">
              <organization>Inria</organization>
            </author>
            <date day="22" month="September" year="2023"/>
            <abstract>
              <t>This document contains some example traces of Ephemeral Diffie- Hellman Over COSE (EDHOC).</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-lake-traces-08"/>
        </reference>
        <reference anchor="I-D.ietf-core-oscore-edhoc" target="https://datatracker.ietf.org/doc/html/draft-ietf-core-oscore-edhoc-10" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-core-oscore-edhoc.xml">
          <front>
            <title>Using Ephemeral Diffie-Hellman Over COSE (EDHOC) with the Constrained Application Protocol (CoAP) and Object Security for Constrained RESTful Environments (OSCORE)</title>
            <author fullname="Francesca Palombini" initials="F." surname="Palombini">
              <organization>Ericsson</organization>
            </author>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Rikard Höglund" initials="R." surname="Höglund">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Stefan Hristozov" initials="S." surname="Hristozov">
              <organization>Fraunhofer AISEC</organization>
            </author>
            <author fullname="Göran Selander" initials="G." surname="Selander">
              <organization>Ericsson</organization>
            </author>
            <date day="29" month="November" year="2023"/>
            <abstract>
              <t>The lightweight authenticated key exchange protocol Ephemeral Diffie- Hellman Over COSE (EDHOC) can be run over the Constrained Application Protocol (CoAP) and used by two peers to establish a Security Context for the security protocol Object Security for Constrained RESTful Environments (OSCORE). This document details this use of the EDHOC protocol, by specifying a number of additional and optional mechanisms. These especially include an optimization approach for combining the execution of EDHOC with the first OSCORE transaction. This combination reduces the number of round trips required to set up an OSCORE Security Context and to complete an OSCORE transaction using that Security Context.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-oscore-edhoc-10"/>
        </reference>
        <reference anchor="I-D.ietf-cose-cbor-encoded-cert" target="https://datatracker.ietf.org/doc/html/draft-ietf-cose-cbor-encoded-cert-07" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-cose-cbor-encoded-cert.xml">
          <front>
            <title>CBOR Encoded X.509 Certificates (C509 Certificates)</title>
            <author fullname="John Preuß Mattsson" initials="J. P." surname="Mattsson">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="Göran Selander" initials="G." surname="Selander">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="Shahid Raza" initials="S." surname="Raza">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Joel Höglund" initials="J." surname="Höglund">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Martin Furuhed" initials="M." surname="Furuhed">
              <organization>Nexus Group</organization>
            </author>
            <date day="20" month="October" year="2023"/>
            <abstract>
              <t>This document specifies a CBOR encoding of X.509 certificates. The resulting certificates are called C509 Certificates. The CBOR encoding supports a large subset of RFC 5280 and all certificates compatible with the RFC 7925, IEEE 802.1AR (DevID), CNSA, RPKI, GSMA eUICC, and CA/Browser Forum Baseline Requirements profiles. When used to re-encode DER encoded X.509 certificates, the CBOR encoding can in many cases reduce the size of RFC 7925 profiled certificates with over 50%. The CBOR encoded structure can alternatively be signed directly ("natively signed"), which does not require re- encoding for the signature to be verified. The document also specifies C509 COSE headers, a C509 TLS certificate type, and a C509 file format.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-cose-cbor-encoded-cert-07"/>
        </reference>
        <reference anchor="I-D.ietf-core-oscore-key-update" target="https://datatracker.ietf.org/doc/html/draft-ietf-core-oscore-key-update-06" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-core-oscore-key-update.xml">
          <front>
            <title>Key Update for OSCORE (KUDOS)</title>
            <author fullname="Rikard Höglund" initials="R." surname="Höglund">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <date day="23" month="October" year="2023"/>
            <abstract>
              <t>This document defines Key Update for OSCORE (KUDOS), a lightweight procedure that two CoAP endpoints can use to update their keying material by establishing a new OSCORE Security Context. Accordingly, it updates the use of the OSCORE flag bits in the CoAP OSCORE Option as well as the protection of CoAP response messages with OSCORE, and it deprecates the key update procedure specified in Appendix B.2 of RFC 8613. Thus, this document updates RFC 8613. Also, this document defines a procedure that two endpoints can use to update their OSCORE identifiers, run either stand-alone or during a KUDOS execution.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-oscore-key-update-06"/>
        </reference>
        <reference anchor="I-D.ietf-lwig-curve-representations" target="https://datatracker.ietf.org/doc/html/draft-ietf-lwig-curve-representations-23" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-lwig-curve-representations.xml">
          <front>
            <title>Alternative Elliptic Curve Representations</title>
            <author fullname="Rene Struik" initials="R." surname="Struik">
              <organization>Struik Security Consultancy</organization>
            </author>
            <date day="21" month="January" year="2022"/>
            <abstract>
              <t>This document specifies how to represent Montgomery curves and (twisted) Edwards curves as curves in short-Weierstrass form and illustrates how this can be used to carry out elliptic curve computations leveraging existing implementations and specifications of, e.g., ECDSA and ECDH using NIST prime curves. We also provide extensive background material that may be useful for implementers of elliptic curve cryptography.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-lwig-curve-representations-23"/>
        </reference>
        <reference anchor="I-D.ietf-iotops-security-protocol-comparison" target="https://datatracker.ietf.org/doc/html/draft-ietf-iotops-security-protocol-comparison-03" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-iotops-security-protocol-comparison.xml">
          <front>
            <title>Comparison of CoAP Security Protocols</title>
            <author fullname="John Preuß Mattsson" initials="J. P." surname="Mattsson">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="Francesca Palombini" initials="F." surname="Palombini">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="Mališa Vučinić" initials="M." surname="Vučinić">
              <organization>INRIA</organization>
            </author>
            <date day="23" month="October" year="2023"/>
            <abstract>
              <t>This document analyzes and compares the sizes of key exchange flights and the per-packet message size overheads when using different security protocols to secure CoAP. The described overheads are independent of the underlying transport. Small message sizes are very important for reducing energy consumption, latency, and time to completion in constrained radio network such as Low-Power Wide Area Networks (LPWANs). The analyzed security protocols are DTLS 1.2, DTLS 1.3, TLS 1.2, TLS 1.3, cTLS, EDHOC, OSCORE, and Group OSCORE. The DTLS and TLS record layers are analyzed with and without 6LoWPAN- GHC compression. DTLS is analyzed with and without Connection ID.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-iotops-security-protocol-comparison-03"/>
        </reference>
        <reference anchor="I-D.irtf-cfrg-det-sigs-with-noise" target="https://datatracker.ietf.org/doc/html/draft-irtf-cfrg-det-sigs-with-noise-00" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.irtf-cfrg-det-sigs-with-noise.xml">
          <front>
            <title>Deterministic ECDSA and EdDSA Signatures with Additional Randomness</title>
            <author fullname="John Preuß Mattsson" initials="J. P." surname="Mattsson">
              <organization>Ericsson</organization>
            </author>
            <author fullname="Erik Thormarker" initials="E." surname="Thormarker">
              <organization>Ericsson</organization>
            </author>
            <author fullname="Sini Ruohomaa" initials="S." surname="Ruohomaa">
              <organization>Ericsson</organization>
            </author>
            <date day="8" month="August" year="2022"/>
            <abstract>
              <t>Deterministic elliptic-curve signatures such as deterministic ECDSA and EdDSA have gained popularity over randomized ECDSA as their security do not depend on a source of high-quality randomness. Recent research has however found that implementations of these signature algorithms may be vulnerable to certain side-channel and fault injection attacks due to their determinism. One countermeasure to such attacks is to re-add randomness to the otherwise deterministic calculation of the per-message secret number. This document updates RFC 6979 and RFC 8032 to recommend constructions with additional randomness for deployments where side-channel attacks and fault injection attacks are a concern. The updates are invisible to the validator of the signature and compatible with existing ECDSA and EdDSA validators.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-det-sigs-with-noise-00"/>
        </reference>
        <reference anchor="I-D.selander-lake-authz" target="https://datatracker.ietf.org/doc/html/draft-selander-lake-authz-03" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.selander-lake-authz.xml">
          <front>
            <title>Lightweight Authorization using Ephemeral Diffie-Hellman Over COSE</title>
            <author fullname="Göran Selander" initials="G." surname="Selander">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="John Preuß Mattsson" initials="J. P." surname="Mattsson">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="Mališa Vučinić" initials="M." surname="Vučinić">
              <organization>INRIA</organization>
            </author>
            <author fullname="Michael Richardson" initials="M." surname="Richardson">
              <organization>Sandelman Software Works</organization>
            </author>
            <author fullname="Aurelio Schellenbaum" initials="A." surname="Schellenbaum">
              <organization>Institute of Embedded Systems, ZHAW</organization>
            </author>
            <date day="7" month="July" year="2023"/>
            <abstract>
              <t>This document describes a procedure for authorizing enrollment of new devices using the lightweight authenticated key exchange protocol Ephemeral Diffie-Hellman Over COSE (EDHOC). The procedure is applicable to zero-touch onboarding of new devices to a constrained network leveraging trust anchors installed at manufacture time.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-selander-lake-authz-03"/>
        </reference>
        <reference anchor="I-D.arkko-arch-internet-threat-model-guidance" target="https://datatracker.ietf.org/doc/html/draft-arkko-arch-internet-threat-model-guidance-00" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.arkko-arch-internet-threat-model-guidance.xml">
          <front>
            <title>Internet Threat Model Guidance</title>
            <author fullname="Jari Arkko" initials="J." surname="Arkko">
              <organization>Ericsson</organization>
            </author>
            <author fullname="Stephen Farrell" initials="S." surname="Farrell">
              <organization>Trinity College Dublin</organization>
            </author>
            <date day="12" month="July" year="2021"/>
            <abstract>
              <t>Communications security has been at the center of many security improvements in the Internet. The goal has been to ensure that communications are protected against outside observers and attackers. This memo suggests that the existing RFC 3552 threat model, while important and still valid, is no longer alone sufficient to cater for the pressing security and privacy issues seen on the Internet today. For instance, it is often also necessary to protect against endpoints that are compromised, malicious, or whose interests simply do not align with the interests of users. While such protection is difficult, there are some measures that can be taken and we argue that investigation of these issues is warranted. It is particularly important to ensure that as we continue to develop Internet technology, non-communications security related threats, and privacy issues, are properly understood.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-arkko-arch-internet-threat-model-guidance-00"/>
        </reference>
        <reference anchor="SP-800-56A" target="https://doi.org/10.6028/NIST.SP.800-56Ar3">
          <front>
            <title>Recommendation for Pair-Wise Key-Establishment Schemes Using Discrete Logarithm Cryptography</title>
            <author initials="E." surname="Barker">
              <organization/>
            </author>
            <author initials="L." surname="Chen">
              <organization/>
            </author>
            <author initials="A." surname="Roginsky">
              <organization/>
            </author>
            <author initials="A." surname="Vassilev">
              <organization/>
            </author>
            <author initials="R." surname="Davis">
              <organization/>
            </author>
            <date year="2018" month="April"/>
          </front>
          <seriesInfo name="NIST" value="Special Publication 800-56A Revision 3"/>
        </reference>
        <reference anchor="SP-800-108" target="https://doi.org/10.6028/NIST.SP.800-108r1">
          <front>
            <title>Recommendation for Key Derivation Using Pseudorandom Functions</title>
            <author initials="L." surname="Chen">
              <organization/>
            </author>
            <date year="2022" month="August"/>
          </front>
          <seriesInfo name="NIST" value="Special Publication 800-108 Revision 1"/>
        </reference>
        <reference anchor="SP800-185" target="https://doi.org/10.6028/NIST.SP.800-185">
          <front>
            <title>SHA-3 Derived Functions cSHAKE, KMAC, TupleHash and ParallelHash</title>
            <author initials="" surname="John Kelsey">
              <organization/>
            </author>
            <author initials="" surname="Shu-jen Chang">
              <organization/>
            </author>
            <author initials="" surname="Ray Perlner">
              <organization/>
            </author>
            <date year="2016" month="December"/>
          </front>
          <seriesInfo name="NIST" value="Special Publication 800-185"/>
        </reference>
        <reference anchor="Degabriele11" target="https://eprint.iacr.org/2011/615">
          <front>
            <title>On the Joint Security of Encryption and Signature in EMV</title>
            <author initials="J. P." surname="Degabriele">
              <organization/>
            </author>
            <author initials="A." surname="Lehmann">
              <organization/>
            </author>
            <author initials="K. G." surname="Paterson">
              <organization/>
            </author>
            <author initials="N. P." surname="Smart">
              <organization/>
            </author>
            <author initials="M." surname="Strefler">
              <organization/>
            </author>
            <date year="2011" month="December"/>
          </front>
        </reference>
        <reference anchor="NISTPQC" target="https://csrc.nist.gov/Projects/post-quantum-cryptography/faqs">
          <front>
            <title>Post-Quantum Cryptography FAQs</title>
            <author>
              <organization/>
            </author>
            <date year="2023" month="August"/>
          </front>
        </reference>
        <reference anchor="SECG" target="https://www.secg.org/sec1-v2.pdf">
          <front>
            <title>Standards for Efficient Cryptography 1 (SEC 1)</title>
            <author>
              <organization/>
            </author>
            <date year="2009" month="May"/>
          </front>
        </reference>
        <reference anchor="SIGMA" target="https://www.iacr.org/cryptodb/archive/2003/CRYPTO/1495/1495.pdf">
          <front>
            <title>SIGMA - The 'SIGn-and-MAc' Approach to Authenticated Diffie-Hellman and Its Use in the IKE-Protocols</title>
            <author initials="H." surname="Krawczyk">
              <organization/>
            </author>
            <date year="2003" month="June"/>
          </front>
        </reference>
        <reference anchor="HKDFpaper" target="https://eprint.iacr.org/2010/264.pdf">
          <front>
            <title>Cryptographic Extraction and Key Derivation: The HKDF Scheme</title>
            <author initials="H." surname="Krawczyk">
              <organization/>
            </author>
            <date year="2010" month="May"/>
          </front>
        </reference>
        <reference anchor="Thormarker21" target="https://eprint.iacr.org/2021/509.pdf">
          <front>
            <title>On using the same key pair for Ed25519 and an X25519 based KEM</title>
            <author initials="E." surname="Thormarker">
              <organization/>
            </author>
            <date year="2021" month="April"/>
          </front>
        </reference>
        <reference anchor="CNSA" target="https://en.wikipedia.org/wiki/Commercial_National_Security_Algorithm_Suite">
          <front>
            <title>Commercial National Security Algorithm Suite</title>
            <author initials="" surname="NSA">
              <organization/>
            </author>
            <date year="2015" month="August"/>
          </front>
        </reference>
        <reference anchor="GuentherIlunga22" target="https://eprint.iacr.org/2022/1705">
          <front>
            <title>Careful with MAc-then-SIGn: A Computational Analysis of the EDHOC Lightweight Authenticated Key Exchange Protocol</title>
            <author initials="F." surname="Günther">
              <organization/>
            </author>
            <author initials="M." surname="Ilunga">
              <organization/>
            </author>
            <date year="2022" month="December"/>
          </front>
        </reference>
        <reference anchor="Jacomme23" target="https://hal.inria.fr/hal-03810102/">
          <front>
            <title>A comprehensive, formal and automated analysis of the EDHOC protocol</title>
            <author initials="C." surname="Jacomme">
              <organization/>
            </author>
            <author initials="E." surname="Klein">
              <organization/>
            </author>
            <author initials="S." surname="Kremer">
              <organization/>
            </author>
            <author initials="M." surname="Racouchot">
              <organization/>
            </author>
            <date year="2022" month="October"/>
          </front>
        </reference>
        <reference anchor="CottierPointcheval22" target="https://arxiv.org/abs/2209.03599">
          <front>
            <title>Security Analysis of the EDHOC protocol</title>
            <author initials="B." surname="Cottier">
              <organization/>
            </author>
            <author initials="D." surname="Pointcheval">
              <organization/>
            </author>
            <date year="2022" month="September"/>
          </front>
        </reference>
        <reference anchor="Norrman20" target="https://arxiv.org/abs/2007.11427">
          <front>
            <title>Formal Analysis of EDHOC Key Establishment for Constrained IoT Devices</title>
            <author initials="K." surname="Norrman">
              <organization/>
            </author>
            <author initials="V." surname="Sundararajan">
              <organization/>
            </author>
            <author initials="A." surname="Bruni">
              <organization/>
            </author>
            <date year="2020" month="September"/>
          </front>
        </reference>
        <reference anchor="Bruni18" target="https://www.springerprofessional.de/en/formal-verification-of-ephemeral-diffie-hellman-over-cose-edhoc/16284348">
          <front>
            <title>Formal Verification of Ephemeral Diffie-Hellman Over COSE (EDHOC)</title>
            <author initials="A." surname="Bruni">
              <organization/>
            </author>
            <author initials="T." surname="Sahl Jørgensen">
              <organization/>
            </author>
            <author initials="T." surname="Grønbech Petersen">
              <organization/>
            </author>
            <author initials="C." surname="Schürmann">
              <organization/>
            </author>
            <date year="2018" month="November"/>
          </front>
        </reference>
        <reference anchor="CborMe" target="https://cbor.me/">
          <front>
            <title>CBOR Playground</title>
            <author initials="C." surname="Bormann">
              <organization/>
            </author>
            <date year="2018" month="May"/>
          </front>
        </reference>
        <reference anchor="Noise" target="https://noiseprotocol.org/noise.html">
          <front>
            <title>The Noise Protocol Framework, Revision 34</title>
            <author initials="T." surname="Perrin">
              <organization/>
            </author>
            <date year="2018" month="July"/>
          </front>
        </reference>
      </references>
    </references>
    <?line 1917?>

<section anchor="transfer">
      <name>Use with OSCORE and Transfer over CoAP</name>
      <t>This appendix describes how to derive an OSCORE security context when EDHOC is used to key OSCORE, and how to transfer EDHOC messages over CoAP. The use of CoAP or OSCORE with EDHOC is optional, but if you are using CoAP or OSCORE, then certain normative requirements apply as detailed in the  subsections.</t>
      <section anchor="oscore-ctx-derivation">
        <name>Deriving the OSCORE Security Context</name>
        <t>This section specifies how to use EDHOC output to derive the OSCORE security context.</t>
        <t>After successful processing of EDHOC message_3, Client and Server derive Security Context parameters for OSCORE as follows (see Section 3.2 of <xref target="RFC8613"/>):</t>
        <ul spacing="normal">
          <li>
            <t>The Master Secret and Master Salt SHALL be derived by using the EDHOC_Exporter interface, see <xref target="exporter"/>:
            </t>
            <ul spacing="normal">
              <li>
                <t>The EDHOC Exporter Labels for deriving the OSCORE Master Secret and the OSCORE Master Salt, are the uints 0 and 1, respectively.</t>
              </li>
              <li>
                <t>The context parameter is h'' (0x40), the empty CBOR byte string.</t>
              </li>
              <li>
                <t>By default, oscore_key_length is the key length (in bytes) of the application AEAD Algorithm of the selected cipher suite for the EDHOC session. Also by default, oscore_salt_length has value 8. The Initiator and Responder MAY agree out-of-band on a longer oscore_key_length than the default, and on shorter or
longer than the default oscore_salt_length.</t>
              </li>
            </ul>
          </li>
        </ul>
        <artwork><![CDATA[
   Master Secret = EDHOC_Exporter( 0, h'', oscore_key_length )
   Master Salt   = EDHOC_Exporter( 1, h'', oscore_salt_length )
]]></artwork>
        <ul spacing="normal">
          <li>
            <t>The AEAD Algorithm SHALL be the application AEAD algorithm of the selected cipher suite for the EDHOC session.</t>
          </li>
          <li>
            <t>The HKDF Algorithm SHALL be the one based on the application hash algorithm of the selected cipher suite for the EDHOC session. For example, if SHA-256 is the application hash algorithm of the selected cipher suite, HKDF SHA-256 is used as HKDF Algorithm in the OSCORE Security Context.</t>
          </li>
          <li>
            <t>The relationship between identifiers in OSCORE and EDHOC is specified in <xref target="ci-oscore"/>. The OSCORE Sender ID and Recipient ID SHALL be determined by the EDHOC connection identifiers C_R and C_I for the EDHOC session as shown in <xref target="fig-edhoc-oscore-id-mapping"/>.</t>
          </li>
        </ul>
        <figure anchor="fig-edhoc-oscore-id-mapping">
          <name>Usage of connection identifiers in OSCORE.</name>
          <artset>
            <artwork type="svg" align="center"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="144" width="488" viewBox="0 0 488 144" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,32 L 8,128" fill="none" stroke="black"/>
                <path d="M 152,32 L 152,128" fill="none" stroke="black"/>
                <path d="M 304,32 L 304,128" fill="none" stroke="black"/>
                <path d="M 480,32 L 480,128" fill="none" stroke="black"/>
                <path d="M 8,32 L 480,32" fill="none" stroke="black"/>
                <path d="M 8,62 L 480,62" fill="none" stroke="black"/>
                <path d="M 8,66 L 480,66" fill="none" stroke="black"/>
                <path d="M 8,96 L 480,96" fill="none" stroke="black"/>
                <path d="M 8,128 L 480,128" fill="none" stroke="black"/>
                <g class="text">
                  <text x="188" y="52">OSCORE</text>
                  <text x="244" y="52">Sender</text>
                  <text x="284" y="52">ID</text>
                  <text x="340" y="52">OSCORE</text>
                  <text x="408" y="52">Recipient</text>
                  <text x="460" y="52">ID</text>
                  <text x="40" y="84">EDHOC</text>
                  <text x="104" y="84">Initiator</text>
                  <text x="232" y="84">C_R</text>
                  <text x="392" y="84">C_I</text>
                  <text x="40" y="116">EDHOC</text>
                  <text x="104" y="116">Responder</text>
                  <text x="232" y="116">C_I</text>
                  <text x="392" y="116">C_R</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art" align="center"><![CDATA[
+-----------------+------------------+---------------------+
|                 | OSCORE Sender ID | OSCORE Recipient ID |
+=================+==================+=====================+
| EDHOC Initiator |        C_R       |         C_I         |
+-----------------+------------------+---------------------+
| EDHOC Responder |        C_I       |         C_R         |
+-----------------+------------------+---------------------+
]]></artwork>
          </artset>
        </figure>
        <t>Client and Server SHALL use the parameters above to establish an OSCORE Security Context, as per Section 3.2.1 of <xref target="RFC8613"/>.</t>
        <t>From then on, Client and Server retrieve the OSCORE protocol state using the Recipient ID, and optionally other transport information such as the 5-tuple.</t>
      </section>
      <section anchor="coap">
        <name>Transferring EDHOC over CoAP</name>
        <t>This section specifies how EDHOC can be transferred as an exchange of CoAP <xref target="RFC7252"/> messages. CoAP provides a reliable transport that can preserve packet ordering, provides flow and congestion control, and handles message duplication. CoAP can also perform fragmentation and mitigate certain denial-of-service attacks. The underlying CoAP transport should be used in reliable mode, in particular when fragmentation is used, to avoid, e.g., situations with hanging endpoints waiting for each other.</t>
        <t>EDHOC may run with the Initiator either being CoAP client or CoAP server. We denote the former by the "forward message flow" (see <xref target="forward"/>) and the latter by the "reverse message flow" (see <xref target="reverse"/>). By default, we assume the forward message flow, but the roles SHOULD be chosen to protect the most sensitive identity, see <xref target="security"/>.</t>
        <t>According to this specification, EDHOC is transferred in POST requests to the Uri-Path: "/.well-known/edhoc" (see <xref target="well-known"/>), and 2.04 (Changed) responses. An application may define its own path that can be discovered, e.g., using a resource directory <xref target="RFC9176"/>. Client applications can use the resource type "core.edhoc" to discover a server's EDHOC resource, i.e., where to send a request for executing the EDHOC protocol, see <xref target="rt"/>. An alternative transfer of the forward message flow is specified in <xref target="I-D.ietf-core-oscore-edhoc"/>.</t>
        <t>In order for the server to correlate a message received from a client to a message previously sent in the same EDHOC session over CoAP, messages sent by the client SHALL be prepended with the CBOR serialization of the connection identifier which the server has selected, see <xref target="ci-edhoc"/>. This applies both to the forward and the reverse message flows. To indicate a new EDHOC session in the forward message flow, message_1 SHALL be prepended with the CBOR simple value <tt>true</tt> (0xf5). Even if CoAP is carried over a reliable transport protocol such as TCP, the prepending of identifiers specified here SHALL be practiced to enable interoperability independent of how CoAP is transported.</t>
        <t>The prepended identifiers are encoded in CBOR and thus self-delimiting. The representation of identifiers described in <xref target="bstr-repr"/> SHALL be used. They are sent in front of the actual EDHOC message to keep track of messages in an EDHOC session, and only the part of the body following the identifier is used for EDHOC processing. In particular, the connection identifiers within the EDHOC messages are not impacted by the prepended identifiers.</t>
        <t>An EDHOC message has media type application/edhoc+cbor-seq, whereas an EDHOC message prepended by a connection identifier has media type application/cid-edhoc+cbor-seq, see <xref target="content-format"/>.</t>
        <t>To mitigate certain denial-of-service attacks, the CoAP server MAY respond to the first POST request with a 4.01 (Unauthorized) containing an Echo option <xref target="RFC9175"/>. This forces the Initiator to demonstrate reachability at its apparent network address. If message fragmentation is needed, the EDHOC messages may be fragmented using the CoAP Block-Wise Transfer mechanism <xref target="RFC7959"/>.</t>
        <t>EDHOC error messages need to be transported in response to a message that failed (see <xref target="error"/>). EDHOC error messages transported with CoAP are carried in the payload.</t>
        <t>Note that the transport over CoAP can serve as a blueprint for other client-server protocols:</t>
        <ul spacing="normal">
          <li>
            <t>The client prepends the connection identifier selected by the server  (or, for message_1, the CBOR simple value <tt>true</tt>) to any request message it sends.</t>
          </li>
          <li>
            <t>The server does not send any such indicator, as responses are matched to request by the client-server protocol design.</t>
          </li>
        </ul>
        <section anchor="forward">
          <name>The Forward Message Flow</name>
          <t>In the forward message flow the CoAP client is the Initiator and the CoAP server is the Responder. This flow protects the client identity against active attackers and the server identity against passive attackers.</t>
          <t>In the forward message flow, the CoAP Token enables correlation on the Initiator (client) side, and the prepended C_R enables correlation on the Responder (server) side.</t>
          <ul spacing="normal">
            <li>
              <t>EDHOC message_1 is sent in the payload of a POST request from the client to the server's resource for EDHOC, prepended with the identifier <tt>true</tt> (0xf5) indicating a new EDHOC session.</t>
            </li>
            <li>
              <t>EDHOC message_2 or the EDHOC error message is sent from the server to the client in the payload of the response, in the former case with response code 2.04 (Changed), in the latter with response code as specified in <xref target="edhoc-oscore-over-coap"/>.</t>
            </li>
            <li>
              <t>EDHOC message_3 or the EDHOC error message is sent from the client to the server's resource in the payload of a POST request, prepended with the connection identifier C_R.</t>
            </li>
            <li>
              <t>If EDHOC message_4 is used, or in case of an error message, it is sent from the server to the client in the payload of the response, with response codes analogously to message_2. In case of an error message sent in response to message_4, it is sent analogously to error message sent in response to message_2.</t>
            </li>
          </ul>
          <t>An example of a completed EDHOC session over CoAP in the forward message flow is shown in <xref target="fig-coap1"/>.</t>
          <figure anchor="fig-coap1">
            <name>Example of the forward message flow.</name>
            <artset>
              <artwork type="svg" align="center"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="352" width="496" viewBox="0 0 496 352" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                  <path d="M 24,48 L 24,336" fill="none" stroke="black"/>
                  <path d="M 112,48 L 112,336" fill="none" stroke="black"/>
                  <path d="M 24,64 L 104,64" fill="none" stroke="black"/>
                  <path d="M 32,144 L 112,144" fill="none" stroke="black"/>
                  <path d="M 24,208 L 104,208" fill="none" stroke="black"/>
                  <path d="M 32,288 L 112,288" fill="none" stroke="black"/>
                  <polygon class="arrowhead" points="112,208 100,202.4 100,213.6" fill="black" transform="rotate(0,104,208)"/>
                  <polygon class="arrowhead" points="112,64 100,58.4 100,69.6" fill="black" transform="rotate(0,104,64)"/>
                  <polygon class="arrowhead" points="40,288 28,282.4 28,293.6" fill="black" transform="rotate(180,32,288)"/>
                  <polygon class="arrowhead" points="40,144 28,138.4 28,149.6" fill="black" transform="rotate(180,32,144)"/>
                  <g class="text">
                    <text x="28" y="36">Client</text>
                    <text x="108" y="36">Server</text>
                    <text x="152" y="68">Header:</text>
                    <text x="204" y="68">POST</text>
                    <text x="272" y="68">(Code=0.02)</text>
                    <text x="68" y="84">POST</text>
                    <text x="160" y="84">Uri-Path:</text>
                    <text x="284" y="84">"/.well-known/edhoc"</text>
                    <text x="184" y="100">Content-Format:</text>
                    <text x="372" y="100">application/cid-edhoc+cbor-seq</text>
                    <text x="156" y="116">Payload:</text>
                    <text x="216" y="116">true,</text>
                    <text x="264" y="116">EDHOC</text>
                    <text x="328" y="116">message_1</text>
                    <text x="152" y="148">Header:</text>
                    <text x="204" y="148">2.04</text>
                    <text x="256" y="148">Changed</text>
                    <text x="68" y="164">2.04</text>
                    <text x="184" y="164">Content-Format:</text>
                    <text x="356" y="164">application/edhoc+cbor-seq</text>
                    <text x="156" y="180">Payload:</text>
                    <text x="216" y="180">EDHOC</text>
                    <text x="280" y="180">message_2</text>
                    <text x="152" y="212">Header:</text>
                    <text x="204" y="212">POST</text>
                    <text x="272" y="212">(Code=0.02)</text>
                    <text x="68" y="228">POST</text>
                    <text x="160" y="228">Uri-Path:</text>
                    <text x="284" y="228">"/.well-known/edhoc"</text>
                    <text x="184" y="244">Content-Format:</text>
                    <text x="372" y="244">application/cid-edhoc+cbor-seq</text>
                    <text x="156" y="260">Payload:</text>
                    <text x="212" y="260">C_R,</text>
                    <text x="256" y="260">EDHOC</text>
                    <text x="320" y="260">message_3</text>
                    <text x="152" y="292">Header:</text>
                    <text x="204" y="292">2.04</text>
                    <text x="256" y="292">Changed</text>
                    <text x="68" y="308">2.04</text>
                    <text x="184" y="308">Content-Format:</text>
                    <text x="356" y="308">application/edhoc+cbor-seq</text>
                    <text x="156" y="324">Payload:</text>
                    <text x="216" y="324">EDHOC</text>
                    <text x="280" y="324">message_4</text>
                  </g>
                </svg>
              </artwork>
              <artwork type="ascii-art" align="center"><![CDATA[
Client    Server
  |          |
  +--------->| Header: POST (Code=0.02)
  |   POST   | Uri-Path: "/.well-known/edhoc"
  |          | Content-Format: application/cid-edhoc+cbor-seq
  |          | Payload: true, EDHOC message_1
  |          |
  |<---------+ Header: 2.04 Changed
  |   2.04   | Content-Format: application/edhoc+cbor-seq
  |          | Payload: EDHOC message_2
  |          |
  +--------->| Header: POST (Code=0.02)
  |   POST   | Uri-Path: "/.well-known/edhoc"
  |          | Content-Format: application/cid-edhoc+cbor-seq
  |          | Payload: C_R, EDHOC message_3
  |          |
  |<---------+ Header: 2.04 Changed
  |   2.04   | Content-Format: application/edhoc+cbor-seq
  |          | Payload: EDHOC message_4
  |          |
]]></artwork>
            </artset>
          </figure>
          <t>The forward message flow of EDHOC can be combined with an OSCORE exchange in a total of two round-trips, see <xref target="I-D.ietf-core-oscore-edhoc"/>.</t>
        </section>
        <section anchor="reverse">
          <name>The Reverse Message Flow</name>
          <t>In the reverse message flow the CoAP client is the Responder and the CoAP server is the Initiator. This flow protects the server identity against active attackers and the client identity against passive attackers.</t>
          <t>In the reverse message flow, the CoAP Token enables correlation on the Responder (client) side, and the prepended C_I enables correlation on the Initiator (server) side.</t>
          <ul spacing="normal">
            <li>
              <t>To trigger a new EDHOC session, the client makes an empty POST request to the server's resource for EDHOC.</t>
            </li>
            <li>
              <t>EDHOC message_1 is sent from the server to the client in the payload of the response with response code 2.04 (Changed).</t>
            </li>
            <li>
              <t>EDHOC message_2 or the EDHOC error message is sent from the client to the server's resource in the payload of a POST request, prepended with the connection identifier C_I.</t>
            </li>
            <li>
              <t>EDHOC message_3 or the EDHOC error message is sent from the server to the client in the payload of the response, in the former case with response code 2.04 (Changed), in the latter with response code as specified in <xref target="edhoc-oscore-over-coap"/>.</t>
            </li>
            <li>
              <t>If EDHOC message_4 is used, or in case of an error message, it is sent from the client to the server's resource in the payload of a POST request, prepended with the connection identifier C_I. In case of an error message sent in response to message_4, it is sent analogously to an error message sent in response to message_2.</t>
            </li>
          </ul>
          <t>An example of a completed EDHOC session over CoAP in the reverse message flow is shown in <xref target="fig-coap2"/>.</t>
          <figure anchor="fig-coap2">
            <name>Example of the reverse message flow.</name>
            <artset>
              <artwork type="svg" align="center"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="320" width="496" viewBox="0 0 496 320" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                  <path d="M 24,48 L 24,304" fill="none" stroke="black"/>
                  <path d="M 112,48 L 112,304" fill="none" stroke="black"/>
                  <path d="M 24,64 L 104,64" fill="none" stroke="black"/>
                  <path d="M 32,112 L 112,112" fill="none" stroke="black"/>
                  <path d="M 24,176 L 104,176" fill="none" stroke="black"/>
                  <path d="M 32,256 L 112,256" fill="none" stroke="black"/>
                  <polygon class="arrowhead" points="112,176 100,170.4 100,181.6" fill="black" transform="rotate(0,104,176)"/>
                  <polygon class="arrowhead" points="112,64 100,58.4 100,69.6" fill="black" transform="rotate(0,104,64)"/>
                  <polygon class="arrowhead" points="40,256 28,250.4 28,261.6" fill="black" transform="rotate(180,32,256)"/>
                  <polygon class="arrowhead" points="40,112 28,106.4 28,117.6" fill="black" transform="rotate(180,32,112)"/>
                  <g class="text">
                    <text x="28" y="36">Client</text>
                    <text x="108" y="36">Server</text>
                    <text x="152" y="68">Header:</text>
                    <text x="204" y="68">POST</text>
                    <text x="272" y="68">(Code=0.02)</text>
                    <text x="68" y="84">POST</text>
                    <text x="160" y="84">Uri-Path:</text>
                    <text x="284" y="84">"/.well-known/edhoc"</text>
                    <text x="152" y="116">Header:</text>
                    <text x="204" y="116">2.04</text>
                    <text x="256" y="116">Changed</text>
                    <text x="68" y="132">2.04</text>
                    <text x="184" y="132">Content-Format:</text>
                    <text x="356" y="132">application/edhoc+cbor-seq</text>
                    <text x="156" y="148">Payload:</text>
                    <text x="216" y="148">EDHOC</text>
                    <text x="280" y="148">message_1</text>
                    <text x="152" y="180">Header:</text>
                    <text x="204" y="180">POST</text>
                    <text x="272" y="180">(Code=0.02)</text>
                    <text x="68" y="196">POST</text>
                    <text x="160" y="196">Uri-Path:</text>
                    <text x="284" y="196">"/.well-known/edhoc"</text>
                    <text x="184" y="212">Content-Format:</text>
                    <text x="372" y="212">application/cid-edhoc+cbor-seq</text>
                    <text x="156" y="228">Payload:</text>
                    <text x="212" y="228">C_I,</text>
                    <text x="256" y="228">EDHOC</text>
                    <text x="320" y="228">message_2</text>
                    <text x="152" y="260">Header:</text>
                    <text x="204" y="260">2.04</text>
                    <text x="256" y="260">Changed</text>
                    <text x="68" y="276">2.04</text>
                    <text x="184" y="276">Content-Format:</text>
                    <text x="356" y="276">application/edhoc+cbor-seq</text>
                    <text x="156" y="292">Payload:</text>
                    <text x="216" y="292">EDHOC</text>
                    <text x="280" y="292">message_3</text>
                  </g>
                </svg>
              </artwork>
              <artwork type="ascii-art" align="center"><![CDATA[
Client    Server
  |          |
  +--------->| Header: POST (Code=0.02)
  |   POST   | Uri-Path: "/.well-known/edhoc"
  |          |
  |<---------+ Header: 2.04 Changed
  |   2.04   | Content-Format: application/edhoc+cbor-seq
  |          | Payload: EDHOC message_1
  |          |
  +--------->| Header: POST (Code=0.02)
  |   POST   | Uri-Path: "/.well-known/edhoc"
  |          | Content-Format: application/cid-edhoc+cbor-seq
  |          | Payload: C_I, EDHOC message_2
  |          |
  |<---------+ Header: 2.04 Changed
  |   2.04   | Content-Format: application/edhoc+cbor-seq
  |          | Payload: EDHOC message_3
  |          |
]]></artwork>
            </artset>
          </figure>
        </section>
        <section anchor="edhoc-oscore-over-coap">
          <name>Errors in EDHOC over CoAP</name>
          <t>When using EDHOC over CoAP, EDHOC error messages sent as CoAP responses MUST be sent in the payload of error responses, i.e., they MUST specify a CoAP error response code. In particular, it is RECOMMENDED that such error responses have response code either 4.00 (Bad Request) in case of client error (e.g., due to a malformed EDHOC message), or 5.00 (Internal Server Error) in case of server error (e.g., due to failure in deriving EDHOC keying material). The Content-Format of the error response MUST be set to application/edhoc+cbor-seq, see <xref target="content-format"/>.</t>
        </section>
      </section>
    </section>
    <section anchor="comrep">
      <name>Compact Representation</name>
      <t>This section defines a format for compact representation based on the Elliptic-Curve-Point-to-Octet-String Conversion defined in Section 2.3.3 of <xref target="SECG"/>.</t>
      <t>As described in Section 4.2 of <xref target="RFC6090"/> the x-coordinate of an elliptic curve public key is a suitable representative for the entire point whenever scalar multiplication is used as a one-way function. One example is ECDH with compact output, where only the x-coordinate of the computed value is used as the shared secret.</t>
      <t>In EDHOC, compact representation is used for the ephemeral public keys (G_X and G_Y), see <xref target="cose_key"/>. Using the notation from <xref target="SECG"/>, the output is an octet string of length ceil( (log2 q) / 8 ), where ceil(x) is the smallest integer not less than x. See <xref target="SECG"/> for a definition of q, M, X, xp, and ~yp. The steps in Section 2.3.3 of <xref target="SECG"/> are replaced by:</t>
      <ol spacing="normal" type="1"><li>
          <t>Convert the field element xp to an octet string X of length ceil( (log2 q) / 8 ) octets using the conversion routine specified in Section 2.3.5 of <xref target="SECG"/>.</t>
        </li>
        <li>
          <t>Output M = X</t>
        </li>
      </ol>
      <t>The encoding of the point at infinity is not supported.</t>
      <t>Compact representation does not change any requirements on validation, see <xref target="crypto"/>. Using compact representation has some security benefits. An implementation does not need to check that the point is not the point at infinity (the identity element). Similarly, as not even the sign of the y-coordinate is encoded, compact representation trivially avoids so-called "benign malleability" attacks where an attacker changes the sign, see <xref target="SECG"/>.</t>
      <t>The following may be needed for validation or compatibility with APIs that do not support compact representation or do not support the full <xref target="SECG"/> format:</t>
      <ul spacing="normal">
        <li>
          <t>If a compressed y-coordinate is required, then the value ~yp set to zero can be used. The compact representation described above can in such a case be transformed into the SECG point compressed format by prepending it with the single byte 0x02 (i.e., M = 0x02 || X).</t>
        </li>
        <li>
          <t>If an uncompressed y-coordinate is required, then a y-coordinate has to be calculated following Section 2.3.4 of <xref target="SECG"/> or Appendix C of <xref target="RFC6090"/>. Any of the square roots (see <xref target="SECG"/> or <xref target="RFC6090"/>) can be used. The uncompressed SECG format is M = 0x04 || X || Y.</t>
        </li>
      </ul>
      <t>For example: The curve P-256 has the parameters (using the notation in <xref target="RFC6090"/>)</t>
      <ul spacing="normal">
        <li>
          <t>p = 2<sup>256</sup> − 2<sup>224</sup> + 2<sup>192</sup> + 2<sup>96</sup> − 1</t>
        </li>
        <li>
          <t>a = -3</t>
        </li>
        <li>
          <t>b = 410583637251521421293261297800472684091144410159937255
54835256314039467401291</t>
        </li>
      </ul>
      <t>Given an example x:</t>
      <ul spacing="normal">
        <li>
          <t>x = 115792089183396302095546807154740558443406795108653336
398970697772788799766525</t>
        </li>
      </ul>
      <t>we can calculate y as the square root w = (x<sup>3</sup> + a <contact fullname="⋅"/> x + b)<sup>((p + 1)/4)</sup> (mod p)</t>
      <ul spacing="normal">
        <li>
          <t>y = 834387180070192806820075864918626005281451259964015754
16632522940595860276856</t>
        </li>
      </ul>
      <t>Note that this does not guarantee that (x, y) is on the correct elliptic curve. A full validation according to Section 5.6.2.3.3 of <xref target="SP-800-56A"/> can be achieved by also checking that 0 <contact fullname="≤"/> x &lt; p and that y<sup>2</sup> <contact fullname="≡"/> x<sup>3</sup> + a <contact fullname="⋅"/> x + b (mod p).</t>
    </section>
    <section anchor="CBORandCOSE">
      <name>Use of CBOR, CDDL, and COSE in EDHOC</name>
      <t>This Appendix is intended to help implementors not familiar with CBOR <xref target="RFC8949"/>, CDDL <xref target="RFC8610"/>, COSE <xref target="RFC9052"/>, and HKDF <xref target="RFC5869"/>.</t>
      <section anchor="CBOR">
        <name>CBOR and CDDL</name>
        <t>The Concise Binary Object Representation (CBOR) <xref target="RFC8949"/> is a data format designed for small code size and small message size. CBOR builds on the JSON data model but extends it by e.g., encoding binary data directly without base64 conversion. In addition to the binary CBOR encoding, CBOR also has a diagnostic notation that is readable and editable by humans. The Concise Data Definition Language (CDDL) <xref target="RFC8610"/> provides a way to express structures for protocol messages and APIs that use CBOR. <xref target="RFC8610"/> also extends the diagnostic notation.</t>
        <t>CBOR data items are encoded to or decoded from byte strings using a type-length-value encoding scheme, where the three highest order bits of the initial byte contain information about the major type. CBOR supports several types of data items, in addition to integers (int, uint), simple values, byte strings (bstr), and text strings (tstr), CBOR also supports arrays []  of data items, maps {} of pairs of data items, and sequences <xref target="RFC8742"/> of data items. Some examples are given below.</t>
        <t>The EDHOC specification sometimes use CDDL names in CBOR diagnostic notation as in e.g., &lt;&lt; ID_CRED_R, ? EAD_2 &gt;&gt;. This means that EAD_2 is optional and that ID_CRED_R and EAD_2 should be substituted with their values before evaluation. I.e., if ID_CRED_R = { 4 : h'' } and EAD_2 is omitted then &lt;&lt; ID_CRED_R, ? EAD_2 &gt;&gt; = &lt;&lt; { 4 : h'' } &gt;&gt;, which encodes to 0x43a10440. We also make use of the occurrence symbol "*", like in e.g.,  2* int, meaning two or more CBOR integers.</t>
        <t>For a complete specification and more examples, see <xref target="RFC8949"/> and <xref target="RFC8610"/>. We recommend implementors get used to CBOR by using the CBOR playground <xref target="CborMe"/>.</t>
        <figure anchor="fig-cbor-examples">
          <name>Examples of use of CBOR and CDDL.</name>
          <artset>
            <artwork type="svg" align="center"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="304" width="480" viewBox="0 0 480 304" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,48 L 472,48" fill="none" stroke="black"/>
                <path d="M 8,288 L 472,288" fill="none" stroke="black"/>
                <g class="text">
                  <text x="52" y="36">Diagnostic</text>
                  <text x="200" y="36">Encoded</text>
                  <text x="356" y="36">Type</text>
                  <text x="16" y="68">1</text>
                  <text x="188" y="68">0x01</text>
                  <text x="372" y="68">unsigned</text>
                  <text x="440" y="68">integer</text>
                  <text x="20" y="84">24</text>
                  <text x="196" y="84">0x1818</text>
                  <text x="372" y="84">unsigned</text>
                  <text x="440" y="84">integer</text>
                  <text x="24" y="100">-24</text>
                  <text x="188" y="100">0x37</text>
                  <text x="372" y="100">negative</text>
                  <text x="440" y="100">integer</text>
                  <text x="24" y="116">-25</text>
                  <text x="196" y="116">0x3818</text>
                  <text x="372" y="116">negative</text>
                  <text x="440" y="116">integer</text>
                  <text x="28" y="132">true</text>
                  <text x="188" y="132">0xf5</text>
                  <text x="364" y="132">simple</text>
                  <text x="416" y="132">value</text>
                  <text x="24" y="148">h''</text>
                  <text x="188" y="148">0x40</text>
                  <text x="356" y="148">byte</text>
                  <text x="404" y="148">string</text>
                  <text x="40" y="164">h'12cd'</text>
                  <text x="204" y="164">0x4212cd</text>
                  <text x="356" y="164">byte</text>
                  <text x="404" y="164">string</text>
                  <text x="36" y="180">'12cd'</text>
                  <text x="220" y="180">0x4431326364</text>
                  <text x="356" y="180">byte</text>
                  <text x="404" y="180">string</text>
                  <text x="36" y="196">"12cd"</text>
                  <text x="220" y="196">0x6431326364</text>
                  <text x="356" y="196">text</text>
                  <text x="404" y="196">string</text>
                  <text x="16" y="212">{</text>
                  <text x="32" y="212">4</text>
                  <text x="48" y="212">:</text>
                  <text x="80" y="212">h'cd'</text>
                  <text x="112" y="212">}</text>
                  <text x="212" y="212">0xa10441cd</text>
                  <text x="352" y="212">map</text>
                  <text x="20" y="228">&lt;&lt;</text>
                  <text x="44" y="228">1,</text>
                  <text x="68" y="228">2,</text>
                  <text x="100" y="228">true</text>
                  <text x="132" y="228">&gt;&gt;</text>
                  <text x="212" y="228">0x430102f5</text>
                  <text x="356" y="228">byte</text>
                  <text x="404" y="228">string</text>
                  <text x="16" y="244">[</text>
                  <text x="36" y="244">1,</text>
                  <text x="60" y="244">2,</text>
                  <text x="92" y="244">true</text>
                  <text x="120" y="244">]</text>
                  <text x="212" y="244">0x830102f5</text>
                  <text x="360" y="244">array</text>
                  <text x="16" y="260">(</text>
                  <text x="36" y="260">1,</text>
                  <text x="60" y="260">2,</text>
                  <text x="92" y="260">true</text>
                  <text x="120" y="260">)</text>
                  <text x="204" y="260">0x0102f5</text>
                  <text x="372" y="260">sequence</text>
                  <text x="20" y="276">1,</text>
                  <text x="44" y="276">2,</text>
                  <text x="76" y="276">true</text>
                  <text x="204" y="276">0x0102f5</text>
                  <text x="372" y="276">sequence</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art" align="center"><![CDATA[
 Diagnostic          Encoded              Type
-----------------------------------------------------------
 1                   0x01                 unsigned integer
 24                  0x1818               unsigned integer
 -24                 0x37                 negative integer
 -25                 0x3818               negative integer
 true                0xf5                 simple value
 h''                 0x40                 byte string
 h'12cd'             0x4212cd             byte string
 '12cd'              0x4431326364         byte string
 "12cd"              0x6431326364         text string
 { 4 : h'cd' }       0xa10441cd           map
 << 1, 2, true >>    0x430102f5           byte string
 [ 1, 2, true ]      0x830102f5           array
 ( 1, 2, true )      0x0102f5             sequence
 1, 2, true          0x0102f5             sequence
-----------------------------------------------------------
]]></artwork>
          </artset>
        </figure>
      </section>
      <section anchor="CDDL">
        <name>CDDL Definitions</name>
        <t>This section compiles the CDDL definitions for ease of reference.</t>
        <sourcecode type="CDDL"><![CDATA[
suites = [ 2* int ] / int

ead = (
  ead_label : int,
  ? ead_value : bstr,
)

EAD_1 = 1* ead
EAD_2 = 1* ead
EAD_3 = 1* ead
EAD_4 = 1* ead

message_1 = (
  METHOD : int,
  SUITES_I : suites,
  G_X : bstr,
  C_I : bstr / -24..23,
  ? EAD_1,
)

message_2 = (
  G_Y_CIPHERTEXT_2 : bstr,
)

PLAINTEXT_2 = (
  C_R,
  ID_CRED_R : map / bstr / -24..23,
  Signature_or_MAC_2 : bstr,
  ? EAD_2,
)

message_3 = (
  CIPHERTEXT_3 : bstr,
)

PLAINTEXT_3 = (
  ID_CRED_I : map / bstr / -24..23,
  Signature_or_MAC_3 : bstr,
  ? EAD_3,
)

message_4 = (
  CIPHERTEXT_4 : bstr,
)

PLAINTEXT_4 = (
  ? EAD_4,
)

error = (
  ERR_CODE : int,
  ERR_INFO : any,
)

info = (
  info_label : int,
  context : bstr,
  length : uint,
)
]]></sourcecode>
      </section>
      <section anchor="COSE">
        <name>COSE</name>
        <t>CBOR Object Signing and Encryption (COSE) <xref target="RFC9052"/> describes how to create and process signatures, message authentication codes, and encryption using CBOR. COSE builds on JOSE, but is adapted to allow more efficient processing in constrained devices. EDHOC makes use of COSE_Key, COSE_Encrypt0, and COSE_Sign1 objects in the message processing:</t>
        <ul spacing="normal">
          <li>
            <t>ECDH ephemeral public keys of type EC2 or OKP in message_1 and message_2 consist of the COSE_Key parameter named 'x', see Section 7.1 and 7.2 of <xref target="RFC9053"/></t>
          </li>
          <li>
            <t>The ciphertexts in message_3 and message_4 consist of a subset of the single recipient encrypted data object COSE_Encrypt0, which is described in Sections 5.2-5.3 of <xref target="RFC9052"/>. The ciphertext is computed over the plaintext and associated data, using an encryption key and an initialization vector. The associated data is an Enc_structure consisting of protected headers and externally supplied data (external_aad). COSE constructs the input to the AEAD <xref target="RFC5116"/> for message_i (i = 3 or 4, see <xref target="m3"/> and <xref target="m4"/>, respectively) as follows:  </t>
            <ul spacing="normal">
              <li>
                <t>Secret key K = K_i</t>
              </li>
              <li>
                <t>Nonce N = IV_i</t>
              </li>
              <li>
                <t>Plaintext P for message_i</t>
              </li>
              <li>
                <t>Associated Data A = [ "Encrypt0", h'', TH_i ]</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Signatures in message_2 of method 0 and 2, and in message_3 of method 0 and 1, consist of a subset of the single signer data object COSE_Sign1, which is described in Sections 4.2-4.4 of <xref target="RFC9052"/>. The signature is computed over a Sig_structure containing payload, protected headers and externally supplied data (external_aad) using a private signature key and verified using the corresponding public signature key. For COSE_Sign1, the message to be signed is:  </t>
            <artwork><![CDATA[
 [ "Signature1", protected, external_aad, payload ]
]]></artwork>
            <t>
where protected, external_aad and payload are specified in <xref target="m2"/> and <xref target="m3"/>.</t>
          </li>
        </ul>
        <t>Different header parameters to identify X.509 or C509 certificates by reference are defined in <xref target="RFC9360"/> and <xref target="I-D.ietf-cose-cbor-encoded-cert"/>:</t>
        <ul spacing="normal">
          <li>
            <t>by a hash value with the 'x5t' or 'c5t' parameters, respectively:  </t>
            <ul spacing="normal">
              <li>
                <t>ID_CRED_x = { 34 : COSE_CertHash }, for x = I or R,</t>
              </li>
              <li>
                <t>ID_CRED_x = { TBD3 : COSE_CertHash }, for x = I or R;</t>
              </li>
            </ul>
          </li>
          <li>
            <t>or by a URI with the 'x5u' or 'c5u' parameters, respectively:  </t>
            <ul spacing="normal">
              <li>
                <t>ID_CRED_x = { 35 : uri }, for x = I or R,</t>
              </li>
              <li>
                <t>ID_CRED_x = { TBD4 : uri }, for x = I or R.</t>
              </li>
            </ul>
          </li>
        </ul>
        <t>When ID_CRED_x does not contain the actual credential, it may be very short, e.g., if the endpoints have agreed to use a key identifier parameter 'kid':</t>
        <ul spacing="normal">
          <li>
            <t>ID_CRED_x = { 4 : kid_x }, where kid_x : kid, for x = I or R. For further optimization, see <xref target="id_cred"/>.</t>
          </li>
        </ul>
        <t>Note that ID_CRED_x can contain several header parameters, for example { x5u, x5t } or { kid, kid_context }.</t>
        <t>ID_CRED_x MAY also identify the credential by value. For example, a certificate chain can be transported in an ID_CRED field with COSE header parameter c5c or x5chain, defined in <xref target="I-D.ietf-cose-cbor-encoded-cert"/> and <xref target="RFC9360"/> and credentials of type CWT and CCS can be transported with the COSE header parameters registered in <xref target="cwt-header-param"/>.</t>
      </section>
    </section>
    <section anchor="auth-validation">
      <name>Authentication Related Verifications</name>
      <t>EDHOC performs certain authentication related operations, see <xref target="auth-key-id"/>, but in general it is necessary to make additional verifications beyond EDHOC message processing. Which verifications that are needed depend on the deployment, in particular the trust model and the security policies, but most commonly it can be expressed in terms of verifications of credential content.</t>
      <t>EDHOC assumes the existence of mechanisms (certification authority or other trusted third party, pre-provisioning, etc.) for generating and distributing authentication credentials and other credentials, as well as the existence of trust anchors (CA certificates, trusted public keys, etc.). For example, a public key certificate or CWT may rely on a trusted third party whose public key is pre-provisioned, whereas a CCS or a self-signed certificate/CWT may be used when trust in the public key can be achieved by other means, or in the case of Trust on first use, see <xref target="tofu"/>.</t>
      <t>In this section we provide some examples of such verifications. These verifications are the responsibility of the application but may be implemented as part of an EDHOC library.</t>
      <section anchor="validating-auth-credential">
        <name>Validating the Authentication Credential</name>
        <t>The authentication credential may contain, in addition to the authentication key, other parameters that needs to be verified. For example:</t>
        <ul spacing="normal">
          <li>
            <t>In X.509 and C509 certificates, signature keys typically have key usage "digitalSignature" and Diffie-Hellman public keys typically have key usage "keyAgreement" <xref target="RFC3279"/><xref target="RFC8410"/>.</t>
          </li>
          <li>
            <t>In X.509 and C509 certificates validity is expressed using Not After and Not Before. In CWT and CCS, the “exp” and “nbf” claims have similar meanings.</t>
          </li>
        </ul>
      </section>
      <section anchor="identities">
        <name>Identities</name>
        <t>The application must decide on allowing a connection or not depending on the intended endpoint, and in particular whether it is a specific identity or in a set of identities. To prevent misbinding attacks, the identity of the endpoint is included in a MAC verified through the protocol. More details and examples are provided in this section.</t>
        <t>Policies for what connections to allow are typically set based on the identity of the other endpoint, and endpoints typically only allow connections from a specific identity or a small restricted set of identities. For example, in the case of a device connecting to a network, the network may only allow connections from devices which authenticate with certificates having a particular range of serial numbers and signed by a particular CA. Conversely, a device may only be allowed to connect to a network which authenticates with a particular public key.</t>
        <ul spacing="normal">
          <li>
            <t>When a Public Key Infrastructure (PKI) is used with certificates, the identity is the subject whose unique name, e.g., a domain name, a Network Access Identifier (NAI), or an Extended Unique Identifier (EUI), is included in the endpoint's certificate.</t>
          </li>
          <li>
            <t>Similarly, when a PKI is used with CWTs, the identity is the subject identified by the relevant claim(s), such as 'sub' (subject).</t>
          </li>
          <li>
            <t>When PKI is not used (e.g., CCS, self-signed certificate/CWT) the identity is typically directly associated with the authentication key of the other party. For example, if identities can be expressed in the form of unique subject names assigned to public keys, then a binding to identity is achieved by including both public key and associated subject name in the authentication credential: CRED_I or CRED_R may be a self-signed certificate/CWT or CCS containing the authentication key and the subject name, see <xref target="auth-cred"/>. Each endpoint thus needs to know the specific authentication key/unique associated subject name, or set of public authentication keys/unique associated subject names, which it is allowed to communicate with.</t>
          </li>
        </ul>
        <t>To prevent misbinding attacks in systems where an attacker can register public keys without proving knowledge of the private key, SIGMA <xref target="SIGMA"/> enforces a MAC to be calculated over the "identity". EDHOC follows SIGMA by calculating a MAC over the whole authentication credential, which in case of an X.509 or C509 certificate includes the "subject" and "subjectAltName" fields, and in the case of CWT or CCS includes the "sub" claim.</t>
        <t>(While the SIGMA paper only focuses on the identity, the same principle is true for other information such as policies associated with the public key.)</t>
      </section>
      <section anchor="cert-path">
        <name>Certification Path and Trust Anchors</name>
        <t>When a Public Key Infrastructure (PKI) is used with certificates, the trust anchor is a Certification Authority (CA) certificate. Each party needs at least one CA public key certificate, or just the CA public key. The certification path contains proof that the subject of the certificate owns the public key in the certificate. Only validated public-key certificates are to be accepted.</t>
        <t>Similarly, when a PKI is used with CWTs, each party needs to have at least one trusted third party public key as trust anchor to verify the end entity CWTs. The trusted third party public key can, e.g., be stored in a self-signed CWT or in a CCS.</t>
        <t>The signature of the authentication credential needs to be verified with the public key of the issuer. X.509 and C509 certificates includes the “Issuer” field. In CWT and CCS, the “iss” claim has a similar meaning. The public key is either a trust anchor or the public key in another valid and trusted credential in a certification path from trust anchor to authentication credential.</t>
        <t>Similar verifications as made with the authentication credential (see <xref target="validating-auth-credential"/>) are also needed for the other credentials in the certification path.</t>
        <t>When PKI is not used (CCS, self-signed certificate/CWT), the trust anchor is the authentication key of the other party, in which case there is no certification path.</t>
      </section>
      <section anchor="revocation">
        <name>Revocation Status</name>
        <t>The application may need to verify that the credentials are not revoked, see <xref target="impl-cons"/>. Some use cases may be served by short-lived credentials, for example, where the validity of the credential is on par with the interval between revocation checks. But, in general, credential lifetime and revocation checking are complementary measures to control credential status. Revocation information may be transported as External Authentication Data (EAD), see <xref target="ead-appendix"/>.</t>
      </section>
      <section anchor="tofu">
        <name>Unauthenticated Operation</name>
        <t>EDHOC might be used without authentication by allowing the Initiator or Responder to communicate with any identity except its own. Note that EDHOC without mutual authentication is vulnerable to active on-path attacks and therefore unsafe for general use. However, it is possible to later establish a trust relationship with an unknown or not-yet-trusted endpoint. Some examples:</t>
        <ul spacing="normal">
          <li>
            <t>The EDHOC authentication credential can be verified out-of-band at a later stage.</t>
          </li>
          <li>
            <t>The EDHOC session key can be bound to an identity out-of-band at a later stage.</t>
          </li>
          <li>
            <t>Trust on first use (TOFU) can be used to verify that several EDHOC connections are made to the same identity. TOFU combined with proximity is a common IoT deployment model which provides good security if done correctly. Note that secure proximity based on short range wireless technology requires very low signal strength or very low latency.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="ead-appendix">
      <name>Use of External Authorization Data</name>
      <t>In order to reduce the number of messages and round trips, or to simplify processing, external security applications may be integrated into EDHOC by transporting related external authorization data (EAD) in the messages.</t>
      <t>The EAD format is specified in <xref target="AD"/>, this section contains examples and further details of how EAD may be used with an appropriate accompanying specification.</t>
      <ul spacing="normal">
        <li>
          <t>One example is third party assisted authorization, requested with EAD_1, and an authorization artifact (“voucher”, cf. <xref target="RFC8366"/>) returned in EAD_2, see <xref target="I-D.selander-lake-authz"/>.</t>
        </li>
        <li>
          <t>Another example is remote attestation, requested in EAD_2, and an Entity Attestation Token (EAT, <xref target="I-D.ietf-rats-eat"/>) returned in EAD_3.</t>
        </li>
        <li>
          <t>A third example is certificate enrolment, where a Certificate Signing Request (CSR, <xref target="RFC2986"/>) is included EAD_3, and the issued public key certificate (X.509 <xref target="RFC5280"/>, C509 <xref target="I-D.ietf-cose-cbor-encoded-cert"/>) or a reference thereof is returned in EAD_4.</t>
        </li>
      </ul>
      <t>External authorization data should be considered unprotected by EDHOC, and the protection of EAD is the responsibility of the security application (third party authorization, remote attestation, certificate enrolment, etc.). The security properties of the EAD fields (after EDHOC processing) are discussed in <xref target="sec-prop"/>.</t>
      <t>The content of the EAD field may be used in the EDHOC processing of the message in which they are contained. For example, authentication related information like assertions and revocation information, transported in EAD fields may provide input about trust anchors or validity of credentials relevant to the authentication processing. The EAD fields (like ID_CRED fields) are therefore made available to the application before the message is verified, see details of message processing in <xref target="asym"/>. In the first example above, a voucher in EAD_2 made available to the application can enable the Initiator to verify the identity or public key of the Responder before verifying the signature. An application allowing EAD fields containing authentication information thus may need to handle authentication related verifications associated with EAD processing.</t>
      <t>Conversely, the security application may need to wait for EDHOC message verification to complete. In the third example above, the validation of a CSR carried in EAD_3 is not started by the Responder before EDHOC has successfully verified message_3 and proven the possession of the private key of the Initiator.</t>
      <t>The security application may reuse EDHOC protocol fields which therefore need to be available to the application. For example, the security application may use the same crypto algorithms as in the EDHOC session and therefore needs access to the selected cipher suite (or the whole SUITES_I). The application may use the ephemeral public keys G_X and G_Y, as ephemeral keys or as nonces, see <xref target="I-D.selander-lake-authz"/>.</t>
      <t>The processing of the EAD item (ead_label, ? ead_value) by the security application needs to be described in the specification where the ead_label is registered, see <xref target="iana-ead"/>, including the optional ead_value for each message and actions in case of errors. An application may support multiple security applications that make use of EAD, which may result in multiple EAD items in one EAD field, see <xref target="AD"/>. Any dependencies on security applications with previously registered EAD items needs to be documented, and the processing needs to consider their simultaneous use.</t>
      <t>Since data carried in EAD may not be protected, or be processed by the application before the EDHOC message is verified, special considerations need to be made such that it does not violate security and privacy requirements of the service which uses this data, see <xref target="unprot-data"/>. The content in an EAD item may impact the security properties provided by EDHOC. Security applications making use of the EAD items must perform the necessary security analysis.</t>
    </section>
    <section anchor="appl-temp">
      <name>Application Profile Example</name>
      <t>This appendix contains a rudimentary example of an application profile, see <xref target="applicability"/>.</t>
      <t>For use of EDHOC with application X the following assumptions are made:</t>
      <ol spacing="normal" type="1"><li>
          <t>Transfer in CoAP as specified in <xref target="coap"/> with requests expected by the CoAP server (= Responder) at /app1-edh, no Content-Format needed.</t>
        </li>
        <li>
          <t>METHOD = 1 (I uses signature key, R uses static DH key.)</t>
        </li>
        <li>
          <t>CRED_I is an IEEE 802.1AR IDevID encoded as a C509 certificate of type 0 <xref target="I-D.ietf-cose-cbor-encoded-cert"/>.
          </t>
          <ul spacing="normal">
            <li>
              <t>R acquires CRED_I out-of-band, indicated in EAD_1.</t>
            </li>
            <li>
              <t>ID_CRED_I = {4: h''} is a 'kid' with value the empty CBOR byte string.</t>
            </li>
          </ul>
        </li>
        <li>
          <t>CRED_R is a CCS of type OKP as specified in <xref target="auth-cred"/>.
          </t>
          <ul spacing="normal">
            <li>
              <t>The CBOR map has parameters 1 (kty), -1 (crv), and -2 (x-coordinate).</t>
            </li>
            <li>
              <t>ID_CRED_R is {TBD2 : CCS}.   Editor's note: TBD2 is the COSE header parameter value of 'kccs', see <xref target="cwt-header-param"/></t>
            </li>
          </ul>
        </li>
        <li>
          <t>External authorization data is defined and processed as specified in <xref target="I-D.selander-lake-authz"/>.</t>
        </li>
        <li>
          <t>EUI-64 is used as the identity of the endpoint (see example in <xref target="auth-cred"/>).</t>
        </li>
        <li>
          <t>No use of message_4: the application sends protected messages from R to I.</t>
        </li>
      </ol>
    </section>
    <section anchor="large-plaintext_2">
      <name>Long PLAINTEXT_2</name>
      <t>By the definition of encryption of PLAINTEXT_2 with KEYSTREAM_2, it is limited to lengths of PLAINTEXT_2 not exceeding the output of EDHOC_KDF, see <xref target="expand"/>. If the EDHOC hash algorithm is SHA-2 then HKDF-Expand is used, which limits the length of the EDHOC_KDF output to 255 <contact fullname="⋅"/> hash_length, where hash_length is the length of the output of the EDHOC hash algorithm given by the cipher suite. For example, with SHA-256 as EDHOC hash algorithm, the length of the hash output is 32 bytes and the maximum length of PLAINTEXT_2 is 255 <contact fullname="⋅"/> 32 = 8160 bytes.</t>
      <t>While PLAINTEXT_2 is expected to be much shorter than 8 kB for the intended use cases, it seems nevertheless prudent to specify a solution for the event that this should turn out to be a limitation.</t>
      <t>A potential work-around is to use a cipher suite with a different hash function. In particular, the use of KMAC removes all practical limitations in this respect.</t>
      <t>This section specifies a solution which works with any hash function, by making use of multiple invocations of HKDF-Expand and negative values of info_label.</t>
      <t>Consider the PLAINTEXT_2 partitioned in parts P(i) of length equal to M = 255 <contact fullname="⋅"/> hash_length, except possibly the last part P(last) which has 0 &lt; length <contact fullname="≤"/> M.</t>
      <artwork><![CDATA[
PLAINTEXT_2 = P(0) | P(1) | ... | P(last)
]]></artwork>
      <t>where | indicates concatenation.</t>
      <t>The object is to define a matching KEYSTREAM_2 of the same length and perform the encryption in the same way as defined in <xref target="asym-msg2-proc"/>:</t>
      <artwork><![CDATA[
CIPHERTEXT_2 = PLAINTEXT_2 XOR KEYSTREAM_2
]]></artwork>
      <t>Define the keystream as:</t>
      <artwork><![CDATA[
KEYSTREAM_2 = OKM(0) | OKM(1)  | ... | OKM(last)
]]></artwork>
      <t>where</t>
      <artwork><![CDATA[
OKM(i) = EDHOC_KDF( PRK_2e, -i, TH_2, length(P(i)) )
]]></artwork>
      <t>Note that if length(PLAINTEXT_2) <contact fullname="≤"/> M then P(0) = PLAINTEXT_2 and the definition of KEYSTREAM_2 = OKM(0) coincides with <xref target="fig-edhoc-kdf"/>.</t>
      <t>This describes the processing of the Responder when sending message_2. The Initiator makes the same calculations when receiving message_2, but interchanging PLAINTEXT_2 and CIPHERTEXT_2.</t>
      <t>An application profile may specify if it supports or not the method described in this appendix.</t>
    </section>
    <section anchor="keyupdate">
      <name>EDHOC_KeyUpdate</name>
      <t>To provide forward secrecy in an even more efficient way than re-running EDHOC, this section specifies the optional function EDHOC_KeyUpdate in terms of EDHOC_KDF and PRK_out.</t>
      <t>When EDHOC_KeyUpdate is called, a new PRK_out is calculated as a "hash" of the old PRK_out using the EDHOC_Expand function as illustrated by the following pseudocode. The change of PRK_out causes a change to PRK_exporter which enables the derivation of new application keys superseding the old ones, using EDHOC_Exporter, see <xref target="exporter"/>.</t>
      <artwork><![CDATA[
   EDHOC_KeyUpdate( context ):
      new PRK_out = EDHOC_KDF( old PRK_out, 11, context, hash_length )
      new PRK_exporter = EDHOC_KDF( new PRK_out, 10, h'', hash_length )
]]></artwork>
      <t>where hash_length denotes the output size in bytes of the EDHOC hash algorithm of the selected cipher suite.</t>
      <t>The EDHOC_KeyUpdate takes a context as input to enable binding of the updated PRK_out to some event that triggered the key update. The Initiator and the Responder need to agree on the context, which can, e.g., be a counter, a pseudorandom number, or a hash. To provide forward secrecy the old PRK_out and keys derived from it (old PRK_exporter and old application keys) must be deleted as soon as they are not needed. When to delete the old keys and how to verify that they are not needed is up to the application.</t>
      <t>An application using EDHOC_KeyUpdate needs to store PRK_out. Compromise of PRK_out leads to compromise of all keying material derived with the EDHOC_Exporter since the last invocation of the EDHOC_KeyUpdate function.</t>
      <t>While this key update method provides forward secrecy it does not give as strong security properties as re-running EDHOC. EDHOC_KeyUpdate can be used to meet cryptographic limits and provide partial protection against key leakage, but it provides significantly weaker security properties than re-running EDHOC with ephemeral Diffie-Hellman. Even with frequent use of EDHOC_KeyUpdate, compromise of one session key compromises all future session keys, and an attacker therefore only needs to perform static key exfiltration <xref target="RFC7624"/>, which is less complicated and has a lower risk profile than the dynamic case, see <xref target="sec-prop"/>.</t>
      <t>A similar method to do key update for OSCORE is KUDOS, see <xref target="I-D.ietf-core-oscore-key-update"/>.</t>
    </section>
    <section anchor="example-protocol-state-machine">
      <name>Example Protocol State Machine</name>
      <t>This appendix describes an example protocol state machine for the Initiator and for the Responder. States are denoted in all capitals and parentheses denote actions taken only in some circumstances.</t>
      <t>Note that this state machine is just an example, and that details of processing are omitted, for example:</t>
      <ul spacing="normal">
        <li>
          <t>When error messages are being sent (with one exception)</t>
        </li>
        <li>
          <t>How credentials and EAD are processed by EDHOC and the application in the RCVD state</t>
        </li>
        <li>
          <t>What verifications are made, which includes not only MACs and signatures</t>
        </li>
      </ul>
      <section anchor="initiator-state-machine">
        <name>Initiator State Machine</name>
        <t>The Initiator sends message_1, triggering the state machine to transition from START to WAIT_M2, and waits for message_2.</t>
        <t>If the incoming message is an error message then the Initiator transitions from WAIT_M2 to ABORTED. In case of error code 2 (Wrong Selected Cipher Suite), the Initiator remembers the supported cipher suites for this particular Responder and transitions from ABORTED to START. The message_1 that the Initiator subsequently sends takes into account the cipher suites supported by the Responder.</t>
        <t>Upon receiving a non-error message, the Initiator transitions from WAIT_M2 to RCVD_M2 and processes the message. If a processing error occurs on message_2, then the Initiator transitions from RCVD_M2 to ABORTED. In case of successful processing of message_2, the Initiator transitions from RCVD_M2 to VRFD_M2.</t>
        <t>The Initiator prepares and processes message_3 for sending. If any processing error is encountered, the Initiator transitions from VRFD_M2 to ABORTED. If message_3 is successfully sent, the Initiator transitions from VRFD_M2 to COMPLETED.</t>
        <t>If the application profile includes message_4, then the Initiator waits for message_4. If the incoming message is an error message then the Initiator transitions from COMPLETED to ABORTED. Upon receiving a non-error message, the Initiator transitions from COMPLETED (="WAIT_M4") to RCVD_M4 and processes the message. If a processing error occurs on message_4, then the Initiator transitions from RCVD_M4 to ABORTED. In case of successful processing of message_4, the Initiator transitions from RCVD_M4 to PERSISTED (="VRFD_M4").</t>
        <t>If the application profile does not include message_4, then the Initiator waits for an incoming application message. If the decryption and verification of the application message is successful, then the Initiator transitions from COMPLETED to PERSISTED.</t>
        <artset>
          <artwork type="svg" align="center"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="528" width="536" viewBox="0 0 536 528" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
              <path d="M 40,32 L 40,48" fill="none" stroke="black"/>
              <path d="M 40,128 L 40,432" fill="none" stroke="black"/>
              <path d="M 232,48 L 232,96" fill="none" stroke="black"/>
              <path d="M 232,128 L 232,176" fill="none" stroke="black"/>
              <path d="M 232,208 L 232,256" fill="none" stroke="black"/>
              <path d="M 232,288 L 232,336" fill="none" stroke="black"/>
              <path d="M 232,368 L 232,416" fill="none" stroke="black"/>
              <path d="M 232,448 L 232,496" fill="none" stroke="black"/>
              <path d="M 424,352 L 424,512" fill="none" stroke="black"/>
              <path d="M 72,112 L 200,112" fill="none" stroke="black"/>
              <path d="M 40,192 L 200,192" fill="none" stroke="black"/>
              <path d="M 40,272 L 200,272" fill="none" stroke="black"/>
              <path d="M 40,352 L 200,352" fill="none" stroke="black"/>
              <path d="M 296,352 L 424,352" fill="none" stroke="black"/>
              <path d="M 40,432 L 192,432" fill="none" stroke="black"/>
              <path d="M 296,512 L 424,512" fill="none" stroke="black"/>
              <polygon class="arrowhead" points="304,512 292,506.4 292,517.6" fill="black" transform="rotate(180,296,512)"/>
              <polygon class="arrowhead" points="240,496 228,490.4 228,501.6" fill="black" transform="rotate(90,232,496)"/>
              <polygon class="arrowhead" points="240,416 228,410.4 228,421.6" fill="black" transform="rotate(90,232,416)"/>
              <polygon class="arrowhead" points="240,336 228,330.4 228,341.6" fill="black" transform="rotate(90,232,336)"/>
              <polygon class="arrowhead" points="240,256 228,250.4 228,261.6" fill="black" transform="rotate(90,232,256)"/>
              <polygon class="arrowhead" points="240,176 228,170.4 228,181.6" fill="black" transform="rotate(90,232,176)"/>
              <polygon class="arrowhead" points="240,96 228,90.4 228,101.6" fill="black" transform="rotate(90,232,96)"/>
              <polygon class="arrowhead" points="80,112 68,106.4 68,117.6" fill="black" transform="rotate(180,72,112)"/>
              <polygon class="arrowhead" points="48,360 36,354.4 36,365.6" fill="black" transform="rotate(270,40,360)"/>
              <polygon class="arrowhead" points="48,280 36,274.4 36,285.6" fill="black" transform="rotate(270,40,280)"/>
              <polygon class="arrowhead" points="48,200 36,194.4 36,205.6" fill="black" transform="rotate(270,40,200)"/>
              <polygon class="arrowhead" points="48,128 36,122.4 36,133.6" fill="black" transform="rotate(270,40,128)"/>
              <g class="text">
                <text x="48" y="36">-</text>
                <text x="64" y="36">-</text>
                <text x="80" y="36">-</text>
                <text x="96" y="36">-</text>
                <text x="112" y="36">-</text>
                <text x="128" y="36">-</text>
                <text x="144" y="36">-</text>
                <text x="160" y="36">-</text>
                <text x="176" y="36">-</text>
                <text x="196" y="36">-&gt;</text>
                <text x="232" y="36">START</text>
                <text x="260" y="68">Send</text>
                <text x="320" y="68">message_1</text>
                <text x="40" y="84">|</text>
                <text x="112" y="100">Receive</text>
                <text x="168" y="100">error</text>
                <text x="32" y="116">ABORTED</text>
                <text x="240" y="116">WAIT_M2</text>
                <text x="272" y="148">Receive</text>
                <text x="344" y="148">message_2</text>
                <text x="116" y="180">Processing</text>
                <text x="184" y="180">error</text>
                <text x="240" y="196">RCVD_M2</text>
                <text x="268" y="228">Verify</text>
                <text x="336" y="228">message_2</text>
                <text x="116" y="260">Processing</text>
                <text x="184" y="260">error</text>
                <text x="240" y="276">VRFD_M2</text>
                <text x="260" y="308">Send</text>
                <text x="320" y="308">message_3</text>
                <text x="108" y="340">(Receive</text>
                <text x="172" y="340">error)</text>
                <text x="248" y="356">COMPLETED</text>
                <text x="276" y="388">(Receive</text>
                <text x="356" y="388">message_4)</text>
                <text x="112" y="420">(Processing</text>
                <text x="188" y="420">error)</text>
                <text x="464" y="420">(Verify</text>
                <text x="240" y="436">(RCVD_M4)</text>
                <text x="488" y="436">application</text>
                <text x="476" y="452">message)</text>
                <text x="272" y="468">(Verify</text>
                <text x="348" y="468">message_4)</text>
                <text x="248" y="516">PERSISTED</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art" align="center"><![CDATA[
    +- - - - - - - - - -> START
    |                       |
                            | Send message_1
    |                       |
          Receive error     v
ABORTED <---------------- WAIT_M2
    ^                       |
    |                       | Receive message_2
    |                       |
    |    Processing error   v
    +-------------------- RCVD_M2
    ^                       |
    |                       | Verify message_2
    |                       |
    |    Processing error   v
    +-------------------- VRFD_M2
    ^                       |
    |                       | Send message_3
    |                       |
    |    (Receive error)    v
    +-------------------- COMPLETED ----------------+
    ^                       |                       |
    |                       | (Receive message_4)   |
    |                       |                       |
    |   (Processing error)  v                       | (Verify
    +------------------- (RCVD_M4)                  |  application
                            |                       |  message)
                            | (Verify message_4)    |
                            |                       |
                            v                       |
                          PERSISTED <---------------+
]]></artwork>
        </artset>
      </section>
      <section anchor="responder-state-machine">
        <name>Responder State Machine</name>
        <t>Upon receiving message_1, the Responder transitions from START to RCVD_M1.</t>
        <t>If a processing error occurs on message_1, the Responder transitions from RCVD_M1 to ABORTED. This includes sending error message with error code 2 (Wrong Selected Cipher Suite) if the selected cipher suite in message_1 is not supported. In case of successful processing of message_1, the Responder transitions from RCVD_M1 to VRFD_M1.</t>
        <t>The Responder prepares and processes message_2 for sending. If any processing error is encountered, the Responder transitions from VRFD_M1 to ABORTED. If message_2 is successfully sent, the Initiator transitions from VRFD_M2 to WAIT_M3, and waits for message_3.</t>
        <t>If the incoming message is an error message then the Responder transitions from WAIT_M3 to ABORTED.</t>
        <t>Upon receiving message_3, the Responder transitions from WAIT_M3 to RCVD_M3. If a processing error occurs on message_3, the Responder transitions from RCVD_M3 to ABORTED. In case of successful processing of message_3, the Responder transitions from RCVD_M3 to COMPLETED (="VRFD_M3").</t>
        <t>If the application profile includes message_4, the Responder prepares and processes message_4 for sending. If any processing error is encountered, the Responder transitions from COMPLETED to ABORTED.</t>
        <t>If message_4 is successfully sent, or if the application profile does not include message_4, the Responder transitions from COMPLETED to PERSISTED.</t>
        <artset>
          <artwork type="svg" align="center"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="528" width="384" viewBox="0 0 384 528" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
              <path d="M 40,128 L 40,432" fill="none" stroke="black"/>
              <path d="M 232,48 L 232,96" fill="none" stroke="black"/>
              <path d="M 232,128 L 232,176" fill="none" stroke="black"/>
              <path d="M 232,208 L 232,256" fill="none" stroke="black"/>
              <path d="M 232,288 L 232,336" fill="none" stroke="black"/>
              <path d="M 232,368 L 232,416" fill="none" stroke="black"/>
              <path d="M 232,448 L 232,496" fill="none" stroke="black"/>
              <path d="M 72,112 L 200,112" fill="none" stroke="black"/>
              <path d="M 40,192 L 200,192" fill="none" stroke="black"/>
              <path d="M 40,272 L 200,272" fill="none" stroke="black"/>
              <path d="M 40,352 L 200,352" fill="none" stroke="black"/>
              <path d="M 40,432 L 192,432" fill="none" stroke="black"/>
              <polygon class="arrowhead" points="240,496 228,490.4 228,501.6" fill="black" transform="rotate(90,232,496)"/>
              <polygon class="arrowhead" points="240,416 228,410.4 228,421.6" fill="black" transform="rotate(90,232,416)"/>
              <polygon class="arrowhead" points="240,336 228,330.4 228,341.6" fill="black" transform="rotate(90,232,336)"/>
              <polygon class="arrowhead" points="240,256 228,250.4 228,261.6" fill="black" transform="rotate(90,232,256)"/>
              <polygon class="arrowhead" points="240,176 228,170.4 228,181.6" fill="black" transform="rotate(90,232,176)"/>
              <polygon class="arrowhead" points="240,96 228,90.4 228,101.6" fill="black" transform="rotate(90,232,96)"/>
              <polygon class="arrowhead" points="80,112 68,106.4 68,117.6" fill="black" transform="rotate(180,72,112)"/>
              <polygon class="arrowhead" points="48,360 36,354.4 36,365.6" fill="black" transform="rotate(270,40,360)"/>
              <polygon class="arrowhead" points="48,280 36,274.4 36,285.6" fill="black" transform="rotate(270,40,280)"/>
              <polygon class="arrowhead" points="48,200 36,194.4 36,205.6" fill="black" transform="rotate(270,40,200)"/>
              <polygon class="arrowhead" points="48,128 36,122.4 36,133.6" fill="black" transform="rotate(270,40,128)"/>
              <g class="text">
                <text x="232" y="36">START</text>
                <text x="272" y="68">Receive</text>
                <text x="344" y="68">message_1</text>
                <text x="116" y="100">Processing</text>
                <text x="184" y="100">error</text>
                <text x="32" y="116">ABORTED</text>
                <text x="240" y="116">RCVD_M1</text>
                <text x="268" y="148">Verify</text>
                <text x="336" y="148">message_1</text>
                <text x="116" y="180">Processing</text>
                <text x="184" y="180">error</text>
                <text x="240" y="196">VRFD_M1</text>
                <text x="260" y="228">Send</text>
                <text x="320" y="228">message_2</text>
                <text x="112" y="260">Receive</text>
                <text x="168" y="260">error</text>
                <text x="240" y="276">WAIT_M3</text>
                <text x="272" y="308">Receive</text>
                <text x="344" y="308">message_3</text>
                <text x="116" y="340">Processing</text>
                <text x="184" y="340">error</text>
                <text x="240" y="356">RCVD_M3</text>
                <text x="268" y="388">Verify</text>
                <text x="336" y="388">message_3</text>
                <text x="112" y="420">(Processing</text>
                <text x="188" y="420">error)</text>
                <text x="240" y="436">COMPLETED</text>
                <text x="264" y="468">(Send</text>
                <text x="332" y="468">message_4)</text>
                <text x="240" y="516">PERSISTED</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art" align="center"><![CDATA[
                          START
                            |
                            | Receive message_1
                            |
         Processing error   v
ABORTED <---------------- RCVD_M1
    ^                       |
    |                       | Verify message_1
    |                       |
    |    Processing error   v
    +-------------------- VRFD_M1
    ^                       |
    |                       | Send message_2
    |                       |
    |     Receive error     v
    +-------------------- WAIT_M3
    ^                       |
    |                       | Receive message_3
    |                       |
    |    Processing error   v
    +-------------------- RCVD_M3
    ^                       |
    |                       | Verify message_3
    |                       |
    |   (Processing error)  v
    +------------------- COMPLETED
                            |
                            | (Send message_4)
                            |
                            v
                         PERSISTED
]]></artwork>
        </artset>
      </section>
    </section>
    <section anchor="change-log">
      <name>Change Log</name>
      <t>RFC Editor: Please remove this appendix.</t>
      <ul spacing="normal">
        <li>
          <t>From -21 to -22  </t>
          <ul spacing="normal">
            <li>
              <t>Normative text on transport capabilities.</t>
            </li>
          </ul>
        </li>
        <li>
          <t>From -20 to -21  </t>
          <ul spacing="normal">
            <li>
              <t>Recommendation to use chain instead of bag</t>
            </li>
            <li>
              <t>Improved text about
              </t>
              <ul spacing="normal">
                <li>
                  <t>denial-of-service</t>
                </li>
                <li>
                  <t>deriving secret and non-secret randomness from the same KDF instance</t>
                </li>
                <li>
                  <t>practical security against quantum computers</t>
                </li>
              </ul>
            </li>
            <li>
              <t>Clarifications, including
              </t>
              <ul spacing="normal">
                <li>
                  <t>several updates section 3.4. Transport</t>
                </li>
                <li>
                  <t>descriptions in COSE IANA registration</t>
                </li>
                <li>
                  <t>encoding in Figure 5, reading of Figure 17</t>
                </li>
              </ul>
            </li>
            <li>
              <t>Removed term "dummy"</t>
            </li>
            <li>
              <t>Harmonizing captions</t>
            </li>
            <li>
              <t>Updated references</t>
            </li>
            <li>
              <t>Acknowledgments</t>
            </li>
          </ul>
        </li>
        <li>
          <t>From -19 to -20
          </t>
          <ul spacing="normal">
            <li>
              <t>C_R encrypted in message_2</t>
            </li>
            <li>
              <t>C_R removed from TH_2</t>
            </li>
            <li>
              <t>Error code for unknown referenced credential</t>
            </li>
            <li>
              <t>Error code 0 (success) explicitly reserved</t>
            </li>
            <li>
              <t>Message deduplication section moved from appendix to body</t>
            </li>
            <li>
              <t>Terminology
              </t>
              <ul spacing="normal">
                <li>
                  <t>discontinued -&gt; aborted</t>
                </li>
                <li>
                  <t>protocol run / exchange -&gt; session</t>
                </li>
              </ul>
            </li>
            <li>
              <t>Clarifications, in particular
              </t>
              <ul spacing="normal">
                <li>
                  <t>when to derive application keys</t>
                </li>
                <li>
                  <t>the role of the application for authentication</t>
                </li>
              </ul>
            </li>
            <li>
              <t>Security considerations for kccs and kcwt</t>
            </li>
            <li>
              <t>Updated references</t>
            </li>
          </ul>
        </li>
        <li>
          <t>From -18 to -19
          </t>
          <ul spacing="normal">
            <li>
              <t>Clarifications:
              </t>
              <ul spacing="normal">
                <li>
                  <t>Relation to SIGMA</t>
                </li>
                <li>
                  <t>Role of Static DH</t>
                </li>
                <li>
                  <t>Initiator and Responder roles</t>
                </li>
                <li>
                  <t>Transport properties</t>
                </li>
                <li>
                  <t>Construction of SUITES_I</t>
                </li>
                <li>
                  <t>Message correlation, new subsection 3.4.1, replacing former appendix H</t>
                </li>
                <li>
                  <t>Role of description about long PLAINTEXT_2</t>
                </li>
                <li>
                  <t>ead_label and ead_value</t>
                </li>
                <li>
                  <t>Message processing (Section 5)</t>
                </li>
                <li>
                  <t>Padding</t>
                </li>
                <li>
                  <t>Cipher suite negotiation example</t>
                </li>
              </ul>
            </li>
            <li>
              <t>Other updates:
              </t>
              <ul spacing="normal">
                <li>
                  <t>Improved and stricter normative text in Appendix A</t>
                </li>
                <li>
                  <t>Naming and separate sections for the two message flows in Appendix A: Forward/Reverse message flow,</t>
                </li>
                <li>
                  <t>Table index style captions</t>
                </li>
                <li>
                  <t>Aligning with COSE terminology: header map -&gt; header_map</t>
                </li>
                <li>
                  <t>Aligning terminology, use of "_" instead of "-"</t>
                </li>
                <li>
                  <t>Prefixing "EDHOC_" to functions</t>
                </li>
                <li>
                  <t>Updated list of security analysis papers</t>
                </li>
                <li>
                  <t>New appendix with example state machine</t>
                </li>
                <li>
                  <t>Acknowledgements</t>
                </li>
                <li>
                  <t>Language improvements by native English speakers</t>
                </li>
                <li>
                  <t>Updated IANA section with registration procedures</t>
                </li>
                <li>
                  <t>New and updated references</t>
                </li>
                <li>
                  <t>Removed appendix H</t>
                </li>
              </ul>
            </li>
          </ul>
        </li>
        <li>
          <t>From -17 to -18  </t>
          <ul spacing="normal">
            <li>
              <t>Padding realised as EAD with ead_label = 0, PAD fields removed</t>
            </li>
            <li>
              <t>Revised EAD syntax; ead is now EAD item; ead_value is now optional</t>
            </li>
            <li>
              <t>Clarifications of
              </t>
              <ul spacing="normal">
                <li>
                  <t>Identifier representation</t>
                </li>
                <li>
                  <t>Authentication credentials</t>
                </li>
                <li>
                  <t>RPK</t>
                </li>
                <li>
                  <t>Encoding of ID_CRED with kid</t>
                </li>
                <li>
                  <t>Representation of public keys, y-coordinate of ephemeral keys and validation</t>
                </li>
                <li>
                  <t>Processing after completed protocol</t>
                </li>
                <li>
                  <t>Making verifications available to the application</t>
                </li>
                <li>
                  <t>Relation between EDHOC and OSCORE identifiers</t>
                </li>
              </ul>
            </li>
            <li>
              <t>Terminology alignment in particular session / protocol; discontinue / terminate</t>
            </li>
            <li>
              <t>Updated CDDL</t>
            </li>
            <li>
              <t>Additional unicode encodings</t>
            </li>
            <li>
              <t>Large number of nits from WGLC</t>
            </li>
          </ul>
        </li>
        <li>
          <t>From -16 to -17  </t>
          <ul spacing="normal">
            <li>
              <t>EDHOC-KeyUpdate moved to appendix</t>
            </li>
            <li>
              <t>Updated peer awareness properties based on SIGMA</t>
            </li>
            <li>
              <t>Clarify use of random connection identifiers</t>
            </li>
            <li>
              <t>Editorials related to appendix about messages with long PLAINTEXT_2</t>
            </li>
            <li>
              <t>Updated acknowledgments (have we forgotten someone else? please send email)</t>
            </li>
          </ul>
        </li>
        <li>
          <t>From -15 to -16  </t>
          <ul spacing="normal">
            <li>
              <t>TH_2 used as salt in the derivation of PRK_2e</t>
            </li>
            <li>
              <t>CRED_R/CRED_I included in TH_3/TH_4</t>
            </li>
            <li>
              <t>Distinguish label used in info, exporter or elsewhere</t>
            </li>
            <li>
              <t>New appendix for optional handling arbitrarily large message_2
              </t>
              <ul spacing="normal">
                <li>
                  <t>info_label type changed to int to support this</t>
                </li>
              </ul>
            </li>
            <li>
              <t>Updated security considerations</t>
            </li>
            <li>
              <t>Implementation note about identifiers which are bstr/int</t>
            </li>
            <li>
              <t>Clarifications, especifically about compact representation</t>
            </li>
            <li>
              <t>Type bug fix in CDDL section</t>
            </li>
          </ul>
        </li>
        <li>
          <t>From -14 to -15
          </t>
          <ul spacing="normal">
            <li>
              <t>Connection identifiers and key identifiers are now byte strings
              </t>
              <ul spacing="normal">
                <li>
                  <t>Represented as CBOR bstr in the EDHOC message
                  </t>
                  <ul spacing="normal">
                    <li>
                      <t>Unless they happen to encode a one-byte CBOR int</t>
                    </li>
                  </ul>
                </li>
                <li>
                  <t>More examples</t>
                </li>
              </ul>
            </li>
            <li>
              <t>EAD updates and details
              </t>
              <ul spacing="normal">
                <li>
                  <t>Definition of EAD item</t>
                </li>
                <li>
                  <t>Definition of critical / non-critical EAD item</t>
                </li>
              </ul>
            </li>
            <li>
              <t>New section in Appendix D: Unauthenticated Operation</t>
            </li>
            <li>
              <t>Clarifications
              </t>
              <ul spacing="normal">
                <li>
                  <t>Lengths used in EDHOC-KDF</t>
                </li>
                <li>
                  <t>Key derivation from PRK_out
                  </t>
                  <ul spacing="normal">
                    <li>
                      <t>EDHOC-KeyUpdate and EDHOC-Exporter</t>
                    </li>
                  </ul>
                </li>
                <li>
                  <t>Padding</t>
                </li>
              </ul>
            </li>
            <li>
              <t>Security considerations
              </t>
              <ul spacing="normal">
                <li>
                  <t>When a change in a message is detected</t>
                </li>
                <li>
                  <t>Confidentiality in case of active attacks</t>
                </li>
                <li>
                  <t>Connection identifiers should be unpredictable</t>
                </li>
                <li>
                  <t>Maximum length of message_2</t>
                </li>
              </ul>
            </li>
            <li>
              <t>Minor bugs</t>
            </li>
          </ul>
        </li>
        <li>
          <t>From -13 to -14
          </t>
          <ul spacing="normal">
            <li>
              <t>Merge of section 1.1 and 1.2</t>
            </li>
            <li>
              <t>Connection and key identifiers restricted to be byte strings</t>
            </li>
            <li>
              <t>Representation of byte strings as one-byte CBOR ints (-24..23)</t>
            </li>
            <li>
              <t>Simplified mapping between EDHOC and OSCORE identifiers</t>
            </li>
            <li>
              <t>Rewrite of 3.5
              </t>
              <ul spacing="normal">
                <li>
                  <t>Clarification of authentication related operations performed by EDHOC</t>
                </li>
                <li>
                  <t>Authentication related verifications, including old section 3.5.1, moved to new appendix D</t>
                </li>
              </ul>
            </li>
            <li>
              <t>Rewrite of 3.8
              </t>
              <ul spacing="normal">
                <li>
                  <t>Move content about use of EAD to new appendix E</t>
                </li>
                <li>
                  <t>ead_value changed to bstr</t>
                </li>
              </ul>
            </li>
            <li>
              <t>EDHOC-KDF updated
              </t>
              <ul spacing="normal">
                <li>
                  <t>transcript_hash argument removed</t>
                </li>
                <li>
                  <t>TH included in context argument</t>
                </li>
                <li>
                  <t>label argument is now type uint, all labels replaced</t>
                </li>
              </ul>
            </li>
            <li>
              <t>Key schedule updated
              </t>
              <ul spacing="normal">
                <li>
                  <t>New salts derived to avoid reuse of same key with expand and extract</t>
                </li>
                <li>
                  <t>PRK_4x3m renamed PRK_4e3m</t>
                </li>
                <li>
                  <t>K_4 and IV_4 derived from PRK_4e3m</t>
                </li>
                <li>
                  <t>New PRK: PRK_out derived from PRK_4e3m and TH_4</t>
                </li>
                <li>
                  <t>Clarified main output of EDHOC is the shared secret PRK_out</t>
                </li>
                <li>
                  <t>Exporter defined by EDHOC-KDF and new PRK PRK_exporter derived from PRK_out</t>
                </li>
                <li>
                  <t>Key update defined by Expand instead of Extract</t>
                </li>
              </ul>
            </li>
            <li>
              <t>All applications of EDHOC-KDF in one place</t>
            </li>
            <li>
              <t>Update of processing
              </t>
              <ul spacing="normal">
                <li>
                  <t>EAD and ID_CRED passed to application when available</t>
                </li>
                <li>
                  <t>identity verification and credential retrieval omitted in protocol description</t>
                </li>
                <li>
                  <t>Transcript hash defined by plaintext messages instead of ciphertext</t>
                </li>
                <li>
                  <t>Changed order of input to TH_2</t>
                </li>
                <li>
                  <t>Removed general G_X checking against selfie-attacks</t>
                </li>
              </ul>
            </li>
            <li>
              <t>Support for padding of plaintext</t>
            </li>
            <li>
              <t>Updated compliance requirements</t>
            </li>
            <li>
              <t>Updated security considerations
              </t>
              <ul spacing="normal">
                <li>
                  <t>Updated and more clear requirements on MAC length</t>
                </li>
                <li>
                  <t>Clarification of key confirmation</t>
                </li>
                <li>
                  <t>Forbid use of same key for signature and static DH</t>
                </li>
              </ul>
            </li>
            <li>
              <t>Updated appendix on message deduplication</t>
            </li>
            <li>
              <t>Clarifications of
              </t>
              <ul spacing="normal">
                <li>
                  <t>connection identifiers</t>
                </li>
                <li>
                  <t>cipher suites, including negotiation</t>
                </li>
                <li>
                  <t>EAD</t>
                </li>
                <li>
                  <t>Error messages</t>
                </li>
              </ul>
            </li>
            <li>
              <t>Updated media types</t>
            </li>
            <li>
              <t>Applicability template renamed application profile</t>
            </li>
            <li>
              <t>Editorials</t>
            </li>
          </ul>
        </li>
        <li>
          <t>From -12 to -13
          </t>
          <ul spacing="normal">
            <li>
              <t>no changes</t>
            </li>
          </ul>
        </li>
        <li>
          <t>From -12:
          </t>
          <ul spacing="normal">
            <li>
              <t>Shortened labels to derive OSCORE key and salt</t>
            </li>
            <li>
              <t>ead_value changed to bstr</t>
            </li>
            <li>
              <t>Removed general G_X checking against selfie-attacks</t>
            </li>
            <li>
              <t>Updated and more clear requirements on MAC length</t>
            </li>
            <li>
              <t>Clarifications from Kathleen, Stephen, Marco, Sean, Stefan,</t>
            </li>
            <li>
              <t>Authentication Related Verifications moved to appendix</t>
            </li>
            <li>
              <t>Updated MTI section and cipher suite</t>
            </li>
            <li>
              <t>Updated security considerations</t>
            </li>
          </ul>
        </li>
        <li>
          <t>From -11 to -12:
          </t>
          <ul spacing="normal">
            <li>
              <t>Clarified applicability to KEMs</t>
            </li>
            <li>
              <t>Clarified use of COSE header parameters</t>
            </li>
            <li>
              <t>Updates on MTI</t>
            </li>
            <li>
              <t>Updated security considerations</t>
            </li>
            <li>
              <t>New section on PQC</t>
            </li>
            <li>
              <t>Removed duplicate definition of cipher suites</t>
            </li>
            <li>
              <t>Explanations of use of COSE moved to Appendix C.3</t>
            </li>
            <li>
              <t>Updated internal references</t>
            </li>
          </ul>
        </li>
        <li>
          <t>From -10 to -11:
          </t>
          <ul spacing="normal">
            <li>
              <t>Restructured section on authentication parameters</t>
            </li>
            <li>
              <t>Changed UCCS to CCS</t>
            </li>
            <li>
              <t>Changed names and description of COSE header parameters for CWT/CCS</t>
            </li>
            <li>
              <t>Changed several of the KDF and Exporter labels</t>
            </li>
            <li>
              <t>Removed edhoc_aead_id from info (already in transcript_hash)</t>
            </li>
            <li>
              <t>Added MTI section</t>
            </li>
            <li>
              <t>EAD: changed CDDL names and added value type to registry</t>
            </li>
            <li>
              <t>Updated Figures 1, 2, and 3</t>
            </li>
            <li>
              <t>Some correction and clarifications</t>
            </li>
            <li>
              <t>Added core.edhoc to CoRE Resource Type registry</t>
            </li>
          </ul>
        </li>
        <li>
          <t>From -09 to -10:
          </t>
          <ul spacing="normal">
            <li>
              <t>SUITES_I simplified to only contain the selected and more preferred suites</t>
            </li>
            <li>
              <t>Info is a CBOR sequence and context is a bstr</t>
            </li>
            <li>
              <t>Added kid to UCCS example</t>
            </li>
            <li>
              <t>Separate header parameters for CWT and UCCS</t>
            </li>
            <li>
              <t>CWT Confirmation Method kid extended to bstr / int</t>
            </li>
          </ul>
        </li>
        <li>
          <t>From -08 to -09:
          </t>
          <ul spacing="normal">
            <li>
              <t>G_Y and CIPHERTEXT_2 are now included in one CBOR bstr</t>
            </li>
            <li>
              <t>MAC_2 and MAC_3 are now generated with EDHOC-KDF</t>
            </li>
            <li>
              <t>Info field “context” is now general and explicit in EDHOC-KDF</t>
            </li>
            <li>
              <t>Restructured Section 4, Key Derivation</t>
            </li>
            <li>
              <t>Added EDHOC MAC length to cipher suite for use with static DH</t>
            </li>
            <li>
              <t>More details on the use of CWT and UCCS</t>
            </li>
            <li>
              <t>Restructured and clarified Section 3.5, Authentication Parameters</t>
            </li>
            <li>
              <t>Replaced 'kid2' with extension of 'kid'</t>
            </li>
            <li>
              <t>EAD encoding now supports multiple ead types in one message</t>
            </li>
            <li>
              <t>Clarified EAD type</t>
            </li>
            <li>
              <t>Updated message sizes</t>
            </li>
            <li>
              <t>Replaced “perfect forward secrecy” with “forward secrecy”</t>
            </li>
            <li>
              <t>Updated security considerations</t>
            </li>
            <li>
              <t>Replaced prepended 'null' with 'true' in the CoAP transport of message_1</t>
            </li>
            <li>
              <t>Updated CDDL definitions</t>
            </li>
            <li>
              <t>Expanded on the use of COSE</t>
            </li>
          </ul>
        </li>
        <li>
          <t>From -07 to -08:
          </t>
          <ul spacing="normal">
            <li>
              <t>Prepended C_x moved from the EDHOC protocol itself to the transport mapping</t>
            </li>
            <li>
              <t>METHOD_CORR renamed to METHOD, corr removed</t>
            </li>
            <li>
              <t>Removed bstr_identifier and use bstr / int instead; C_x can now be int without any implied bstr semantics</t>
            </li>
            <li>
              <t>Defined COSE header parameter 'kid2' with value type bstr / int for use with ID_CRED_x</t>
            </li>
            <li>
              <t>Updated message sizes</t>
            </li>
            <li>
              <t>New cipher suites with AES-GCM and ChaCha20 / Poly1305</t>
            </li>
            <li>
              <t>Changed from one- to two-byte identifier of CNSA compliant suite</t>
            </li>
            <li>
              <t>Separate sections on transport and connection id with further sub-structure</t>
            </li>
            <li>
              <t>Moved back key derivation for OSCORE from draft-ietf-core-oscore-edhoc</t>
            </li>
            <li>
              <t>OSCORE and CoAP specific processing moved to new appendix</t>
            </li>
            <li>
              <t>Message 4 section moved to message processing section</t>
            </li>
          </ul>
        </li>
        <li>
          <t>From -06 to -07:
          </t>
          <ul spacing="normal">
            <li>
              <t>Changed transcript hash definition for TH_2 and TH_3</t>
            </li>
            <li>
              <t>Removed "EDHOC signature algorithm curve" from cipher suite</t>
            </li>
            <li>
              <t>New IANA registry "EDHOC Exporter Label"</t>
            </li>
            <li>
              <t>New application defined parameter "context" in EDHOC-Exporter</t>
            </li>
            <li>
              <t>Changed normative language for failure from MUST to SHOULD send error</t>
            </li>
            <li>
              <t>Made error codes non-negative and 0 for success</t>
            </li>
            <li>
              <t>Added detail on success error code</t>
            </li>
            <li>
              <t>Aligned terminology "protocol instance" -&gt;  "session"</t>
            </li>
            <li>
              <t>New appendix on compact EC point representation</t>
            </li>
            <li>
              <t>Added detail on use of ephemeral public keys</t>
            </li>
            <li>
              <t>Moved key derivation for OSCORE to draft-ietf-core-oscore-edhoc</t>
            </li>
            <li>
              <t>Additional security considerations</t>
            </li>
            <li>
              <t>Renamed "Auxililary Data" as "External Authorization Data"</t>
            </li>
            <li>
              <t>Added encrypted EAD_4 to message_4</t>
            </li>
          </ul>
        </li>
        <li>
          <t>From -05 to -06:
          </t>
          <ul spacing="normal">
            <li>
              <t>New section 5.2 "Message Processing Outline"</t>
            </li>
            <li>
              <t>Optional inital byte C_1 = null in message_1</t>
            </li>
            <li>
              <t>New format of error messages, table of error codes, IANA registry</t>
            </li>
            <li>
              <t>Change of recommendation transport of error in CoAP</t>
            </li>
            <li>
              <t>Merge of content in 3.7 and appendix C into new section 3.7 "Applicability Statement"</t>
            </li>
            <li>
              <t>Requiring use of deterministic CBOR</t>
            </li>
            <li>
              <t>New section on message deduplication</t>
            </li>
            <li>
              <t>New appendix containin all CDDL definitions</t>
            </li>
            <li>
              <t>New appendix with change log</t>
            </li>
            <li>
              <t>Removed section "Other Documents Referencing EDHOC"</t>
            </li>
            <li>
              <t>Clarifications based on review comments</t>
            </li>
          </ul>
        </li>
        <li>
          <t>From -04 to -05:
          </t>
          <ul spacing="normal">
            <li>
              <t>EDHOC-Rekey-FS -&gt; EDHOC-KeyUpdate</t>
            </li>
            <li>
              <t>Clarification of cipher suite negotiation</t>
            </li>
            <li>
              <t>Updated security considerations</t>
            </li>
            <li>
              <t>Updated test vectors</t>
            </li>
            <li>
              <t>Updated applicability statement template</t>
            </li>
          </ul>
        </li>
        <li>
          <t>From -03 to -04:
          </t>
          <ul spacing="normal">
            <li>
              <t>Restructure of section 1</t>
            </li>
            <li>
              <t>Added references to C509 Certificates</t>
            </li>
            <li>
              <t>Change in CIPHERTEXT_2 -&gt; plaintext XOR KEYSTREAM_2 (test vector not updated)</t>
            </li>
            <li>
              <t>"K_2e", "IV_2e" -&gt; KEYSTREAM_2</t>
            </li>
            <li>
              <t>Specified optional message 4</t>
            </li>
            <li>
              <t>EDHOC-Exporter-FS -&gt; EDHOC-Rekey-FS</t>
            </li>
            <li>
              <t>Less constrained devices SHOULD implement both suite 0 and 2</t>
            </li>
            <li>
              <t>Clarification of error message</t>
            </li>
            <li>
              <t>Added exporter interface test vector</t>
            </li>
          </ul>
        </li>
        <li>
          <t>From -02 to -03:
          </t>
          <ul spacing="normal">
            <li>
              <t>Rearrangements of section 3 and beginning of section 4</t>
            </li>
            <li>
              <t>Key derivation new section 4</t>
            </li>
            <li>
              <t>Cipher suites 4 and 5 added</t>
            </li>
            <li>
              <t>EDHOC-EXPORTER-FS - generate a new PRK_4x3m from an old one</t>
            </li>
            <li>
              <t>Change in CIPHERTEXT_2 -&gt; COSE_Encrypt0 without tag (no change to test vector)</t>
            </li>
            <li>
              <t>Clarification of error message</t>
            </li>
            <li>
              <t>New appendix C applicability statement</t>
            </li>
          </ul>
        </li>
        <li>
          <t>From -01 to -02:
          </t>
          <ul spacing="normal">
            <li>
              <t>New section 1.2 Use of EDHOC</t>
            </li>
            <li>
              <t>Clarification of identities</t>
            </li>
            <li>
              <t>New section 4.3 clarifying bstr_identifier</t>
            </li>
            <li>
              <t>Updated security considerations</t>
            </li>
            <li>
              <t>Updated text on cipher suite negotiation and key confirmation</t>
            </li>
            <li>
              <t>Test vector for static DH</t>
            </li>
          </ul>
        </li>
        <li>
          <t>From -00 to -01:
          </t>
          <ul spacing="normal">
            <li>
              <t>Removed PSK method</t>
            </li>
            <li>
              <t>Removed references to certificate by value</t>
            </li>
          </ul>
        </li>
      </ul>
    </section>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>The authors want to thank
<contact fullname="Christian Amsüss"/>,
<contact fullname="Alessandro Bruni"/>,
<contact fullname="Karthikeyan Bhargavan"/>,
<contact fullname="Carsten Bormann"/>,
<contact fullname="Timothy Claeys"/>,
<contact fullname="Baptiste Cottier"/>,
<contact fullname="Roman Danyliw"/>,
<contact fullname="Martin Disch"/>,
<contact fullname="Martin Duke"/>,
<contact fullname="Donald Eastlake"/>,
<contact fullname="Lars Eggert"/>,
<contact fullname="Stephen Farrell"/>,
<contact fullname="Loïc Ferreira"/>,
<contact fullname="Theis Grønbech Petersen"/>,
<contact fullname="Felix Günther"/>,
<contact fullname="Dan Harkins"/>,
<contact fullname="Klaus Hartke"/>,
<contact fullname="Russ Housley"/>,
<contact fullname="Stefan Hristozov"/>,
<contact fullname="Marc Ilunga"/>,
<contact fullname="Charlie Jacomme"/>,
<contact fullname="Elise Klein"/>,
<contact fullname="Erik Kline"/>,
<contact fullname="Steve Kremer"/>,
<contact fullname="Alexandros Krontiris"/>,
<contact fullname="Ilari Liusvaara"/>,
<contact fullname="Rafa Marín-López"/>,
<contact fullname="Kathleen Moriarty"/>,
<contact fullname="David Navarro"/>,
<contact fullname="Karl Norrman"/>,
<contact fullname="Salvador Pérez"/>,
<contact fullname="Radia Perlman"/>,
<contact fullname="David Pointcheval"/>,
<contact fullname="Maïwenn Racouchot"/>,
<contact fullname="Eric Rescorla"/>,
<contact fullname="Michael Richardson"/>,
<contact fullname="Thorvald Sahl Jørgensen"/>,
<contact fullname="Zaheduzzaman Sarker"/>,
<contact fullname="Jim Schaad"/>,
<contact fullname="Michael Scharf"/>,
<contact fullname="Carsten Schürmann"/>,
<contact fullname="John Scudder"/>,
<contact fullname="Ludwig Seitz"/>,
<contact fullname="Brian Sipos"/>,
<contact fullname="Stanislav Smyshlyaev"/>,
<contact fullname="Valery Smyslov"/>,
<contact fullname="Peter van der Stok"/>,
<contact fullname="Rene Struik"/>,
<contact fullname="Vaishnavi Sundararajan"/>,
<contact fullname="Erik Thormarker"/>,
<contact fullname="Marco Tiloca"/>,
<contact fullname="Sean Turner"/>,
<contact fullname="Michel Veillette"/>,
<contact fullname="Mališa Vučinić"/>,
<contact fullname="Paul Wouters"/>,
and
<contact fullname="Lei Yan"/>
for reviewing and commenting on intermediate versions of the draft. We are especially indebted to the late <contact fullname="Jim Schaad"/> for his continuous reviewing and implementation of early versions of this and other drafts.</t>
      <t>Work on this document has in part been supported by the H2020 project SIFIS-Home (grant agreement 952652).</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
ObW6q2GQpvKq9gKzBEnKeaTYCB+7U292JXpkKVqPekBoxveyPgw9kvJzmvqn
39Oa6Wv8zdlUTWcHxBOznHenr96jGATvrIoP8BsFJdpeWBRdRc7FIqkcU0dm
42v6kNgbu0yCWYgM6mN361eDg1/GPP2YzAYifq2zFIkMJpUbkx1DrgcL3ub5
KPYkWF05DAERzEMeDv761dELE1ZHO3hzcMiRC/g5LYokEY7igJmpuwuSSKpz
9vbVG1kELAfpu6t+auuwGbT22kNNj6/vkAm1tkiQMq0MpJmwCdcHr92kFMSl
tQZBkUj6u/82GEQHQEpibOKpVM5HOpfTK1AfFi5uhNKIcYwX6SUyegnP+fN6
mmbpdEy1J8+/OnoOZPqmSKWhkI4+GPze9DFyePDpoaKx2Ilaj7vc9i6ukF5Y
kw/Vp2AwsWU5mCqs9WR/0D4Ck0Rfhi/0ojJeACU6efUm2u58d8s30uJ2Ag1M
OUFMIec8DBdU0SACieEZODsVpNJQQxfC4MxeDmI1DGglRJvSY8ien843ULGS
05LEH9wNEwDYS7hHg9bvDNW813yvjinr6e4pX8E9hUfNx/2IUqgePIi27zkV
PX+/qeDRYKq90VimMif/KplO4w++m2TNYJTPgPPjYNuNTmKfPp2929/ZGYz2
95wtoEjKyh9hyAXqXgy+I0jCxyCM4H8nyZhzWPCP3WSypGiNlOWPUEOlOBbs
Gzb4MJtr4grGb3xkjQTR0kczSGNe5MxpxvKOuYWVLNT1UNFqn9l1viDraCB4
u5WaR5R/graCWVKC/TrHRKsHa3Sb7cthnhtrOjMDpZ2syJeWsjrW7jNL6ELT
fSHXOV5fV9rv/OX78VC/QoQJigy6eMiBj4xsMisMU/w+6plwPWIoGrz4PYL6
6/ffcyrOdiPMQstQPBlKIQqTonjuHUY0ySUFlQDBwdRBnn562/cSS6bqNTJw
WERamjSL7lrqTgw3r63QOWWEhNIWdznAQhh6crJAik6lbEax3HQASqQR4ciy
OinGNl9nDAzOA3u6u0/1UjZQfBryS3m/F33fJ7hvm4++6xP0N9D+jduS3E4V
4ol4k3KFXyLh9M2pBRtjzUEt72RW+DiQX8D9gczTI5Ts8742rNndDbx+G26H
3k69H8HiTuo6nG0/Wdb7fTQq5AnxddM0OO/Zwetz+gr3cwrHItVt8MK57+zq
VBIjMsjWVRWASf6F92ggwaEWFGveQq7U9l2fryHfydOoF2x8Y6+BluTA7f7W
FtlEzN552ZZsIdnecDT49V1HY/xyP/VoaJr2o8Gv8GhOvm8eTX117mj4PLsO
5+T7zzocrmL1fd/SyBM+HNsY4qcfjuxeFx604VTtwutdeJ1RlqVd8dFt1BwG
xt/DbVNO/lz2nZhYwgNWnnVOBRSGTdyEm9x0L1YeoY5wu+LNdAVW5s4bxuzh
bH2y92gYqFRa6KuZfFsLcX4ZTGPeNI/eIULj0xSh5YMvKg1Z0bjhlnheeo0D
ev1KfUSvdpTSaN5I1/M8WtMjYXjvluByFP3GDsdll+F5/kYHTbV+Mn+sKaS8
cO9JQLhqXunW1rde7kSsaWrC+PgmTUeuqFuEejZMamSz3zEzB/h3QlcGftlt
qadVtpT6+PRcUj6+fDAFDRDQ+EFX+Y+2RzeqNCuuwfCfo9F0YqpXbLof+SX0
m00LcGqO+fr1z1Ry7pqPpIiW+eSCvobH9mHjn/7n//G///jjj/J23wplJoka
1AU4+oaSQblgwhxcXsdM3DABOROegrt7L+MOzKWSGbUH9E/CHBwfqG/b8DVF
xPR8aUswv3OW9LprEsn8VevmdTKlHgg/ea4X64Js2bXSA7gBD3RvEuxmVEqY
qLJWqLM6E1IXSX91/P3Z+enxwZv3Y8MclKeQkBZhcQumSvTjgjbfO4bhJb2o
e5RRMIrFlu0twGlaQNQ+AAskY19ACANl46m8D29ub8FDptJ0xwgTJaz0YxBq
e+vkz3aAjvd3g/c9qggESBLZ8Ppe8HoTApPu+VmOe+IhMAkgMIER1Dy8cYSn
tITd1iXAM5tAyAPsBwPUQbh75/vPgvctCPEZkMvQ2Vm0vA5b60cjQMWrR67E
ebj+Lhx3mUBK3DQV6FVw1crAGAnzDnEqvF0k2aB9NMuxl4Svpe1cnfWoWCrS
tIMpRjB5XFQ3efFhALTjMgOGmzC/lZhxObVPD8WmLzkQrfoEwcAoE90mon5N
Cbe+ADIZddv/vSMmzJPvtNrKkfWcwkB/o0nbaRT6oZN+pR1jm/aB0Ni4N7ZQ
VWGwovEPWD8ai+xs4SrXoENNqSAleqQr9OrphDCgXecw6oWdPeEAZ9EDeucB
U1vitM6sklJFPfe4XcIVNu8Ieo36sHedXotmxq4SNua2FteuNIQwXkpaPOfe
ydGxi5U9zq7TIqfkfJfZ4MsGbg/b/Gu21qfUwuzyZMkB46ElxdJnXJBYrBZM
D7oDbn65op7pzt6T1oxi8Aw/4tInatORlsaotLX1qsbz9OZZQIv3I0RSr3yZ
fcC/cyy2pAuKa3YcVJbCl3q6lg4FS/QrS7VCvL/zfTu9k6nCt1iNMfksqBh5
lbO2zdf0iq1poqMNaDRADJihoSHZUk81CMPjXnOKefYNT5M60QW47WgVp0XY
5sSvfYnVpS604q5Gi8H5dg/nSvhqPAihyE1u0puEXJQUPIyFZ/v1ADFEIaoa
wzVvryRzipxsUqmWC8jBnaZwk1jr4s9QqeMSBViutR4RRO06jZga1PcwswgO
F4mPmzWlnHJMWGCbsZ4bvhD47xPDkep1BL2Bly6xSR6qwb9WIYG01DnSdLyq
zjX/whcYICrgXXyfHpLkWaMrKpyWtjSBLMCHXmdBsixg+gp9xTaZsWwTdSWX
EZOaiT+jpl7EmuBheVzZks8VFjflF7U5TSPwIejKZDOlWVCg1HXKJunRB2fy
hBb4fbo7JqJ84KvudlRQ9Un79TJAQzRPYFRSrVG7aamEv2Hb5xFbq+jvY8bA
HR8Fhon+GFqErckupOAj8ShT788FZfq83CBWS3kO122myBZTdGCKmVyJW12U
Uyy0i2eREtEujN8WzcYspzANxY3CZQm1r9OG1YXhLcHWokdwDR9RF04HrEhK
aDlQScGFjpiU6C3XfyL5DQQUKQf1I0dQks84S24eA6nIfQC/C7ypgjA5SjSi
+uNcWzZJVkSfgiRyDvKiEue2240Jue/XFURgPtV06IkiHTSiZJCIQXViZHhb
hcGFKNuZ09Ku9CLIdJdSXa0xdL1GEz6NYJHryFisxI1KE+U3G/IyfImwflhT
ZlhLvSy938/UnbF1TWhirkNZ2y6DwLsbiSY1uhTiyD4UmzPEnXO0HuTHOSxH
lLIStWesoNx4kbgkr3oWCjDcZRJnRN4ojpJrePQxcKvP8aygsnCwcgvYAT7j
YXTKfWhcVK894wZwdGEmftLlcKQsoNPtN5FzWV4b1Xkyp+Jfc5mxfcnqbmIa
E5BZvXaRoxguFo7qpGqYruuBCBgClwBTr1CixsamkulKWWaa0ArwmLjyLrpT
hbyYlYOMejHZaZtRkAICgJnkevJU2OckS15xJ0NUdyEJdajXUJGlqpaoGkbK
FiTXSlB9kKaoFJqvxM+dEty2zWhzMknVmzvijvu+kUi/ARQfFujpsKqeFPcu
19ZlQYeHDQIWXl3f6g+1VEqpF0sYVjgwJU3MrF6fxedMi4UAuiYLrB+uXEEn
EiRuArn/HNmEBKT6VL3FrYEvuRDQla6T9HwkeW5z99h8TstvpY7b7UBzOwOw
0XKYYMLVSlqEIqReztvlhhErgBRJWqL6yTnQCcl487ahfLpc3VJZF5/CYAxi
L1NfXC+Qzra2jpw4GxQUd1KwQtHK8yEyZzUgDSNT+NDgsAtZVyt8MD5m78cF
S3AYTkyCvdGPzUAafEFFFAK42hxdRuF6ODZS8WV+zTG1CA4Mg+arX3JBakxs
JBoxdPIFwHXt0UMT30nFED3Lh8+7mcT+YlLzsFdCX7KkmnXZ3IP9lsQhM7+r
ORWIQCOQeJYjMWK9CMR5+0gtAWlry1dC8M03o0BMrlcyMtE0FHrX4lr0g7J/
kTN1vG/R1ax7rpX+tiiuxDgbD+lbUoAfY0XR4XA84UJDnAK3tb21JRXuvoz+
NRp/gWNH/w4Po7ORKyh8GY2+wOTxFkclub5kWYP2aNB6YjH2PHULRy9zEd82
a/P5+GwfSOCKANrc+nq/Wyy2kFbkD6QD4gkRKIMwMsrmrNRD9uGNQ1rddQyS
JnJbMRC0ZoPaAqUd6aJIWozCWlKIrQbgmlY8rvob70wq6Ja1kmEKUtPAATfJ
pzXYFLeub2J2o5inPHwPDVeq4XsNplIqsMGm2Zgqwb6E1Z5U1pPzGsUg+eIw
a0y8ABVGl3yBqcZ8+B6LYhJjOjApIBAnHQUk+Tsfgod9g2p5iRLwTJNcJGqD
IwMIj1PIFF4MIPbpn2VTijjNaEI296VlnfCL4BIsoGWmoEA9iW3NKpacYEOo
aUeT2HSr8lN8AXcqqJUPpRYft/367NStMPAE4g5dPRPRXodRD9sfUSJpCxZs
++xwN4zLBHVZGzdqgfboMmUdktpacVGeOidwMvVvlVP6t2ErWG+ipCrzIg23
ZM42BEEupEEfkfV6bLVVgf6pkvr6Zrc1mhUfvqO8qFuDKYtl7wr1B+OhKTK2
hh7tiblRvORkMrxhvQsQFEQOWKaEsgDkmsQkZntA1Mtktk1lnOS0/GKcSCOF
yXE5bXeMTP4hZiEautexfks9HdjvSPSGANdM/qIeaH0DG06Xwme/lhosdNRh
rCxyBrHm6hXmQqYb82wkg2PJaYSxbdo9jF5zLKmaM8O6obkvwklPE7W7ynOq
Qd3KWIhLkQJRcX2UaLZ25fbrDrAvuLFSjbS2WPqUKBiLX5PL1lOwmZn4m/Mu
MMFYXoLVnAJeEuq/zAZUr/RrbQjkhGLEEo6S2r5CUYv2/q4+IKnsmF6XYmRf
EaTpdp9uaq9qrJeG7AFpDb0RaNpyJjWk2Q7BvXY519twU6/1WeXMJUozo09d
OzMhEWQnQJxzNgK5M1Ypm3NCt833kiKAt3V+ztqyoT/+kP4hdflaxPMxiufj
jeL52Ijn47p4Pv41xPOxiOdfv//+/eHJu5fHp9QbadxRwdNIzo03BmonxGBZ
38QAA0x7vrTAJhnWnZE05DOjD+t3tEPgCyFIkXXtl7Quq43rstp/BnH9/hck
rqchcVXvbBhA1aSzCNe1+AZqkZAUK4TxfT1cah/+6wjSdrQtzRFe9rZdLPLn
hpRpEg3aReT609vWYV1Dfau/BOsRr92Ut8P0bhpjVh4spgCN8NYVDQqovRsi
gAYHQ5FWYwKwpYiOBkABaH73O4S8KfiiAVb6F+uu4+j3vw8vLZ2PBrGIXPkz
EwVceyIAFRakIT/KZNsRXBOrFRyYaeiy+bDuuT5XUL9lTTu4pnHXmughLoXv
goq468UXhOD/pXRcXrZvHT2w1zVsTs9uOHIDoCNy7rCnVjxIQaEDctc5KuLq
BXtiop0t4OuUN4jsD2ZhvL23hi7Cwa+HwGeKV+/z4j3fT0AZ+uVXQM322YhU
u1EeadmZuZJ2cV+Kd9XToppEqslou8PdWtV+w2Haellsup99IW5dORwtR6+i
TVt/KEZ3pMw961nmoLSM9OnrNLkhbKWq/hTk3kbcnosi5pO6v4yQcPqr8fvf
yyOKa+9jKjwOD3VRUx1TCsB9yYhAJNzKKGi79+kwggbYcqm4lY6710QDkngp
wNRKm9SKXL7xtS9N5DWHiLcCUWPLdOe+ByWJXzWWET2u2zxbsM/vfXvL9QE6
mZtR7uzeqiE8/hXb9fRUmmd6pw/m4PlOmq7nqumG4Fra/mh6E/1Xo9N8RMr4
bTB2nf1r1/hG9HUjicUcuI+UVHdr4/Xk4zRJZoEqTGF9JmpfV07dnQZ+hLHZ
gcX7LwOc+w7YhNlYi3o9/iXUa9Fgmsbadv163G5UrWvT48/Qpsdt2vQmB7vc
daeEtvjXtS4pSeRY+YiaivPfe4NqTeFlGgxbcGWiGRo7mo55Xg+sGaNaggPr
ah38mTq3V639JacSJ+lc9e9tISN3Kt4hBxloPemg+Ao5iU3FFAm+qHMfzI5Y
tcxDu3tLtaDvEFu4duTp9qa+iJjU7S1ndjs9LGx0KyWgKGKDT+LPbEZp4fWe
Dd+vYg1rMkG1LsXjWsZW6GhqnHf0RhrNSrkY5drB0JvO7v4WkppR9Ne3kDRN
JBM0kUw2mkgmRsGf1E0kk1/DRDIRE4m5n5Mu88j9vFLhHoyR4i6H0qTpUNqo
rU9IW2eZyTAAFaD+CXR2WuTP1dXHDV190sasrbI+YXHS1GjlNCD9i6WrCUqW
kVXGf2pqeF27GHcp45OfqIzfd4F3qjyjrkVt0sYdHD9frT3ZqNae/Cy11vS5
26TWTn6SWvvroEKD+UxUrfWxcL/cGbfP9uuqteN/iFprjv4nqLV3Kqkndyip
7aSkTUmdWNoV12LCGcY1VuvyzfeGY266OpzUANyvV9v7jDTYoLdEmMX7CvdV
XXUl3lLCJsqWFNcszuBw5m05P59u5djS5Jc7qatHj1rPBg9GHn8l7Vxozbaw
WMA1Ggo7CQMGC+6hq088CjhdPVTWTz5fWT8JlPWTn6ms46oC8UaJAOMFHtQj
tezYKPw7BZBdFUAm/fCkeRP/WQIIrVztQDbDMUCC1hJfYRAHRg5KZlI9xfEe
yW6moIvkZ7a5uifiKwoSWTao3ROvdn8Ref2hw6LSI830MNClzE5MUtRm59Zm
FYSDdilqnNIgdGv9Gj9DmAo/8dm10o9L6msylfhFgV47WAlQwbAOUGCxZSP3
42ukpzZnB7AualvCaNNG3dxdbjxXqwHnTZIuoTicwZfMBTi9PTt8e3pscmra
QoCaJ0q5r0ZsqFUH1k4cJVabTzG4ACvOxikXKmVjL2h/Unaeek/3Dg5fUTPx
uCUGdgNwScNsbwxAeO6h+Tnrv18wx+R+oRuTzzA2Tf6JjE2ndxmbfB8D71p2
UscvLm5sIh0m88Dz+oAO1yvl/Gwj2Em7EWzyX9IIdnKXEezklzGCTf7hRrDJ
L2kE+ydjhQZva8zQk6T/RGZo6eLPZ4Z3k2/HHzZM/0uyCz/fP28AWdM8uovm
0d3uFG4vXbiCdm/fnZ+8/ebgNZXX4Mi9IRV9hzswT00rggytrZJFxVlEF7cu
t6uWOqr7vEe7nqZo44opJbMa13D4qW2fGH9FzrG5NJT3vk1ZzUBJFvkt98Fi
ZUISHH+RbkN9A1M9oTCGUj9dU5YcNmpMTDo/iWt2iXEheaa+kh01wMRId5cN
XKPjnKLURHjZxxCzRr91jSlqT9DI4Xb94ch2rfCkiWVhE2zp9kONLKQSvgdM
M3W/ltkqwQCAsEjRV84j2G7h3zXW8d26hX/317Dw7zYt/LtdFv57RSGGW/iM
KMTdLgN/3TD0z2MR2r3DIrT70y1Cu/8Qi9CuswjtqkVo9w6LUGASIuwRE8+u
q+r5hfz9OSlNNQy8txGmZjDY/UyDwe7n+el37+enb6ByTV3a/SdSl+70zf9X
VJd2rbpEsm9D49n99eLt/+HeZJarfW8+h2d1G5MUyqC8HE2Y8HQZ5UUTIoZf
mlJvUe9DTXZSXYEzKVzL2YrrBpmqRR8ocPuhlM15CW8tuCwP77Sj3hfTPgoa
p0oTQYJQkLTvWnnUyn6QwsM1NBa3DsY+DawcRqbqjfnclz3T4lZOW8CHBvjQ
AL4kDHuDOPEhzbj5Oz0gXU0RDNTbWfN76rncMD9pVHhhTfkCcQoDPbi8TCRv
T8aV++HSo1wlHtFs3EZqj1JWt5SowCbdWAyEwFprfmtKIfEwWq6uVWF3UpHi
eHBIQyAILETXkrvQo1qWospz25yL9eUlPnnh6wKUH9LVCu/EPCg10vd3SW8E
wEsa+HGvGRxxLa2T6tU2uHaEKxJE5TYaBZ1S15OHnHM3MdaqA3aygAOju2a0
g2YZDvpWlSW6pc1bzMqea6Aluh7GWFbN7EVN85wp2N3ltZcO+yECmpPWx6Sh
bdroK1fgr54zmF5eVT5rsNbiCw8FC7dV3Fc0zdZJy/CmQlW4BUFpksYRm9PK
tqVjrg1cibvK4YXC5uM8RFCHhjstC4bHFrCL+FZKhdk2hcbagj3TC36s1MqP
WtopyYgR1CAiCapaxMJU6uG4SmShqK3ya7+gdM4DsmR+fHr6/vDt0bGvH4Cf
nHzz4i18gvm9NTHd1RclSqXwlxqjLUeDZUFNbpObbmDzZRsJxxhTKkYuDD2N
driYiakSKZZIiWjJtHOl1thjWkXZcYuF4LFEsfayBOvhXBNVYx3jOnFJuHJK
5VAWS5DQxZomg0Ptbk0rcA5BRgjEB78910AHS5HMNOuo1c5wJ0tRwuKPgD6m
UnDtvIYAhIIc8WFPLm3DROFHTooNayhHcVxeX279ZuB+zK+tf3f+/GbrB48C
P3gAU9PnH0AoZC8nrmnDzw9bv/nS/ZhfW//u/MG1yM9O9EN9CnbWMPZZ3GtZ
yy8EF/kZwdwVer7NWv6UeQWDT68LLr/sWsYwt6Siu7V8Sw1h2w20v+ZaJgiX
Ym0mQbhQn09runeJ5bNffi3ddJCvWgsV9HewSUGQMpIt8oxp2dbWsSeJOyqn
1AhaxE1UrZREHY+FeAlZdEVES46XymbYYEmwOXMB8lpWSc2C8BVqhGvEd+Rw
7JUD1nYZUYNOlWR0hfUqpDCdbU0alnhLPnIlAAq2QiFEubMIAc2qY426Cjui
BoHMuEn6CQsItAuPBHh7r2hnwRGMXLF5pyCI5D3LqcrQVYy+Ad9X0axUSPfQ
kzinV0Vki+E0Cxt3F0dX62WcDTAsk2u5+SLcDiAkVog4B4NhR8OKC5ceZ5eL
tLwK6+Y9eMMhakFNpAfMWc3wVa1sGDIqQjUWQqQ02ry6oTKAGYjSSeJgwbqH
l7FV6CGcXWGfHBTxNYCGLVFhkqzAT/hqbW26LL9pZxHVOoZwL+qlsKV5S2Ve
Ayy+1PxxJmJnSsQOmYidERH79LBWoSNAijEfZCBukJpC4qWUsgvqE7j+2AGp
tCVfGlp0awkrk06GT9Xz8FwdpLheIaawBTMa01Gr3w1GEZY3auUZuO4pCTG4
vb5H8y99vROpJoNnjexdq3uErkitFNGSWejqjcvWNq2yMnVuTvmIpNQMN6Ap
GA7tBVDKlsm7wGlrNrBYuRmAUQ9lPumivSC3cbrBIByWkuDkvu1Nu6OR2su6
2KU6t1WzYFDNS+inAf6js7jguRDq1HERByYcZ02+pXjQ3SeLKlnX2j3Nl7vs
FgWSPVaV6ThUM8YpWte4N1GB1Zfgigaj+8I09XsajELKL/BMjKwlgsURb2ja
DSjIN8lljuBMsS44a/TeTKKDtQVo1Zta11s1S2WfHpde2nalB6jsIxPTYp15
65R1PzUinJm6l6pyx9O6wU4DdNYYrFBfrpwFKDUJVmKVBXc2mUa/lncj2zKV
QCRd8Vdpsl1pyc5wSup051ZHBQ/FKIGbhu3kjHHU0gnpfb6KfDdUUzGOFlm2
FUhqlJWoEQUCmJMlCM6dJIUPvrP5RB2geN0cNLvpg8ASzobPpVbt22aANMpb
wf/M6ZbStUCsmViONiyylC+wgQTZQm81a6RFa8zXFQ0DOBa2kbAd77C/Ertt
2+9qTHa1ZnUoWCW14FYrR51tiAO0Xt1v29XxRLJfD/9gUwpXAp+SqdIw7DuI
M92I1kJwjta22L6pzpljKb12noqLds444q1kEpqtSehCu3oZ3V2IiKJ+Qqzu
1an8dk0WsaLGBVw/roCESGxK+5c+pGWQiXH65A5oIY3vgJiv5djCdC04fV3i
zJ9Td/hIh06wQZCZmypMmUUFFISzdMUOCzMjGahA8r4N46Rs3lQ9oaa14Iuv
2aqkxt9V+q7LuistRDQcApuH0JEAt5Had83KeA62fB7XdT63Rx2XnlLTI1zO
MwTGjAraly46M7ydQ+m5XlqD1Ghjbz732LjjsZJi+2rBHtoTLOSW4r3xBR8l
MtCxa1XfAKsdkhC/u1TXkeWGnrBxSEZTFGi52ApVFjDkREBz7IUQ2a6TIF+1
1N6JJ+Sg0Esjjn+KMmm7X3v1kK4i+QsxNn/jPDJroXo1Q7iKgyqCsVGVV2El
p1qUcUjJ5AXnLiu4FLVyWDMekwmqPewLAdXGFsdxWaOmjRqQT7yEU9NuXG1K
o5wotPqkmXE1dJRoV3klNqO4qtBRKiGTAYwzL8q1GkX94j//xx3cVs36yKVz
+x4GX+Lqv37/XZ896lzpbZPx76f+/P6H+lpqPx6hNv3cNcr9ftpHcebjL7FH
nrvrXwJWdI3yu58PmN/cuaMNdtk7dvS5P/VRWtDlX5Ga//tGnPnnwpdO0+pI
raqHHdfS2bpGd3WgMwR6HBDo8X0JdBntC2+0dLpGg+6QtpjToiz+FOhfHgGf
X5dVoWm8dmfLBC2m6bSMbrDmSZ2jC4nH+JM4ulyjN2wDh2qwGMdEzqQfW+tb
mfhS9zCOFSl9Wv1CfMYD06rYPbJv37K4sX0P7uOG0Z4oeA66W5BlyrzGjvZ/
aXa0fwc76qgu3calBDlwI09/AX5F+tioxQBzFdtiwJ5BqoTbONV8vZh5mzcp
66w6oUeKMKTv+vrZifIL8psJZspEbIf6XLOk4K9YHin+paxPx+ukNbo+SW5S
g2Vi6WGnaCmhX4DZ/D6BQTY6zZdJuA5SVSn215YAbyCTQF/KElFzJA/PmuqP
esulq4pJqnhXYUwQUadXLsW7NTnkHySn/DS280/Gd341OaVTTPlXIFT7/946
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
5ktjJuHZeH52tvT/ArdERhoXEAMA

-->

</rfc>
