<?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.6.35 (Ruby 3.0.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-lake-edhoc-20" category="std" consensus="true" submissionType="IETF" tocDepth="2" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.17.4 -->
  <front>
    <title abbrev="EDHOC">Ephemeral Diffie-Hellman Over COSE (EDHOC)</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-lake-edhoc-20"/>
    <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="2023" month="July" day="07"/>
    <area>SEC</area>
    <workgroup>LAKE Working Group</workgroup>
    <abstract>
      <?line 263?>

<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 267?>

<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">
                <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, 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">
              <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>G_X and G_Y are the ECDH ephemeral public keys of I and R, respectively.</li>
        <li>CRED_I and CRED_R are the authentication credentials containing the public authentication keys of I and R, respectively.</li>
        <li>ID_CRED_I and ID_CRED_R are used to identify and optionally transport the credentials of the Initiator and the Responder, respectively.</li>
        <li>Sig(I; . ) and Sig(R; . ) denote signatures made with the private authentication key of I and R, respectively.</li>
        <li>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.</li>
      </ul>
      <t>In order to create a "full-fledged" protocol some additional protocol elements are needed. EDHOC adds:</t>
      <ul spacing="normal">
        <li>Transcript hashes (hashes of message data) TH_2, TH_3, TH_4 used for key derivation and as additional authenticated data.</li>
        <li>Computationally independent keys derived from the ECDH shared secret and used for authenticated encryption of different messages.</li>
        <li>An optional fourth message giving key confirmation to I in deployments where no protected application data is sent from R to I.</li>
        <li>A keying material exporter and a key update function with forward secrecy.</li>
        <li>Secure negotiation of cipher suite.</li>
        <li>Method types, error handling, and padding.</li>
        <li>Selection of connection identifiers C_I and C_R which may be used in EDHOC to identify protocol state.</li>
        <li>Transport of external authorization data.</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 deterministically encoded. <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">
                <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">
                <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 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   ...   -2   -1    0    1   ...   23
CBOR encoding (1 byte):  37   36   ...   21   20   00   01   ...   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>0x21 is represented by 0x21 (CBOR encoding of the integer -2), not by 0x4121 (CBOR encoding of the byte string 0x21).</li>
            <li>0x0D is represented by 0x0D (CBOR encoding of the integer 13), not by 0x410D (CBOR encoding of the byte string 0x0D).</li>
            <li>0x18 is represented by 0x4118 (CBOR encoding of the byte string 0x18).</li>
            <li>0x38 is represented by 0x4138 (CBOR encoding of the byte string 0x38).</li>
            <li>0xABCD is represented by 0x42ABCD (CBOR encoding of the byte string 0xABCD).</li>
          </ul>
          <t>One way to 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>A connection identifier 0xFF (represented in the EDHOC message as 0x41FF, see <xref target="bstr-repr"/>) is converted to the OSCORE Recipient ID 0xFF.</li>
            <li>A connection identifier 0x21 (represented in the EDHOC message as 0x21, see <xref target="bstr-repr"/>) is converted to the OSCORE Recipient ID 0x21.</li>
          </ul>
        </section>
      </section>
      <section anchor="transport">
        <name>Transport</name>
        <t>Cryptographically, EDHOC does not put requirements on the lower layers. EDHOC is not bound to a particular transport layer and can even be used in environments without IP. In addition to the transport of messages including errors, the transport is responsible, where necessary, to handle:</t>
        <ul spacing="normal">
          <li>message loss,</li>
          <li>message reordering,</li>
          <li>message duplication,</li>
          <li>flow control,</li>
          <li>fragmentation and reassembly,</li>
          <li>demultiplexing EDHOC messages from other types of messages,</li>
          <li>denial-of-service protection,</li>
          <li>message correlation, see <xref target="ci-edhoc"/>.</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"/>.</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), as a unique dummy identifier.</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>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"/>).</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>The authentication credential is input to the integrity verification using the MAC fields.</li>
              <li>The authentication key of the authentication credential is used with the Signature_or_MAC field to verify proof-of-possession of the private key.</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="RFC5280"/>, 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. 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 credentials, see <xref target="applicability"/>.</t>
          <t>It is RECOMMENDED that the COSE 'kid' parameter, when used to identify the authentication credential, refers to a specific encoding. 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 the authentication credential may occur, then a potential common encoding for CBOR based credentials is bytewise lexicographic order of their deterministic encodings as specified in Section 4.2.1 of <xref target="RFC8949"/>.</t>
          <ul spacing="normal">
            <li>When the authentication credential is an X.509 certificate, CRED_x SHALL be the DER encoded certificate, encoded as a bstr <xref target="RFC9360"/>.</li>
            <li>When the authentication credential is a C509 certificate, CRED_x SHALL be the C509Certificate <xref target="I-D.ietf-cose-cbor-encoded-cert"/>.</li>
            <li>When the authentication credential is a CWT including a COSE_Key, CRED_x SHALL be the untagged CWT.</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>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"/>.</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>ID_CRED_R is intended to facilitate for the Initiator retrieving the authentication credential CRED_R and the authentication key of R.</li>
            <li>ID_CRED_I is intended to facilitate for the Responder retrieving the authentication credential CRED_I and the authentication key of I.</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. 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>ID_CRED_x = { 34 : COSE_CertHash }, for x = I or R,</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>ID_CRED_x = { 4 : kid_x }, where kid_x : kid, for x = I or R.</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>The CBOR map { 4 : kid_x } is replaced by the byte string kid_x.</li>
              <li>The representation of identifiers specified in <xref target="bstr-repr"/> is applied to kid_x.</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>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.</li>
              <li>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.</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>EDHOC AEAD algorithm</li>
          <li>EDHOC hash algorithm</li>
          <li>EDHOC MAC length in bytes (Static DH)</li>
          <li>EDHOC key exchange algorithm (ECDH curve)</li>
          <li>EDHOC signature algorithm</li>
          <li>Application AEAD algorithm</li>
          <li>Application hash algorithm</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>Cipher suites 1 and 3 use a larger tag length (128-bit) in EDHOC than in the Application AEAD algorithm (64-bit).</li>
            </ul>
          </li>
          <li>Cipher suites 4 and 5, based on ChaCha20, are intended for less constrained applications and only use 128-bit tag lengths.</li>
          <li>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.</li>
          <li>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 suite <xref target="CNSA"/>.</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>EAD_x = 0x00</li>
              </ul>
            </li>
            <li>
              <t>Two bytes padding, using the empty byte string (0x40) as ead_value:
              </t>
              <ul spacing="normal">
                <li>EAD_x = 0x0040</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>EAD_x = 0x0041e9</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>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"/>.</li>
            </ul>
          </li>
          <li>Authentication method (METHOD; see <xref target="method"/>).</li>
          <li>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).</li>
          <li>Type used to identify credentials (ID_CRED_I, ID_CRED_R; see <xref target="id_cred"/>).</li>
          <li>Use and type of external authorization data (EAD_1, EAD_2, EAD_3, EAD_4; see <xref target="AD"/>).</li>
          <li>Identifier used as the identity of the endpoint; see <xref target="identities"/>.</li>
          <li>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"/>.</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 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>if the EDHOC hash algorithm is SHA-2, then EDHOC_Extract( salt, IKM ) = HKDF-Extract( salt, IKM ) <xref target="RFC5869"/></li>
            <li>if the EDHOC hash algorithm is SHAKE128, then EDHOC_Extract( salt, IKM ) = KMAC128( salt, IKM, 256, "" )</li>
            <li>if the EDHOC hash algorithm is SHAKE256, then EDHOC_Extract( salt, IKM ) = KMAC256( salt, IKM, 512, "" )</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>The salt SHALL be TH_2.</li>
              <li>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.</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>SALT_3e2m is derived from PRK_2e, see <xref target="expand"/>, and</li>
              <li>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"/>),</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>SALT_4e3m is derived from PRK_3e2m, see <xref target="expand"/>, and</li>
              <li>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"/>),</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>info_label is an int</li>
            <li>context is a bstr</li>
            <li>length is the length of OKM in bytes</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>if the EDHOC hash algorithm is SHA-2, then EDHOC_Expand( PRK, info, length ) = HKDF-Expand( PRK, info, length ) <xref target="RFC5869"/></li>
            <li>if the EDHOC hash algorithm is SHAKE128, then EDHOC_Expand( PRK, info, length ) = KMAC128( PRK, info, L, "" )</li>
            <li>if the EDHOC hash algorithm is SHAKE256, then EDHOC_Expand( PRK, info, length ) = KMAC256( PRK, info, L, "" )</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>hash_length - length of output size of the EDHOC hash algorithm of the selected cipher suite</li>
            <li>key_length - length of the encryption key of the EDHOC AEAD algorithm of the selected cipher suite</li>
            <li>iv_length - length of the initialization vector of the EDHOC AEAD algorithm of the selected cipher suite</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>exporter_label is a registered uint from the EDHOC_Exporter Label registry (<xref target="exporter-label"/>)</li>
            <li>context is a bstr defined by the application</li>
            <li>length is a uint defined by the application</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 in a secure way. 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>Detect that an EDHOC message has been received, for example by means of port number, URI, or media type (<xref target="applicability"/>).</li>
          <li>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"/>).</li>
          <li>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.</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>METHOD - authentication method, see <xref target="method"/>.</li>
            <li>SUITES_I - array of cipher suites which the Initiator supports constructed as specified in <xref target="init-proc-msg1"/>.</li>
            <li>G_X - the ephemeral public key of the Initiator</li>
            <li>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"/>.</li>
            <li>EAD_1 - external authorization data, see <xref target="AD"/>.</li>
          </ul>
        </section>
        <section anchor="init-proc-msg1">
          <name>Initiator Processing 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>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).</li>
                <li>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.</li>
              </ul>
            </li>
            <li>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.</li>
            <li>Choose a connection identifier C_I and store it during the EDHOC session.</li>
            <li>Encode message_1 as a sequence of CBOR encoded data items as specified in <xref target="asym-msg1-form"/></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>Decode message_1 (see <xref target="CBOR"/>).</li>
            <li>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.</li>
            <li>If all processing completed successfully, and if EAD_1 is present, then make it available to the application for EAD processing.</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>G_Y_CIPHERTEXT_2 - the concatenation of G_Y (i.e., the ephemeral public key of the Responder) and CIPHERTEXT_2.</li>
          </ul>
        </section>
        <section anchor="asym-msg2-proc">
          <name>Responder Processing of Message 2</name>
          <t>The Responder SHALL compose message_2 as follows:</t>
          <ul spacing="normal">
            <li>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.</li>
            <li>Choose a connection identifier C_R and store it for the length of the EDHOC session.</li>
            <li>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.</li>
            <li>
              <t>Compute MAC_2 as in <xref target="expand"/> with context_2 = &lt;&lt; ID_CRED_R, TH_2, CRED_R, ? EAD_2 &gt;&gt; (see <xref target="CBOR"/> for notation)
              </t>
              <ul spacing="normal">
                <li>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.</li>
                <li>ID_CRED_R - identifier to facilitate the retrieval of CRED_R, see <xref target="id_cred"/></li>
                <li>CRED_R - CBOR item containing the authentication credential of the Responder, see <xref target="auth-cred"/></li>
                <li>EAD_2 - external authorization data, see <xref target="AD"/></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>protected =  &lt;&lt; ID_CRED_R &gt;&gt;</li>
                <li>external_aad = &lt;&lt; TH_2, CRED_R, ? EAD_2 &gt;&gt;</li>
                <li>payload = MAC_2</li>
              </ul>
            </li>
            <li>
              <t>CIPHERTEXT_2 is calculated by using the EDHOC_Expand function as a binary additive stream cipher over 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>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"/>.</li>
                    <li>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"/>.</li>
                  </ul>
                </li>
                <li>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"/>.</li>
                <li>CIPHERTEXT_2 = PLAINTEXT_2 XOR KEYSTREAM_2</li>
              </ul>
            </li>
            <li>Encode message_2 as a sequence of CBOR encoded data items as specified in <xref target="asym-msg2-form"/>.</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>Decode message_2 (see <xref target="CBOR"/>).</li>
            <li>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"/>).</li>
            <li>Decrypt CIPHERTEXT_2, see <xref target="asym-msg2-proc"/>.</li>
            <li>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.</li>
            <li>Obtain the authentication credential (CRED_R) and the authentication key of R from the application (or by other means).</li>
            <li>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.</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 Processing of Message 3</name>
          <t>The Initiator SHALL compose message_3 as follows:</t>
          <ul spacing="normal">
            <li>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.</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>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.</li>
                <li>ID_CRED_I - identifier to facilitate the retrieval of CRED_I, see <xref target="id_cred"/></li>
                <li>CRED_I - CBOR item containing the authentication credential of the Initiator, see <xref target="auth-cred"/></li>
                <li>EAD_3 - external authorization data, see <xref target="AD"/></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>protected =  &lt;&lt; ID_CRED_I &gt;&gt;</li>
                <li>external_aad = &lt;&lt; TH_3, CRED_I, ? EAD_3 &gt;&gt;</li>
                <li>payload = MAC_3</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>protected = h''</li>
                <li>external_aad = TH_3</li>
                <li>K_3 and IV_3 are defined in <xref target="expand"/></li>
                <li>
                  <t>PLAINTEXT_3 = ( ID_CRED_I / bstr / -24..23, Signature_or_MAC_3, ? EAD_3 )      </t>
                  <ul spacing="normal">
                    <li>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"/>.</li>
                  </ul>
                </li>
              </ul>
              <t>
