<?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  (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-core-oscore-edhoc-09" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.18.0 -->
  <front>
    <title abbrev="Using EDHOC with CoAP and OSCORE">Using EDHOC with CoAP and OSCORE</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-core-oscore-edhoc-09"/>
    <author initials="F." surname="Palombini" fullname="Francesca Palombini">
      <organization>Ericsson</organization>
      <address>
        <email>francesca.palombini@ericsson.com</email>
      </address>
    </author>
    <author initials="M." surname="Tiloca" fullname="Marco Tiloca">
      <organization>RISE AB</organization>
      <address>
        <postal>
          <street>Isafjordsgatan 22</street>
          <city>Kista</city>
          <code>16440 Stockholm</code>
          <country>Sweden</country>
        </postal>
        <email>marco.tiloca@ri.se</email>
      </address>
    </author>
    <author initials="R." surname="Höglund" fullname="Rikard Höglund">
      <organization>RISE AB</organization>
      <address>
        <postal>
          <street>Isafjordsgatan 22</street>
          <city>Kista</city>
          <code>16440 Stockholm</code>
          <country>Sweden</country>
        </postal>
        <email>rikard.hoglund@ri.se</email>
      </address>
    </author>
    <author initials="S." surname="Hristozov" fullname="Stefan Hristozov">
      <organization>Fraunhofer AISEC</organization>
      <address>
        <email>stefan.hristozov@eriptic.com</email>
      </address>
    </author>
    <author initials="G." surname="Selander" fullname="Göran Selander">
      <organization>Ericsson</organization>
      <address>
        <email>goran.selander@ericsson.com</email>
      </address>
    </author>
    <date year="2023" month="October" day="13"/>
    <area>Internet</area>
    <workgroup>CoRE Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <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>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Discussion of this document takes place on the
  Constrained RESTful Environments Working Group mailing list (core@ietf.org),
  which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/core/"/>.</t>
      <t>Source for this draft and an issue tracker can be found at
  <eref target="https://github.com/core-wg/oscore-edhoc"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>Ephemeral Diffie-Hellman Over COSE (EDHOC) <xref target="I-D.ietf-lake-edhoc"/> is a lightweight authenticated key exchange protocol, especially intended for use in constrained scenarios. In particular, EDHOC messages can be transported over the Constrained Application Protocol (CoAP) <xref target="RFC7252"/> and used for establishing a Security Context for Object Security for Constrained RESTful Environments (OSCORE) <xref target="RFC8613"/>.</t>
      <t>This document details this use of the EDHOC protocol, and specifies a number of additional and optional mechanisms. These especially include an optimization approach that combines the EDHOC execution with the first OSCORE transaction (see <xref target="edhoc-in-oscore"/>). This allows for a minimum number of round trips necessary to setup the OSCORE Security Context and complete an OSCORE transaction, e.g., when an IoT device gets configured in a network for the first time.</t>
      <t>This optimization is desirable, since the number of message exchanges can have a substantial impact on the latency of conveying the first OSCORE request, when using certain radio technologies.</t>
      <t>Without this optimization, it is not possible, not even in theory, to achieve the minimum number of round trips. This optimization makes it possible also in practice, since the message_3 of the EDHOC protocol can be made relatively small (see <xref section="1.2" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>), thus allowing additional OSCORE-protected CoAP data within target MTU sizes.</t>
      <t>Furthermore, this document defines a number of parameters corresponding to different information elements of an EDHOC application profile (see <xref target="web-linking"/>). These can be specified as target attributes in the link to an EDHOC resource associated with that application profile, thus enabling an enhanced discovery of such a resource for CoAP clients.</t>
      <section anchor="terminology">
        <name>Terminology</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL
NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED",
"MAY", and "OPTIONAL" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
        <t>The reader is expected to be familiar with terms and concepts defined in CoAP <xref target="RFC7252"/>, CBOR <xref target="RFC8949"/>, OSCORE <xref target="RFC8613"/>, and EDHOC <xref target="I-D.ietf-lake-edhoc"/>.</t>
      </section>
    </section>
    <section anchor="overview">
      <name>EDHOC Overview</name>
      <t>This section is not normative and summarizes what is specified in <xref target="I-D.ietf-lake-edhoc"/>, in particular its Appendix A.2. Thus, it provides a baseline for the enhancements in the subsequent sections.</t>
      <t>The EDHOC protocol specified in <xref target="I-D.ietf-lake-edhoc"/> allows two peers to agree on a cryptographic secret, in a mutually-authenticated way and by using Diffie-Hellman ephemeral keys to achieve forward secrecy. The two peers are denoted as Initiator and Responder, as the one sending or receiving the initial EDHOC message_1, respectively.</t>
      <t>After successful processing of EDHOC message_3, both peers agree on a cryptographic secret that can be used to derive further security material, and especially to establish an OSCORE Security Context <xref target="RFC8613"/>. The Responder can also send an optional EDHOC message_4 to achieve key confirmation, e.g., in deployments where no protected application message is sent from the Responder to the Initiator.</t>
      <t><xref section="A.2" sectionFormat="of" target="I-D.ietf-lake-edhoc"/> specifies how to transfer EDHOC over CoAP. That is, the EDHOC data (i.e., the EDHOC message possibly with a prepended connection identifier) are transported in the payload of CoAP requests and responses. The default, forward message flow of EDHOC consists in the CoAP client acting as Initiator and the CoAP server acting as Responder (see <xref section="A.2.1" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>). Alternatively, the two roles can be reversed, as per the reverse message flow of EDHOC (see <xref section="A.2.2" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>). In the rest of this document, EDHOC messages are considered to be transferred over CoAP.</t>
      <t><xref target="fig-non-combined"/> shows a CoAP client and a CoAP server running EDHOC as Initiator and Responder, respectively. In particular, it extends Figure 18 from <xref section="A.2.1" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>, by highlighting when the two peers perform EDHOC verification and establish the OSCORE Security Context, and by adding an exchange of OSCORE-protected CoAP messages after completing the EDHOC execution.</t>
      <t>That is, the client sends a POST request to a reserved <em>EDHOC resource</em> at the server, by default at the Uri-Path "/.well-known/edhoc". The request payload consists of the CBOR simple value "true" (0xf5) concatenated with EDHOC message_1, which also includes the EDHOC connection identifier C_I of the client encoded as per <xref section="3.3" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>. The Content-Format of the request can be set to application/cid-edhoc+cbor-seq.</t>
      <t>This triggers the EDHOC execution at the server, which replies with a 2.04 (Changed) response. The response payload consists of EDHOC message_2, which also includes the EDHOC connection identifier C_R of the server encoded as per <xref section="3.3" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>. The Content-Format of the response can be set to application/edhoc+cbor-seq.</t>
      <t>Finally, the client sends a POST request to the same EDHOC resource used earlier when it sent EDHOC message_1. The request payload consists of the EDHOC connection identifier C_R encoded as per <xref section="3.3" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>, concatenated with EDHOC message_3. The Content-Format of the request can be set to application/cid-edhoc+cbor-seq.</t>
      <t>After this exchange takes place, and after successful verifications as specified in the EDHOC protocol, the client and server can derive an OSCORE Security Context, as defined in <xref section="A.1" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>. After that, they can use OSCORE to protect their communications as per <xref target="RFC8613"/>.</t>
      <t>The client and server are required to agree in advance on certain information and parameters describing how they should use EDHOC. These are specified in an application profile associated with the EDHOC resource addressed (see <xref section="3.9" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>.</t>
      <figure anchor="fig-non-combined">
        <name>EDHOC and OSCORE run sequentially. The optional message_4 is included in this example, without which that message needs no payload.</name>
        <artset>
          <artwork type="svg" align="center"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="736" width="544" viewBox="0 0 544 736" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
              <path d="M 64,64 L 64,256" fill="none" stroke="black"/>
              <path d="M 64,288 L 64,544" fill="none" stroke="black"/>
              <path d="M 64,592 L 64,720" fill="none" stroke="black"/>
              <path d="M 488,64 L 488,384" fill="none" stroke="black"/>
              <path d="M 488,464 L 488,720" fill="none" stroke="black"/>
              <path d="M 80,96 L 208,96" fill="none" stroke="black"/>
              <path d="M 336,96 L 472,96" fill="none" stroke="black"/>
              <path d="M 80,192 L 208,192" fill="none" stroke="black"/>
              <path d="M 336,192 L 472,192" fill="none" stroke="black"/>
              <path d="M 80,304 L 208,304" fill="none" stroke="black"/>
              <path d="M 336,304 L 472,304" fill="none" stroke="black"/>
              <path d="M 80,480 L 208,480" fill="none" stroke="black"/>
              <path d="M 336,480 L 472,480" fill="none" stroke="black"/>
              <path d="M 80,608 L 200,608" fill="none" stroke="black"/>
              <path d="M 336,608 L 472,608" fill="none" stroke="black"/>
              <path d="M 80,672 L 200,672" fill="none" stroke="black"/>
              <path d="M 344,672 L 472,672" fill="none" stroke="black"/>
              <polygon class="arrowhead" points="480,608 468,602.4 468,613.6" fill="black" transform="rotate(0,472,608)"/>
              <polygon class="arrowhead" points="480,304 468,298.4 468,309.6" fill="black" transform="rotate(0,472,304)"/>
              <polygon class="arrowhead" points="480,96 468,90.4 468,101.6" fill="black" transform="rotate(0,472,96)"/>
              <polygon class="arrowhead" points="88,672 76,666.4 76,677.6" fill="black" transform="rotate(180,80,672)"/>
              <polygon class="arrowhead" points="88,480 76,474.4 76,485.6" fill="black" transform="rotate(180,80,480)"/>
              <polygon class="arrowhead" points="88,192 76,186.4 76,197.6" fill="black" transform="rotate(180,80,192)"/>
              <g class="text">
                <text x="36" y="36">CoAP</text>
                <text x="84" y="36">client</text>
                <text x="452" y="36">CoAP</text>
                <text x="500" y="36">server</text>
                <text x="28" y="52">(EDHOC</text>
                <text x="100" y="52">Initiator)</text>
                <text x="428" y="52">(EDHOC</text>
                <text x="500" y="52">Responder)</text>
                <text x="240" y="100">EDHOC</text>
                <text x="296" y="100">Request</text>
                <text x="120" y="116">Header:</text>
                <text x="172" y="116">0.02</text>
                <text x="220" y="116">(POST)</text>
                <text x="128" y="132">Uri-Path:</text>
                <text x="252" y="132">"/.well-known/edhoc"</text>
                <text x="152" y="148">Content-Format:</text>
                <text x="340" y="148">application/cid-edhoc+cbor-seq</text>
                <text x="124" y="164">Payload:</text>
                <text x="184" y="164">true,</text>
                <text x="232" y="164">EDHOC</text>
                <text x="296" y="164">message_1</text>
                <text x="240" y="196">EDHOC</text>
                <text x="300" y="196">Response</text>
                <text x="152" y="212">Header:</text>
                <text x="204" y="212">2.04</text>
                <text x="264" y="212">(Changed)</text>
                <text x="184" y="228">Content-Format:</text>
                <text x="356" y="228">application/edhoc+cbor-seq</text>
                <text x="156" y="244">Payload:</text>
                <text x="216" y="244">EDHOC</text>
                <text x="280" y="244">message_2</text>
                <text x="24" y="276">EDHOC</text>
                <text x="100" y="276">verification</text>
                <text x="240" y="308">EDHOC</text>
                <text x="296" y="308">Request</text>
                <text x="120" y="324">Header:</text>
                <text x="172" y="324">0.02</text>
                <text x="220" y="324">(POST)</text>
                <text x="128" y="340">Uri-Path:</text>
                <text x="252" y="340">"/.well-known/edhoc"</text>
                <text x="152" y="356">Content-Format:</text>
                <text x="340" y="356">application/cid-edhoc+cbor-seq</text>
                <text x="124" y="372">Payload:</text>
                <text x="180" y="372">C_R,</text>
                <text x="224" y="372">EDHOC</text>
                <text x="288" y="372">message_3</text>
                <text x="416" y="404">EDHOC</text>
                <text x="492" y="404">verification</text>
                <text x="488" y="420">+</text>
                <text x="444" y="436">OSCORE</text>
                <text x="488" y="436">Sec</text>
                <text x="520" y="436">Ctx</text>
                <text x="468" y="452">Derivation</text>
                <text x="240" y="484">EDHOC</text>
                <text x="300" y="484">Response</text>
                <text x="152" y="500">Header:</text>
                <text x="204" y="500">2.04</text>
                <text x="264" y="500">(Changed)</text>
                <text x="184" y="516">Content-Format:</text>
                <text x="356" y="516">application/edhoc+cbor-seq</text>
                <text x="156" y="532">Payload:</text>
                <text x="216" y="532">EDHOC</text>
                <text x="280" y="532">message_4</text>
                <text x="28" y="564">OSCORE</text>
                <text x="72" y="564">Sec</text>
                <text x="104" y="564">Ctx</text>
                <text x="52" y="580">Derivation</text>
                <text x="236" y="612">OSCORE</text>
                <text x="296" y="612">Request</text>
                <text x="120" y="628">Header:</text>
                <text x="172" y="628">0.02</text>
                <text x="220" y="628">(POST)</text>
                <text x="124" y="644">Payload:</text>
                <text x="228" y="644">OSCORE-protected</text>
                <text x="316" y="644">data</text>
                <text x="236" y="676">OSCORE</text>
                <text x="300" y="676">Response</text>
                <text x="232" y="692">Header:</text>
                <text x="284" y="692">2.04</text>
                <text x="344" y="692">(Changed)</text>
                <text x="236" y="708">Payload:</text>
                <text x="340" y="708">OSCORE-protected</text>
                <text x="428" y="708">data</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art" align="center"><![CDATA[
  CoAP client                                         CoAP server
(EDHOC Initiator)                                 (EDHOC Responder)
       |                                                    |
       |                                                    |
       | ----------------- EDHOC Request -----------------> |
       |   Header: 0.02 (POST)                              |
       |   Uri-Path: "/.well-known/edhoc"                   |
       |   Content-Format: application/cid-edhoc+cbor-seq   |
       |   Payload: true, EDHOC message_1                   |
       |                                                    |
       | <---------------- EDHOC Response------------------ |
       |       Header: 2.04 (Changed)                       |
       |       Content-Format: application/edhoc+cbor-seq   |
       |       Payload: EDHOC message_2                     |
       |                                                    |
EDHOC verification                                          |
       |                                                    |
       | ----------------- EDHOC Request -----------------> |
       |   Header: 0.02 (POST)                              |
       |   Uri-Path: "/.well-known/edhoc"                   |
       |   Content-Format: application/cid-edhoc+cbor-seq   |
       |   Payload: C_R, EDHOC message_3                    |
       |                                                    |
       |                                         EDHOC verification
       |                                                    +
       |                                            OSCORE Sec Ctx
       |                                             Derivation
       |                                                    |
       | <---------------- EDHOC Response------------------ |
       |       Header: 2.04 (Changed)                       |
       |       Content-Format: application/edhoc+cbor-seq   |
       |       Payload: EDHOC message_4                     |
       |                                                    |
OSCORE Sec Ctx                                              |
 Derivation                                                 |
       |                                                    |
       | ---------------- OSCORE Request -----------------> |
       |   Header: 0.02 (POST)                              |
       |   Payload: OSCORE-protected data                   |
       |                                                    |
       | <--------------- OSCORE Response ----------------- |
       |                 Header: 2.04 (Changed)             |
       |                 Payload: OSCORE-protected data     |
       |                                                    |
]]></artwork>
        </artset>
      </figure>
      <t>As shown in <xref target="fig-non-combined"/>, this purely-sequential flow where EDHOC is run first and then OSCORE is used takes three round trips to complete.</t>
      <t><xref target="edhoc-in-oscore"/> defines an optimization for combining EDHOC with the first OSCORE transaction. This 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>
    </section>
    <section anchor="edhoc-in-oscore">
      <name>EDHOC Combined with OSCORE</name>
      <t>This section defines an optimization for combining the EDHOC message exchange with the first OSCORE transaction, thus minimizing the number of round trips between the two peers.</t>
      <t>This approach can be used only if the default, forward message flow of EDHOC is used, i.e., when the client acts as Initiator and the server acts as Responder. That is, it cannot be used in the case with reversed roles as per the reverse message flow of EDHOC.</t>
      <t>When running the purely-sequential flow of <xref target="overview"/>, the client has all the information to derive the OSCORE Security Context already after receiving EDHOC message_2 and before sending EDHOC message_3.</t>
      <t>Hence, the client can potentially send both EDHOC message_3 and the subsequent OSCORE Request at the same time. On a semantic level, this requires sending two REST requests at once, as in <xref target="fig-combined"/>.</t>
      <figure anchor="fig-combined">
        <name>EDHOC and OSCORE combined.</name>
        <artset>
          <artwork type="svg" align="center"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="544" width="552" viewBox="0 0 552 544" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
              <path d="M 64,64 L 64,240" fill="none" stroke="black"/>
              <path d="M 64,320 L 64,528" fill="none" stroke="black"/>
              <path d="M 496,64 L 496,384" fill="none" stroke="black"/>
              <path d="M 496,464 L 496,528" fill="none" stroke="black"/>
              <path d="M 80,80 L 216,80" fill="none" stroke="black"/>
              <path d="M 344,80 L 480,80" fill="none" stroke="black"/>
              <path d="M 80,176 L 216,176" fill="none" stroke="black"/>
              <path d="M 344,176 L 480,176" fill="none" stroke="black"/>
              <path d="M 80,336 L 184,336" fill="none" stroke="black"/>
              <path d="M 384,336 L 480,336" fill="none" stroke="black"/>
              <path d="M 80,480 L 200,480" fill="none" stroke="black"/>
              <path d="M 344,480 L 480,480" fill="none" stroke="black"/>
              <polygon class="arrowhead" points="488,336 476,330.4 476,341.6" fill="black" transform="rotate(0,480,336)"/>
              <polygon class="arrowhead" points="488,80 476,74.4 476,85.6" fill="black" transform="rotate(0,480,80)"/>
              <polygon class="arrowhead" points="88,480 76,474.4 76,485.6" fill="black" transform="rotate(180,80,480)"/>
              <polygon class="arrowhead" points="88,176 76,170.4 76,181.6" fill="black" transform="rotate(180,80,176)"/>
              <g class="text">
                <text x="36" y="36">CoAP</text>
                <text x="84" y="36">client</text>
                <text x="460" y="36">CoAP</text>
                <text x="508" y="36">server</text>
                <text x="28" y="52">(EDHOC</text>
                <text x="100" y="52">Initiator)</text>
                <text x="436" y="52">(EDHOC</text>
                <text x="508" y="52">Responder)</text>
                <text x="248" y="84">EDHOC</text>
                <text x="304" y="84">Request</text>
                <text x="120" y="100">Header:</text>
                <text x="172" y="100">0.02</text>
                <text x="220" y="100">(POST)</text>
                <text x="128" y="116">Uri-Path:</text>
                <text x="252" y="116">"/.well-known/edhoc"</text>
                <text x="152" y="132">Content-Format:</text>
                <text x="340" y="132">application/cid-edhoc+cbor-seq</text>
                <text x="124" y="148">Payload:</text>
                <text x="184" y="148">true,</text>
                <text x="232" y="148">EDHOC</text>
                <text x="296" y="148">message_1</text>
                <text x="248" y="180">EDHOC</text>
                <text x="308" y="180">Response</text>
                <text x="160" y="196">Header:</text>
                <text x="224" y="196">Changed</text>
                <text x="284" y="196">(2.04)</text>
                <text x="192" y="212">Content-Format:</text>
                <text x="364" y="212">application/edhoc+cbor-seq</text>
                <text x="164" y="228">Payload:</text>
                <text x="224" y="228">EDHOC</text>
                <text x="288" y="228">message_2</text>
                <text x="24" y="260">EDHOC</text>
                <text x="100" y="260">verification</text>
                <text x="64" y="276">+</text>
                <text x="36" y="292">OSCORE</text>
                <text x="80" y="292">Sec</text>
                <text x="112" y="292">Ctx</text>
                <text x="68" y="308">Derivation</text>
                <text x="216" y="340">EDHOC</text>
                <text x="248" y="340">+</text>
                <text x="284" y="340">OSCORE</text>
                <text x="344" y="340">Request</text>
                <text x="120" y="356">Header:</text>
                <text x="172" y="356">0.02</text>
                <text x="220" y="356">(POST)</text>
                <text x="124" y="372">Payload:</text>
                <text x="184" y="372">EDHOC</text>
                <text x="248" y="372">message_3</text>
                <text x="296" y="372">+</text>
                <text x="372" y="372">OSCORE-protected</text>
                <text x="460" y="372">data</text>
                <text x="424" y="404">EDHOC</text>
                <text x="500" y="404">verification</text>
                <text x="496" y="420">+</text>
                <text x="444" y="436">OSCORE</text>
                <text x="488" y="436">Sec</text>
                <text x="520" y="436">Ctx</text>
                <text x="484" y="452">Derivation</text>
                <text x="236" y="484">OSCORE</text>
                <text x="300" y="484">Response</text>
                <text x="256" y="500">Header:</text>
                <text x="308" y="500">2.04</text>
                <text x="368" y="500">(Changed)</text>
                <text x="260" y="516">Payload:</text>
                <text x="364" y="516">OSCORE-protected</text>
                <text x="452" y="516">data</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art" align="center"><![CDATA[
  CoAP client                                          CoAP server
(EDHOC Initiator)                                  (EDHOC Responder)
       |                                                     |
       | ------------------ EDHOC Request -----------------> |
       |   Header: 0.02 (POST)                               |
       |   Uri-Path: "/.well-known/edhoc"                    |
       |   Content-Format: application/cid-edhoc+cbor-seq    |
       |   Payload: true, EDHOC message_1                    |
       |                                                     |
       | <----------------- EDHOC Response------------------ |
       |        Header: Changed (2.04)                       |
       |        Content-Format: application/edhoc+cbor-seq   |
       |        Payload: EDHOC message_2                     |
       |                                                     |
EDHOC verification                                           |
       +                                                     |
 OSCORE Sec Ctx                                              |
   Derivation                                                |
       |                                                     |
       | -------------- EDHOC + OSCORE Request ------------> |
       |   Header: 0.02 (POST)                               |
       |   Payload: EDHOC message_3 + OSCORE-protected data  |
       |                                                     |
       |                                          EDHOC verification
       |                                                     +
       |                                            OSCORE Sec Ctx
       |                                               Derivation
       |                                                     |
       | <--------------- OSCORE Response ------------------ |
       |                    Header: 2.04 (Changed)           |
       |                    Payload: OSCORE-protected data   |
       |                                                     |
]]></artwork>
        </artset>
      </figure>
      <t>To this end, the specific approach defined in this section consists of sending a single EDHOC + OSCORE request, which conveys the pair (C_R, EDHOC message_3) within an OSCORE-protected CoAP message.</t>
      <t>That is, the EDHOC + OSCORE request is composed of the following two parts combined together in a single CoAP message:</t>
      <ul spacing="normal">
        <li>The OSCORE Request from <xref target="fig-non-combined"/>, which is also in this case sent to a protected resource, with the correct CoAP method and options intended for accessing that resource.</li>
        <li>
          <t>EDHOC data consisting of the pair (C_R, EDHOC message_3) required for completing the EDHOC session. Note that, as specified in <xref target="client-processing"/>, C_R is transported in the OSCORE Option of the OSCORE Request rather than in the CoAP payload of the EDHOC + OSCORE request.  </t>
          <t>