CIPHERTEXT_3 is the 'ciphertext' of COSE_Encrypt0.</t>
            </li>
            <li>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.</li>
            <li>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"/>.</li>
            <li>Encode message_3 as a CBOR data item as specified in <xref target="asym-msg3-form"/>.</li>
            <li>Make the connection identifiers (C_I, C_R) and the application algorithms in the selected cipher suite available to the application.</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 acknowledgement (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>Decode message_3 (see <xref target="CBOR"/>).</li>
            <li>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"/>).</li>
            <li>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"/>.</li>
            <li>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.</li>
            <li>Obtain the authentication credential (CRED_I) and the authentication key of I from the application (or by other means).</li>
            <li>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.</li>
            <li>Make the connection identifiers (C_I, C_R) and the application algorithms in the selected cipher suite available to the application.</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>When EDHOC is only used for authentication and no application data is sent.</li>
          <li>When application data is only sent from the Initiator to the Responder.</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 Processing 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>protected = h''</li>
                <li>external_aad = TH_4</li>
                <li>K_4 and IV_4 are defined in <xref target="expand"/></li>
                <li>
                  <t>PLAINTEXT_4 = ( ? EAD_4 )
                  </t>
                  <ul spacing="normal">
                    <li>EAD_4 - external authorization data, see <xref target="AD"/>.</li>
                  </ul>
                </li>
              </ul>
              <t>
CIPHERTEXT_4 is the 'ciphertext' of COSE_Encrypt0.</t>
            </li>
            <li>Encode message_4 as a CBOR data item as specified in <xref target="asym-msg4-form"/>.</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>Decode message_4 (see <xref target="CBOR"/>).</li>
            <li>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"/>).</li>
            <li>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"/>.</li>
            <li>Make (if present) EAD_4 available to the application for EAD processing.</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>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.</li>
        <li>ERR_INFO - error information. Content and encoding depend on error code.</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">
              <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 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">
                  <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 therefore 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">
                  <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 acknowledgement 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 ephemeral public keys depend on the elliptic curve. For X25519 and X448, the requirements are defined in <xref target="RFC7748"/>. 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>
      </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. 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 consider these threat models. 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 rely on 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"/>.</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>Implementations might consider deriving secret and non-secret randomness from different PRNG/PRF/KDF instances to limit the damage if the PRNG/PRF/KDF turns out to be fundamentally broken. NIST generally 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. As explained by Krawczyk, if any attack is mitigated by the NIST requirement it would mean that the KDF is fully broken and would have to be replaced anyway.</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 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. 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. 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>Verification of validity may require the use of a Real-Time Clock (RTC). The private authentication keys MUST be kept 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.</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="I-D.ietf-teep-architecture"/>) 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. It is RECOMMENDED to abort the EDHOC session if the received EDHOC message is not encoded using deterministic CBOR.</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">
                <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">
              <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">
              <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">
              <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">
              <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">
                <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">
              <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="208" width="536" viewBox="0 0 536 208" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
                <path d="M 8,32 L 8,192" fill="none" stroke="black"/>
                <path d="M 104,32 L 104,192" fill="none" stroke="black"/>
                <path d="M 168,32 L 168,192" fill="none" stroke="black"/>
                <path d="M 304,32 L 304,192" fill="none" stroke="black"/>
                <path d="M 528,32 L 528,192" 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,128 L 528,128" fill="none" stroke="black"/>
                <path d="M 8,192 L 528,192" fill="none" stroke="black"/>
                <g class="text">
                  <text x="36" y="52">Name</text>
                  <text x="136" y="52">Label</text>
                  <text x="200" y="52">Value</text>
                  <text x="244" y="52">Type</text>
                  <text x="360" y="52">Description</text>
                  <text x="36" y="84">kcwt</text>
                  <text x="132" y="84">TBD1</text>
                  <text x="232" y="84">COSE_Messages</text>
                  <text x="320" y="84">A</text>
                  <text x="348" y="84">CBOR</text>
                  <text x="384" y="84">Web</text>
                  <text x="424" y="84">Token</text>
                  <text x="472" y="84">(CWT)</text>
                  <text x="356" y="100">containing</text>
                  <text x="408" y="100">a</text>
                  <text x="452" y="100">COSE_Key</text>
                  <text x="500" y="100">in</text>
                  <text x="320" y="116">a</text>
                  <text x="352" y="116">'cnf'</text>
                  <text x="400" y="116">claim</text>
                  <text x="36" y="148">kccs</text>
                  <text x="132" y="148">TBD2</text>
                  <text x="192" y="148">map</text>
                  <text x="216" y="148">/</text>
                  <text x="256" y="148">#6(map)</text>
                  <text x="320" y="148">A</text>
                  <text x="344" y="148">CWT</text>
                  <text x="388" y="148">Claims</text>
                  <text x="432" y="148">Set</text>
                  <text x="472" y="148">(CCS)</text>
                  <text x="356" y="164">containing</text>
                  <text x="408" y="164">a</text>
                  <text x="452" y="164">COSE_Key</text>
                  <text x="500" y="164">in</text>
                  <text x="320" y="180">a</text>
                  <text x="352" y="180">'cnf'</text>
                  <text x="400" y="180">claim</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             |
+-----------+-------+----------------+---------------------------+
| kccs      | TBD2  | map / #6(map)  | A CWT Claims Set (CCS)    |
|           |       |                | containing a COSE_Key in  |
|           |       |                | a 'cnf' claim             |
+-----------+-------+----------------+---------------------------+
]]></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>URI suffix: edhoc</li>
          <li>Change controller: IETF</li>
          <li>Specification document(s): [[this document]]</li>
          <li>Related information: None</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>Type name: application</li>
            <li>Subtype name: edhoc+cbor-seq</li>
            <li>Required parameters: N/A</li>
            <li>Optional parameters: N/A</li>
            <li>Encoding considerations: binary</li>
            <li>Security considerations: See Section 7 of this document.</li>
            <li>Interoperability considerations: N/A</li>
            <li>Published specification: [[this document]] (this document)</li>
            <li>Applications that use this media type: To be identified</li>
            <li>Fragment identifier considerations: N/A</li>
            <li>
              <t>Additional information:  </t>
              <ul spacing="normal">
                <li>Magic number(s): N/A</li>
                <li>File extension(s): N/A</li>
                <li>Macintosh file type code(s): N/A</li>
              </ul>
            </li>
            <li>Person &amp; email address to contact for further information: See "Authors' Addresses" section.</li>
            <li>Intended usage: COMMON</li>
            <li>Restrictions on usage: N/A</li>
            <li>Author: See "Authors' Addresses" section.</li>
            <li>Change Controller: IESG</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>Type name: application</li>
            <li>Subtype name: cid-edhoc+cbor-seq</li>
            <li>Required parameters: N/A</li>
            <li>Optional parameters: N/A</li>
            <li>Encoding considerations: binary</li>
            <li>Security considerations: See Section 7 of this document.</li>
            <li>Interoperability considerations: N/A</li>
            <li>Published specification: [[this document]] (this document)</li>
            <li>Applications that use this media type: To be identified</li>
            <li>Fragment identifier considerations: N/A</li>
            <li>
              <t>Additional information:  </t>
              <ul spacing="normal">
                <li>Magic number(s): N/A</li>
                <li>File extension(s): N/A</li>
                <li>Macintosh file type code(s): N/A</li>
              </ul>
            </li>
            <li>Person &amp; email address to contact for further information: See "Authors' Addresses" section.</li>
            <li>Intended usage: COMMON</li>
            <li>Restrictions on usage: N/A</li>
            <li>Author: See "Authors' Addresses" section.</li>
            <li>Change Controller: IESG</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">
                <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>Value: "core.edhoc"</li>
          <li>Description: EDHOC resource.</li>
          <li>Reference: [[this document]]</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>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.</li>
          <li>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.</li>
          <li>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.</li>
        </ul>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <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>
        <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="I-D.ietf-rats-eat" target="https://datatracker.ietf.org/doc/html/draft-ietf-rats-eat-21" 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">
              <organization>Qualcomm Technologies Inc.</organization>
            </author>
            <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="30" month="June" year="2023"/>
            <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 how much it wishes to trust 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-21"/>
        </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-05" 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>
            <date day="28" month="April" 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-05"/>
        </reference>
        <reference anchor="I-D.ietf-core-oscore-edhoc" target="https://datatracker.ietf.org/doc/html/draft-ietf-core-oscore-edhoc-07" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-core-oscore-edhoc.xml">
          <front>
            <title>Using EDHOC with CoAP and 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="13" month="March" year="2023"/>
            <abstract>
              <t>The lightweight authenticated key exchange protocol EDHOC can be run over CoAP and used by two peers to establish an OSCORE Security Context. 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-07"/>
        </reference>
        <reference anchor="I-D.ietf-cose-cbor-encoded-cert" target="https://datatracker.ietf.org/doc/html/draft-ietf-cose-cbor-encoded-cert-05" 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="10" month="January" 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-05"/>
        </reference>
        <reference anchor="I-D.ietf-core-oscore-key-update" target="https://datatracker.ietf.org/doc/html/draft-ietf-core-oscore-key-update-04" 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="13" month="March" 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-04"/>
        </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-02" 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="11" month="April" 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-02"/>
        </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-02" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.selander-lake-authz.xml">
          <front>
            <title>Lightweight Authorization for EDHOC</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="21" month="April" year="2023"/>
            <abstract>
              <t>This document describes a procedure for augmenting the lightweight authenticated Diffie-Hellman key exchange protocol EDHOC with third party assisted authorization, targeting constrained IoT deployments (RFC 7228).</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-selander-lake-authz-02"/>
        </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="I-D.ietf-teep-architecture" target="https://datatracker.ietf.org/doc/html/draft-ietf-teep-architecture-19" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-teep-architecture.xml">
          <front>
            <title>Trusted Execution Environment Provisioning (TEEP) Architecture</title>
            <author fullname="Mingliang Pei" initials="M." surname="Pei">
              <organization>Broadcom</organization>
            </author>
            <author fullname="Hannes Tschofenig" initials="H." surname="Tschofenig">
              <organization>Arm Limited</organization>
            </author>
            <author fullname="Dave Thaler" initials="D." surname="Thaler">
              <organization>Microsoft</organization>
            </author>
            <author fullname="Dave Wheeler" initials="D. M." surname="Wheeler">
              <organization>Amazon</organization>
            </author>
            <date day="24" month="October" year="2022"/>
            <abstract>
              <t>A Trusted Execution Environment (TEE) is an environment that enforces that any code within that environment cannot be tampered with, and that any data used by such code cannot be read or tampered with by any code outside that environment. This architecture document motivates the design and standardization of a protocol for managing the lifecycle of trusted applications running inside such a TEE.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-teep-architecture-19"/>
        </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="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="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://webee.technion.ac.il/~hugo/sigma-pdf.pdf">
          <front>
            <title>SIGMA - The 'SIGn-and-MAc' Approach to Authenticated Diffie-Hellman and Its Use in the IKE-Protocols (Long version)</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://apps.nsa.gov/iaarchive/programs/iad-initiatives/cnsa-suite.cfm">
          <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="http://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 1898?>

<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>The EDHOC Exporter Labels for deriving the OSCORE Master Secret and the OSCORE Master Salt, are the uints 0 and 1, respectively.</li>
              <li>The context parameter is h'' (0x40), the empty CBOR byte string.</li>
              <li>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.</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>The AEAD Algorithm SHALL be the application AEAD algorithm of the selected cipher suite for the EDHOC session.</li>
          <li>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.</li>
          <li>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"/>.</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="368" viewBox="0 0 368 144" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
                <path d="M 8,32 L 8,128" fill="none" stroke="black"/>
                <path d="M 144,32 L 144,128" fill="none" stroke="black"/>
                <path d="M 240,32 L 240,128" fill="none" stroke="black"/>
                <path d="M 360,32 L 360,128" fill="none" stroke="black"/>
                <path d="M 8,32 L 360,32" fill="none" stroke="black"/>
                <path d="M 8,64 L 360,64" fill="none" stroke="black"/>
                <path d="M 8,96 L 360,96" fill="none" stroke="black"/>
                <path d="M 8,128 L 360,128" fill="none" stroke="black"/>
                <g class="text">
                  <text x="40" y="52">EDHOC</text>
                  <text x="72" y="52">\</text>
                  <text x="108" y="52">OSCORE</text>
                  <text x="180" y="52">Sender</text>
                  <text x="220" y="52">ID</text>
                  <text x="288" y="52">Recipient</text>
                  <text x="340" y="52">ID</text>
                  <text x="56" y="84">Initiator</text>
                  <text x="192" y="84">C_R</text>
                  <text x="296" y="84">C_I</text>
                  <text x="56" y="116">Responder</text>
                  <text x="192" y="116">C_I</text>
                  <text x="296" y="116">C_R</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art" align="center"><![CDATA[