Since EDHOC message_3 may be too large to be included in a CoAP Option, e.g., if conveying a large public key certificate chain as ID_CRED_I (see <xref section="3.5.3" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>) or if conveying large External Authorization Data as EAD_3 (see <xref section="3.8" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>), EDHOC message_3 has instead to be transported in the CoAP payload of the EDHOC + OSCORE request, as prepended to the payload of the OSCORE Request.</t>
        </li>
      </ul>
      <t>The rest of this section specifies how to transport the data in the EDHOC + OSCORE request and their processing order. In particular, the use of this approach is explicitly signalled by including an EDHOC Option (see <xref target="edhoc-option"/>) in the EDHOC + OSCORE request. The processing of the EDHOC + OSCORE request is specified in <xref target="client-processing"/> for the client side and in <xref target="server-processing"/> for the server side.</t>
      <section anchor="edhoc-option">
        <name>EDHOC Option</name>
        <t>This section defines the EDHOC Option. The option is used in a CoAP request, to signal that the request payload conveys both an EDHOC message_3 and OSCORE-protected data, combined together.</t>
        <t>The EDHOC Option has the properties summarized in <xref target="fig-edhoc-option"/>, which extends Table 4 of <xref target="RFC7252"/>. The option is Critical, Safe-to-Forward, and part of the Cache-Key. The option MUST occur at most once and MUST be empty. If any value is sent, the recipient MUST ignore it. (Future documents may update the definition of the option, by expanding its semantics and specifying admitted values.) The option is intended only for CoAP requests and is of Class U for OSCORE <xref target="RFC8613"/>.</t>
        <table align="center" anchor="fig-edhoc-option">
          <name>The EDHOC Option.  C=Critical, U=Unsafe, N=NoCacheKey, R=Repeatable</name>
          <thead>
            <tr>
              <th align="left">No.</th>
              <th align="left">C</th>
              <th align="left">U</th>
              <th align="left">N</th>
              <th align="left">R</th>
              <th align="left">Name</th>
              <th align="left">Format</th>
              <th align="left">Length</th>
              <th align="left">Default</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">21</td>
              <td align="left">x</td>
              <td align="left"> </td>
              <td align="left"> </td>
              <td align="left"> </td>
              <td align="left">EDHOC</td>
              <td align="left">Empty</td>
              <td align="left">0</td>
              <td align="left">(none)</td>
            </tr>
          </tbody>
        </table>
        <t>The presence of this option means that the message payload also contains EDHOC data, which must be extracted and processed as defined in <xref target="server-processing"/>, before the rest of the message can be processed.</t>
        <t><xref target="fig-edhoc-opt"/> shows an example of a CoAP message transported over UDP and containing both the EDHOC data and the OSCORE ciphertext, using the newly defined EDHOC option for signalling.</t>
        <figure anchor="fig-edhoc-opt">
          <name>Example of CoAP message transported over UDP, combining EDHOC data and OSCORE data as signalled with the EDHOC Option.</name>
          <artwork align="center"><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|Ver| T |  TKL  |      Code     |          Message ID           |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Token (if any, TKL bytes) ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Observe Option| OSCORE Option ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| EDHOC Option  | Other Options (if any) ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|1 1 1 1 1 1 1 1| Payload ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        </figure>
      </section>
      <section anchor="client-processing">
        <name>Client Processing</name>
        <t>The client prepares an EDHOC + OSCORE request as follows.</t>
        <ol spacing="normal" type="1"><li>Compose EDHOC message_3 into EDHOC_MSG_3, as per <xref section="5.4.2" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>.</li>
          <li>
            <t>Establish the new OSCORE Security Context and use it to encrypt the original CoAP request as per <xref section="8.1" sectionFormat="of" target="RFC8613"/>.  </t>
            <t>
Note that the OSCORE ciphertext is not computed over EDHOC message_3, which is not protected by OSCORE. That is, the result of this step is the OSCORE Request as in <xref target="fig-non-combined"/>.</t>
          </li>
          <li>
            <t>Build COMB_PAYLOAD as the concatenation of EDHOC_MSG_3 and OSCORE_PAYLOAD in this order: COMB_PAYLOAD = EDHOC_MSG_3 | OSCORE_PAYLOAD, where | denotes byte string concatenation and:  </t>
            <ul spacing="normal">
              <li>EDHOC_MSG_3 is the binary encoding of EDHOC message_3 resulting from step 1. As per <xref section="5.4.1" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>, EDHOC message_3 consists of one CBOR data item CIPHERTEXT_3, which is a CBOR byte string. Therefore, EDHOC_MSG_3 is the binary encoding of CIPHERTEXT_3.</li>
              <li>OSCORE_PAYLOAD is the OSCORE ciphertext of the OSCORE-protected CoAP request resulting from step 2.</li>
            </ul>
          </li>
          <li>
            <t>Compose the EDHOC + OSCORE request, as the OSCORE-protected CoAP request resulting from step 2, where the payload is replaced with COMB_PAYLOAD built at step 3.  </t>
            <t>
Note that the new payload includes EDHOC message_3, but it does not include the EDHOC connection identifier C_R. As the client is the EDHOC Initiator, C_R is the OSCORE Sender ID of the client, which is already specified as 'kid' in the OSCORE Option of the request from step 2, hence of the EDHOC + OSCORE request.</t>
          </li>
          <li>
            <t>Signal the usage of this approach, by including the new EDHOC Option defined in <xref target="edhoc-option"/> into the EDHOC + OSCORE request.  </t>
            <t>
The application/cid-edhoc+cbor-seq media type does not apply to this message, whose media type is unnamed.</t>
          </li>
          <li>Send the EDHOC + OSCORE request to the server.</li>
        </ol>
        <t>With the same server, the client SHOULD NOT have multiple simultaneous outstanding interactions (see <xref section="4.7" sectionFormat="of" target="RFC7252"/>) such that: they consist of an EDHOC + OSCORE request; and their EDHOC data pertain to the EDHOC session with the same connection identifier C_R.</t>
        <t>(An exception might apply for clients that operate under particular time constraints over particularly unreliable networks, thus raising the chances to promptly complete the EDHOC execution with the server through multiple, simultaneous EDHOC + OSCORE requests. As discussed in <xref target="security-considerations"/>, this does not have any impact in terms of security.)</t>
        <section anchor="client-blockwise">
          <name>Supporting Block-wise</name>
          <t>If Block-wise <xref target="RFC7959"/> is supported, the client may fragment the first application CoAP request before protecting it as an original message with OSCORE, as defined in <xref section="4.1.3.4.1" sectionFormat="of" target="RFC8613"/>.</t>
          <t>In such a case, the OSCORE processing in step 2 of <xref target="client-processing"/> is performed on each inner block of the first application CoAP request, and the following also applies.</t>
          <ul spacing="normal">
            <li>
              <t>The client takes the additional following step between steps 2 and 3 of <xref target="client-processing"/>.  </t>
              <t>
A. If the OSCORE-protected request from step 2 conveys a non-first inner block of the first application CoAP request (i.e., the Block1 Option processed at step 2 had NUM different than 0), then the client skips the following steps and sends the OSCORE-protected request to the server. In particular, the client MUST NOT include the EDHOC Option in the OSCORE-protected request.</t>
            </li>
            <li>
              <t>The client takes the additional following step between steps 3 and 4 of <xref target="client-processing"/>.  </t>
              <t>
B. If the size of COMB_PAYLOAD exceeds MAX_UNFRAGMENTED_SIZE (see <xref section="4.1.3.4.2" sectionFormat="of" target="RFC8613"/>), the client MUST stop processing the request and MUST abandon the Block-wise transfer. Then, the client can continue by switching to the purely sequential workflow shown in <xref target="fig-non-combined"/>. That is, the client first sends EDHOC message_3 prepended by the EDHOC Connection Identifier C_R encoded as per <xref section="3.3" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>, and then sends the OSCORE-protected CoAP request once the EDHOC execution is completed.</t>
            </li>
          </ul>
          <t>The performance advantage of using the EDHOC + OSCORE request can be lost when used in combination with Block-wise transfers that rely on specific parameter values and block sizes.</t>
        </section>
      </section>
      <section anchor="server-processing">
        <name>Server Processing</name>
        <t>In order to process a request containing the EDHOC option, i.e., an EDHOC + OSCORE request, the server MUST perform the following steps.</t>
        <ol spacing="normal" type="1"><li>Check that the EDHOC + OSCORE request includes the OSCORE option and that the request payload has the format defined at step 3 of <xref target="client-processing"/> for COMB_PAYLOAD. If this is not the case, the server MUST stop processing the request and MUST reply with a 4.00 (Bad Request) error response.</li>
          <li>Extract EDHOC message_3 from the payload COMB_PAYLOAD of the EDHOC + OSCORE request, as the first element EDHOC_MSG_3 (see step 3 of <xref target="client-processing"/>).</li>
          <li>Take the value of 'kid' from the OSCORE option of the EDHOC + OSCORE request (i.e., the OSCORE Sender ID of the client), and use it as the EDHOC connection identifier C_R.</li>
          <li>
            <t>Retrieve the correct EDHOC session by using the connection identifier C_R from step 3.  </t>
            <t>
If the application profile used in the EDHOC session specifies that EDHOC message_4 shall be sent, the server MUST stop the EDHOC processing and consider it failed, as due to a client error.  </t>
            <t>
Otherwise, perform the EDHOC processing on the EDHOC message_3 extracted at step 2 as per <xref section="5.4.3" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>, based on the protocol state of the retrieved EDHOC session.  </t>
            <t>
The application profile used in the EDHOC session is the same one associated with the EDHOC resource where the server received the request conveying EDHOC message_1 that started the session. This is relevant in case the server provides multiple EDHOC resources, which may generally refer to different application profiles.</t>
          </li>
          <li>Establish a new OSCORE Security Context associated with the client as per <xref section="A.1" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>, using the EDHOC output from step 4.</li>
          <li>Extract the OSCORE ciphertext from the payload COMB_PAYLOAD of the EDHOC + OSCORE request, as the second element OSCORE_PAYLOAD (see step 3 of <xref target="client-processing"/>).</li>
          <li>Rebuild the OSCORE-protected CoAP request, as the EDHOC + OSCORE request where the payload is replaced with the OSCORE ciphertext extracted at step 6. Then, remove the EDHOC option.</li>
          <li>
            <t>Decrypt and verify the OSCORE-protected CoAP request rebuilt at step 7, as per <xref section="8.2" sectionFormat="of" target="RFC8613"/>, by using the OSCORE Security Context established at step 5.  </t>
            <t>
When the decrypted request is checked for any critical CoAP options (as it is during regular CoAP processing), the presence of an EDHOC option MUST be regarded as an unprocessed critical option, unless it is processed by some further mechanism.</t>
          </li>
          <li>Deliver the CoAP request resulting from step 8 to the application.</li>
        </ol>
        <t>If steps 4 (EDHOC processing) and 8 (OSCORE processing) are both successfully completed, the server MUST reply with an OSCORE-protected response (see <xref section="5.4.3" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>). The usage of EDHOC message_4 as defined in <xref section="5.5" sectionFormat="of" target="I-D.ietf-lake-edhoc"/> is not applicable to the approach defined in this document.</t>
        <t>If step 4 (EDHOC processing) fails, the server aborts the session as per <xref section="5.4.3" sectionFormat="of" target="I-D.ietf-lake-edhoc"/> and responds with an EDHOC error message with error code 1, formatted as defined in <xref section="6.2" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>. The server MUST NOT establish a new OSCORE Security Context from the present EDHOC session with the client. The CoAP response conveying the EDHOC error message is not protected with OSCORE. As per <xref section="9.5" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>, the server has to make sure that the error message does not reveal sensitive information. The CoAP response conveying the EDHOC error message MUST have Content-Format set to application/edhoc+cbor-seq defined in <xref section="10.9" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>.</t>
        <t>If step 4 (EDHOC processing) is successfully completed but step 8 (OSCORE processing) fails, the same OSCORE error handling as defined in <xref section="8.2" sectionFormat="of" target="RFC8613"/> applies.</t>
        <section anchor="server-blockwise">
          <name>Supporting Block-wise</name>
          <t>If Block-wise <xref target="RFC7959"/> is supported, the server takes the additional following step before any other in <xref target="server-processing"/>.</t>
          <t>A. If Block-wise is present in the request, then process the Outer Block options according to <xref target="RFC7959"/>, until all blocks of the request have been received (see <xref section="4.1.3.4" sectionFormat="of" target="RFC8613"/>).</t>
        </section>
      </section>
      <section anchor="example">
        <name>Example of EDHOC + OSCORE Request</name>
        <t><xref target="fig-edhoc-opt-2"/> shows an example of EDHOC + OSCORE Request transported over UDP. In particular, the example assumes that:</t>
        <ul spacing="normal">
          <li>The OSCORE Partial IV in use is 0, consistently with the first request protected with the new OSCORE Security Context.</li>
          <li>
            <t>The OSCORE Sender ID of the client is 0x01.  </t>
            <t>