+----------------+-----------+--------------+
| EDHOC \ OSCORE | Sender ID | Recipient ID |
+----------------+-----------+--------------+
| Initiator      |    C_R    |     C_I      |
+----------------+-----------+--------------+
| 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, flow control, and handle message duplication. CoAP can also perform fragmentation and protect against 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), as a dummy identifier. 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 protect against 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>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.</li>
          <li>The server does not send any such indicator, as responses are matched to request by the client-server protocol design.</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>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 dummy identifier <tt>true</tt> (0xf5) indicating a new EDHOC session.</li>
            <li>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"/>.</li>
            <li>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.</li>
            <li>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.</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">
                  <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>To trigger a new EDHOC session, the client makes an empty POST request to the server's resource for EDHOC.</li>
            <li>EDHOC message_1 is sent from the server to the client in the payload of the response with response code 2.04 (Changed).</li>
            <li>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.</li>
            <li>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"/>.</li>
            <li>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.</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">
                  <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>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"/>.</li>
        <li>Output M = X</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>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).</li>
        <li>If a 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.</li>
      </ul>
      <t>For example: The curve P-256 has the parameters (using the notation in <xref target="RFC6090"/>)</t>
      <ul spacing="normal">
        <li>p = 2<sup>256</sup> - 2<sup>224</sup> + 2<sup>192</sup> + 2<sup>96</sup> - 1</li>
        <li>a = -3</li>
        <li>b = 410583637251521421293261297800472684091144410159937255
54835256314039467401291</li>
      </ul>
      <t>Given an example x:</t>
      <ul spacing="normal">
        <li>x = 115792089183396302095546807154740558443406795108653336
398970697772788799766525</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>y = 834387180070192806820075864918626005281451259964015754
16632522940595860276856</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 different 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">
                <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 sections 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,
)

message_3 = (
  CIPHERTEXT_3 : bstr,
)

message_4 = (
  CIPHERTEXT_4 : bstr,
)

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>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"/></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>Secret key K = K_i</li>
              <li>Nonce N = IV_i</li>
              <li>Plaintext P for message_i</li>
              <li>Associated Data A = [ "Encrypt0", h'', TH_i ]</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>ID_CRED_x = { 34 : COSE_CertHash }, for x = I or R,</li>
              <li>ID_CRED_x = { TBD3 : COSE_CertHash }, for x = I or R;</li>
            </ul>
          </li>
          <li>
            <t>or by a URI with the 'x5u' or 'c5u' parameters, respectively:  </t>
            <ul spacing="normal">
              <li>ID_CRED_x = { 35 : uri }, for x = I or R,</li>
              <li>ID_CRED_x = { TBD4 : uri }, for x = I or R.</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>ID_CRED_x = { 4 : kid_x }, where kid_x : kid, for x = I or R. For further optimization, see <xref target="id_cred"/>.</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. What verifications 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>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"/>.</li>
          <li>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.</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>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.</li>
          <li>Similarly, when a PKI is used with CWTs, the identity is the subject identified by the relevant claim(s), such as 'sub' (subject).</li>
          <li>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.</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 man-in-the-middle 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>The EDHOC authentication credential can be verified out-of-band at a later stage.</li>
          <li>The EDHOC session key can be bound to an identity out-of-band at a later stage.</li>
          <li>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.</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>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"/>.</li>
        <li>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.</li>
        <li>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.</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>Transfer in CoAP as specified in <xref target="coap"/> with requests expected by the CoAP server (= Responder) at /app1-edh, no Content-Format needed.</li>
        <li>METHOD = 1 (I uses signature key, R uses static DH key.)</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>R acquires CRED_I out-of-band, indicated in EAD_1.</li>
            <li>ID_CRED_I = {4: h''} is a 'kid' with value the empty CBOR byte string.</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>The CBOR map has parameters 1 (kty), -1 (crv), and -2 (x-coordinate).</li>
            <li>ID_CRED_R is {TBD2 : CCS}.   Editor's note: TBD2 is the COSE header parameter value of 'kccs', see <xref target="cwt-header-param"/></li>
          </ul>
        </li>
        <li>External authorization data is defined and processed as specified in <xref target="I-D.selander-lake-authz"/>.</li>
        <li>EUI-64 is used as the identity of the endpoint (see example in <xref target="auth-cred"/>).</li>
        <li>No use of message_4: the application sends protected messages from R to I.</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>When error messages are being sent (with one exception)</li>
        <li>How credentials and EAD are processed by EDHOC and the application in the RCVD state</li>
        <li>What verifications are made, which includes not only MACs and signatures</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 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">
              <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">
              <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 -19 to -20
          </t>
          <ul spacing="normal">
            <li>C_R encrypted in message_2</li>
            <li>C_R removed from TH_2</li>
            <li>Error code for unknown referenced credential</li>
            <li>Error code 0 (success) explicitly reserved</li>
            <li>Message deduplication section moved from appendix to body</li>
            <li>
              <t>Terminology
              </t>
              <ul spacing="normal">
                <li>discontinued -&gt; aborted</li>
                <li>protocol run / exchange -&gt; session</li>
              </ul>
            </li>
            <li>
              <t>Clarifications, in particular
              </t>
              <ul spacing="normal">
                <li>when to derive application keys</li>
                <li>the role of the application for authentication</li>
              </ul>
            </li>
            <li>Security considerations for kccs and kcwt</li>
            <li>Updated references</li>
          </ul>
        </li>
        <li>
          <t>From -18 to -19
          </t>
          <ul spacing="normal">
            <li>
              <t>Clarifications:
              </t>
              <ul spacing="normal">
                <li>Relation to SIGMA</li>
                <li>Role of Static DH</li>
                <li>Initiator and Responder roles</li>
                <li>Transport properties</li>
                <li>Construction of SUITES_I</li>
                <li>Message correlation, new subsection 3.4.1, replacing former appendix H</li>
                <li>Role of description about long PLAINTEXT_2</li>
                <li>ead_label and ead_value</li>
                <li>Message processing (Section 5)</li>
                <li>Padding</li>
                <li>Cipher suite negotiation example</li>
              </ul>
            </li>
            <li>
              <t>Other updates:
              </t>
              <ul spacing="normal">
                <li>Improved and stricter normative text in Appendix A</li>
                <li>Naming and separate sections for the two message flows in Appendix A: Forward/Reverse message flow,</li>
                <li>Table index style captions</li>
                <li>Aligning with COSE terminology: header map -&gt; header_map</li>
                <li>Aligning terminology, use of "_" instead of "-"</li>
                <li>Prefixing "EDHOC_" to functions</li>
                <li>Updated list of security analysis papers</li>
                <li>New appendix with example state machine</li>
                <li>Acknowledgements</li>
                <li>Language improvements by native English speakers</li>
                <li>Updated IANA section with registration procedures</li>
                <li>New and updated references</li>
                <li>Removed appendix H</li>
              </ul>
            </li>
          </ul>
        </li>
        <li>
          <t>From -17 to -18  </t>
          <ul spacing="normal">
            <li>Padding realised as EAD with ead_label = 0, PAD fields removed</li>
            <li>Revised EAD syntax; ead is now EAD item; ead_value is now optional</li>
            <li>
              <t>Clarifications of
              </t>
              <ul spacing="normal">
                <li>Identifier representation</li>
                <li>Authentication credentials</li>
                <li>RPK</li>
                <li>Encoding of ID_CRED with kid</li>
                <li>Representation of public keys, y-coordinate of ephemeral keys and validation</li>
                <li>Processing after completed protocol</li>
                <li>Making verifications available to the application</li>
                <li>Relation between EDHOC and OSCORE identifiers</li>
              </ul>
            </li>
            <li>Terminology alignment in particular session / protocol; discontinue / terminate</li>
            <li>Updated CDDL</li>
            <li>Additional unicode encodings</li>
            <li>Large number of nits from WGLC</li>
          </ul>
        </li>
        <li>
          <t>From -16 to -17  </t>
          <ul spacing="normal">
            <li>EDHOC-KeyUpdate moved to appendix</li>
            <li>Updated peer awareness properties based on SIGMA</li>
            <li>Clarify use of random connection identifiers</li>
            <li>Editorials related to appendix about messages with long PLAINTEXT_2</li>
            <li>Updated acknowledgments (have we forgotten someone else? please send email)</li>
          </ul>
        </li>
        <li>
          <t>From -15 to -16  </t>
          <ul spacing="normal">
            <li>TH_2 used as salt in the derivation of PRK_2e</li>
            <li>CRED_R/CRED_I included in TH_3/TH_4</li>
            <li>Distinguish label used in info, exporter or elsewhere</li>
            <li>
              <t>New appendix for optional handling arbitrarily large message_2
              </t>
              <ul spacing="normal">
                <li>info_label type changed to int to support this</li>
              </ul>
            </li>
            <li>Updated security considerations</li>
            <li>Implementation note about identifiers which are bstr/int</li>
            <li>Clarifications, especifically about compact representation</li>
            <li>Type bug fix in CDDL section</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>Unless they happen to encode a one-byte CBOR int</li>
                  </ul>
                </li>
                <li>More examples</li>
              </ul>
            </li>
            <li>
              <t>EAD updates and details
              </t>
              <ul spacing="normal">
                <li>Definition of EAD item</li>
                <li>Definition of critical / non-critical EAD item</li>
              </ul>
            </li>
            <li>New section in Appendix D: Unauthenticated Operation</li>
            <li>
              <t>Clarifications
              </t>
              <ul spacing="normal">
                <li>Lengths used in EDHOC-KDF</li>
                <li>
                  <t>Key derivation from PRK_out
                  </t>
                  <ul spacing="normal">
                    <li>EDHOC-KeyUpdate and EDHOC-Exporter</li>
                  </ul>
                </li>
                <li>Padding</li>
              </ul>
            </li>
            <li>
              <t>Security considerations
              </t>
              <ul spacing="normal">
                <li>When a change in a message is detected</li>
                <li>Confidentiality in case of active attacks</li>
                <li>Connection identifiers should be unpredictable</li>
                <li>Maximum length of message_2</li>
              </ul>
            </li>
            <li>Minor bugs</li>
          </ul>
        </li>
        <li>
          <t>From -13 to -14
          </t>
          <ul spacing="normal">
            <li>Merge of section 1.1 and 1.2</li>
            <li>Connection and key identifiers restricted to be byte strings</li>
            <li>Representation of byte strings as one-byte CBOR ints (-24..23)</li>
            <li>Simplified mapping between EDHOC and OSCORE identifiers</li>
            <li>
              <t>Rewrite of 3.5
              </t>
              <ul spacing="normal">
                <li>Clarification of authentication related operations performed by EDHOC</li>
                <li>Authentication related verifications, including old section 3.5.1, moved to new appendix D</li>
              </ul>
            </li>
            <li>
              <t>Rewrite of 3.8
              </t>
              <ul spacing="normal">
                <li>Move content about use of EAD to new appendix E</li>
                <li>ead_value changed to bstr</li>
              </ul>
            </li>
            <li>
              <t>EDHOC-KDF updated
              </t>
              <ul spacing="normal">
                <li>transcript_hash argument removed</li>
                <li>TH included in context argument</li>
                <li>label argument is now type uint, all labels replaced</li>
              </ul>
            </li>
            <li>
              <t>Key schedule updated
              </t>
              <ul spacing="normal">
                <li>New salts derived to avoid reuse of same key with expand and extract</li>
                <li>PRK_4x3m renamed PRK_4e3m</li>
                <li>K_4 and IV_4 derived from PRK_4e3m</li>
                <li>New PRK: PRK_out derived from PRK_4e3m and TH_4</li>
                <li>Clarified main output of EDHOC is the shared secret PRK_out</li>
                <li>Exporter defined by EDHOC-KDF and new PRK PRK_exporter derived from PRK_out</li>
                <li>Key update defined by Expand instead of Extract</li>
              </ul>
            </li>
            <li>All applications of EDHOC-KDF in one place</li>
            <li>
              <t>Update of processing
              </t>
              <ul spacing="normal">
                <li>EAD and ID_CRED passed to application when available</li>
                <li>identity verification and credential retrieval omitted in protocol description</li>
                <li>Transcript hash defined by plaintext messages instead of ciphertext</li>
                <li>Changed order of input to TH_2</li>
                <li>Removed general G_X checking against selfie-attacks</li>
              </ul>
            </li>
            <li>Support for padding of plaintext</li>
            <li>Updated compliance requirements</li>
            <li>
              <t>Updated security considerations
              </t>
              <ul spacing="normal">
                <li>Updated and more clear requirements on MAC length</li>
                <li>Clarification of key confirmation</li>
                <li>Forbid use of same key for signature and static DH</li>
              </ul>
            </li>
            <li>Updated appendix on message deduplication</li>
            <li>
              <t>Clarifications of
              </t>
              <ul spacing="normal">
                <li>connection identifiers</li>
                <li>cipher suites, including negotiation</li>
                <li>EAD</li>
                <li>Error messages</li>
              </ul>
            </li>
            <li>Updated media types</li>
            <li>Applicability template renamed application profile</li>
            <li>Editorials</li>
          </ul>
        </li>
        <li>
          <t>From -12 to -13
          </t>
          <ul spacing="normal">
            <li>no changes</li>
          </ul>
        </li>
        <li>
          <t>From -12:
          </t>
          <ul spacing="normal">
            <li>Shortened labels to derive OSCORE key and salt</li>
            <li>ead_value changed to bstr</li>
            <li>Removed general G_X checking against selfie-attacks</li>
            <li>Updated and more clear requirements on MAC length</li>
            <li>Clarifications from Kathleen, Stephen, Marco, Sean, Stefan,</li>
            <li>Authentication Related Verifications moved to appendix</li>
            <li>Updated MTI section and cipher suite</li>
            <li>Updated security considerations</li>
          </ul>
        </li>
        <li>
          <t>From -11 to -12:
          </t>
          <ul spacing="normal">
            <li>Clarified applicability to KEMs</li>
            <li>Clarified use of COSE header parameters</li>
            <li>Updates on MTI</li>
            <li>Updated security considerations</li>
            <li>New section on PQC</li>
            <li>Removed duplicate definition of cipher suites</li>
            <li>Explanations of use of COSE moved to Appendix C.3</li>
            <li>Updated internal references</li>
          </ul>
        </li>
        <li>
          <t>From -10 to -11:
          </t>
          <ul spacing="normal">
            <li>Restructured section on authentication parameters</li>
            <li>Changed UCCS to CCS</li>
            <li>Changed names and description of COSE header parameters for CWT/CCS</li>
            <li>Changed several of the KDF and Exporter labels</li>
            <li>Removed edhoc_aead_id from info (already in transcript_hash)</li>
            <li>Added MTI section</li>
            <li>EAD: changed CDDL names and added value type to registry</li>
            <li>Updated Figures 1, 2, and 3</li>
            <li>Some correction and clarifications</li>
            <li>Added core.edhoc to CoRE Resource Type registry</li>
          </ul>
        </li>
        <li>
          <t>From -09 to -10:
          </t>
          <ul spacing="normal">
            <li>SUITES_I simplified to only contain the selected and more preferred suites</li>
            <li>Info is a CBOR sequence and context is a bstr</li>
            <li>Added kid to UCCS example</li>
            <li>Separate header parameters for CWT and UCCS</li>
            <li>CWT Confirmation Method kid extended to bstr / int</li>
          </ul>
        </li>
        <li>
          <t>From -08 to -09:
          </t>
          <ul spacing="normal">
            <li>G_Y and CIPHERTEXT_2 are now included in one CBOR bstr</li>
            <li>MAC_2 and MAC_3 are now generated with EDHOC-KDF</li>
            <li>Info field "context" is now general and explicit in EDHOC-KDF</li>
            <li>Restructured Section 4, Key Derivation</li>
            <li>Added EDHOC MAC length to cipher suite for use with static DH</li>
            <li>More details on the use of CWT and UCCS</li>
            <li>Restructured and clarified Section 3.5, Authentication Parameters</li>
            <li>Replaced 'kid2' with extension of 'kid'</li>
            <li>EAD encoding now supports multiple ead types in one message</li>
            <li>Clarified EAD type</li>
            <li>Updated message sizes</li>
            <li>Replaced "perfect forward secrecy" with "forward secrecy"</li>
            <li>Updated security considerations</li>
            <li>Replaced prepended 'null' with 'true' in the CoAP transport of message_1</li>
            <li>Updated CDDL definitions</li>
            <li>Expanded on the use of COSE</li>
          </ul>
        </li>
        <li>
          <t>From -07 to -08:
          </t>
          <ul spacing="normal">
            <li>Prepended C_x moved from the EDHOC protocol itself to the transport mapping</li>
            <li>METHOD_CORR renamed to METHOD, corr removed</li>
            <li>Removed bstr_identifier and use bstr / int instead; C_x can now be int without any implied bstr semantics</li>
            <li>Defined COSE header parameter 'kid2' with value type bstr / int for use with ID_CRED_x</li>
            <li>Updated message sizes</li>
            <li>New cipher suites with AES-GCM and ChaCha20 / Poly1305</li>
            <li>Changed from one- to two-byte identifier of CNSA compliant suite</li>
            <li>Separate sections on transport and connection id with further sub-structure</li>
            <li>Moved back key derivation for OSCORE from draft-ietf-core-oscore-edhoc</li>
            <li>OSCORE and CoAP specific processing moved to new appendix</li>
            <li>Message 4 section moved to message processing section</li>
          </ul>
        </li>
        <li>
          <t>From -06 to -07:
          </t>
          <ul spacing="normal">
            <li>Changed transcript hash definition for TH_2 and TH_3</li>
            <li>Removed "EDHOC signature algorithm curve" from cipher suite</li>
            <li>New IANA registry "EDHOC Exporter Label"</li>
            <li>New application defined parameter "context" in EDHOC-Exporter</li>
            <li>Changed normative language for failure from MUST to SHOULD send error</li>
            <li>Made error codes non-negative and 0 for success</li>
            <li>Added detail on success error code</li>
            <li>Aligned terminology "protocol instance" -&gt;  "session"</li>
            <li>New appendix on compact EC point representation</li>
            <li>Added detail on use of ephemeral public keys</li>
            <li>Moved key derivation for OSCORE to draft-ietf-core-oscore-edhoc</li>
            <li>Additional security considerations</li>
            <li>Renamed "Auxililary Data" as "External Authorization Data"</li>
            <li>Added encrypted EAD_4 to message_4</li>
          </ul>
        </li>
        <li>
          <t>From -05 to -06:
          </t>
          <ul spacing="normal">
            <li>New section 5.2 "Message Processing Outline"</li>
            <li>Optional inital byte C_1 = null in message_1</li>
            <li>New format of error messages, table of error codes, IANA registry</li>
            <li>Change of recommendation transport of error in CoAP</li>
            <li>Merge of content in 3.7 and appendix C into new section 3.7 "Applicability Statement"</li>
            <li>Requiring use of deterministic CBOR</li>
            <li>New section on message deduplication</li>
            <li>New appendix containin all CDDL definitions</li>
            <li>New appendix with change log</li>
            <li>Removed section "Other Documents Referencing EDHOC"</li>
            <li>Clarifications based on review comments</li>
          </ul>
        </li>
        <li>
          <t>From -04 to -05:
          </t>
          <ul spacing="normal">
            <li>EDHOC-Rekey-FS -&gt; EDHOC-KeyUpdate</li>
            <li>Clarification of cipher suite negotiation</li>
            <li>Updated security considerations</li>
            <li>Updated test vectors</li>
            <li>Updated applicability statement template</li>
          </ul>
        </li>
        <li>
          <t>From -03 to -04:
          </t>
          <ul spacing="normal">
            <li>Restructure of section 1</li>
            <li>Added references to C509 Certificates</li>
            <li>Change in CIPHERTEXT_2 -&gt; plaintext XOR KEYSTREAM_2 (test vector not updated)</li>
            <li>"K_2e", "IV_2e" -&gt; KEYSTREAM_2</li>
            <li>Specified optional message 4</li>
            <li>EDHOC-Exporter-FS -&gt; EDHOC-Rekey-FS</li>
            <li>Less constrained devices SHOULD implement both suite 0 and 2</li>
            <li>Clarification of error message</li>
            <li>Added exporter interface test vector</li>
          </ul>
        </li>
        <li>
          <t>From -02 to -03:
          </t>
          <ul spacing="normal">
            <li>Rearrangements of section 3 and beginning of section 4</li>
            <li>Key derivation new section 4</li>
            <li>Cipher suites 4 and 5 added</li>
            <li>EDHOC-EXPORTER-FS - generate a new PRK_4x3m from an old one</li>
            <li>Change in CIPHERTEXT_2 -&gt; COSE_Encrypt0 without tag (no change to test vector)</li>
            <li>Clarification of error message</li>
            <li>New appendix C applicability statement</li>
          </ul>
        </li>
        <li>
          <t>From -01 to -02:
          </t>
          <ul spacing="normal">
            <li>New section 1.2 Use of EDHOC</li>
            <li>Clarification of identities</li>
            <li>New section 4.3 clarifying bstr_identifier</li>
            <li>Updated security considerations</li>
            <li>Updated text on cipher suite negotiation and key confirmation</li>
            <li>Test vector for static DH</li>
          </ul>
        </li>
        <li>
          <t>From -00 to -01:
          </t>
          <ul spacing="normal">
            <li>Removed PSK method</li>
            <li>Removed references to certificate by value</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="Martin Disch"/>,