As per <xref section="3.3.3" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>, this straightforwardly corresponds to the EDHOC connection identifier C_R 0x01.  </t>
            <t>
As per <xref section="3.3.2" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>, when using the purely-sequential flow shown in <xref target="fig-non-combined"/>, the same C_R with value 0x01 would be encoded on the wire as the CBOR integer 1 (0x01 in CBOR encoding), and prepended to EDHOC message_3 in the payload of the second EDHOC request.</t>
          </li>
          <li>The EDHOC option is registered with CoAP option number 21.</li>
        </ul>
        <t>Note to RFC Editor: Please delete the last bullet point in the previous list, since, at the time of publication, the CoAP option number will be in fact registered.</t>
        <t>This results in the following components shown in <xref target="fig-edhoc-opt-2"/>:</t>
        <ul spacing="normal">
          <li>OSCORE option value: 0x090001 (3 bytes)</li>
          <li>EDHOC option value: - (0 bytes)</li>
          <li>EDHOC message_3: 0x52d5535f3147e85f1cfacd9e78abf9e0a81bbf (19 bytes)</li>
          <li>OSCORE ciphertext: 0x612f1092f1776f1c1668b3825e (13 bytes)</li>
        </ul>
        <figure anchor="fig-edhoc-opt-2">
          <name>Example of CoAP message transported over UDP, combining EDHOC data and OSCORE data as signalled with the EDHOC Option.</name>
          <artwork type="~" align="center"><![CDATA[
Protected CoAP request (OSCORE message):

   0x44025d1f               ; CoAP 4-byte header
     00003974               ; Token
     93 090001              ; OSCORE Option
     c0                     ; EDHOC Option
     ff 52d5535f3147e85f1cfacd9e78abf9e0a81bbf
        612f1092f1776f1c1668b3825e
   (46 bytes)
]]></artwork>
        </figure>
      </section>
    </section>
    <section anchor="use-of-ids">
      <name>Use of EDHOC Connection Identifiers with OSCORE</name>
      <t><xref section="3.3.3" sectionFormat="of" target="I-D.ietf-lake-edhoc"/> defines the straightforward mapping from an EDHOC connection identifier to an OSCORE Sender/Recipient ID. That is, an EDHOC identifier and the corresponding OSCORE Sender/Recipient ID are both byte strings with the same value.</t>
      <t>Therefore, the conversion from an OSCORE Sender/Recipient ID to an EDHOC identifier is equally straightforward. In particular, at step 3 of <xref target="server-processing"/>, the value of 'kid' in the OSCORE Option of the EDHOC + OSCORE request is both the server's Recipient ID (i.e., the client's Sender ID) and the EDHOC Connection Identifier C_R of the server.</t>
      <section anchor="oscore-edhoc-message-processing">
        <name>Additional Processing of EDHOC Messages</name>
        <t>When using EDHOC to establish an OSCORE Security Context, the client and server MUST perform the following additional steps during an EDHOC execution, thus extending <xref section="5" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>.</t>
        <section anchor="initiator-processing-of-message-1">
          <name>Initiator Processing of Message 1</name>
          <t>The Initiator selects an EDHOC Connection Identifier C_I as follows.</t>
          <t>The Initiator MUST choose a C_I that is neither used in any current EDHOC session as this peer's EDHOC Connection Identifier, nor the Recipient ID in a current OSCORE Security Context where the ID Context is not present.</t>
          <t>The chosen C_I SHOULD NOT be the Recipient ID of any current OSCORE Security Context. Note that, unless the two peers concurrently use alternative methods to establish OSCORE Security Contexts, this allows the Responder to always omit the 'kid context' in the OSCORE Option of its messages sent to the Initiator, when protecting those with an OSCORE Security Context where C_I is the Responder's OSCORE Sender ID (see <xref section="6.1" sectionFormat="of" target="RFC8613"/>).</t>
        </section>
        <section anchor="responder-processing-of-message-2">
          <name>Responder Processing of Message 2</name>
          <t>The Responder selects an EDHOC Connection Identifier C_R as follows.</t>
          <t>The Responder MUST choose a C_R that is neither used in any current EDHOC session as this peer's EDHOC Connection Identifier, nor is equal to the EDHOC Connection Identifier C_I specified in the EDHOC message_1 of the present EDHOC session, nor is the Recipient ID in a current OSCORE Security Context where the ID Context is not present.</t>
          <t>The chosen C_R SHOULD NOT be the Recipient ID of any current OSCORE Security Context. Note that, for a reason analogous to the one given above with C_I, this allows the Initiator to always omit the 'kid context' in the OSCORE Option of its messages sent to the Responder, when protecting those with an OSCORE Security Context where C_R is the Initiator's OSCORE Sender ID (see <xref section="6.1" sectionFormat="of" target="RFC8613"/>).</t>
        </section>
        <section anchor="initiator-processing-of-message-2">
          <name>Initiator Processing of Message 2</name>
          <t>If the following condition holds, the Initiator MUST abort the session and reply with an EDHOC error message with error code 1, formatted as defined in <xref section="6.2" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>.</t>
          <ul spacing="normal">
            <li>The EDHOC Connection Identifier C_I is equal to the EDHOC Connection Identifier C_R specified in EDHOC message_2.</li>
          </ul>
        </section>
      </section>
    </section>
    <section anchor="app-statements">
      <name>Extension and Consistency of Application Profiles</name>
      <t>The application profile referred by the client and server can include the information below, according to the specified consistency rules.</t>
      <t>If the server supports the EDHOC + OSCORE request within an EDHOC execution started at a certain EDHOC resource, then the application profile associated with that resource SHOULD explicitly specify support for the EDHOC + OSCORE request.</t>
      <t>In case the application profile indicates that the server supports the optional EDHOC message_4 (see <xref section="5.5" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>), the client has to bear in mind that the usage of EDHOC message_4 is not applicable to the optimized workflow based on the EDHOC + OSCORE request (see <xref target="server-processing"/>).</t>
    </section>
    <section anchor="web-linking">
      <name>Web Linking</name>
      <t><xref section="10.10" sectionFormat="of" target="I-D.ietf-lake-edhoc"/> registers the resource type "core.edhoc", which can be used as target attribute in a web link <xref target="RFC8288"/> to an EDHOC resource, e.g., using a link-format document <xref target="RFC6690"/>. This enables clients to discover the presence of EDHOC resources at a server, possibly using the resource type as filter criterion.</t>
      <t>At the same time, the application profile associated with an EDHOC resource provides information describing how the EDHOC protocol can be used through that resource. While a client may become aware of the application profile through several means, it would be convenient to obtain its information elements upon discovering the EDHOC resources at the server. This might aim at discovering especially the EDHOC resources whose associated application profile denotes a way of using EDHOC which is most suitable to the client, e.g., with EDHOC cipher suites or authentication methods that the client also supports or prefers.</t>
      <t>That is, it would be convenient that a client discovering an EDHOC resource contextually obtains relevant pieces of information from the application profile associated with that resource. The resource discovery can occur by means of a direct interaction with the server, or instead by means of the CoRE Resource Directory <xref target="RFC9176"/>, where the server may have registered the links to its resources.</t>
      <t>In order to enable the above, this section defines a number of parameters, each of which can be optionally specified as a target attribute with the same name in the link to the respective EDHOC resource, or as filter criteria in a discovery request from the client. When specifying these parameters in a link to an EDHOC resource, the target attribute rt="core.edhoc" MUST be included, and the same consistency rules defined in <xref target="app-statements"/> for the corresponding information elements of an application profile MUST be followed.</t>
      <t>The following parameters are defined.</t>
      <ul spacing="normal">
        <li>'ed-i', specifying, if present, that the server supports the EDHOC Initiator role, hence the reverse message flow of EDHOC. A value MUST NOT be given to this parameter and any present value MUST be ignored by the recipient.</li>
        <li>'ed-r', specifying, if present, that the server supports the EDHOC Responder role, hence the forward message flow of EDHOC. A value MUST NOT be given to this parameter and any present value MUST be ignored by the recipient.</li>
        <li>'ed-method', specifying an authentication method supported by the server. This parameter MUST specify a single value, which is taken from the 'Value' column of the "EDHOC Method Type" registry defined in <xref section="10.3" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>. This parameter MAY occur multiple times, with each occurrence specifying an authentication method.</li>
        <li>'ed-csuite', specifying an EDHOC cipher suite supported by the server. This parameter MUST specify a single value, which is taken from the 'Value' column of the "EDHOC Cipher Suites" registry defined in <xref section="10.2" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>. This parameter MAY occur multiple times, with each occurrence specifying a cipher suite.</li>
        <li>'ed-cred-t', specifying a type of authentication credential supported by the server. This parameter MUST specify a single value, which is taken from the 'Value' column of the "EDHOC Authentication Credential Types" Registry defined in <xref target="iana-edhoc-auth-cred-types"/> of this document. This parameter MAY occur multiple times, with each occurrence specifying a type of authentication credential.</li>
        <li>
          <t>'ed-idcred-t', specifying a type of identifier supported by the server for identifying authentication credentials. This parameter MUST specify a single value, which is taken from the 'Label' column of the "COSE Header Parameters" registry <xref target="COSE.Header.Parameters"/>. This parameter MAY occur multiple times, with each occurrence specifying a type of identifier for authentication credentials.  </t>
          <t>