<contact fullname="Donald Eastlake"/>,
<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="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="Jim Schaad"/>,
<contact fullname="Michael Scharf"/>,
<contact fullname="Carsten Schürmann"/>,
<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ć"/>,
and
<contact fullname="Paul Wouters"/>
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:
H4sIAAAAAAAAA9y923Yb2ZUg+M6viJYeBNgARACURMlO9zBJKkVLSqlI2Zm5
qmqpgkCADAuIQEUESNFK9ZqXeZovmKeZr5jVD/00/pP+ktnXc/aJC0jlxeVq
lktJAhHnss8++34ZDoc7VVotk2fR8foyWSVFvIyO0sUiTYYvkuVyFWfRm6uk
iA7fnB1HveOjF28O+zvzfJbFK3hnXsSLapgm1WK4jD8kw2R+mc+Gk92d+Py8
SK5gUHxhZyddF8+iqtiU1WR39+nuZCcukvhZdHZ8uHOdFx8uinyzfha9Onh5
HH0Hf6fZRfQNfrYzi6tnUVnNd8rN+SotyzTPqps1zHxy/O75zizPyiQrNyUN
nuzAB3N491m0gQXt76zTZ9H9aAZb2JRJFBdFfBP10kUUL5fRTVL2o7yILuPy
MrpMimQniqp89gy/gF/LvKiKZFG6v29W9k94cp6sq8tn0WRnJ95Ul3nxbGcY
MVC++dv/W8CcZ8kyzuZJgW9vCv7KfJYXsM7jIp2VZZ5FB1/DRw5o8im+CatI
KoTUcPx4L9rfjc5g7g+X+XIF387yTVYVN/D1dTJP8PlkFafLZ9FFDisYlTLb
/5bIgKNZvnLL/GN+mUVvi2Tzt/87eh1XlcyYZmmVxkvY6h/typsP/qob+Ass
brSSydrX/xy2OEvKWRy9jZf56hwWHizYfPirLnWh6xitdcpwwTtZXsBW0qvk
2Q68dvr8cDIeP33Gv04nT9yvjx5N5NdH4/Fj/XX/sT7wGK6O/vr0sf/VjfBk
4kZ48mRvX399+kgf2B9PHrtfn+zpr9On+tr+3ljH3X9sf53qr08m7rUnexP/
6xP99emezvZ01y0HftURno6fPNJfp7iLnTRbNCD0dN8BYLLvtjp+uue2Otn3
u/a/PtXXnjz2C50+druePnG/7u25X59On7iF7u66hbpNwZrp2ZPh0YioXRFX
5TAB4mQ/JBJYJP9eNj+tihhwJPh8lhfJMC/pP0Q3a9+WyXB2nhfDJAOqlsyH
s6SoOgf4kNwMN+t5XCXh3NfpxXC2Ka5wXesiAWpZAZyBbAaPpXmVr8thmcCj
aXUzXBfwwSxfwhSrdVykgMnu+QJnXhQXw3lSDcv0ohxep9XlMMvT0s2thIf3
jvTxr/pVXHz4kA/jYnY5TLMqKTIYpboEblANV7DN5fBik87xQgULrJJkTS+l
VTKrNgXjydnb4f7u7vDR4wN8GKhyXFzgBb6sqnX57OHDeZ6O4Oo/HO+OHu9O
9h9+e3L2bnT2diQvFVN+i9nfaQKbXSXZnOATAUYCCUmL4Xewr+glgPe4rOLz
ZVpewkNVdDZDbllGfyqRWR2l5axIqiR6lV8AvKrLVXRY3Kyr/KKI15c3NE8J
RCEpEdd5tVF0Dxd071l072ydzIDmRm83MMGMFyCLhHVdpcj2ouk9ek25DQ8x
lP8i3QaSfTyKvgYIE4Np+frVKDq8JNrV8uXBKDrNL+DXDzedD/w5Bha8TK7a
HzgdRUcxrJY+JVyMDtZFuowmu+N9PjDc1Xj/0ZefF7xkT+vsxcFwGh0BSK+S
efR8k80Iq6MZfPHyeBC9fH1wOIjebdbL5AVyeEBHOE4QbpbJEj/4qScCy7jD
MRBrfZksy6QDlGeXm+FfkgxOI84uOoAJwsrbpFhmcpgMz6NklqzOQR4DkD5G
kB4lF/E5bGOZjMftUIV7DzdtlMazgqALb44fPh4H4HyTRdVlAutOEbWFDET5
IjrOZojHuH0E4Vl6kcV4/2CN0fHrP98BFKPo7cisshO1XiWXIGx24ObLUfQN
DAQgKJhXtzzzLc10toqLqv2B1/AtCnXLToiOdwhLjw+/aQfl9fU10LbZBcER
fhkPryaj9XwRYGYFgIqLeUkk5Bgk6VmKBMPSg2gc9WCWaNw3C3kNB47SMS3h
5JvXHUTtOjlPkhGQwcsMTmUUz0bp8uF/u9xc5A+BGq/iIaynsSYcLhpG7+CM
H8Af2RDWOHx9MHsAFxSIfTy7BJE2OoCDhKUivsOlqmkBePwnFRI8OnxEl5OX
x8O3wirKqPcqB0oIugJSq/7tmPFiFL0s4uvZX28+GCj8cZMlCIYpguHFy6Pn
63idFHfG7N2Hk8d79e3fM7BPZ9HxR+TGDqeBtjMhoVv+jICEEwuJv8N1b98J
n+d4Fzfy7hIFHCTMkzvf0sn44aPdp429vEFtBnkOnkAJom4EvD9aA6tihJtP
Hj0aP6Wdwal9z3+dxyWc6Mvj13fjIX65LaR8MsYdHX571oGg8XpdjrIyHl3k
Vw/TmLj2VfIQ0AwOYFXCR/MhKxko8JUPZ/DssNwAZx/NFiu710NkyAXR4W/p
cOAXR5wOlqDkEKc9w3dv3xcs2O5mcwHaKB7QI9zONxtAfFADT5ab7CKeTO58
SJOH4ye7j0JsA+V2sVlGKBdFcMmGeKuGeO1gWtzUelPpdg7gn5syLZHW4oGS
vhy9Si8uq+sE/61dSkTW448zZBtJpHfvDof6HAjo3/4HbbGTOPLe20njZIJQ
+mNMMtJk2g6ey3g5SrMijUeLAv8Y7k73x3ADJg8tfA4ilCqLBHZVAgIMIhL+
l4yxmypf0UbjVsCoYHr7hg9HutpOLH+5TNIOXnKGNxqtIZ3AOoXBN7PLvDLw
ejOrcguuw7yq0qR4i1wVaMlVvOxCrLj4mF4RSsXn5cPJBO797vTR06cBEXeY
/zNB8/VIV9b+/REwUr9ks7+zZF2FCPFtXsDZZZPdO21rd/fJaDzemzyx23rO
p283xRsiVA9kbqRvhyDlAflOM8CRk/wd4OhVOkvK23cNIoSstv37P4N0sEHO
Df/3l66HQE75utiQTaEVKETs6Ynx/hYRAsnIRVLAkS0SsmnBxZknD5PsId+F
IXDRdCFy5zBfDBO1zQ3nzJUvmSsPc3iSdUVSIR+OH0/296Z7+y0Q/rMZk6B8
d3vfrcAN4NL49h2ANr5cRn/8238HYKDJrvO5b4q//ffsHIQbkH1R2Ot6FK43
sOe//Y/CyYx8Gt8CQFSaI5XjEFTo10nzLOAoULserZKAOB1+/eY0eruMb9Ak
mc3vRGe+zuurENa/z1dEFOMmLpDOrPeWrgl9MrqsVku7KJRIaBhH8dH4tUrQ
dDowCuLe7csFEINSUaR2tX/cLHW5w+EwgqtK8tHOzrtLuI/zfLah21eiSgR4
Un4B5gyiGCXCGyL5MCYR+aXhbvE2kRMFm0SZHXFTdw/wu3LkSd9VOoeFrTbV
BjmJHxTgQgzmGiRy0PdASZ/dDGgV8AI8AuQUDyAhcVDHg12jbSKbw5KQ5mzK
+IKE3pkhPuUsyUDVz0tmXNEKPiY78yxGCblEgTpR8oWi2Juzwzenx5EaWXCw
KvlYAf7cREXCMh3BDqecGW1hwFiJH5MtCB7kLRzmB2/pY1hTVq7zohoQQ4jn
81TkCzQdRWX614TM4OcoLK4rPpJlfj3iE1+l8zloZjv3o5OsKvL5hqABf9+P
XueVCMY7O6/j7AafIKMNUhDAj+wCBH+gw/1onqyX+Q1iSgnb+fdNCkoiaSn5
Mr9ArLkG2RsAAR9fwtEDyoFcT+QOcKsG2yS7Sos848E+fRJz3+fPIyL5cyb5
APEb3JF9Eca5wkPZwHTxTTmAD2bLDUIsWiWrvABYllVewHEO8NxnSH3hu1kM
yAlnwmBd59dJMaJbB2NniBtXeGAE6csETrdMgH3i1nEJ8bKEk/54mZ6nlV8M
LLzc4H7LaJMVyTIFREgY/fOyhNMHrM6SJSxRoFEAshTpDK/BOTx2nc6rS17P
/CaLV6C3VPkaYXnDS0MHCHovonj2Icuvl8n8Al6t8MrCzmCyVXR+A7tlbTT9
K+4zjgq6S3B29hKunQ6H0wFaw9sF3PwEFMpM7gDpe/k7C1H8yLJjUCWdrcQR
qh4i6UAP8dHk82cgCvDWDMnZ1ylcoZvozflfAMhAyKyFEt4ErJc30ahMb5IR
Ah+Y4SB4f6IXSTxHskNCJXFTUK4PXxzqq08me/DqCMlZEmWJ7KcUA4/fO1Nn
QoeajGFRG2YEwlDyqcMVJy1Mr/Q8Jyrw6VPTJEzIu8I7ivgOp48kFjhyCVsp
t+I/3hicJdsQY4OzI9YElz5d84npHgDHSyJVeOEBs/jGpQu+9HDfiQgg3SnS
802V4Pov8nzub+IsQaQhDKATVroSoZwB6FOu0HdmVhLP0xw9ICucr0iAdOB7
S6Dm2QzgsaE54PuLlTtXAP58g/TvZrbEt5JqNgLxL0fdJEo9iACiAB94ATDa
kTHdlNx92DndO9Aj4Aot8QSZfCYwCADVnpwshqkHXfnzdAmvAiWBN4CkITsF
KMVw4zYooEWLtFhdI/jZsg4iR75KGhhBmEB4BaOXmzXBKyY6lLARbYO28OVN
CFFLG4EYAQ/K0O8G20iukozZHQAcXlp6OgQ8ameHVuFwrsyXG7Z9ElojzXHk
KfkI+AULLOCKANkgNiKXDS15RBIAf4yRr4ccSG4Oum/g5hjGfx6XcPFif88B
v2/g1PxikoJpc6J2L9wPOzAQyXEF/rCTj/FqvSRmqavSgeqi/unx2TvUqY/t
zegxS9WL/ng8xeUK1sPBBEQOdUGQUIU+uRXTfSaiAadHDFU4McKKmCwABK4u
4i2SmYCr0+X5dxA5iJ8HRiaUT/hEdCZPaZQxELfHOXQfeM0BDQFi83VOPATx
HARrlB/uLirpTCD5FPlKAFICyUlEBqrweWKKaFFFMijSwZwN6qgK4RLbh4Wh
8s1yzogPLxko/w7hA2T4CgXG8zikLEjkUDZCupGsE9oGCExAAUYXo0HtfhbJ
eZ4TNQYYLlCgwCGLRBYeQBbQuwRc+R0+CiPEV3k6FxqEWAvzxu5+i6eRUIBu
Cd+0Fco2KlhY+RGvSOVtbVW6Ska/lGTcLQi3w53lXFwSIZ7FLIBzxXtV7twQ
elsEXuans3SNt5FMcACni5xMcygOHwSCtCIJGxPh7yK+jtbkIGF0752+fUlB
Ff5DosSsdibMrEQ2LFlSNSIDYQ4J8rCL9abCGS6BZ8HnpA7fwBtwFP5uEGPE
mBJEWDoROQi940yLeaYiWSQFIgRi1AIuazJngkv44e42sbDEMVJke5dAPAcR
8MvgJZb8UBaOhfsAZFD1nAupw0llmHK0w4rFPId9A/GL4OAKJo7KMODSDOWK
Ith6b88AlKEigySj9gnhbsnyUA3j7MGc37j9EzrhHoFGI+XCJRBTD2QH2i5f
DGIoKdLpglY2T0sWH9R+3qZI7ciGVyD+lKQVAcxRTM08NrPAw7oGcEAliuyr
+PSJ/vv5MxNF1n6//z5axxXCHL6nj/B74mBs0ie3xvHHNX5EPAGDJ1Dy4tXA
Osp2FctsxJpI7IH3/NXCId6/TFQx+y45j97lHxLknt+9Q/H2u3fR4TJOV7Ab
oLW9w8Mz+PT70aPdp6K44WvKFulzeAj+7QfXBWCSJLAPPPMhLgXFWF6/03h5
E1F8kRIP8vI7Y71AfrEhn12sJnO+iX53EcZUWQkYZBx3hmlNExB9JdCFvT5E
sVugCCUiYBOKpxVpP/g2SKFDUrCUIouCh4EZnz971ghYvAF5jnWOx+9SkOgZ
dq/y0/i7g2+BOLHKnZPkAFeQ3R+65IpY051pLL6rXDgdJcCODDmqX8MMd8ya
Bg3SMFKiiKimAM/uq8scPjvfpEuibSRsGL0IiMZVvrxC+D2oSLN+IEYPpSqg
BILOiuJ7vkQNDREkK3P8hWwQs2oTg3ZbBiYFx7pCjS9dkdRc4sLEMiEKF0uA
uLr+F1oT4JqiUoFUGmQOOPBAiAomLRQQQMlZiaorMbApd5hIMs9Z6QFcByIA
l2RG6OHkaUDXA0RjOKSlY+0pWh3gXuZZosZyzz5IrfA4DMdGgoL9TFCUwYtv
i9wqY7CQmSFQcvGIqnWkp4ceR6v8HGGxvoRV9EdsNBlW+ZDOmAxN4o0sWctq
WQADjOStIlkmV6gfweGitpYjgrg9XZNghtgKp5MlC7iIJALi2moav0oMAhdn
hhSoz3AkFc3gpFEIJVjGToNinaR05gFQl0DbQAlpIJKYl5RBgoN/iRl5OxAe
K8qK8RKNHjd4W1EeZf9QvkpLd2rLHGGWFCu2+7FpShjWGeLjMasSJRAt+c07
EkLOhhODAAuciDT1RXoxpC+QlfCNQRM78kqQklNU9WGgGgWgfTi8vmQDBGAl
XDM0WhNEQm7yrINL00goy7rACvwE4J6yOpy1spjoYSuPUUr6lKiJzK+gRUrl
Pitkqw8+pPMHVtsbyD1gphQIb/UBKXL2Kl5uEh3s46NKB5s+3kW+e1DSjdIg
soEKRqoHgMDYsNZ6l5Y9OEY+uu5wOIWok0hChRTBkSOJhT/GD58o3hy9e3UW
jUdTWCyc5CVII7K+8d4TgBGR1+PDoxeshnktOzo5Uu57Jp9McMwviZiD/e/s
/Lf2nyiOy6sLNL7+xB9n1Q9+xDJ29AKdZ6X71OEWftr6Zn349k/bJwUU0l8B
Ado//Vk7FTR4P7azTp/c+qt/c2Lf3Hvkfn20r7+Nd90zYwyN0jen9s3xUz+6
/+KJn/Pp7s/a6Lu8AuYV/ox33bbHE7fcyfix+3Vv8nMm7UDQnU/PovuONrIj
6qt7t9FWuJLnN0ArRveAzBLnGsbAdrKv7s0S5HP3PhPlPlLF+Yzkf8BMNs4W
GFGNtjK9vk7DRr9wcRFnMMscueoCBKD8unwG9/M8nn1gZx1c6HxTLYFxlrK6
UOBjZalGaD99QqZ7lSbX8DrIuTPQbUR4dhIJsFw2OOm2B6GejXHqoleSiOGM
AEYHw5kwSBd2h2KusxjgC6RWuQgkfDIub1bBYwpn47Tw4u6t2yQO08l/cEIg
qXnRgAB9agQy1qtWVQpPAluvSqLty5TMO6LYE6SsKOii3yMy16diMd2UTMPj
9RrkF7S7EHcwst2nT0ruiZQi5rwDESAlqynrOqdmzugVSPIbBNKn+ygqfGak
QuACJgIfv/f6T2fv7g34v9G3b+j30+N/+tPJ6fER/n724uDVK/fLjjxx9uLN
n14d+d/8m4dvXr8+/vaIX4ZPo+CjnXuvD364x0C79+btu5M33x68uscc0FqP
yIxB2grJgmuMI0Yk39GzIDB9ffj2//t/xnsAlP8iCQRwBvwHRvIjMwMc4Nny
DLQu/hNO8WYHQRyzeLtEU98a9DH0PMFFYkkI819GO7//r3h3ouHj//oHgPYp
STUsLyUfARErtnDDOhfxCtRNGJFQjYyWAO9SeegMlIIyClZPQozx5IjmfEZm
PbRFiKtmj0QQkqpKpQ3Ox6GIH4grbEP1iq1+OaUvQUgiMS0UloyY5EV79Ukd
xVUcHYHonJHW47Gqd3h09MrbmnfJH+WMzYTOKPJ+JC8U72+OY/mNjCJLQL1y
BOMSmEXfnLNkit+jDPUdCj5kviGnBJqpSU+rmhaveIleT36YVOAjlEfhxpCb
iZTxY7E68OxuAJ5UZJ0y2htNRmNaHP5Goo85PXZAimsCSC4a60jNCAlRYtwK
odewJk5X8UWf1DEMz4bLwgZJpBb3BkLq3bljZoyQA6F+b5jmw603rECNF56C
eqm+NjvI7Jf5vGxQbx90s83Y/qxOask60Elr1VApQqXjV6Sl24HEysqLG0XP
NwUpBPOkitMlLbbJnuju02MdW6wjWdVkuoYyoauJjHE9GzLcZ62XaMCNAC0H
mkWKt/dxiP+KXXLeYYhesZi9+mLgG0Wv0g/kHDh5eXw1UYvIU7QG4YZ6R30V
4hkF9/bgKyPFD+7MBdPSW19iXYqeO2/Vu07o7+GJXnFncWsxd0bxBYAQPW1s
iAJxADCxVKMAsrSbSENe5Qp4ffsAueESYUAAcGYPJBR8rvj864NDiSOFPbWu
fXhiBn3nrc/RAj2/PUBYuYGAivlaLDqLHBFLH6WzbSjHF6u4rsuI/nLCewIZ
4ct/TpNynVMu5I+3PfrN++9ve+THnd/+dCFYf/7w4+1rucOPG+Wb9z8MkOD2
QJ18fwhCxnsg23B+vej0d3igvUg/hB3iPz9Effo/GeX3P39Lv/1ldxRFB8cH
R34/J7KfE7ufkwHvHI/N7+cf7YzalR3AdVV2vujGMf8/v3FqERLcaHcEGg8M
3qkMvRPygAxKOArHKrHETSJbJmOqyRmJuHBKf/96J30RiOVWRb1TEk8SiR7x
j5YUv+KV6h7bObwaREZKaxzvUGhmFMmORvbQt2xt429PX74HJieBTORdxlxq
gE8RRhIwhVYpSmhr8AAKU0CFfkN4hcPhfdHgGDTitK+TzDYMG4xQQYGAHXY0
FiMsi2F0F92INRZqXUFoggeC70g5T9ZmI9w6t7tEnFujJIJWoIAQoxtrO0q1
ge+aOBI0p5nFCYL681YB16FGy1LwEsMdHkV9TfPqnfKfMC5qco6Too9nnnjJ
f01qawNcePZbN49kERCUyInEdSEF0QlLIz0OuuVKljK8gwJxhAdT5lc/RjTW
D53bzDjEENNUbqCzk1gIlmzJgwCqcE7WY4PtJLWivoork7ihgL/v7NjYkRlm
uuKVubfYLJfDBYft3TOxFRjcY3bUIuUVHMaGXm+RfObz8hkC9R1iBWhd64qs
swDFnvwXzkIhgjDqR+9evAdRA/6d0r97jHFoUwitEexZKu2SwtNw1zJIbFmi
wDNPULUnQ3oDoO7ShrQDZ3Mr6Tx22I0X572THRZx0CnbRBcp+dYoKCHPMLbL
xR2cRLVYMaabmSNEqJDXSBGJSuTww+2c0jC8hEZwDeiEcFOTQiKFcQUcURYt
JHGV0a4WssE3Ey3MQVgGOaZNyAY99poZDvlxB2K3QZv30gULr/EEswsZdKkK
yMJavb1/ABRYJYtAkYKYOzXcMO5ZGuWRuIplXe98BOGCYq0KxSC4eH8NCHvT
24zqNB86++eBa14URvRGvKT4BFdAgIMk1jkwoPMlBuw5VuN0M1jQHA7MHU64
Hbxciqfs1aDP32M+IBMbmRKDnCjOuGNudR+gWMFVUT7MFz4UAba5YJWOSIrd
Mrqty+6AeTsFqnBkeTHXW2I/vb3Emzg44PGG41yoJApHBnKcoEa9qQfYRZgv
0/MCgxlLr6qxUjaoU9dUY22Q08AaeTrhSOYCOSgovgGh6mJwZSMMxnC7gdqG
WDeDX/IF5ssgiEQKcf7NLj6F4Vw5h7ggEpPvTnUv8q2bQIrQoe2wBknBZrUC
IP3VWm/gQXyODCZJiY7yGY5ojMdsJUrjiyxHCw16RAWTGuagtnoSpJbd98HW
x8ojPt134hzZTb9JMpSLWOAM88XI30y2XIJUAVi7wphxWOmNF0R7Tl4ceK+K
/3VKLLyT9Lq394TVw7OBbRldzIDhCYm7Tak2DuVaVm/z+dyvj7y6FHR4E53w
kVEYLfx5ihk6sBiRRchfiDJwzbo9YhdEjta5yxjFVLp2yxvDatoi7jS6kjzv
ko4Ap4Y8jV2WblTy4Zd80ZU8wIjoO1zjSR4sl6FXhV/ZZikl4BD9qNv5JLpo
JCQIbQDoFF4uNxhcwMF4NR8O2QmcYNd1lkCArhNYacx3nbJYWC9KMI1cHuMj
agovYnSCJVFAEhUS4JQTxXPjjmF3A/tCRs7fbxwuNcMwIYG1ZzpHCo8kTg4M
Fakzcx9PLuzeB8/EF0VS4/9GbuyhBDsgcauvuyuJvSa1yErRs2YlBik7kmxG
RcTEgDklNoTEGkGRzO/CqHWOlLS41wmQFo3tQleM5eDGfUQItNAEmk+fVvje
EN8jYL0L1Alc5e2KXLygQA6Udh0T9dRCsV8FIzzet92SFk6JrDJZIK88l5vO
ziKq6MHhJhcJ2T7ZqR9OOKp9sEesiqOF4LJgIErJFs+/n5Hr9fG7F28Adc7+
dPLu+IytJt8P8DgHEeBU6O4Wo8Xfw4DS6m5vWcsva1jytrJDNIiFBjNWPd/n
xXvQEZHvIHwmxrD09zCVtQYTbNnRz/mpjdJmdAthMmWYTB1MeJS/J75Mtz71
q8Cl9sNgQjjsBXBoGeX3w+jn/t9d8WXvlh21GSKJFWvQRZNJh960Dk59m+2R
Y+hIbfx0nw2WYpFk9bZKVkKjkNQ27IXIWYer8mI8RIZMztCUhApS0xLJsFvc
dPj81LEltk0N1W+Nb3denFvCGOLS8jGSMwAiHc6wZ9HuIAJpdsJS1NQqbPwI
ccDSuWBZIoi7V9C2Tc7GZDGeouZUiqmlVhyiXaoHN7mvZlWxk6Ck7DySMnWL
3YSlUA39RoiRV5hSZiSftzTHyFqijdKgmAyVX1p3yA7JDs8isWdBgC/0oDYk
jIbB0mXXkVwu8hj58MQHLeZ2Vp5D6cYF0bNQwSpphzsrpJattLP9Q6AEcpPe
AcpEP0YtMsOPZj8t9OzPFEj5Yx0vsAhG+4c7v/3K/oR/bf0woFu7MHwQIKir
bfsweHPc+aaNQmx7c9Lx0O1zTjvfbJvzp59nG022REFpc/NgOPjXYEN5Cxmu
ZQYxigMdm4vZ0xH+NFmySyDjr8IYNam7hXU4Ek7C4NtFYSAS0s2BskbhwgRx
T6U5O+sCdMiEzNhZcq33myOuD018rFFAPt0HfcPZ74g1aUTDHeyMPRJ4Qejr
O0Mi01nzPIKUKRwrF4VSAVjXYfuwVtVBu3teFAka6RsaNmx6Ec+QLChMC9Rp
sPRNEGVBNk218DeccsIUndWK+CFaF0KbqVFtbDQhR9mnrkaEU+OkvKf65Lpg
OM8N7mT1VNT1pljnXLVNFD6NEdu2cZ/UjtJAXJb5LPWRFQHuqbm34ygC4ypi
X5qVonhhtCgGSGG2C+ireVkF6Q+akEmLlZuxAKz0YCgNbpSXaGduQYJyo9nI
lMhLLhZOzUGTyWqzipZJdgG7su+ymwVNC1iigFBotca4Oty+5gXWgh5f5NfJ
FTrYyGZjNwfyooMbML7E+THog9W6CmARXf7P//3/gv85to62HErVQT8UPdjb
/bi324dhKT5PgrrQJnOdO0cVx+JG73IRDPDtIb2tdUToXkqufLBczt/ByCD1
dPqcNbIp84m6orKlGyaAocTBiUjoImKuAWTKmLHaDBWn1SDP+6F7op3oALIZ
swe5xDG7igx+7U7HKBQymDR56wl7xdMqlHU1tcWz7irnYuIYA+VzKiWHyV7P
rJZx7o7frYGX5If2SzrtXNLEF+NwW/mpSyr9mtwi0F3ZSaqdYxol2YCYeVrg
ryNjiDdglUy8KzWKeitZ+2wUhBvFcw5hyIVCmXhfhkRcmaCtBt1kP2KmpQZG
jGC1SiOAZV8j8p/x5Qt5m8dP8hPES1LAzCOcJouEBAmnEoYA01uvmDW7qWyr
ulOtWLOIyO4aMQ3SyxzcTBp2ONkbRKMR8JRJoNfAAEN9rS4D75zw6M/qGioM
hv+geg9D0gf4z5ilRxIE9ZvJdCdcTG9Me+4/k9SM6WP/LL42wQF26R8/yvhJ
q/xlF6/y1xv4+2sHA41tlZ3cJnkhSOtED/B2loMMk2qMQ9wFZ8wK88ouhZRj
mpweHN8SCiyuv0Y4Ky+OojdktGxgBvmjbixlb/AUOL/nuauiQQEAux8BrGlZ
XwZ93GtZiMe44QQEFsqzxMf3xp0vWDaF4/ZHNO/uUeu88PH2ecfTcN7OF8J5
d49k3vF+67x7Y/jiLgON92WgaddA07sNNNWBDr4+bIfF3oS+ustg+CCWLAL8
xkJWVAMhBcGH4nOLBvUKsQf5gI8P0ongIgSTSFhrXJQsWZAl6S6o3uP8aP1T
bAaUu4Cio6U9FE/6lw1JdWv0ycyBHM4qCg4Riu4cgG2rc1pRWtqbEDfugou8
MenAJ+rEZTChqeMZW3Kce1dtU3YkkyMZAnqArHhGgGARUirarrjiEWcJlNFl
slxzHRMk7VR55Jp8MKQPcHh2mBegIcY9lJ4qCoIrSDSHcQ/envSBriBzKDlI
OIAT16UgP2NJ4Qxc50tyBHyphxaIIV8MpLOIw3XoO14IJXcKy/yTOMDbVUAi
laK8oDqo/JcplC1vA2IaJg936YMos22W3lHoUq1FlaTiAiUW60/XVFZbEzU1
TXM6GvtsBaoINDAyiTJikIHQn4qJGoFIgSLNTX3AaW1AktvYGTW4LdYu0lwj
2UCXsEPp4swYqjoMKHtfgGs3PorOKAe8LuZ5YFKkfoAuaSV571eYYMH59Fnb
4FwdROUuM8bIp1hTE4boN1TRt2363Y/Pn0c9SwdlR6FJG2400tnnz1tUgn5j
ufh+23pxstFt60Gudrf1TMY/czWTseasOVL86b63D4ACY5V01IZVqXJUD/Nq
AvQUoXJJ9TOo9FZpAoruUCWBX+JELZSKKUTCmyeCunN4p3NYwclb0po1AFB3
XdnILhOwrJ4JcrZL9Ix/ltiXRActEw1Qdnr2gCXhbC7yjB4J1kwcmL+LhCIq
EaXNp/ONU0jwY3KVSLkM+jsoQ8fWrrgsk9U5wB6+nycruHYpYPbHhs+6lDBQ
It9sAjTb5rczoL8YfCRF0GydJbNItUQRR3H6CoWIkUhewwEtpcnBKgsMz/HQ
5BoQsZj6rH1fwzIonE786tVlkW8uLv2JBJGiVPyi3JyXUmrLR9vZYsTOnM5B
GZ1Re1LtclvJFfbt2NpDpQ1YV9NMs3qDSEwcU+sjWrzTh+pQgD64WWVMuk2R
ByHefF+iVfyxMYkJIREJXvXL37H8lbLqqdXrfJSrXE8apFk0IiwmRHu4kRpW
cp4+LIhK/mC6cDr3tSs1LMRepiDcpR5QgvWl06WTL8LsWrSNifEXBItVKqpm
w0nU7UAhuYDPX71ahx65WQ5gvEbToP9CQ71qFwxPhMKaqWTk3U2ybCoJi+p2
2WmBkvkMZJTUsKZgq5HngoKR1dhOdI/cZLCUWULhoSHTkNDH8+QizTIVmkn2
CxYwMJw+y33gZW1PtrqdbgmBo3WNBB5iAPegFYOnq9Dmxl8leOvScuWkCo9G
plygR+uBJMUevJXCI3c1qBMdofeE0CcSvEvkwJuR5REgNmW11bjtauzeYXY1
XzWRjVoFzjaUnxegXF4FHlqm8KsEgONNVR5W5ylLyJIKzpGSSCG87LwQ21iR
rwvcaocw0uNqOldxuuTiWC4qPgjP7Cu/DTYKeLwwZkqDpdu3NPjJe/KTOaMh
KQ9cGk7qwPwbdmH8N7RNLx71B6yqsagNF3K1sgVokKZZCUK9R4wX6/gGC7GW
wlh8Ijkwyzxeo1DvJQ0pEkgFtzoMlz4hJIQW7QVnxHJisJUUKaMtTEcOfIm3
puvBwJwtUdAjTo+VfzTrdeRCcSXgThwzrpAY+mYMcpLfnYtvokxK26zBnfhP
khQPyg48ojSWpb0B3qnfdhFq11WudX5esctFpT4jZEiFwrzoAG9AN6K0XmeL
nDfxDH0e3mOP6bJUNaJWfopAIjWkqJjdR7y0dLCaf4JZx1yoq0BjQlRKaKwV
yNhfWfPOvvUFmj7dtxzWJYtrFIrWEHd17ajuHaLZZb0G2INGzEqP88H6JO0I
eAMW7wspSWi+1LDUZUjN1FIiWDT9vTYN0z+MmU8KbemHeVWcleGi58P8hPO8
VsYS06470tB6tYuXzt+7IoRfK4NhgchPMbgtd66ZcFefx5Y7VJ+1oqeL41Se
4NFUVfsOMNXSNI41FeUgSEWh4g/ifT04ItFLQUrFI2/ZHLLW65xKz9fDpCYY
5j0Lgprx46l83Od+Db8hRtg5A3cmQLVQmEK7kG6Cl18fHHLkQDnqnkCS9bZu
ztW4cOS/HoPoIxSkXOsdsjE4/YJN4B0HZzcm8v+GOEY5A9S3gT4kZtw5A+XE
SsO3oG0gewGrS+dW31ABTWZpjVtwahLCMJDyZbiUCoapOI1GI/Y01WV6yt0h
x7OIodvud9QzcbTunveDaditPptR+bS8DQ6IHi5evQtEAd8h+QIjoVpL5zXS
hvwoPlepWYy1ChJdNRyAC0yknCyVB2V3SX8ZRc/rQm0H4qaS2UUqqcaR+3C/
FxLiF5va7Ka6BAoQrTX56sPSCDGaAxdD0ZhNmb2HMAYbdYGPsrHOiR909M69
G0JDlmTrEZK1mAr8OakvrpiCRLDqrHVZsGQx+LaFNnm2WYr/rAVVxD9A19zX
gW5L6oQ3+s5zVoPn1ljPujO/xex68AMJhD53xxltWvK0NQIHoyuIztcXE9b/
1Ec6l9cJG5c4ElAUyvWr6IwddZWQRp349pSSURdlv/ucTBUCI41/mZ0MrVtu
xrwyleN6UF3zeAjXJ/FftA4ckJoFBbuUVdtwYn3034g1DDOlvHWnbR0d5C4E
p2acBPHBW8p8Bq6CB2VYr+FBuSVFUYMFMDOePGCtIS6eeG6pSGAH+kYEsW/e
NzP0kWq2FAHtAErT3RlHZxuqzMwddIF8nACjYlLLNNkV5zo8c8KSEf36XzLX
g1m2eABaGdBelyCHBT5NpYbYle22BcRIDlD5oVbQXurZc1Bzy0JCj6QOfl1g
ubW52EGInLbR00MjNgpZpY23ko4g47UhQQ90m+X2w/8JpSG+Y6sjPuNSU2nS
j44bkbORl4SHSisa7ZzW3BbyEldZKLlssX8xZp+FvrxdBvZpW6QBuL0zbTZV
eNnIZiU3EiX9zTdyVadINlDrlTGdNkUuL7GAtNm7VzLq3+vXq07b9hirtFTL
ixSM0kXISKkk+GqoHUEOYakV7G8pWK+DqdoW6uktl5sLrE32d6l2XsvXt3Sn
l5J7rqI71SFu1t8rm9WKhYRawS+Z17QPcnNQrwZ0asYXt8nsgnIagSDHEMkh
8fYRY2v75NrKv6SEEdzeuqCRcQ3kNvmivYsGVmUjt4+oz6qXmTiM7W4bq42S
Q9heEe9PCDzSqdY9wyJv18zt+B55EMH/fBghCNlkTFtKKx/JWwtXocpvG7A9
oOsFKCny2/lapP5hI54mAHqXB4OdAaZqp1df6JJxeWxHUgZm67buxVY8HJhy
jHFzvdv3LiZZCu+0xuJurO8ZU5OPvFbD5TVWuCRrJGrjybzv7H1FMvRLOllw
gx2McuHmOvb7220FaJ7JZ7NNIZpH7PtbUQgqeiZ0MEIPCk4hm1JgTikp8IAW
jU7ZmQtpZ98fryMtwvR3N3TZVd9SylvWilqi9cxRoa12kLilPvpA6Q2HrZ4z
0zw69n0+gocD2QEjDIK66XdfSYN8ta8Dnzo0NO4OpPyLFgH03dvjY9sgpWUx
G2DYF9isEOnsHWfRrBIjaJGSLOFhGS+iOV+cBdM11HOpxwn/Q/MukOLSBtTb
2NkZalmNcGIyqX0bf0jmbmHasW8DygaWgpXoTZByPfVIndApMV/sRilJn6HG
jSAlLNKPasbz0iXqULsfD8a7+wdYGryHpQvWqv4bMbhPki17AeJSvagYV9Ri
SzaQduJUlgs3cnINmQhqaj2sPVkuOgSXAwcoCh1z/JgrTJ4ny/z6WRiD/Kke
fLz95yFAFdv3TqJn0b29yfDR7nA6Hj5/Pjx+Ppw+GU4nw+nTe4P6SyCd4Uv7
8NKd53sIkOVGweO7v/ZQj+2hVM7Hd8f19bS++aFyL+HmLh/s7j647cWHwK3k
pSHOtHenmWbFlb7EM52P42kCNPHxbrK/P5/G+/NHe5PxeD57+mixe/4Ug7Uf
fnwY9AKYLhaT3UfJ+ZPx0/Fk/nh+vr/YixdP93fnE/h9Gj+gpz/v4P9/bg3u
htulMd2tVjSryAH1nTx6NH66JRNXaswc/+lk+HjPYfBI0p7vu9hFLzmH+pgK
zZKaypZTMaQPbKk+4zEB8aYWzREmblgn5LSuuX+Rs6BdL9N1hKqZ9+5gXyJd
eFNB82/XdbTQP2Q+EE0thM4XVi807P6ZrYl4GjRhDgNCmhkwEg7RkWpe1wlO
t5l3sClJrTrj7SvxAtuXreTklpVgQTl/MChVyT24k+rD+t7H6KuIDv+U7cpk
MENHtHNupo6PBvluYYnJ7smQ9yg/q1nb08oX1kmGRu4kJW5GGDhHfw56ic4J
SdCfTq1cbB7gMs0+lKNOT+UXpj+WLmp2iytPchXDgnPGSfvF6jiFKbkyB+j1
r7df896ijrZCYaEeFbdaFPmeESb7bap87w4CoDSyEzNCllwPeUVDWpEWMapT
686nDSq3FTxFWR49Rmbr70GyqRd1cFHZTnrXRgDSfEBsQaZcZzswu7EJFXu9
Zl65bxkAiV/zkLx5SqM+SI1qtxnxZ02d1QdZP2s7X83kvq0jEw7KXZmMDmuD
231lf0aWgAYj5fgUTfdAKiBBBhWIFzjF5wZlMctFhECVDuTdjmW2dqKipdbV
7a7Afj7zlsXiWmEQ+OuzxpLyn/RxfdmBI6HjzqUBa2zjbYHHMRFbvjlKH3Ba
uRpWWa56tQQu4SD3hvz6veYyfHtMOE15bHDLvZAWXCdARqmDKWEYxswQr6Kg
Qx3fWQHcEoIJB2qHkAg8FO1LjlQMJ28c0SDMeHfJEHFZblYCeD51QluRHjhi
jOM6r6h8CLsuajnosbyKLEYrhKBn6zKZoT52zqB22yb/cMLRu5tsPrL96jET
HKtrkqHFV7q1l1bhgXOqy/9BxB0tXTQ+J/6Ih8mXLGB2esORybWJpXIgJldc
kY+XSsAZnCsdQILqoo6JFS7vgMwuzsxD7FAmtnBEAyIRaa5NKR40MrJxWgc7
gO/zjXjBqPg2bG7X1VjlfoPw13sla4EJzlTH+NiOi/fgw+waAIyzwK+z8gFN
jAfEQXvNtngDa1Fu505AlcKn2pLE4SVULBlblRMYwwP91eFx0tsuYg9KI775
he2kyYsSN5Yab2VmDOpFM7p+paAomgUKY4rwIZO48WNKVUgNaCTLozVxc+wp
wdEamU1D3D6P+TIpYO056mZwpyp50ccBlba+bjjACFlAsAc8Q237aOoqy2I9
cTTLrneY5sT9tsAJRmsfMk01OOWKIeI00SmmY6Ju02i6ANQf4nsutP0+VbTG
sJJjY/hUbec5azs8NDVRvC8le4cfKKTwXVgxAo/31cHL4zDVwGb3qBIYFnqF
J6g1JdV1AA1qJaFqpV+/aiFk56EDctSjqQI4EcmFYta4Lux+LPcArxhalwK+
Kv7XZTzzjjSbV0iPjXYmPEYzVzXIeguLdZpMK7IrSkl2wAMZFPXNMqnBwQWQ
yOPpwhc4SRfdAkIg9n3EFbx9dXDy7bvj79+9v7Ehz6Ce38DLE4Tg9EtV9SiI
imosXu+D2auGxpYG3WB9zEyIqIP04AOeLD6pe0nYE65ccEO7RsulY3Lr+1GR
KPXcWAg8tC4fPH/+IJI+3M5qX4OW6I+VxRqyUu5hXh/pne67oM4JDq4dlzkJ
cLRtKZPxnZYi3VNbl4OJfVledK0HZrDrwaeD1WuyrCT4IZXgiJwzjMihYkgY
G3WgymYQr2NLLcfSFYBquJEKYKrKumSAe3RwB+6be4Rn/Onxcpmu0QB2uCmu
EviKeStW6q5X6ZV4P2AVXOkGuw4tbWQQ3H1WUeeu85l2WeTFbOmzZnGcW7eB
woMh3CV7MuGSb6hdHM+igtTx2eTRY47fPDw6O2AyefbiYAgfD6ID7HaJXx4c
nw3hd+nzPmfLnyN5uPMomWPZ/JK+GhlgWanQkxruqZ1RKpzV20TygmFXTLnh
c6z+7AKGmKLVQenpTwWfxGUV7WvhnYOGLcJD3Ppsb1U91LZGLQckEMy0V3B9
uNrDxEyKKMCrkBeQPHqgBLJVewRY6XR0qj9IoC/5dqCYg5IRMMp4XW4k40CK
oPVeHr/u23yNt3lZDf9pE2fVBvDKyAxR7+0/HfYjeB67y8RBaqp21FH6u/53
oq6Sll7Ly+zaABlGiXWZsM56+L7MNB5MBtO+dNTGWMrljUvGjGt996ibg88Z
JSCG1dPqZS7h9rUFrDmVDhgrYsUo+iPGLiyDsvtbeqExT6v3URsE0mEqJqtf
JxiunsGoKZeoXQDDMv3rbh2S8Vs9/R3xxFbRZuKjMPa2G1biWFgrq9z3aOkO
kzMl+lXsRzCQLUbzKcPoD09CKfyfUU3E+66t3gGwo7vwkipIFPEkxGSEYG1c
P6r7mExGzY8NedOevlHP1Vjsu+c6YkV7nkL4Z1tQC7ulmNj2xhrtl7WV7hxj
tfkAIi5IxZP5mAzP3k7CvHsZnydLdyktoeGXLGuUrqZE7NztJBWYrmdYZIQt
cyJ9cNAGKiOr8zTzjqYaI+XeLJYNSeUQDm1AT6kGhtrdkmRHGcGZSaLye7XP
Ul5ac4g2OyIDILvxWLUp1DZDlV2GWFFqOJngP2Ot8t8xLUm32CfYs7qTg28P
VE65QTM0PznUj1BxpzVwu8Sl7y/AnTLn1KuW8DpSyUsm2x3CylzmK4oNh4ev
B86QT+6bRV4EjoWT/J2YCVWMdgW8KLAB/rhBWRsICtbSXcQzqtvm5R2ZZjh+
PHy8h3IKnaf5FD7ij4v2mOuT4+Nj0JRf/8tvolU+54iCCIMKws1xM9YpIxUn
PRTYN1VvaQ/nOU+rvndzkLtewN59y6IerBtfHLXBdI+mfWTgengZw/8muy2A
bbhtAtuf08lwC7Jas4OyZf7oce1Av8EDlfT7C25pArJ8NuyalNK9LaG8TFHo
4/w6Sj+0wgHldxd4NvNkeeMkj60TtAFtwlCbPGqCiOZ3md0BfFQsvkAMpBIc
QkHgTSAf2QxvQ7g51obDKye+MKoOTRfZ73AUAheWGegjLdrH4bcgl/PTnz7h
H64fhG2/xRWge9g3goqIwxVWkzaVrgkWyAIjdzkzRFDUYIU5fa/SkxG728QT
0T1DQdGXL+nKJmiUnXZhkJpZBJCp99oiZ6mTMNLMB6KtXWpOvazjF487ci0h
vLUmfFie9GKb28VA26OIZU26o3AMEgtfLs+yVsAdl1hytzFSrSyumPZjYRPr
rqfoRC9SrC9DkyUfh/Ct6+N+7AqDc3qAphehL/I9CBUYp0FCY2tHR0fieqYV
ZF8SwNkw0rQ7Jaots87IycmuAku+gjckHYDbX3WMhGxhdkm1FxD4phkN6dnd
bSgxBsxFiHlNiqxKb16+xRQ8QCap3uUacT+RNtxPTBNu7W6OF4mtXEE7gAcf
jTUPYWWAxP750HAQ1VfUuXf0jKqkZOvF675GKtyQBEy6v46kXcJvn52iT51W
nIZF3EQBQ9b84CZwFeIb7PpEW90ClpewCdu0Z7wBOk4wJknIi30NLGAc3ZYi
DDy0D/h6cPQ57O9I1fax4ROVYSrSdemkfO8H8OVuuHqr6z1mm7a5Znnt7EIc
DByiII44V+n73ITYaLif34Fm1nKbhyBl0quqlH1a2u5K2xv4CUjY2GIck5jp
iMdUJaHOPNASt+Qd8OXOxdJhxc9axYIeNceRHjDS9oT/s4eZrQdUfDFfx1R1
AlemYBmJ0oCP0DT81kdnI+duEFM8lb2BRLZSjQutMCDRDfghJacz+xTg2JgD
WkWVrMgI5P6KnFwZDsvWQPjyPWkmGr3m+nrgN4TbQVPBeD7EQUXpx2UdHb0S
fx7dH/jTmvNqLQ/w6x1c0FdRD4ROP/szxKQBfPRf/cTwIRrnBzv91ug9XYtr
WSIbpoA7rKzRgsKEweoNbACPluITYuIsxkk0zkPrFpHy7L3CthVYrSiQcQdJ
xH2giAQJVPF5mS+x6ARvXVN4FECD6F9+dH/8y4+/84KOB5fG0DWMdCiNcK80
GUD0e8UQoUqiQs5g+ZRygeIJiqHy96DDctNYqytwp+PXohP1O0nLO0AWHlON
HN6H9hoofWKEGwrNibo+btKHS/yyAeymuHYPXgRNlpIcd0r90Zn825UtkjbL
LzJygDDNbzwt5VDklK1fX1NcAPLimEQcMoVy3HLI0EudA11ZqaCFIOgqsw+1
eCXXdM4nZ4aNA5z1+JwORYRdXXZoZuRxGUl5Zo/xdHgGmg2UAvSAy4WxGzRF
65W03R+keJWO4qRYrdYRbUi6vRbAzsVn0IkiDRRmeGyo2a5z1xjMtfUmHFbh
nvMypd8R40fmja+iXfcWEkHpeOssxvwnsfeoGwZIlsQCo+UAWZQxpfIdeVeH
myMBbuu1xg9eX6oVrIpe6ySUMFMk6vmLDVVARSMzNzWoieWM+N5TpUA2tS+w
qBARSXs4Nq3q3Gtsohq56XyrCkZXEjoDk5kijhm/hXiHqgPOJiXtyCLR6HiK
XAVzaQG3PopQdj96y6cIspeep0osvsCTS4NeYv8CKc3R1rU0iMne05uCA9tC
J6YdYxg/JdIDixI1IWIQ7Y3cYhllYGUrOJcL7r5JIp8inSSAqoAxz0uKTTF9
m3UML/GQP4x6nV2m2nAF62+pSUiNgg4ImhCKlZqzpBpis9e4otIBulClRkIs
2COYlrO4mHtOw2SZaIQpqLKz43Zb+nJS5zcaqGLQmT1wwb1lBtJbl8lmng/7
3KQZsIytPKzpmtrFi6DAmmwYKK+RlICYs0YkbCcUr5w/1ya1Gf6Ndwu2o568
wE/+Rntw6NH0mpJalMNRw7K5rs9vBFW+wsrlu9gW+zoXq7ojUj4MstkORJp9
2A22jLtHI1MH39rYrqJZYrqvM6xbIO03sfsxeWpT1cya2uYfJ093drromaML
rcdPFh2MpAMOeChUVsErBkLnfTN30vlcMTyGLGhe8rbBnWuPmgGTPE9msdqq
nKGOym2nqHlQMI1H95QYIN8NmESKjBne8ZYLbmJCf5Br6oPGRX2duS1aw/+5
a262WZuKbR3JoaPojKqQ+yGEfqkZJglLvvpmvFRTjXydTr6g8sOhf8G2qyVT
Q1XLr6ewbWQFvquIkAyKyMRqxMFieswr2XnW2keuXiDJGRRH0Q9JywqMf/9D
hp4Sm0pAdWhLNGcBYqCUhLU+xbFPCqguh6WPoDUscTaSWKQ2ZdCTNpkRwdXm
PCIewmvhSUnV1TLorkIOE8lIcKUi6xVbBdOcqBWgp/JMNvJrRxLV+kC5T67Q
V1FThsIyWgwzjB4bBNYjygdBb/MzigJ7IQWo3B65lrDayusNpCkyjMtSaV6l
5m1idmVLb+ugLl5QRVAyDbkOJBdTpcqQOpe49/Qi/alIh29j5HoF1qhHl9Hw
Ocn4v3PGnZhMO5EWQROUsxV1W8o+O0nLHYa0JC6KlMxgOXYr8FV75DXnTJCS
tno8JqkGCBacRrlQpmrzsRZhLzET19VW3tLLYQoOb2EKNw9netB68Xrc6fN3
jYu3Mx05stYs3xQWnNA0OE6k+J2NBHAlKHgjazOiDUzlxAGLk97Uvc1LjpIT
19ywAa3GR5B1F3yAPYKoRo0bG7H9wfZMop/LFtFNmuKIO484LIVokAQt3GY4
67Bn6ehSivDxyDRdEDMsy30uR7dWb8QvzybmPgnKx+6hs2i51L7aD1UpkMon
CySCAy2yKhQ1tgG8VnnylIBMe07YCGorBx4Lh3J7zrnURhHdPdSA7GZCjUeV
mvObndRADue49oXr/hXQRu06WIsoKKsUYCMuQ3WjhPUq634UjgS9LoAyDDUg
S+31LiNuhrxbDL+uJA3Mh3xsmcwvXNSWIymqnTiPjivV2g4yDWP0Nodalf6k
rTioC7XBXXhNAhFE60jW8rq7WRjneTOQ4IkhiGVsXX+uxSVshgsFOWlTdL04
QQAc3l64FwOjhUhgfQsniqVknhSjJMafks/XUetWoAnS27ooizj1oiJMt0Q7
D3Uw0TEHHLi7SJQJU27P9eVNi8VnQT44gYIWk5WKFQIFEddgQaKZ+BjlSgO9
TWkWCr0NKsxWVgSzBQQFGvRycxtbQRNdx6XdHd4j3AvcqWfccqtZiDRIgPaW
MtC8cX0EV1ykGBQcgOnuBKFdYVpp5msaeJFra9UcvF++eKKUKKzBTTNZrbDc
Zzsg5UL7ksYqd0pdFl8aJ2zsQz4/l3ydLI2i0QKrayQ0CJJAc2lLzlVhwi8I
hQmxibu4fi9q6PN101MA1DhapR+5xQ+IWXgLXrx79zawY7Gww3JZdakWvJSF
JCaULIy21Z02HqZtNP68paFCnbuFFZhNXyVLzlRC48LzwdYdKaazVVs9IaFw
J3SQgaZxGZfeVuX0Jy5SuKGOCn4+od3ZKOqFcQXOSo1ft+7HM0fJWUP9EyDt
6pUZ21WzENXt4/u13DL+dNTXarzGpKsp3HHhMlVbKadGsFxLnVFiJRipVAXP
S9yatMDgzMgVZ+rFbOc0Tz+ER10JfJSiKJoyVjMq8sQ5u+A2aXnpkA2eXpEv
n+iEs+O2LNsXLKixFVsVS3lJPbVPk1RmsZaHjyXoodb0wao2LqLpT6cnOCgP
1bifKkMRem+TH5FVYljFzs59CsI+SijWD7//dB8rnAOSfCZThWtPHTbteOs0
RbVTECk9/ggUZFYNAeOGxx/XLNVggbj9x09ByqlV8wzDM5VTtZctJUhSuiNF
RvjIHV6PdWqQFlmKzqP+D5rxvawPA48S/lWz/vR7WjN9jb85i6rpF4B4Ypbz
9vTlexSC4J118QF+o3BEPWraEMZVkWuxSCrH0pHZ+OI6JPTGLodgHiKDetjd
+tXc4JexSD8m86EIX5ssRSKD+eTGYMeQ68GC+zwfRZ4Eq9PWUAqIYB7yb/DX
L4+em4A62sHrg0PpjI30CxdFcgjHcMDM1FEESSRVHHvz8rUsApaD9N3V1LQF
zwxae92hpsXXd8iEWgvvS/FPBtJc2IRritVuUAqi0lpDoEgg/f1/GQ6jAyAl
MXb0UyrnY5zL2SUoD0sXNUIZxDjG8/QCGb0E5/x5M0uzdDahiobvvj56BmT6
ukiliY2OPhz+wfTOcXjw6b6isViJWo+77HsHV0gvrMGHCkUwmNiuHEwVFl2y
P2gdgUmir8IXelEZL4ESnbx8HfU7393xzZu4SH0DU04QU8g1D8MF5SyIQGJw
Bs5OlaE00NAFMDijl4NYDQNaCdG2xBiy5qeLLVSs5IQk8QZ3wwQA9gLu0bD1
O0M17zTfy2PKd7p9ypdwT+FR8/EgouSpe/ei/h2noufvNhU8Gkz1aDyRqczJ
v0xms/iD76VXMxflc+D8OFi/0b3q06ezt/u7u8Px/iNnCSiSsvJHGHKBug+D
7wiS8AkII/jfaTLh7BX8Yy+ZrihWI2X5I9RPKYoFe1UNP8wXmrKC0Rsf2faI
aOljGaRLJ3LmNGN5x9zCSpuXa2cOraCZXeVLso0GgrdbqXlE+SdoK5gfJdiv
c0y1Jq3GttluD+a5iWbyM1DayYp8aSmrY+0+p4QuNN0Xcpzj9XU19t69eD8Z
6VeIMEG1PxcNOfRxkU1mhUGKP0Q9E6xHDEVDF39AUH/z/gdOwuk3giy0AsXj
kdSgMMmJ77y7iCa5oJASIDiYNMjTz24GXmLJVLlGBg6LSEuTYNFdoduJ4ea1
NbqmjJBQ2rouB1gDQ09OFkixqZTHKHabDkCJNCIcWVYnVdEWm4yBwRlgT/b2
qVTKFopPQ34l7/eiHwYE97756PsBQX8L7d+6LcnqVCGeiDcpV/glEk7fqVaw
Mdbs0/JWZoWPA/kF3B/KPD1CyQHva8ua3d3A67fldujt1PsRLO6krsPZlodl
vYtEo1SdEF83TYPznh28ekdf4X5O4ViksA1eOPedXZ1KYkQG2baqAjDJv/Ae
DSQ41IJizVvIJdO+H/A15Dt5GvWCjW+tYN+SFtgf7OyQTcTsnZdtyRaS7S1H
g1/fdjTGK/dTj4amaT8a/AqP5uSH5tHUV+eOhs+z63BOfviiw+ECVj8MLI08
4cOx7QZ++uHI7nXhQetH1S683oXXGWVZ2hUf3VbNYWi8PdyM4+TP5cCJiSU8
YOVZ51JAYdhETbjJB15jUx6hbnC74u10BVbmzhvG7OFsA7L3aBCo1FgYqJG8
rxUxvwqmMW+aR28RofHpWs/zSgNWNGq4JZqXXuNwXr9SH8+rfYo0ljfS9TyL
NvRIGNy7I7gcRb+1w3H9Y3iev9FBUy1kzB9r8igv3PsREK6aUbqz852XOxFr
mpowPr5N05Er6hahfg2TFNnsdMvMAf6d0pWBX/ZaSmmVLUU+Pj2ThI+v7s1A
AwQ0vtdV+KPt0a0qzZqrL/zHaDSdmOoVm+5Hfgn9ZtsCnJpjvn71M5Wc2+Yj
KaJlPrmgr+Cxfdj4p//5f/4fnz9/lrcHVigz6dOgLsDRN5QMygQT5uCyOubi
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
X2A8KZYwbGF52zOJMbYiIQcGiHl0yVZaJyLN2sHAmUrISe3r0+9Jufj69Hd1
T3cFRfiiQ+qNc/hMplrHDgUt3VDWFiSOn1Ecp0gfitsFk5M430GWj2pJDYSc
bvKnevI02UzqujD03W1dtTlX7lOx3NALQdXEKM75Votu8xAkgYXIL1eXMByi
l43k+0Zye8Xa0z/dXUlp+3l2VdxLpJJHczVKB+R1oRzwTktofS7ev2w0BEqk
1AroRGS2YO7fPzB7ftoUyEQpU08TaOFzjLMJJGk75LXoXOE1m7zmjXiZfJl8
z1aCTLN9te4o50pR7B+u152r/auF8qCt3Wqa8jXs2HagziSXYQLP+MrmjpwQ
w2rqiWkJwVKkB6Y2usSPMzia5/mcw5DC2nt+KOpB1Aw/8drxNGVq1fOuebc7
/CVbCQz9OB/nwAqwfHMqlfOuMwmSwcKDspB39gwj4BQHMSw9kHO8RygKk8Ly
ClPpcBVmii0T2YtTd1Wd0XJEgvqztPyFG5KutKMFNg9peIG4cdnRS6fFlJ/X
y2CeizOZ+NfO4UGYAailKJdMDrNNwgfpkCxGo+CYotAnKh9rKDOuLx+vpSZD
Sl4TtsVcEU6x3p9/zmZTtXK5gI5l4/M3DkfwDghtVuJkWCJwsalallYUSBy9
UI8ZsdylZ3c2tCafe4VRiiBTnkv7tt1Naix44dGkv3/48Ycfk+/rLV0OuFQe
vSBp+AAeHXaiA0GhjEZwZ27/LdfoB4wOsb81N243un3x1N25pII/LYgpTqfz
Qh3vvg3zVr28JcHEaDVl8WBeshp9WQ3+53cYE+3TIBjXju96qojB870MArNr
i/JFlU+CkSHhXUF/3V8Djf4G2vn1U/wl+df/5f/Qz7p9+ewL+aSz1Y0+2bKv
daDJFJps9uCXM/il32mvbfbWexvdtc5at9Pvdrpbve46/Hdjs93ub3TXN/vt
rU6n34cnO2tbW/jk2spaf7O3BiPqdfrt3lZ/faPfhlc6KytfU3516nX7Wzo/
t9BVp7O2sdVtb251Nnu9rfVeu9veWlvrr2+2NzprfWhhbW2z3+/12+sbW2ud
9ub6Wq/XW1/pbW1ubbTXtzY2Nrobm5sbW1sb6+vQ98rKDR8LR0LJnRM+/O4n
N9B17ZaWoueWJjU1fm/h77M6PVCrXcEfnfrTfl0erY2nw+SKtuIOGtrs9Xub
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
62KuKWZhnY8W5+cr/z8ylpA32/8CAA==

-->

</rfc>