Note that the values in the 'Label' column of the "COSE Header Parameters" registry are strongly typed. On the contrary, Link Format is weakly typed and thus does not distinguish between, for instance, the string value "-10" and the integer value -10. Thus, if responses in Link Format are returned, string values which look like an integer are not supported. Therefore, such values MUST NOT be used in the 'ed-idcred-t' parameter.</t>
        </li>
        <li>'ed-ead', specifying the support of the server for an External Authorization Data (EAD) item (see <xref section="3.8" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>). This parameter MUST specify a single value, which is taken from the 'Label' column of the "EDHOC External Authorization Data" registry defined in <xref section="10.5" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>. This parameter MAY occur multiple times, with each occurrence specifying the ead_label of an EAD item that the server supports.</li>
        <li>'ed-comb-req', specifying, if present, that the server supports the EDHOC + OSCORE request defined in <xref target="edhoc-in-oscore"/>. A value MUST NOT be given to this parameter and any present value MUST be ignored by the recipient.</li>
      </ul>
      <t>(Future documents may update the definition of the parameters 'ed-i', 'ed-r', and 'ed-comb-req', by expanding their semantics and specifying what they can take as value.)</t>
      <t>The example in <xref target="fig-web-link-example"/> shows how a client discovers one EDHOC resource at a server, obtaining information elements from the respective application profile. The Link Format notation from <xref section="5" sectionFormat="of" target="RFC6690"/> is used.</t>
      <figure anchor="fig-web-link-example">
        <name>The Web Link.</name>
        <artwork align="center"><![CDATA[
REQ: GET /.well-known/core

RES: 2.05 Content
    </sensors/temp>;osc,
    </sensors/light>;if=sensor,
    </.well-known/edhoc>;rt=core.edhoc;ed-csuite=0;ed-csuite=2;
        ed-method=0;ed-cred-t=1;ed-cred-t=3;ed-idcred-t=4;
        ed-i;ed-r;ed-comb-req
]]></artwork>
      </figure>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The same security considerations from OSCORE <xref target="RFC8613"/> and EDHOC <xref target="I-D.ietf-lake-edhoc"/> hold for this document. In addition, the following considerations also apply.</t>
      <t><xref target="client-processing"/> specifies that a client SHOULD NOT have multiple outstanding EDHOC + OSCORE requests pertaining to the same EDHOC session. Even if a client did not fulfill this requirement, it would not have any impact in terms of security. That is, the server would still not process different instances of the same EDHOC message_3 more than once in the same EDHOC session (see <xref section="5.1" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>), and would still enforce replay protection of the OSCORE-protected request (see Sections <xref target="RFC8613" section="7.4" sectionFormat="bare"/> and <xref target="RFC8613" section="8.2" sectionFormat="bare"/> of <xref target="RFC8613"/>).</t>
      <t>When using the optimized workflow in Figure 2, a minimum of 128-bit security against online brute force attacks is achieved after the client receives and successfully verifies the first OSCORE-protected response (see <xref section="9.1" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>). As an example, if EDHOC is used with method 3 (see <xref section="3.2" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>) and cipher suite 2 (see <xref section="3.6" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>), then the following holds.</t>
      <ul spacing="normal">
        <li>The Initiator is authenticated with 128-bit security against online attacks. This is the sum of the 64-bit MACs in EDHOC message_3 and of the MAC in the AEAD of the first OSCORE-protected CoAP request, as rebuilt at step 7 of <xref target="server-processing"/>.</li>
        <li>The Responder is authenticated with 128-bit security against online attacks. This is the sum of the 64-bit MACs in EDHOC message_2 and of the MAC in the AEAD of the first OSCORE-protected CoAP response.</li>
      </ul>
      <t>With reference to the purely sequential workflow in <xref target="fig-non-combined"/>, the OSCORE request might have to undergo access control checks at the server, before being actually executed for accessing the target protected resource. The same MUST hold when the optimized workflow in <xref target="fig-combined"/> is used, i.e., when using the EDHOC + OSCORE request.</t>
      <t>That is, the rebuilt OSCORE-protected application request from step 7 in <xref target="server-processing"/> MUST undergo the same access control checks that would be performed on a traditional OSCORE-protected application request sent individually as shown in <xref target="fig-non-combined"/>.</t>
      <t>To this end, validated information to perform access control checks (e.g., an access token issued by a trusted party) has to be available at the server before starting to process the rebuilt OSCORE-protected application request. Such information may have been provided to the server separately before starting the EDHOC execution altogether, or instead as External Authorization Data during the EDHOC execution (see <xref section="3.8" sectionFormat="of" target="I-D.ietf-lake-edhoc"/>).</t>
      <t>Thus, a successful completion of the EDHOC protocol and the following derivation of the OSCORE Security Context at the server do not play a role in determining whether the rebuilt OSCORE-protected request is authorized to access the target protected resource at the server.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has the following actions for IANA.</t>
      <t>Note to RFC Editor: Please replace all occurrences of "[RFC-XXXX]" with the RFC number of this specification and delete this paragraph.</t>
      <section anchor="iana-coap-options">
        <name>CoAP Option Numbers Registry</name>
        <t>IANA is asked to enter the following option number to the "CoAP Option Numbers" registry within the "CoRE Parameters" registry group.</t>
        <table align="center">
          <name>Registrations in CoAP Option Numbers Registry</name>
          <thead>
            <tr>
              <th align="left">Number</th>
              <th align="left">Name</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">21</td>
              <td align="left">EDHOC</td>
              <td align="left">[RFC-XXXX]</td>
            </tr>
          </tbody>
        </table>
        <t>Note to RFC Editor: Please delete this paragraph and all the following text within the present <xref target="iana-coap-options"/>.</t>
        <t>[</t>
        <t>The CoAP option number 21 is consistent with the properties of the EDHOC Option defined in <xref target="edhoc-option"/>, and it allows the EDHOC Option to always result in an overall size of 1 byte. This is because:</t>
        <ul spacing="normal">
          <li>The EDHOC option is always empty, i.e., with zero-length value; and</li>
          <li>Since the OSCORE Option with option number 9 is always present in the EDHOC + OSCORE request, the EDHOC Option is encoded with a delta equal to at most 12.</li>
        </ul>
        <t>Although the currently unassigned option number 13 would also work well for the same reasons in the use case in question, different use cases or protocols may make a better use of the option number 13. Hence the preference for the option number 21, and why it is <em>not</em> necessary to register additional option numbers than 21.</t>
        <t>]</t>
      </section>
      <section anchor="iana-target-attributes">
        <name>Target Attributes Registry</name>
        <t>IANA is asked to register the following entries in the "Target Attributes" registry within the "CoRE Parameters" registry group, as per <xref target="I-D.ietf-core-target-attr"/>.
For all entries, the Change Controller is IETF, and the reference is [RFC-XXXX].</t>
        <table align="center">
          <name>Registrations in Target Attributes Registry</name>
          <thead>
            <tr>
              <th align="left">Attribute Name:</th>
              <th align="left">Brief Description:</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">ed-i</td>
              <td align="left">Hint: support for the EDHOC Initiator role</td>
            </tr>
            <tr>
              <td align="left">ed-r</td>
              <td align="left">Hint: support for the EDHOC Responder role</td>
            </tr>
            <tr>
              <td align="left">ed-method</td>
              <td align="left">A supported authentication method for EDHOC</td>
            </tr>
            <tr>
              <td align="left">ed-csuite</td>
              <td align="left">A supported cipher suite for EDHOC</td>
            </tr>
            <tr>
              <td align="left">ed-cred-t</td>
              <td align="left">A supported type of authentication credential for EDHOC</td>
            </tr>
            <tr>
              <td align="left">ed-idcred-t</td>
              <td align="left">A supported type of authentication credential identifier for EDHOC</td>
            </tr>
            <tr>
              <td align="left">ed-ead</td>
              <td align="left">A supported External Authorization Data (EAD) item for EDHOC</td>
            </tr>
            <tr>
              <td align="left">ed-comb-req</td>
              <td align="left">Hint: support for the EDHOC+OSCORE request</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="iana-edhoc-auth-cred-types">
        <name>EDHOC Authentication Credential Types Registry</name>
        <t>IANA is requested to create a new "EDHOC Authentication Credential Types" registry within the "Ephemeral Diffie-Hellman Over COSE (EDHOC)" registry group defined in <xref target="I-D.ietf-lake-edhoc"/>.</t>
        <t>The registry uses the "Expert Review" registration procedure <xref target="RFC8126"/>. Expert Review guidelines are provided in <xref target="review"/>.</t>
        <t>The columns of this registry are:</t>
        <ul spacing="normal">
          <li>
            <t>Value: This field contains the value used to identify the type of authentication credential. These values MUST be unique. The value can be an unsigned integer or a negative integer. Different ranges of values use different registration policies <xref target="RFC8126"/>:  </t>
            <ul spacing="normal">
              <li>Integer values from -24 to 23 are designated as "Standards Action With Expert Review".</li>
              <li>Integer values from -65536 to -25 and from 24 to 65535 are designated as "Specification Required".</li>
              <li>Integer values smaller than -65536 and greater than 65535 are marked as "Private Use".</li>
            </ul>
          </li>
          <li>Description: This field contains a short description of the type of authentication credential.</li>
          <li>Reference: This field contains a pointer to the public specification for the type of authentication credential.</li>
        </ul>
        <t>Initial entries in this registry are as listed in <xref target="pre-reg"/>.</t>
        <table align="center" anchor="pre-reg">
          <name>Initial Entries in the "EDHOC Authentication Credential Types" Registry</name>
          <thead>
            <tr>
              <th align="left">Value</th>
              <th align="left">Description</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0</td>
              <td align="left">CBOR Web Token (CWT) containing a COSE_Key in a 'cnf' claim and possibly other claims. CWT is defined in RFC 8392.</td>
              <td align="left">
                <xref target="RFC8392"/></td>
            </tr>
            <tr>
              <td align="left">1</td>
              <td align="left">CWT Claims Set (CCS) containing a COSE_Key in a 'cnf' claim and possibly other claims. CCS is defined in RFC 8392.</td>
              <td align="left">
                <xref target="RFC8392"/></td>
            </tr>
            <tr>
              <td align="left">2</td>
              <td align="left">X.509 certificate</td>
              <td align="left">
                <xref target="RFC5280"/></td>
            </tr>
            <tr>
              <td align="left">3</td>
              <td align="left">C509 certificate</td>
              <td align="left">
                <xref target="I-D.ietf-cose-cbor-encoded-cert"/></td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="review">
        <name>Expert Review Instructions</name>
        <t>The IANA registry established in this document is defined as "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. Experts need to make sure that registered identifiers indicate a type of authentication credential whose format and encoding is clearly defined in the corresponding specification. Identifiers of types of authentication credentials that do not meet these objective of clarity and completeness must not be registered.</li>
          <li>Point squatting should be discouraged. Reviewers are encouraged to get sufficient information for registration requests to ensure that the usage is not going to duplicate one that is already registered and that the point is likely to be used in deployments. The zones tagged as "Private Use" are intended for testing purposes and closed environments. Code points in other ranges should not be assigned for testing.</li>
          <li>Specifications are required for the "Standards Action With Expert Review" range of point assignment. Specifications should exist for "Specification Required" ranges, but early assignment before a specification is available is considered to be permissible. When specifications are not provided, the description provided needs to have sufficient information to identify what the point is being used for.</li>
          <li>Experts should take into account the expected usage of fields when approving point assignment. The fact that there is a range for Standards Track documents does not mean that a Standards Track document cannot have points assigned outside of that range. 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>
        </ul>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC6690">
          <front>
            <title>Constrained RESTful Environments (CoRE) Link Format</title>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby"/>
            <date month="August" year="2012"/>
            <abstract>
              <t>This specification defines Web Linking using a link format for use by constrained web servers to describe hosted resources, their attributes, and other relationships between links. Based on the HTTP Link Header field defined in RFC 5988, the Constrained RESTful Environments (CoRE) Link Format is carried as a payload and is assigned an Internet media type. "RESTful" refers to the Representational State Transfer (REST) architecture. A well-known URI is defined as a default entry point for requesting the links hosted by a server. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6690"/>
          <seriesInfo name="DOI" value="10.17487/RFC6690"/>
        </reference>
        <reference anchor="RFC7252">
          <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="RFC7959">
          <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">
          <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="RFC8288">
          <front>
            <title>Web Linking</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <date month="October" year="2017"/>
            <abstract>
              <t>This specification defines a model for the relationships between resources on the Web ("links") and the type of those relationships ("link relation types").</t>
              <t>It also defines the serialisation of such links in HTTP headers with the Link header field.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8288"/>
          <seriesInfo name="DOI" value="10.17487/RFC8288"/>
        </reference>
        <reference anchor="RFC8613">
          <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="RFC8949">
          <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="RFC9176">
          <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-lake-edhoc">
          <front>
            <title>Ephemeral Diffie-Hellman Over COSE (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="Francesca Palombini" initials="F." surname="Palombini">
              <organization>Ericsson AB</organization>
            </author>
            <date day="25" month="August" year="2023"/>
            <abstract>
              <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>
          <seriesInfo name="Internet-Draft" value="draft-ietf-lake-edhoc-22"/>
        </reference>
        <reference anchor="I-D.ietf-core-target-attr">
          <front>
            <title>CoRE Target Attributes Registry</title>
            <author fullname="Carsten Bormann" initials="C." surname="Bormann">
              <organization>Universität Bremen TZI</organization>
            </author>
            <date day="11" month="October" year="2023"/>
            <abstract>
              <t>   The Constrained RESTful Environments (CoRE) specifications apply Web
   technologies to constrained environments.  One important such
   technology is Web Linking (RFC 8288), which CoRE specifications use
   as the basis for a number of discovery protocols, such as the Link
   Format (RFC 6690) in CoAP's Resource Discovery Protocol (Section 7.2
   of RFC7252) and the Resource Directory (RD, RFC 9176).

   Web Links can have target attributes, the names of which are not
   generally coordinated by the Web Linking specification (Section 2.2
   of RFC 8288).  This document introduces an IANA registry for
   coordinating names of target attributes when used in CoRE.  It
   updates the RD Parameters IANA Registry created by RFC 9176 to
   coordinate with this registry.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-target-attr-06"/>
        </reference>
        <reference anchor="COSE.Header.Parameters" target="https://www.iana.org/assignments/cose/cose.xhtml#header-parameters">
          <front>
            <title>COSE Header Parameters</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="RFC2119">
          <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="RFC8174">
          <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>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC5280">
          <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="RFC8392">
          <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="I-D.ietf-cose-cbor-encoded-cert">
          <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="7" month="July" 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-06"/>
        </reference>
      </references>
    </references>
    <section anchor="sec-document-updates" removeInRFC="true">
      <name>Document Updates</name>
      <section anchor="sec-08-09">
        <name>Version -08 to -09</name>
        <ul spacing="normal">
          <li>Clarified meaning of "EDHOC data".</li>
          <li>Improved description of entries for the new IANA registry.</li>
          <li>Change Controller changed from "IESG" to "IETF".</li>
          <li>Editorial: EDHOC Option number denoted as "21" instead of "TBD21".</li>
          <li>Fixed references to sections of draft-ietf-lake-edhoc</li>
          <li>Clarifications and editorial improvements.</li>
        </ul>
      </section>
      <section anchor="sec-07-08">
        <name>Version -07 to -08</name>
        <ul spacing="normal">
          <li>Fixes and clarifications from the Shepherd's review.</li>
        </ul>
      </section>
      <section anchor="sec-06-07">
        <name>Version -06 to -07</name>
        <ul spacing="normal">
          <li>Changed document title.</li>
          <li>The client creates the OSCORE Security Context after creating EDHOC message_3.</li>
          <li>Revised selection of EDHOC connection identifiers.</li>
          <li>Use of "forward message flow" and "reverse message flow".</li>
          <li>The payload of the combined request is not a CBOR sequence anymore.</li>
          <li>EDHOC error messages from the server are not protected with OSCORE.</li>
          <li>More future-proof error handling on the server side.</li>
          <li>Target attribute names prefixed by "ed-".</li>
          <li>Defined new target attributes "ed-i" and "ed-r".</li>
          <li>Defined single target attribute "ed-ead" signaling supported EAD items.</li>
          <li>Security consideration on the minimally achieved 128-bit security.</li>
          <li>Defined and used the "EDHOC Authentication Credential Types" Registry.</li>
          <li>High-level sentence replacing the appendix on Block-wise performance.</li>
          <li>Revised examples.</li>
          <li>Editorial improvements.</li>
        </ul>
      </section>
      <section anchor="sec-05-06">
        <name>Version -05 to -06</name>
        <ul spacing="normal">
          <li>Extended figure on EDHOC sequential workflow.</li>
          <li>Revised naming of target attributes.</li>
          <li>Clarified semantics of target attributes 'eadx'.</li>
          <li>Registration of target attributes.</li>
        </ul>
      </section>
      <section anchor="sec-04-05">
        <name>Version -04 to -05</name>
        <ul spacing="normal">
          <li>Clarifications on Web Linking parameters.</li>
          <li>Added security considerations.</li>
          <li>Revised IANA considerations to focus on the CoAP option number 21.</li>
          <li>Guidelines on using Block-wise moved to an appendix.</li>
          <li>Editorial improvements.</li>
        </ul>
      </section>
      <section anchor="sec-03-04">
        <name>Version -03 to -04</name>
        <ul spacing="normal">
          <li>Renamed "applicability statement" to "application profile".</li>
          <li>Use the latest Content-Formats.</li>
          <li>Use of SHOULD NOT for multiple simultaneous outstanding interactions.</li>
          <li>No more special conversion from OSCORE ID to EDHOC ID.</li>
          <li>Considerations on using Block-wise.</li>
          <li>Wed Linking signaling of multiple supported EAD labels.</li>
          <li>Added security considerations.</li>
          <li>Editorial improvements.</li>
        </ul>
      </section>
      <section anchor="sec-02-03">
        <name>Version -02 to -03</name>
        <ul spacing="normal">
          <li>Clarifications on transporting EDHOC message_3 in the CoAP payload.</li>
          <li>At most one simultaneous outstanding interaction as an EDHOC + OSCORE request with the same server for the same session with connection identifier C_R.</li>
          <li>The EDHOC option is removed from the EDHOC + OSCORE request after processing the EDHOC data.</li>
          <li>Added explicit constraints when selecting a Recipient ID as C_X.</li>
          <li>Added processing steps for when Block-wise is used.</li>
          <li>Improved error handling on the server.</li>
          <li>Improved section on Web Linking.</li>
          <li>Updated figures; editorial improvements.</li>
        </ul>
      </section>
      <section anchor="sec-01-02">
        <name>Version -01 to -02</name>
        <ul spacing="normal">
          <li>New title, abstract and introduction.</li>
          <li>Restructured table of content.</li>
          <li>Alignment with latest format of EDHOC messages.</li>
          <li>Guideline on ID conversions based on application profile.</li>
          <li>Clarifications, extension and consistency on application profile.</li>
          <li>Section on web-linking.</li>
          <li>RFC8126 terminology in IANA considerations.</li>
          <li>Revised Appendix "Checking CBOR Encoding of Numeric Values".</li>
        </ul>
      </section>
      <section anchor="sec-00-01">
        <name>Version -00 to -01</name>
        <ul spacing="normal">
          <li>Improved background overview of EDHOC.</li>
          <li>Added explicit rules for converting OSCORE Sender/Recipient IDs to EDHOC connection identifiers following the removal of bstr_identifier from EDHOC.</li>
          <li>Revised section organization.</li>
          <li>Recommended number for EDHOC option changed to 21.</li>
          <li>Editorial improvements.</li>
        </ul>
      </section>
    </section>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>The authors sincerely thank <contact fullname="Christian Amsüss"/>, <contact fullname="Carsten Bormann"/>, <contact fullname="Esko Dijk"/>, <contact fullname="Klaus Hartke"/>, <contact fullname="John Preuß Mattsson"/>, <contact fullname="David Navarro"/>, <contact fullname="Jim Schaad"/>, <contact fullname="Mališa Vučinić"/>, and <contact fullname="Paul Wouters"/> for their feedback and comments.</t>
      <t>The work on this document has been partly supported by VINNOVA and the Celtic-Next project CRITISEC; and by the H2020 project SIFIS-Home (Grant agreement 952652).</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
SmIrugUWyi+Wsp5DoulYJX5PRqYIcvyCavxlA9brabepXfbMnZYqQ11X2hMq
64YILZxH/BszBbswpsWycJZbVS7fiRuV8WBJIEgHajiX1chFY90sl2UURHD4
gTALDDawZkHkYOSlu+eNaBwtMNMTZa+/sxM8eBJG2u+wHag8p048UpTPzhr2
pjdIzvSC0dv2GNn6oKyVS9LnzDObidWtAdc2e0OugUJpNA4hwdNsWJkF+ke3
OoTpiMLVxt1213VOhRu1HmDb+1KVuWmup3MwfF3dtGYSn86SGnyrCYjFLKKl
rUbaTf32J7MxbcLoeqFUMcPs7JFyAnMNvLODOhgo0QzSlBFGkxDWwa1kokpx
forucYF4x1sg5zLyp65Hxo3RM3crFiud2I/RWFp9lKu4PHb5ivQMtltXiZaO
scz5ECMfmK0m7wZnIP4EMs3QDbVBRbt1seimNZT8riKP9G0GRz0xmA4b9kRu
bB5GUm2uheGARFAohUiQhIU3memJZsxhf3mFCcqBBTJVKfYTA9aTqwmLAKs9
tgCqYP+FdROHq53ELcDSpRP1o1/VTqHbELRg1S8qV+PeYyeD5ontzrmvwRnB
TMywd4+wxppfcFPu+BC5zYi8xWtVla7PxBqccQOXXjs4miR5oJXJXM2zG1c/
ynSo+bAfnCn29iMfoTzWu438kb4r8WFLiOKwpjF3fX67DM1MHyVnJ/tM8D9q
wyfiNTsmDOp5qG3oNLr0LhhLEJ1XrrPtHoSFdGiNKvKg52pKrhROdjInK/q9
G0M3qpGbfUHtu6ZhLlou9gVJrT1n1qCVrCpNUCXjFdjnUK3P5rbjnelFDBs/
wjNKYtu/eY1f+FDbBQ7J98mtwRbUnq4RcTZLp3+oOzD73wA6UojcNm1xfENR
U1S52k9LHqhp3FMzs1ZLC+6zah2sdfG5zDGy399f3hovtj5QgBN6yCzk2lNp
dSaMhWc7OFEIFx5owlGWl4UrAT5VYDrN8KLCwFcMHtIoPZcRf4TmVzDoipJc
tqRn6MkPVsUTCfjuIaMTQG0oOCyjJmKqa2E1YaI7ExGW6x5PXufmti03woOO
26wlfnW0Ai28YyMjI6Ney0AAuRMo8ec3Tkms5QN6h30WMTVPdYrtPm9rBG/y
ddbaNa1tedV+0IOd1b14ViI2uUDb+ACFhIT/tLERlyJQ/ZJHeKvA66JEWi22
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
Dgt9vOe9GuN3+SMHmVZkZ9WRwO1vqZ3QqzOn3GCb0/eD3NbLeoIwRkpPGXnd
f4QPu9kOlBCfsfD9+3anN0bWxAvgqYIXqck96TbDcu7cprXFHTWwbKtFrpWF
hmv74bgtcJZ0VdEdatyYkr3K2hQgniMjw7aClkQjEsiTKpnEdFeQvSNnTkzW
uBY37r/i9xgQ3sxjgK4Ck0jZBiW423JFrbAYn52zAafJN/cQRS8hihvRCpp7
bUZ5lpcnSmawu0SFbGisuAzvzkSNs1pT85bOGv68RfCwv8elVvVuEn0vdWpJ
QAj29zSeoqwYwiL5Zq1qjgMNhoe9EV1ELkQQTtFli40RgChVMMrRYca7CMsy
xFIADLuPZ1xdG8oF18bPLOUAIh/cig++60K5leUb13gdrYI7lenYSgCS7pK8
Jw2jSccQL0lLA/TlZjOnx3negGHz/YM1kb96xjNF3k1s27raELDWntDrXndE
ciy2Lph11bnGsYM9ev35yWnRjHZzVxR5Eh7RpHBybkthl5xVozi1Udu5NPnR
7N364P4Oex9+8d5NH4Yf+Z424kFjE8RZ0V9lZRVDTdnkGBUxTRiYWnlNM7nw
gS0+DNhhEWstxmW6JY8UGbFjictwHL/l4gjjK2/eSyGVfMghua4MZZy5Ca+d
59TvPGu9SG9d85T6lR8ayxpn4qpyzV5MD5f3r6f9aLAaOdAOX5K1JkjmNbYK
MXvcZJZutDyp3IrimzjiownXXJbZr13kAgp2HIV89YJ3N59OfW3fxgOOK6KT
lL8vqRdyXBQV2xq4marAcTGt+W7bZi0E4U0YJxSU8u0mfX0fpoaIAuHWn33K
ufWDq4q6hNktmSAaFZ1JVNtcGKFNN+ykC9BI7pqrMQhms1jCRPfz96J+eFPG
CmtesoXbBvwk6x7xGh0koSMmzSUr9bxvE5hvtkGL7JVfnlbR0ojBO68oYxUK
NZOQYiCIdBFah3NWAYE+y5m5anLJ8TmJ6KEAi89FY9YqrlKLyaM2f3Hy4qSm
yUsFkcnYsA18TEq3qEnI0HCA1ZVR0hWByhut04E0xq337//L1fn3Tz9+3LKx
TxzChlc5/ipdmEz7XFtuJcb9NA8XM86Td26LCV7QOIX1Ld9DM4V8yuMsXEjz
TjRQCBAI1eItA5RMntrG/SosoYatlgkdd46kdcmTXNPY9DJO86xa8N0HPLi9
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
AA==

-->

</rfc>
