<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.14 (Ruby 3.0.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-tiloca-core-oscore-capable-proxies-04" category="std" consensus="true" submissionType="IETF" updates="8613" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.2 -->
  <front>
    <title abbrev="OSCORE-capable Proxies">OSCORE-capable Proxies</title>
    <seriesInfo name="Internet-Draft" value="draft-tiloca-core-oscore-capable-proxies-04"/>
    <author initials="M." surname="Tiloca" fullname="Marco Tiloca">
      <organization>RISE AB</organization>
      <address>
        <postal>
          <street>Isafjordsgatan 22</street>
          <city>Kista</city>
          <code>16440</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</code>
          <country>Sweden</country>
        </postal>
        <email>rikard.hoglund@ri.se</email>
      </address>
    </author>
    <date year="2022" month="September" day="23"/>
    <area>Internet</area>
    <workgroup>CoRE Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>Object Security for Constrained RESTful Environments (OSCORE) can be used to protect CoAP messages end-to-end between two endpoints at the application layer, also in the presence of intermediaries such as proxies. This document defines how to use OSCORE for protecting CoAP messages also between an origin application endpoint and an intermediary, or between two intermediaries. Also, it defines how to secure a CoAP message by applying multiple, nested OSCORE protections, e.g., both end-to-end between origin application endpoints, as well as between an application endpoint and an intermediary or between two intermediaries. Thus, this document updates RFC 8613. The same approach can be seamlessly used with Group OSCORE, for protecting CoAP messages when group communication with intermediaries is used.</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://gitlab.com/crimson84/draft-tiloca-core-oscore-to-proxies"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="intro">
      <name>Introduction</name>
      <t>The Constrained Application Protocol (CoAP) <xref target="RFC7252"/> supports the presence of intermediaries, such as forward-proxies and reverse-proxies, which assist origin clients by performing requests to origin servers on their behalf, and forwarding back the related responses.</t>
      <t>CoAP supports also group communication scenarios <xref target="I-D.ietf-core-groupcomm-bis"/>, where clients can send a one-to-many request targeting all the servers in the group, e.g., by using IP multicast. Like for one-to-one communication, group settings can also rely on intermediaries <xref target="I-D.tiloca-core-groupcomm-proxy"/>.</t>
      <t>The protocol Object Security for Constrained RESTful Environments (OSCORE) <xref target="RFC8613"/> can be used to protect CoAP messages between two endpoints at the application layer, especially achieving end-to-end security in the presence of (non-trusted) intermediaries. When CoAP group communication is used, the same can be achieved by means of the protocol Group OSCORE <xref target="I-D.ietf-core-oscore-groupcomm"/>.</t>
      <t>For a number of use cases (see <xref target="sec-use-cases"/>), it is required and/or beneficial that communications are secured also between an application endpoint (i.e., a CoAP origin client/server) and an intermediary, as well as between two adjacent intermediaries in a chain. This especially applies to the communication leg between the CoAP origin client and the adjacent intermediary acting as next hop towards the CoAP origin server.</t>
      <t>In such cases, and especially if the origin client already uses OSCORE to achieve end-to-end security with the origin server, it would be convenient that OSCORE is used also to secure communications between the origin client and its next hop. However, the original specification <xref target="RFC8613"/> does not define how OSCORE can be used to protect CoAP messages in such communication leg, which would require to consider also the intermediary as an "OSCORE endpoint".</t>
      <t>This document fills this gap, and updates <xref target="RFC8613"/> as follows.</t>
      <ul spacing="normal">
        <li>It defines how to use OSCORE for protecting a CoAP message in the communication leg between: i) an origin client/server and an intermediary; or ii) two adjacent intermediaries in an intermediary chain. That is, besides origin clients/servers, it allows also intermediaries to be possible "OSCORE endpoints".</li>
        <li>It admits a CoAP message to be secured by multiple, nested OSCORE protections applied in sequence, as an "OSCORE-in-OSCORE" process. For instance, this is the case when the message is OSCORE-protected end-to-end between the origin client and origin server, and the result is further OSCORE-protected over the leg between the current and next hop (e.g., the origin client and the adjacent intermediary acting as next hop towards the origin server).</li>
      </ul>
      <t>This document does not specify any new signaling method to guide the message processing on the different endpoints. In particular, every endpoint is always able to understand what steps to take on an incoming message depending on the presence of the OSCORE Option, as exclusively included or instead combined together with CoAP options intended for an intermediary.</t>
      <t>The approach defined in this document can be seamlessly adopted also when Group OSCORE is used, for protecting CoAP messages in group communication scenarios that rely on intermediaries.</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>Readers are expected to be familiar with the terms and concepts related to CoAP <xref target="RFC7252"/>; OSCORE <xref target="RFC8613"/> and Group OSCORE <xref target="I-D.ietf-core-oscore-groupcomm"/>. This document especially builds on concepts and mechanics related to intermediaries such as CoAP forward-proxies.</t>
        <t>In addition, this document uses the following terms.</t>
        <ul spacing="normal">
          <li>Source application endpoint: an origin client producing a request, or an origin server producing a response.</li>
          <li>Destination application endpoint: an origin server intended to consume a request, or an origin client intended to consume a response.</li>
          <li>Application endpoint: a source or destination application endpoint.</li>
          <li>Source OSCORE endpoint: an endpoint protecting a message with OSCORE or Group OSCORE.</li>
          <li>Destination OSCORE endpoint: an endpoint unprotecting a message with OSCORE or Group OSCORE.</li>
          <li>OSCORE endpoint: a source/destination OSCORE endpoint. An OSCORE endpoint is not necessarily also an application endpoint with respect to a certain message.</li>
          <li>
            <t>Proxy-related options: either of the following (set of) CoAP options used for proxying a CoAP request.  </t>
            <ul spacing="normal">
              <li>The Proxy-Uri Option. This is relevant when using a forward-proxy.</li>
              <li>The set of CoAP options comprising the Proxy-Scheme Option together with any of the Uri-* Options. This is relevant when using a forward-proxy.</li>
              <li>One or more Uri-Path Options, when used not together with the Proxy-Scheme Option. This is relevant when using a reverse-proxy.</li>
            </ul>
          </li>
          <li>OSCORE-in-OSCORE: the process by which a message protected with (Group) OSCORE is further protected with (Group) OSCORE. This means that, if such a process is used, a successful decryption/verification of an OSCORE-protected message might yield an OSCORE-protected message.</li>
        </ul>
      </section>
    </section>
    <section anchor="sec-use-cases">
      <name>Use Cases</name>
      <t>The approach defined in this document has been motivated by a number of use cases, which are summarized below.</t>
      <section anchor="ssec-uc1">
        <name>CoAP Group Communication with Proxies</name>
        <t>CoAP supports also one-to-many group communication, e.g., over IP multicast <xref target="I-D.ietf-core-groupcomm-bis"/>, which can be protected end-to-end between origin client and origin servers by using Group OSCORE <xref target="I-D.ietf-core-oscore-groupcomm"/>.</t>
        <t>This communication model can be assisted by intermediaries such as a CoAP forward-proxy or reverse-proxy, which relays a group request to the origin servers. If Group OSCORE is used, the proxy is intentionally not a member of the OSCORE group. Furthermore, <xref target="I-D.tiloca-core-groupcomm-proxy"/> defines a signaling protocol between origin client and proxy, to ensure that responses from the different origin servers are forwarded back to the origin client within a time interval set by the client, and that they can be distinguished from one another.</t>
        <t>In particular, it is required that the proxy identifies the origin client as allowed-listed, before forwarding a group request to the servers (see <xref section="4" sectionFormat="of" target="I-D.tiloca-core-groupcomm-proxy"/>). This requires a security association between the origin client and the proxy, which would be convenient to provide with a dedicated OSCORE Security Context between the two, since the client is possibly using also Group OSCORE with the origin servers.</t>
      </section>
      <section anchor="ssec-uc2">
        <name>CoAP Observe Notifications over Multicast</name>
        <t>The Observe extension for CoAP <xref target="RFC7641"/> allows a client to register its interest in "observing" a resource at a server. The server can then send back notification responses upon changes to the resource representation, all matching with the original observation request.</t>
        <t>In some applications, such as pub-sub <xref target="I-D.ietf-core-coap-pubsub"/>, multiple clients are interested to observe the same resource at the same server. Hence, <xref target="I-D.ietf-core-observe-multicast-notifications"/> defines a method that allows the server to send a multicast notification to all the observer clients at once, e.g., over IP multicast. To this end, the server synchronizes the clients by providing them with a common "phantom observation request", against which the following multicast notifications will match.</t>
        <t>In case the clients and the server use Group OSCORE for end-to-end security and a proxy is also involved, an additional step is required (see <xref section="12" sectionFormat="of" target="I-D.ietf-core-observe-multicast-notifications"/>). That is, clients are in turn required to provide the proxy with the obtained "phantom observation request", thus enabling the proxy to receive the multicast notifications from the server.</t>
        <t>Therefore, it is preferable to have a security association also between each client and the proxy, to especially ensure the integrity of that information provided to the proxy (see <xref section="15.3" sectionFormat="of" target="I-D.ietf-core-observe-multicast-notifications"/>). Like for the use case in <xref target="ssec-uc1"/>, this would be conveniently achieved with a dedicated OSCORE Security Context between a client and the proxy, since the client is also using Group OSCORE with the origin server.</t>
      </section>
      <section anchor="ssec-uc3">
        <name>LwM2M Client and External Application Server</name>
        <t>The Lightweight Machine-to-Machine (LwM2M) protocol <xref target="LwM2M-Core"/> enables a LwM2M Client device to securely bootstrap and then register at a LwM2M Server, with which it will perform most of its following communication exchanges. As per the transport bindings specification of LwM2M <xref target="LwM2M-Transport"/>, the LwM2M Client and LwM2M Server can use CoAP and OSCORE to secure their communications at the application layer, including during the device registration process.</t>
        <t>Furthermore, Section 5.5.1 of <xref target="LwM2M-Transport"/> specifies that: "OSCORE MAY also be used between LwM2M endpoint and non-LwM2M endpoint, e.g., between an Application Server and a LwM2M Client via a LwM2M server. Both the LwM2M endpoint and non-LwM2M endpoint MUST implement OSCORE and be provisioned with an OSCORE Security Context."</t>
        <t>In such a case, the LwM2M Server can practically act as forward-proxy between the LwM2M Client and the external Application Server. At the same time, the LwM2M Client and LwM2M Server must continue protecting communications on their leg using their Security Context. Like for the use case in <xref target="ssec-uc1"/>, this also allows the LwM2M Server to identify the LwM2M Client, before forwarding its request outside the LwM2M domain and towards the external Application Server.</t>
      </section>
      <section anchor="ssec-uc4">
        <name>LwM2M Gateway</name>
        <t>The specification <xref target="LwM2M-Gateway"/> extends the LwM2M architecture by defining the LwM2M Gateway functionality. That is, a LwM2M Server can manage end IoT devices "behind" the LwM2M Gateway. While it is outside the scope of such specification, it is possible for the LwM2M Gateway to use any suitable protocol with its connected end IoT devices, as well as to carry out any required protocol translation.</t>
        <t>Practically, the LwM2M Server can send a request to the LwM2M Gateway, asking to forward it to an end IoT device. With particular reference to the CoAP protocol and the related transport binding specified in <xref target="LwM2M-Transport"/>, the LwM2M Server acting as CoAP client sends its request to the LwM2M Gateway acting as CoAP server.</t>
        <t>If CoAP is used in the communication leg between the LwM2M Gateway and the end IoT devices, then the LwM2M Gateway fundamentally acts as a reverse-proxy (see <xref section="5.7.3" sectionFormat="of" target="RFC7252"/>). That is, in addition to its own resources, the LwM2M Gateway serves the resources of each end IoT device behind itself, as exposed under a dedicated URI-Path. As per <xref target="LwM2M-Gateway"/>, the first URI-Path segment is used as "prefix" to identify the specific IoT device, while the remaining URI-Path segments specify the target resource at the IoT device.</t>
        <t>As per Section 7 of <xref target="LwM2M-Gateway"/>, message exchanges between the LwM2M Server and the L2M2M Gateway are secured using the LwM2M-defined technologies, while the LwM2M protocol does not provide end-to-end security between the LwM2M Server and the end IoT devices. However, the approach defined in this document makes it possible to achieve both goals, by allowing the LwM2M Server to use OSCORE for protecting a message both end-to-end for the targeted end IoT device as well as for the LwM2M Gateway acting as reverse-proxy.</t>
      </section>
      <section anchor="further-use-cases">
        <name>Further Use Cases</name>
        <t>The approach defined in this document can be useful also in the following use cases relying on a proxy.</t>
        <ul spacing="normal">
          <li>
            <t>A server aware of a suitable cross proxy can rely on it as a third-party service, in order to indicate transports for CoAP available to that server (see <xref section="4" sectionFormat="of" target="I-D.ietf-core-transport-indication"/>).  </t>
            <t>
From a security point of view, it would be convenient if the proxy could provide suitable credentials to the client, as a general trusted proxy for the system. At the same time, it can be desirable to limit the use of such a proxy to a set of clients which have permission to use it, and that the proxy can identify through a secure communication association.  </t>
            <t>
However, in order for OSCORE to be an applicable security mechanism for this, it has to be terminated at the proxy. That is, it would be required for a client and the proxy to share a dedicated OSCORE Security Context and to use it for protecting their communication leg.</t>
          </li>
          <li>A proxy may be deployed to act as an entry point to a firewalled network, which only authenticated clients can join. In particular, authentication can rely on the used secure communication association between a client and the proxy. If the proxy could share a dedicated OSCORE Security Context with each client, the proxy can rely on it to identify the client, before forwarding its messages to any other member of the firewalled network.</li>
          <li>The approach defined in this document does not pose a limit to the number of OSCORE protections applied to the same CoAP message. This enables more privacy-oriented scenarios based on proxy chains, where the origin client protects a CoAP request using first the OSCORE Security Context shared with the origin server, and then the dedicated OSCORE Security Context shared with each of the different chain hops. Once received at a chain hop, the request would be stripped of the OSCORE protection associated with that hop before being forwarded to the next one.</li>
        </ul>
      </section>
    </section>
    <section anchor="sec-message-processing">
      <name>Message Processing</name>
      <t>As mentioned in <xref target="intro"/>, this document introduces the following two main deviations from the original OSCORE specification <xref target="RFC8613"/>.</t>
      <ol spacing="normal" type="1"><li>
          <t>An "OSCORE endpoint", i.e., a producer/consumer of an OSCORE Option can be not only an application endpoint (i.e., an origin client or server), but also an intermediary such as a proxy.  </t>
          <t>
Hence, OSCORE can also be used between an origin client/server and a proxy, as well as between two proxies in an intermediary chain.</t>
        </li>
        <li>
          <t>A CoAP message can be secured by multiple OSCORE protections applied in sequence. Therefore, the final result is a message with nested OSCORE protections, as the output of an "OSCORE-in-OSCORE" process. Hence, following a decryption, the resulting message might legitimately include an OSCORE Option, and thus have in turn to be decrypted.  </t>
          <t>
The most common case is expected to consider a message protected with up to two OSCORE layers, i.e.: i) an inner layer, protecting the message end-to-end between the origin client and the origin server acting as application endpoints; and ii) an outer layer, protecting the message between a certain OSCORE endpoint and the other OSCORE endpoint adjacent in the intermediary chain.  </t>
          <t>
However, a message can also be protected with a higher arbitrary number of nested OSCORE layers, e.g., in scenarios relying on a longer chain of intermediaries. For instance, the origin client can sequentially apply multiple OSCORE layers to a request, each of which to be consumed and removed by one of the intermediaries in the chain, until the origin server is reached and it consumes the innermost OSCORE layer.</t>
        </li>
      </ol>
      <t><xref target="sec-examples"/> provides a number of examples where the approach defined in this document is used to protect message exchanges.</t>
      <section anchor="general-rules">
        <name>General Rules on Protecting Options</name>
        <t>Let us consider a sender endpoint that, when protecting an outgoing message, applies the i-th OSCORE layer in sequence, by using the OSCORE Security Context shared with another OSCORE endpoint X.</t>
        <t>In addition to the CoAP options already specified as class E in <xref target="RFC8613"/> or in the document defining them, the sender endpoint MUST encrypt and integrity-protect the following CoAP options, even though they are originally specified as class U or class I for OSCORE. That is, such options are processed like if they were specified as class E for OSCORE.</t>
        <ul spacing="normal">
          <li>An OSCORE Option, which is present as the result of the j-th OSCORE layer immediately previously applied, i.e., j = (i-1).</li>
          <li>
            <t>The EDHOC Option defined in <xref target="I-D.ietf-core-oscore-edhoc"/>, only if it is not intended to be consumed by the other OSCORE endpoint X.  </t>
            <t>
That is, the EDHOC Option is not protected when actually intended to be consumed by the other OSCORE endpoint X. In such a case, the EDHOC Option will still correctly signal to the other endpoint X to extract part of the message payload, and to use it for completing an ongoing execution of the EDHOC key establishment protocol <xref target="I-D.ietf-lake-edhoc"/>, before proceeding with the removal of the i-th OSCORE layer.</t>
          </li>
          <li>
            <t>Any CoAP option such that both the following conditions hold, thus ensuring that as many options as possible are protected.  </t>
            <ol spacing="normal" type="1"><li>The option is intended to be consumed by the other OSCORE endpoint X.</li>
              <li>At the other OSCORE endpoint X, the option does not play a role in processing the message before having removed the i-th OSCORE layer or in removing the i-th OSCORE layer altogether.</li>
            </ol>
            <t>
Examples of such CoAP options are:  </t>
            <ul spacing="normal">
              <li>The Proxy-Uri, Proxy-Scheme, Uri-Host and Uri-Port Options defined in <xref target="RFC7252"/>.</li>
              <li>The Listen-To-Multicast-Notifications Option defined in <xref target="I-D.ietf-core-observe-multicast-notifications"/>.</li>
              <li>The Multicast-Timeout, Response-Forwarding and Group-ETag Options defined in <xref target="I-D.tiloca-core-groupcomm-proxy"/>.</li>
            </ul>
          </li>
        </ul>
      </section>
      <section anchor="outgoing-requests">
        <name>Processing an Outgoing Request</name>
        <t>The rules from <xref target="general-rules"/> apply when processing an outgoing request message, with the following addition.</t>
        <t>When an application endpoint applies multiple OSCORE layers in sequence to protect an outgoing request, and it uses an OSCORE Security Context shared with the other application endpoint, then the first OSCORE layer MUST be applied by using that Security Context.</t>
      </section>
      <section anchor="incoming-requests">
        <name>Processing an Incoming Request</name>
        <t>Upon receiving a request REQ, the recipient endpoint performs the actions described in the following steps.</t>
        <ol spacing="normal" type="1"><li>If REQ includes proxy-related options, the endpoint moves to step 2. Otherwise, the endpoint moves to step 3.</li>
          <li>
            <t>The endpoint proceeds as defined below, depending on which of the following conditions holds.  </t>
            <ul spacing="normal">
              <li>
                <t>REQ includes either the Proxy-Uri Option, or the Proxy-Scheme Option together with any of the Uri-* Options.      </t>
                <t>
If the endpoint is not configured to be a forward-proxy, it MUST stop processing the request and MUST respond with a 5.05 (Proxying Not Supported) error response to (the previous hop towards) the origin client, as per <xref section="5.10.2" sectionFormat="of" target="RFC7252"/>. This may result in protecting the error response over that communication leg, as per <xref target="outgoing-responses"/>.      </t>
                <t>
Otherwise, the endpoint consumes the proxy-related options as per <xref section="5.7.2" sectionFormat="of" target="RFC7252"/>, and forwards REQ to (the next hop towards) the origin server. This may result in (further) protecting REQ over that communication leg, as per <xref target="outgoing-requests"/>.      </t>
                <t>
In either case, the endpoint does not take any further action.</t>
              </li>
              <li>
                <t>REQ includes one or more Uri-Path Options but not the Proxy-Scheme Option.      </t>
                <t>
If the endpoint is not configured to be a reverse-proxy or its resource targeted by the Uri-Path Options is not intended to support reverse-proxy functionalities, then the endpoint proceeds to step 3.      </t>
                <t>
Otherwise, the endpoint consumes the Uri-Path options as per <xref section="5.7.3" sectionFormat="of" target="RFC7252"/>, and forwards REQ to (the next hop towards) the origin server. This may result in (further) protecting REQ over that communication leg, as per <xref target="outgoing-requests"/>.      </t>
                <t>
After that, the endpoint does not take any further action.      </t>
                <t>
Note that, when forwarding REQ, the endpoint might not remove all the Uri-Path Options originally present, e.g., in case the next hop towards the origin server is a further reverse-proxy.</t>
              </li>
            </ul>
          </li>
          <li>
            <t>The endpoint proceeds as defined below, depending on which of the following conditions holds.  </t>
            <ul spacing="normal">
              <li>
                <t>REQ does not include an OSCORE Option.      </t>
                <t>
If the endpoint does not have an application to handle REQ, it MUST stop processing the request and MAY respond with a 4.00 (Bad Request) error response to (the previous hop towards) the origin client. This may result in protecting the error response over that communication leg, as per <xref target="outgoing-responses"/>.      </t>
                <t>
Otherwise, the endpoint delivers REQ to the application.</t>
              </li>
              <li>
                <t>REQ includes an OSCORE Option.      </t>
                <t>
If REQ includes any URI-Path Options, the endpoint MUST stop processing the request and MAY respond with a 4.00 (Bad Request) error response to (the previous hop towards) the origin client. This may result in protecting the error response over that communication leg, as per <xref target="outgoing-responses"/>.      </t>
                <t>
The endpoint decrypts REQ using the OSCORE Security Context indicated by the OSCORE Option, i.e., REQ* = dec(REQ). After that, the possible presence of an OSCORE Option in the decrypted request REQ* is not treated as an error situation.      </t>
                <t>
If the OSCORE processing results in an error, the endpoint MUST stop processing the request and performs error handling as per <xref section="8.2" sectionFormat="of" target="RFC8613"/> or Sections <xref target="I-D.ietf-core-oscore-groupcomm" section="8.2" sectionFormat="bare"/> and <xref target="I-D.ietf-core-oscore-groupcomm" section="9.4" sectionFormat="bare"/> of <xref target="I-D.ietf-core-oscore-groupcomm"/>, in case OSCORE or Group OSCORE is used, respectively. In case the endpoint sends an error response to (the previous hop towards) the origin client, this may result in protecting the error response over that communication leg, as per <xref target="outgoing-responses"/>.      </t>
                <t>
Otherwise, REQ takes REQ*, and the endpoint moves to step 1.</t>
              </li>
            </ul>
          </li>
        </ol>
      </section>
      <section anchor="outgoing-responses">
        <name>Processing an Outgoing Response</name>
        <t>The rules from <xref target="general-rules"/> apply when processing an outgoing response message, with the following additions.</t>
        <t>When an application endpoint applies multiple OSCORE layers in sequence to protect an outgoing response, and it uses an OSCORE Security Context shared with the other application endpoint, then the first OSCORE layer MUST be applied by using that Security Context.</t>
        <t>The sender endpoint protects the response by applying the same OSCORE layers that it removed from the corresponding incoming request, but in the reverse order than the one they were removed.</t>
        <t>In case the response is an error response, the sender endpoint protects it by applying the same OSCORE layers that it successfully removed from the corresponding incoming request, but in the reverse order than the one they were removed.</t>
      </section>
      <section anchor="incoming-responses">
        <name>Processing an Incoming Response</name>
        <t>The recipient endpoint removes the same OSCORE layers that it added when protecting the corresponding outgoing request, but in the reverse order than the one they were removed.</t>
        <t>When doing so, the possible presence of an OSCORE Option in the decrypted response following the removal of an OSCORE layer is not treated as an error situation, unless it occurs after having removed as many OSCORE layers as were added in the outgoing request. In such a case, the endpoint MUST stop processing the response.</t>
      </section>
    </section>
    <section anchor="sec-response-caching">
      <name>Caching of OSCORE-Protected Responses</name>
      <t>Although not possible as per the original OSCORE specification <xref target="RFC8613"/>, cacheability of OSCORE-protected responses at proxies can be achieved. To this end, the approach defined in <xref target="I-D.amsuess-core-cachable-oscore"/> can be used, as based on Deterministic Requests protected with the pairwise mode of Group OSCORE <xref target="I-D.ietf-core-oscore-groupcomm"/> used end-to-end between an origin client and an origin server. The applicability of this approach is limited to requests that are safe (in the RESTful sense) to process and do not yield side effects at the origin server.</t>
      <t>In particular, both the origin client and the origin server are required to have already joined the correct OSCORE group. Then, starting from the same plain CoAP request, different clients in the OSCORE group are able to deterministically generate a same request protected with Group OSCORE, which is sent to a proxy for being forwarded to the origin server. The proxy can now effectively cache the resulting OSCORE-protected response from the server, since the same plain CoAP request will result again in the same Deterministic Request and thus will produce a cache hit.</t>
      <t>If the approach defined in <xref target="I-D.amsuess-core-cachable-oscore"/> is used, the following also applies in addition to what is defined in <xref target="sec-message-processing"/>, when processing incoming messages at a proxy that implements caching of responses.</t>
      <ul spacing="normal">
        <li>
          <t>Upon receiving a request from (the previous hop towards) the origin client, the proxy checks if specifically the message available during the execution of step 2 in <xref target="incoming-requests"/> produces a cache hit.  </t>
          <t>
That is, such a message: i) is exactly the one to be forwarded to (the next hop towards) the origin server if no cache hit has occurred; and ii) is the result of an OSCORE decryption at the proxy, if OSCORE is used on the communication leg between the proxy and (the previous hop towards) the origin client.</t>
        </li>
        <li>
          <t>Upon receiving a response from (the next hop towards) the origin server, the proxy first removes the same OSCORE layers that it added when protecting the corresponding outgoing request, as defined in <xref target="incoming-responses"/>.  </t>
          <t>
Then, the proxy stores specifically that resulting response message in its cache. That is, such a message is exactly the one to be forwarded to (the previous hop towards) the origin client.</t>
        </li>
      </ul>
      <t>The specific rules about serving a request with a cached response are defined in <xref section="5.6" sectionFormat="of" target="RFC7252"/>, as well as in <xref section="7" sectionFormat="of" target="I-D.tiloca-core-groupcomm-proxy"/> for group communication scenarios.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>TODO</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no actions for IANA.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC7252" target="https://www.rfc-editor.org/info/rfc7252">
          <front>
            <title>The Constrained Application Protocol (CoAP)</title>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby">
              <organization/>
            </author>
            <author fullname="K. Hartke" initials="K." surname="Hartke">
              <organization/>
            </author>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <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="RFC8174" target="https://www.rfc-editor.org/info/rfc8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC8613" target="https://www.rfc-editor.org/info/rfc8613">
          <front>
            <title>Object Security for Constrained RESTful Environments (OSCORE)</title>
            <author fullname="G. Selander" initials="G." surname="Selander">
              <organization/>
            </author>
            <author fullname="J. Mattsson" initials="J." surname="Mattsson">
              <organization/>
            </author>
            <author fullname="F. Palombini" initials="F." surname="Palombini">
              <organization/>
            </author>
            <author fullname="L. Seitz" initials="L." surname="Seitz">
              <organization/>
            </author>
            <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="I-D.ietf-core-oscore-groupcomm" target="https://www.ietf.org/archive/id/draft-ietf-core-oscore-groupcomm-15.txt">
          <front>
            <title>Group OSCORE - Secure Group Communication for CoAP</title>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Göran Selander" initials="G." surname="Selander">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="Francesca Palombini" initials="F." surname="Palombini">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="John Preuß Mattsson" initials="J. P." surname="Mattsson">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="Jiye Park" initials="J." surname="Park">
              <organization>Universitaet Duisburg-Essen</organization>
            </author>
            <date day="5" month="September" year="2022"/>
            <abstract>
              <t>   This document defines Group Object Security for Constrained RESTful
   Environments (Group OSCORE), providing end-to-end security of CoAP
   messages exchanged between members of a group, e.g., sent over IP
   multicast.  In particular, the described approach defines how OSCORE
   is used in a group communication setting to provide source
   authentication for CoAP group requests, sent by a client to multiple
   servers, and for protection of the corresponding CoAP responses.
   Group OSCORE also defines a pairwise mode where each member of the
   group can efficiently derive a symmetric pairwise key with any other
   member of the group for pairwise OSCORE communication.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-oscore-groupcomm-15"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC7641" target="https://www.rfc-editor.org/info/rfc7641">
          <front>
            <title>Observing Resources in the Constrained Application Protocol (CoAP)</title>
            <author fullname="K. Hartke" initials="K." surname="Hartke">
              <organization/>
            </author>
            <date month="September" year="2015"/>
            <abstract>
              <t>The Constrained Application Protocol (CoAP) is a RESTful application protocol for constrained nodes and networks.  The state of a resource on a CoAP server can change over time.  This document specifies a simple protocol extension for CoAP that enables CoAP clients to "observe" resources, i.e., to retrieve a representation of a resource and keep this representation updated by the server over a period of time.  The protocol follows a best-effort approach for sending new representations to clients and provides eventual consistency between the state observed by each client and the actual resource state at the server.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7641"/>
          <seriesInfo name="DOI" value="10.17487/RFC7641"/>
        </reference>
        <reference anchor="RFC8742" target="https://www.rfc-editor.org/info/rfc8742">
          <front>
            <title>Concise Binary Object Representation (CBOR) Sequences</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <date month="February" year="2020"/>
            <abstract>
              <t>This document describes the Concise Binary Object Representation (CBOR) Sequence format and associated media type "application/cbor-seq".  A CBOR Sequence consists of any number of encoded CBOR data items, simply concatenated in sequence.</t>
              <t>Structured syntax suffixes for media types allow other media types to build on them and make it explicit that they are built on an existing media type as their foundation.  This specification defines and registers "+cbor-seq" as a structured syntax suffix for CBOR Sequences.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8742"/>
          <seriesInfo name="DOI" value="10.17487/RFC8742"/>
        </reference>
        <reference anchor="I-D.ietf-core-groupcomm-bis" target="https://www.ietf.org/archive/id/draft-ietf-core-groupcomm-bis-07.txt">
          <front>
            <title>Group Communication for the Constrained Application Protocol (CoAP)</title>
            <author fullname="Esko Dijk" initials="E." surname="Dijk">
              <organization>IoTconsultancy.nl</organization>
            </author>
            <author fullname="Chonggang Wang" initials="C." surname="Wang">
              <organization>InterDigital</organization>
            </author>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <date day="11" month="July" year="2022"/>
            <abstract>
              <t>   This document specifies the use of the Constrained Application
   Protocol (CoAP) for group communication, including the use of UDP/IP
   multicast as the default underlying data transport.  Both unsecured
   and secured CoAP group communication are specified.  Security is
   achieved by use of the Group Object Security for Constrained RESTful
   Environments (Group OSCORE) protocol.  The target application area of
   this specification is any group communication use cases that involve
   resource-constrained devices or networks that support CoAP.  This
   document replaces RFC 7390, while it updates RFC 7252 and RFC 7641.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-groupcomm-bis-07"/>
        </reference>
        <reference anchor="I-D.tiloca-core-groupcomm-proxy" target="https://www.ietf.org/archive/id/draft-tiloca-core-groupcomm-proxy-07.txt">
          <front>
            <title>Proxy Operations for CoAP Group Communication</title>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Esko Dijk" initials="E." surname="Dijk">
              <organization>IoTconsultancy.nl</organization>
            </author>
            <date day="5" month="September" year="2022"/>
            <abstract>
              <t>   This document specifies the operations performed by a proxy, when
   using the Constrained Application Protocol (CoAP) in group
   communication scenarios.  Such a proxy processes a single request
   sent by a client over unicast, and distributes the request over IP
   multicast to a group of servers.  Then, the proxy collects the
   individual responses from those servers and relays those responses
   back to the client, in a way that allows the client to distinguish
   the responses and their origin servers through embedded addressing
   information.  This document updates RFC7252 with respect to caching
   of response messages at proxies.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-tiloca-core-groupcomm-proxy-07"/>
        </reference>
        <reference anchor="I-D.ietf-core-observe-multicast-notifications" target="https://www.ietf.org/archive/id/draft-ietf-core-observe-multicast-notifications-04.txt">
          <front>
            <title>Observe Notifications as CoAP Multicast Responses</title>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Rikard Höglund" initials="R." surname="Höglund">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Christian Amsüss" initials="C." surname="Amsüss">
         </author>
            <author fullname="Francesca Palombini" initials="F." surname="Palombini">
              <organization>Ericsson AB</organization>
            </author>
            <date day="11" month="July" year="2022"/>
            <abstract>
              <t>   The Constrained Application Protocol (CoAP) allows clients to
   "observe" resources at a server, and receive notifications as unicast
   responses upon changes of the resource state.  In some use cases,
   such as based on publish-subscribe, it would be convenient for the
   server to send a single notification addressed to all the clients
   observing a same target resource.  This document updates RFC7252 and
   RFC7641, and defines how a server sends observe notifications as
   response messages over multicast, synchronizing all the observers of
   a same resource on a same shared Token value.  Besides, this document
   defines how Group OSCORE can be used to protect multicast
   notifications end-to-end between the server and the observer clients.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-observe-multicast-notifications-04"/>
        </reference>
        <reference anchor="I-D.ietf-core-coap-pubsub" target="https://www.ietf.org/archive/id/draft-ietf-core-coap-pubsub-10.txt">
          <front>
            <title>Publish-Subscribe Broker for the Constrained Application Protocol (CoAP)</title>
            <author fullname="Michael Koster" initials="M." surname="Koster">
              <organization>SmartThings</organization>
            </author>
            <author fullname="Ari Keränen" initials="A." surname="Keränen">
              <organization>Ericsson</organization>
            </author>
            <author fullname="Jaime Jimenez" initials="J." surname="Jimenez">
              <organization>Ericsson</organization>
            </author>
            <date day="4" month="May" year="2022"/>
            <abstract>
              <t>   The Constrained Application Protocol (CoAP), and related extensions
   are intended to support machine-to-machine communication in systems
   where one or more nodes are resource constrained, in particular for
   low power wireless sensor networks.  This document defines a publish-
   subscribe Broker for CoAP that extends the capabilities of CoAP for
   supporting nodes with long breaks in connectivity and/or up-time.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-coap-pubsub-10"/>
        </reference>
        <reference anchor="I-D.ietf-core-oscore-edhoc" target="https://www.ietf.org/archive/id/draft-ietf-core-oscore-edhoc-04.txt">
          <front>
            <title>Profiling EDHOC for CoAP and OSCORE</title>
            <author fullname="Francesca Palombini" initials="F." surname="Palombini">
              <organization>Ericsson</organization>
            </author>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Rikard Höglund" initials="R." surname="Höglund">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Stefan Hristozov" initials="S." surname="Hristozov">
              <organization>Fraunhofer AISEC</organization>
            </author>
            <author fullname="Göran Selander" initials="G." surname="Selander">
              <organization>Ericsson</organization>
            </author>
            <date day="11" month="July" year="2022"/>
            <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 further profiles 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 subsequent OSCORE
   transaction.  This combination reduces the number of round trips
   required to set up an OSCORE Security Context and to complete an
   OSCORE transaction using that Security Context.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-oscore-edhoc-04"/>
        </reference>
        <reference anchor="I-D.ietf-lake-edhoc" target="https://www.ietf.org/archive/id/draft-ietf-lake-edhoc-15.txt">
          <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="10" month="July" year="2022"/>
            <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-15"/>
        </reference>
        <reference anchor="I-D.ietf-core-transport-indication" target="https://www.ietf.org/archive/id/draft-ietf-core-transport-indication-01.txt">
          <front>
            <title>CoAP Protocol Indication</title>
            <author fullname="Christian Amsüss" initials="C." surname="Amsüss">
         </author>
            <date day="11" month="July" year="2022"/>
            <abstract>
              <t>   The Constrained Application Protocol (CoAP, [RFC7252]) is available
   over different transports (UDP, DTLS, TCP, TLS, WebSockets), but
   lacks a way to unify these addresses.  This document provides
   terminology and provisions based on Web Linking [RFC8288] to express
   alternative transports available to a device, and to optimize
   exchanges using these.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-transport-indication-01"/>
        </reference>
        <reference anchor="I-D.amsuess-core-cachable-oscore" target="https://www.ietf.org/archive/id/draft-amsuess-core-cachable-oscore-05.txt">
          <front>
            <title>Cacheable OSCORE</title>
            <author fullname="Christian Amsüss" initials="C." surname="Amsüss">
         </author>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <date day="11" month="July" year="2022"/>
            <abstract>
              <t>   Group communication with the Constrained Application Protocol (CoAP)
   can be secured end-to-end using Group Object Security for Constrained
   RESTful Environments (Group OSCORE), also across untrusted
   intermediary proxies.  However, this sidesteps the proxies' abilities
   to cache responses from the origin server(s).  This specification
   restores cacheability of protected responses at proxies, by
   introducing consensus requests which any client in a group can send
   to one server or multiple servers in the same group.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-amsuess-core-cachable-oscore-05"/>
        </reference>
        <reference anchor="LwM2M-Core" target="http://www.openmobilealliance.org/release/LightweightM2M/V1_2-20201110-A/OMA-TS-LightweightM2M_Core-V1_2-20201110-A.pdf">
          <front>
            <title>Lightweight Machine to Machine Technical Specification - Core, Approved Version 1.2, OMA-TS-LightweightM2M_Core-V1_2-20201110-A</title>
            <author>
              <organization>Open Mobile Alliance</organization>
            </author>
            <date year="2020" month="November"/>
          </front>
        </reference>
        <reference anchor="LwM2M-Transport" target="http://www.openmobilealliance.org/release/LightweightM2M/V1_2-20201110-A/OMA-TS-LightweightM2M_Transport-V1_2-20201110-A.pdf">
          <front>
            <title>Lightweight Machine to Machine Technical Specification - Transport Bindings, Approved Version 1.2, OMA-TS-LightweightM2M_Transport-V1_2-20201110-A</title>
            <author>
              <organization>Open Mobile Alliance</organization>
            </author>
            <date year="2020" month="November"/>
          </front>
        </reference>
        <reference anchor="LwM2M-Gateway" target="https://www.openmobilealliance.org/release/LwM2M_Gateway/V1_1-20210518-A/OMA-TS-LWM2M_Gateway-V1_1-20210518-A.pdf">
          <front>
            <title>Lightweight Machine to Machine Gateway Technical Specification - Approved Version 1.1, OMA-TS-LWM2M_Gateway-V1_1-20210518-A</title>
            <author>
              <organization>Open Mobile Alliance</organization>
            </author>
            <date year="2021" month="May"/>
          </front>
        </reference>
      </references>
    </references>
    <section anchor="sec-examples">
      <name>Examples</name>
      <t>This section provides a number of examples where the approach defined in this document is used to protect message exchanges.</t>
      <section anchor="example-1">
        <name>Example 1</name>
        <t>The example in <xref target="fig-example-client-proxy"/> builds on the example from <xref section="A.1" sectionFormat="of" target="RFC8613"/>, and illustrates an origin client requesting the alarm status from an origin server, through a forward-proxy.</t>
        <t>The message exchanges are protected with OSCORE over the following legs.</t>
        <ul spacing="normal">
          <li>End-to-end, between the client and the server. The client uses the OSCORE Sender ID 0x5f when using OSCORE with the server.</li>
          <li>Between the client and the proxy. The client uses the OSCORE Sender ID 0x20 when using OSCORE with the proxy.</li>
        </ul>
        <figure anchor="fig-example-client-proxy">
          <name>Use of OSCORE between Client-Server and Client-Proxy</name>
          <artwork><![CDATA[
Client  Proxy  Server
  |       |       |
  +------>|       |     Code: 0.02 (POST)
  | POST  |       |    Token: 0x8c
  |       |       |   OSCORE: [kid: 20, Partial IV: 31]
  |       |       |           0xff
  |       |       |  Payload: {Code: 0.02,
  |       |       |            OSCORE: [kid: 5f, Partial IV: 42],
  |       |       |            Uri-Host: example.com,
  |       |       |            Proxy-Scheme: coap,
  |       |       |            0xff,
  |       |       |            {Code: 0.01, Uri-Path:"alarm_status"}}
  |       |       |
  |       +------>|     Code: 0.02 (POST)
  |       | POST  |    Token: 0x7b
  |       |       |   OSCORE: [kid: 5f, Partial IV: 42]
  |       |       |           0xff
  |       |       |  Payload: {Code: 0.01, Uri-Path:"alarm_status"}
  |       |       |
  |       |<------+     Code: 2.04 (Changed)
  |       |  2.04 |    Token: 0x7b
  |       |       |   OSCORE: -
  |       |       |           0xff
  |       |       |  Payload: {Code: 2.05, 0xff, "0"}
  |       |       |
  |<------+       |     Code: 2.04 (Changed)
  |  2.04 |       |    Token: 0x8c
  |       |       |   OSCORE: -
  |       |       |           0xff
  |       |       |  Payload: {Code: 2.04,
  |       |       |            OSCORE: -,
  |       |       |            0xff,
  |       |       |            {Code: 2.05, 0xff, "0"}}
  |       |       |

Square brackets [ ... ] indicate content of compressed COSE object.
Curly brackets { ... } indicate encrypted data.
]]></artwork>
        </figure>
      </section>
      <section anchor="example-2">
        <name>Example 2</name>
        <t>The example in <xref target="fig-example-proxy-server"/> builds on the example from <xref section="A.1" sectionFormat="of" target="RFC8613"/>, and illustrates an origin client requesting the alarm status from an origin server, through a forward-proxy.</t>
        <t>The message exchanges are protected with OSCORE over the following legs.</t>
        <ul spacing="normal">
          <li>End-to-end between the client and the server. The client uses the OSCORE Sender ID 0x5f when using OSCORE with the server.</li>
          <li>Between the proxy and the server. The proxy uses the OSCORE Sender ID 0xd4 when using OSCORE with the server.</li>
        </ul>
        <figure anchor="fig-example-proxy-server">
          <name>Use of OSCORE between Client-Server and Proxy-Server</name>
          <artwork><![CDATA[
Client  Proxy  Server
  |       |       |
  +------>|       |          Code: 0.02 (POST)
  | POST  |       |         Token: 0x8c
  |       |       |      Uri-Host: example.com
  |       |       |  Proxy-Scheme: coap
  |       |       |        OSCORE: [kid: 5f, Partial IV: 42]
  |       |       |                0xff
  |       |       |       Payload: {Code: 0.01,
  |       |       |                 Uri-Path:"alarm_status"}
  |       |       |
  |       +------>|          Code: 0.02 (POST)
  |       | POST  |         Token: 0x7b
  |       |       |        OSCORE: [kid: d4, Partial IV: 31]
  |       |       |                0xff
  |       |       |       Payload: {Code: 0.02,
  |       |       |                 OSCORE: [kid: 5f, Partial IV: 42],
  |       |       |                 0xff,
  |       |       |                 {Code: 0.01,
  |       |       |                  Uri-Path:"alarm_status"}}
  |       |       |
  |       |<------+          Code: 2.04 (Changed)
  |       |  2.04 |         Token: 0x7b
  |       |       |        OSCORE: -
  |       |       |                0xff
  |       |       |       Payload: {Code: 2.04,
  |       |       |                 OSCORE: -,
  |       |       |                 0xff,
  |       |       |                 {Code: 2.05, 0xff, "0"}}
  |       |       |
  |<------+       |          Code: 2.04 (Changed)
  |  2.04 |       |         Token: 0x8c
  |       |       |        OSCORE: -
  |       |       |                0xff
  |       |       |       Payload: {Code: 2.05, 0xff, "0"}
  |       |       |

Square brackets [ ... ] indicate content of compressed COSE object.
Curly brackets { ... } indicate encrypted data.
]]></artwork>
        </figure>
      </section>
      <section anchor="example-3">
        <name>Example 3</name>
        <t>The example in <xref target="fig-example-client-proxy-server"/> builds on the example from <xref section="A.1" sectionFormat="of" target="RFC8613"/>, and illustrates an origin client requesting the alarm status from an origin server, through a forward-proxy.</t>
        <t>The message exchanges are protected with OSCORE over the following legs.</t>
        <ul spacing="normal">
          <li>End-to-end between the client and the server. The client uses the OSCORE Sender ID 0x5f when using OSCORE with the server.</li>
          <li>Between the client and the proxy. The client uses the OSCORE Sender ID 0x20 when using OSCORE with the proxy.</li>
          <li>Between the proxy and the server. The proxy uses the OSCORE Sender ID 0xd4 when using OSCORE with the server.</li>
        </ul>
        <figure anchor="fig-example-client-proxy-server">
          <name>Use of OSCORE between Client-Server, Client-Proxy and Proxy-Server</name>
          <artwork><![CDATA[
Client  Proxy  Server
  |       |       |
  +------>|       |     Code: 0.02 (POST)
  | POST  |       |    Token: 0x8c
  |       |       |   OSCORE: [kid: 20, Partial IV: 31]
  |       |       |           0xff
  |       |       |  Payload: {Code: 0.02,
  |       |       |            OSCORE: [kid: 5f, Partial IV: 42],
  |       |       |            Uri-Host: example.com,
  |       |       |            Proxy-Scheme: coap,
  |       |       |            0xff,
  |       |       |            {Code: 0.01, Uri-Path:"alarm_status"}}
  |       |       |
  |       +------>|     Code: 0.02 (POST)
  |       | POST  |    Token: 0x7b
  |       |       |   OSCORE: [kid: d4, Partial IV: 31]
  |       |       |           0xff
  |       |       |  Payload: {Code: 0.02,
  |       |       |            OSCORE: [kid: 5f, Partial IV: 42],
  |       |       |            0xff,
  |       |       |            {Code: 0.01, Uri-Path:"alarm_status"}}
  |       |       |
  |       |<------+     Code: 2.04 (Changed)
  |       |  2.04 |    Token: 0x7b
  |       |       |   OSCORE: -
  |       |       |           0xff
  |       |       |  Payload: {Code: 2.04,
  |       |       |            OSCORE: -,
  |       |       |            0xff,
  |       |       |            {Code: 2.05, 0xff, "0"}}
  |       |       |
  |<------+       |     Code: 2.04 (Changed)
  |  2.04 |       |    Token: 0x8c
  |       |       |   OSCORE: -
  |       |       |           0xff
  |       |       |  Payload: {Code:2.04,
  |       |       |            OSCORE: -,
  |       |       |            0xff,
  |       |       |            {Code: 2.05, 0xff, "0"}}
  |       |       |

Square brackets [ ... ] indicate content of compressed COSE object.
Curly brackets { ... } indicate encrypted data.
]]></artwork>
        </figure>
      </section>
      <section anchor="example-4">
        <name>Example 4</name>
        <t>The example in <xref target="fig-example-edhoc"/> builds on the example from <xref section="A.1" sectionFormat="of" target="RFC8613"/>, and illustrates an origin client requesting the alarm status from an origin server, through a forward-proxy.</t>
        <t>The message exchanges are protected over the following legs.</t>
        <ul spacing="normal">
          <li>End-to-end, between the client and the server. The client uses the OSCORE Sender ID 0x5f when using OSCORE with the server.</li>
          <li>Between the client and the proxy. The client uses the OSCORE Sender ID 0x20 when using OSCORE with the proxy.</li>
        </ul>
        <t>The example also shows how the client establishes an OSCORE Security Context with the proxy and with the server, by using the key establishment protocol EDHOC <xref target="I-D.ietf-lake-edhoc"/>.</t>
        <figure anchor="fig-example-edhoc">
          <name>Use of OSCORE between Client-Server and Proxy-Server, with OSCORE Security Contexts established through EDHOC</name>
          <artwork><![CDATA[
Client  Proxy  Server
  |       |       |
  +------>|       |          Code: 0.02 (POST)
  | POST  |       |         Token: 0xf3
  |       |       |      Uri-Path: .well-known
  |       |       |      Uri-Path: edhoc
  |       |       |                0xff
  |       |       |       Payload: (true, EDHOC message_1)
  |       |       |
  |<------+       |          Code: 2.04 (Changed)
  |  2.04 |       |         Token: 0xf3
  |       |       |                0xff
  |       |       |       Payload: EDHOC message_2
  |       |       |
Est.      |       |
CTX_P     |       |
with P    |       |
  |       |       |
  +------>|       |          Code: 0.02 (POST)
  | POST  |       |         Token: 0x82
  |       |       |      Uri-Path: .well-known
  |       |       |      Uri-Path: edhoc
  |       |       |                0xff
  |       |       |       Payload: (C_R, EDHOC message_3)
  |       |       |
  |      Est.     |
  |      CTX_P    |
  |      with C   |
  |       |       |
  |<------+       |
  |  ACK  |       |
  |       |       |
  +------>|       |          Code: 0.02 (POST)
  | POST  |       |         Token: 0xbe
  |       |       |        OSCORE: [kid: 20, Partial IV: 00]
  |       |       |                0xff
  |       |       |       Payload: {Code: 0.02,
  |       |       |                 Uri-Host: example.com,
  |       |       |                 Uri-Path: .well-known,
  |       |       |                 Uri-Path: edhoc,
  |       |       |                 Proxy-Scheme: coap,
  |       |       |                 0xff,
  |       |       |                 (true, EDHOC message_1)}
  |       |       |
  |       +------>|          Code: 0.02 (POST)
  |       | POST  |         Token: 0xa5
  |       |       |      Uri-Path: .well-known
  |       |       |      Uri-Path: edhoc
  |       |       |                0xff
  |       |       |       Payload: (true, EDHOC message_1)
  |       |       |
  |       |<------+          Code: 2.04 (Changed)
  |       |  2.04 |         Token: 0xa5
  |       |       |                0xff
  |       |       |       Payload: EDHOC message_2
  |       |       |
  |<------+       |          Code: 2.04 (Changed)
  |  2.04 |       |         Token: 0xbe
  |       |       |        OSCORE: -
  |       |       |                0xff
  |       |       |       Payload: {Code: 2.04,
  |       |       |                 0xff,
  |       |       |                 EDHOC message_2}
  |       |       |
Est.      |       |
CTX_S     |       |
with S    |       |
  |       |       |
  +------>|       |          Code: 0.02 (POST)
  | POST  |       |         Token: 0xb9
  |       |       |        OSCORE: [kid: 20, Partial IV: 01]
  |       |       |                0xff
  |       |       |       Payload: {Code: 0.02,
  |       |       |                 Uri-Host: example.com,
  |       |       |                 Uri-Path: .well-known,
  |       |       |                 Uri-Path: edhoc,
  |       |       |                 Proxy-Scheme: coap,
  |       |       |                 0xff,
  |       |       |                 (C_R, EDHOC message_3)}
  |       |       |
  |       +------>|          Code: 0.02 (POST)
  |       | POST  |         Token: 0xdd
  |       |       |      Uri-Path: .well-known
  |       |       |      Uri-Path: edhoc
  |       |       |                0xff
  |       |       |       Payload: (C_R, EDHOC message_3)
  |       |       |
  |       |     Est.
  |       |     CTX_S
  |       |     with C
  |       |       |
  |       |<------+
  |       |  ACK  |
  |       |       |
  |<------+       |
  |  ACK  |       |
  |       |       |
  +------>|       |     Code: 0.02 (POST)
  | POST  |       |    Token: 0x8c
  |       |       |   OSCORE: [kid: 20, Partial IV: 02]
  |       |       |           0xff
  |       |       |  Payload: {Code: 0.02,
  |       |       |            OSCORE: [kid: 5f, Partial IV: 00],
  |       |       |            Uri-Host: example.com,
  |       |       |            Proxy-Scheme: coap,
  |       |       |            0xff,
  |       |       |            {Code: 0.01, Uri-Path:"alarm_status"}}
  |       |       |
  |       +------>|     Code: 0.02 (POST)
  |       | POST  |    Token: 0x7b
  |       |       |   OSCORE: [kid: 5f, Partial IV: 00]
  |       |       |           0xff
  |       |       |  Payload: {Code: 0.01, Uri-Path:"alarm_status"}
  |       |       |
  |       |<------+     Code: 2.04 (Changed)
  |       |  2.04 |    Token: 0x7b
  |       |       |   OSCORE: -
  |       |       |           0xff
  |       |       |  Payload: {Code: 2.05, 0xff, "0"}
  |       |       |
  |<------+       |     Code: 2.04 (Changed)
  |  2.04 |       |    Token: 0x8c
  |       |       |   OSCORE: -
  |       |       |           0xff
  |       |       |  Payload: {Code: 2.04,
  |       |       |            OSCORE: -,
  |       |       |            0xff,
  |       |       |            {Code: 2.05, 0xff, "0"}}
  |       |       |

Square brackets [ ... ] indicate content of compressed COSE object.
Curly brackets { ... } indicate encrypted data.
Round brackets (...) indicate a CBOR sequence [RFC 8742].
]]></artwork>
        </figure>
      </section>
    </section>
    <section anchor="onion-forwarding">
      <name>OSCORE-protected Onion Forwarding</name>
      <t>TODO: better elaborate on the listed points below.</t>
      <ul spacing="normal">
        <li>The client can hide its position in the network from the origin server, while still possibly protecting communications end-to-end with OSCORE.</li>
        <li>Use the method defined in <xref target="sec-message-processing"/> to achieve OSCORE-protected onion forwarding, through a chain of proxies (at least three are expected). Every message generated by or intended to the origin client must traverse the whole chain of proxies until the intended other endpoint (typically, the origin server). The chain of proxies has to be known in advance by the client, i.e., the exact proxies and their order in the chain.</li>
        <li>
          <t>The typical case addressed in this document considers an origin client that, at most, shares one OSCORE Security Context with the origin server and one OSCORE Security Context with the first proxy in the chain.  </t>
          <t>
If onion forwarding is used, the origin client shares an OSCORE Security Context with the origin server, and a dedicated OSCORE Security Context with each of the proxies in the chain.</t>
        </li>
        <li>
          <t>The origin client protects a request by applying first the OSCORE layer intended to the origin server, then the OSCORE layer intended to the last proxy in the chain, then the OSCORE layer intended to the second from last proxy in the chain and so on, until it applies the OSCORE layer intended to the first proxy in the chain.  </t>
          <t>
Before protecting a request with the OSCORE layer to be consumed by a certain proxy in the chain, the origin client also adds proxy-related options intended to that proxy, as indications to forward the request to (the next hop towards) the origin server.  </t>
          <t>
Other than the actions above from the client, there should be no difference from the basic approach defined in <xref target="sec-message-processing"/>. Each proxy in the chain would process and remove one OSCORE layer from the received request and then forward it to (the next hop towards) the origin server.</t>
        </li>
        <li>
          <t>The exact way used by the client to establish OSCORE Security Contexts with the proxies and the origin server is out of scope.  </t>
          <t>
If the EDHOC key establishment protocol is used (see <xref target="I-D.ietf-lake-edhoc"/>), it is most convenient for the client to run it with the first proxy in the chain, then with the second proxy in the chain through the first one and so on, and finally with the origin server by traversing the whole chain of proxies.  </t>
          <t>
Then, it is especially convenient to use the optimized workflow defined in <xref target="I-D.ietf-core-oscore-edhoc"/> and based on the EDHOC + OSCORE request. This would basically allow the client to complete the EDHOC execution with an endpoint and start the EDHOC execution with the next endpoint in the chain, by means of a single message sent on the wire.</t>
        </li>
        <li>
          <t>Hop-by-hop security has to also be achieved between each pair of proxies in the chain. To this end, two adjacent proxies would better use TLS over TCP than OSCORE between one another (this should be acceptable for non-constrained proxies). This takes advantage of the TCP packet aggregation policies, and thus:  </t>
          <ul spacing="normal">
            <li>As request forwarding occurs in MTU-size bundles, the length of the origin request can be hidden as well.</li>
            <li>Requests and responses traversing the proxy chain cannot be correlated, e.g., by externally monitoring the timing of message forwarding (which would jeopardize the client's wish to hide itself from anything but the first proxy in the chain).</li>
          </ul>
        </li>
        <li>
          <t>Cacheability of responses can still happen, as per <xref target="sec-response-caching"/> and using the approach defined in <xref target="I-D.amsuess-core-cachable-oscore"/>.  </t>
          <t>
The last proxy in the chain would be the only proxy actually seeing the Deterministic Request originated by the client and then caching the corresponding responses from the origin server. It is good that other proxies are not able to do the same, thus preventing what might lead to request-response correlation, again opening for localization of the origin client.</t>
        </li>
        <li>
          <t>Possible optimizations along the proxy chains  </t>
          <ul spacing="normal">
            <li>In particular settings involving additional configuration on the client, some proxy in the chain might be a reverse-proxy. Then, such a proxy can be configured to map on one hand the OSCORE Security Context shared with the origin client (and used to remove a corresponding OSCORE layer from a received request to forward) and, on the other hand, the addressing information of the next hop in the chain where to forward the received request to. This would spare the origin client to add a set of proxy-related options for every single proxy in the chain.</li>
            <li>
              <t>It is mentioned above to additionally use TLS over TCP hop-by-hop between every two adjacent proxies in the chain. That said:      </t>
              <ul spacing="normal">
                <li>The OSCORE protection of the request has certainly to rely on authenticated encryption algorithms (as usual), when applying the OSCORE layer intended to the origin server (the first one applied by the origin client) and the OSCORE layer intended to the first proxy in the chain (the last one applied by the origin client).</li>
                <li>For any other OSCORE layer applied by the origin client (i.e., intended for any proxy in the chain but the first one), the OSCORE protection can better rely on an encryption-only algorithm not providing an authentication tag (as admitted in the group mode of Group OSCORE <xref target="I-D.ietf-core-oscore-groupcomm"/> and assuming the registration of such algorithms in COSE).</li>
                <li>This would be secure to do, since every pair of adjacent proxies in the chain relies on its TLS connection for the respective hop-by-hop communication anyway. The benefit is that it avoids transmitting several unneeded authentication tags from OSCORE.</li>
              </ul>
            </li>
          </ul>
        </li>
      </ul>
    </section>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>The authors sincerely thank <contact fullname="Christian Amsüss"/>, <contact fullname="Peter Blomqvist"/>, <contact fullname="David Navarro"/> and <contact fullname="Göran Selander"/> for their comments and feedback.</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:
H4sIAAAAAAAAA+19W3MbR5LuO39FBfVwSA8AkRRl2ZydjUNTtMVYSdSSlGcn
JiYcBXSBaKvRjelukMJoeX7WPp23+WMnb3XrblxIybJ8xnywYKC7Lll5+Soz
K6vf72/dHKknW1t1WmfmSJ1fnpxfnPZHeqaHmVFvyuJ9aqotPRyW5mbpz0kx
yvUUXk9KPa77dZoVI90fFaXpFxX9I2/0Z/xGP9O1qeqtrUeqqnWe/KSzIof3
63JutrbSWUkfq/pgb+/bvYMtXRp9pM7y2pS5qbdur4/USXFxqv5clO/S/Fr9
UBbz2da7W/9M/zmOZGuk6yPoIdmq5sNpWlVpkdeLGXR0dnr1/dZ8luAwjtQ3
X+8DCUZFAo0dqXk97n+zNUuPFPw9UiOdq3lllC5LvVA76VjpLFMLU+2qolQT
XU3UxJQwbKXqYnSEv8DHqijr0oyrI2ojMWM9z+oKnrC/L6b8M/7vlp7Xk6I8
2lL015d/lUpzeOLVQF0RRd3XTOxXuhwVzZ+KEmZwcXZ5qo6/c19WMBQDlDir
9Pjnokyqaw1UVwcH7olRWi+O1H+ksBr+uyKBXi5P+/tfHx7uBV/P87qEpy9v
TWJy972Z6jQ7UlMc1YBZ4H+X6aAy3bO6GKgX//yf62yeJ415XaTvdJm0f/3V
p1bSwAaTgsYlk9vKi3Kq6/TG4PJdfH9ysL//rXx8dvD0QD5+s//s0H4EbsOP
Z/3ng9QAs4WCco2sPCqm0yOQg3zcaPvZ14f7tpVnhwftVtzr/WFa2Z9DefQP
oCguOsYxrEx5Y/pT4Nd0pKu6nxd1OoaPNUhP1X5hVOhZfzYfgogtnZVJJiAa
4a+Zftf1NT1dlzqvZiBA/TRPpGP7lJ5Wc1NV0rUeTUitcDf4zMvbVwev+ify
f0rFkkUsdD4zuXpVDFPQYMdZlup8xDwqOvBlej2pbw3+F2RsNElzg3JrP16Z
0SSHUWXqcmZGjjKqr7DXnjqeAWVvTKJ+NCUqHLU/OOip81fH/avLftA2jPMn
fKP/4/5PB/2DvYO9/f39vf4xDQUV05HCL/v7+zw4XV4jo0/qenb0+PHt7e2g
gIlMaR5apjGACT4uDXxRmcdxX48b3TzefESDWTJ2pL2yi/P56eu6Vt8hY+TX
1f2o7d7/ski+dFgR3X+A4d3qxS9FdWl+BfU7KL3vKf1nnIk0gvPYx3ns7z3d
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
QPU5XAE8ni/fF3DVEVBweSLiTmfShgV/a5u80oiekXPawqHEZyWQY5gMASXp
WHeD85ggbhdVJaDGZhBOtMRYcxNEDKSDxllIN9S0Qwa7Yyduqml9nwn6KhfZ
4nPOdpXnxglZ4LppCFnbO8NNV+vmC6JjAwoNNRTPte0Le/hcSUQTag3rUn+U
zRPaBDk0sTvftyExog0MI4ZyM6p+UqtiBIIFD5GNbji0rf8+piylm2CmHFFW
htwkX3f0ZROz6uo0PVInmg+Zu4y0/hsXIrJc4+un2FfpQgfJWMokOigpbxJ6
8AcAN8456ils1ehhmsmh1VZ1F3+cXtcu+aZRQbfjyHZXMJvd16tuqYhrD5Od
dCl1zw2nn2KNipFFq1Uz4YG4UqdkNqmCCU7qnuVQOMjekVvSypSSop2tPbbD
/p6wfFrMUgU+U5IieyB8aW2KL2EEVo+N2hEutIWbQcIqsysmjur8YP9JQXzA
9XnoAJQZjzmrsO7wALSKeLgo2EZZM2WQ1+tOU0tEHfNeJWAkgcdGwZUrqo5X
1dg75vG5s9uo6GYZJpSEeZC9MPVQ8muFJGG7NCiboJ2EXEL7ewYvNR365tIJ
DHEbjBPXh3ex7MrYdGCfOb4kC7GDC3zybF7cyrpwWUmSO6sbJHlrqew1T7mH
56qX0I6jwAJWqcCBJR290ClMPhGMDyJzsiGpOhzsJK35PNVHyXdUuifAgpRj
KDivcdrplkPscVdL8jnvei1c2qwIWnG2qiSgU9v2CG2lRl45h0Xqv1JLYy20
NvfdTDjWmJjRu4oqeFkdjTxbB1FZfyYjOBsdxdc5smJzV5thoju7kFVjJcPk
BbFp0iel4FFWn6bkAYcKuCplyPibeh5xinnh+6dTBWSlQZP4ZLu0mTLigYBP
eowOH1D5s0a17GKTM368ANjxvdwbS3ghFNRNaRIyAm8dfnH0pxtS1AFN71ym
Zx4OEGANVktqsCnXsRL91dz0YRepyJRp5iL59MV7MNrmi0TbKHuKkDezeojH
b6XUUCDAtlYM5/q5SaBViWjlnfJfN13yPlU5evLZRhWpyKasrMdLsDHcK1J6
HqcawFTPn5/TjSPHr4/bP7ZK6+WFi/pix/iWXF6CtZSwIZemYTGoS2aU9iqZ
36+R2SiDU/u8xtIb032cXtux9pkTHI19ndo6eEv8G3a9jrl4RACPSS9l2ZwK
ULDHIIZJwkRW/jRAqikinHou3pMmPESZsge6mqUtrwK17w+aRjlFcRVUW0jc
21HQcmyvTh187UVqrwHvQrQiP7nqus43Qlv0s+dq7/3TcVgWs1m4xUHMr9R3
y7t0Z8Y26vFgb1WPlnL/x/9tSaUIjjcqOWgKKu2/5cZC9y9894c+/f17/NsJ
XYG4N9g7UDtvzi+vdult/NRo5ap4h2X9995/M+rqAH14Uhv0r+/SBK/46qk3
iH5hb3b245F6sv+3Je/Zv73343H3I284J+9IffDD7a1prTGcp+N4OIcHf1vb
gs2+OrJCNACltfatMPZ7pLAA2tpXcOZrH/Jz3++5KN/RNonhTyyG23d3Sxbf
fo6ZoHvx7dsBE7jFfzbcaPE7qP0pF38FAdbM/7//jQnwh2D+B4O9Q7VzQioo
iUnAv92TBP1PNlXo/WmPuUNt7y2fXDSpWLK7JucnpZrru1a4P+nkDjcW4v4n
laEmXbsJu3X59zkapGEJYMEAuPurGgwG6m/+XDnW4jF8uptqRHOS+cn5Jdgr
uqFqsHUyL7FUlm3iAzVx55uQ3Hl4LdG1HkTa/cORerTMzvN9jn/afstns8VY
WOvHdqEflEGQb0g5ASOF8OJgDbzgdCE2eP/a8OLXRhd+H9fskX9Z1WFyuFGH
nxZd0N/GEIP+1qsitcQyL1E7LXO8Skl8rBmjv+U6kP46Ddom7T7U6DXXRt3D
8tPfetvXQbzk8L4A8IHEWw8FO0b3EDzoxrfZk/de3gejuiYAUPeDNvR3zzVe
hwMcre6xlhshgngUv9CabQYQliEv+rsP/KK/jRTfL74A6/HmFweLQnxyX1gk
1oG+aMCiJ/fwuvyOjr4AdPQZfC+/cTj2u7NneQu/O3se6uy5P9D74hb/863J
b84B9WX7aJZBsC/c+fXF0/WLA3kdaOseWK8X+b/WIb/DNchPzuv//4P1fg+u
hdSyC0l5Onh/qVyP7ftxdR1WJ1bHrdO4G1Ns1INZUTOCi0osqRzxRfntxk9W
++3IaqoBZhH03+XFbb7J4zTRT7nj3anLuekJWUU+ftrfvZeRCaj0kH3+KkLd
f0LxTA46J3KKab2N706u/uunN43v+MLAFhE6CPMLuH07h87/fEHsc/LTRZN7
nizlHv7oqB9856gffMcXbKvlRG9xIz93fPIfv8aCDc3mPuHmPnFv79f1CT9s
0+debfHifV8lvtzspQfsNOlvc9/nEpX4+aIL+ulvQvTvZzns50/pol9FqPtP
aBPL8QuZwM10x68ba9hcgBqE7BacZTb4svEdWYHL+LvPptK//QiV/iuH+X5X
6cFfN0z5fBo9SX4TGv0BYE7+RWlufUni3PqWYd2mZiJ+jqHdZ4ODny1OsPdp
8wI/1lUMcPT3OMFnSwpdD/5/TwrtmOrvSaH/co7xi2KO4XX7/A48vuuf1urk
u/MLXxfirxffn6hvnh0e/G21S53s6MckTPSiJIGm+7MK3KSJc1CTlSV/e/sM
6HmODvOgTCgeyinwy76vhXXHp4COcIx44t1keljQoVfxw2cp335Ete255pSr
oxzUZZ/g8WE8sjUrqjQ8uy93sjSvtXAeW76rjIsOu9vpg7Npjcs4g7PVAbX4
bJ3UjpAbyDc68xnePNYiINEqqBsWxgVcEXt7sH1H460Jmu5dKQ0fArN3G+wO
1ClMduEiB/ZkMZebL6Oicu0D1XRRaV1qrrmAv99OsB5vawy+IL1rsFGveade
zMLbIaPF2BXvf7NZf40TgUo+ZHuDVfpt3SN7PJULHkn4ZuRP/UuMIS2lYkRY
R5/WjjqWsXEVEJ0kIuvtu9LkpFpHrIeLKumarprocS0WLjS4NqrQOK6eJ5u9
xscvOSTRmJaiSktNLorPMcfDl/FuEgTpuLHnflc1Ff7Gp+bVBk7Al146ZE9A
hoVWWrcO2Xr9nbwdHGTN17+U6U4ib/o6iD9WLiMdtKQpomBVqMJd7JDW0U0E
KztYzQXfuULk/n7C6Axpq/12gW9/O8gSMjSrMNCx+CRZUmu3MQOp0MGX5/hr
+KrwBlg+Xu0uUt24ciSRgCpSKVcpxp4jBWNzExQpCI65YymLib3/KS9cQYdR
8PhQV+loSUGBZRofVDE+28EAt/aeQFcgQ2pBBnqAV8cNwN1iVUZ1EHy1Sbny
7B60YsFj9YnXTfL1R6GapZL7FgsshwtRuDRQwu0ylAXfJkQ3Hzu1hU+uLb1v
D9/KJY+d0dRde22y3P7jLmm0Vyn6WZXznC+zX6NbReyD6C+Jd8eaWoPtW8PF
DESdaqJKPc8lpgCJz8bXBpa7zW94+p1nTFXm+KqaYN5yCwJ1BMI4Tf+B+aGA
kcaArTa/joJva9dB1QJerj9YlnCVh+jktdylhhLDd+dgakKD/nIjgwla8+Ui
7E3w0a1EVJFl+eOO7X153mgZ8Toto/NKrioF+mY+vYIKqMjUbtPSkHC8KGb9
4aKPYuRunxR8Yi8ysrWFHOwmc4elfUJQE2npRhWi28JfqmSft3fREUrG9bt6
ecmZHlcnb1ixNdA+cxoDsB1q3Ss0PRqZGd9DimKQAyZHZQ98Rosvne7K2nH9
PsJcNVJGTDd2PKNNjNLX16W55sP/syJLR1R42FZlsZcjHPubsAM8IhWvgCCv
rt72K2BHNZxj5VapFJqZ/Lp2eEFkw7YjRZcA/idY5ojLGdgrDFypJVamthxU
Q5psPRNN1RtzLEk0lHoUZLJsfV1gFntjPd76BLiqLlxZE5QjLr5i2SeY4Q4X
5eEl/NkUM/z+Hybg/v+F+rKii6HsTsZkY5setKipsgsWQFullviCmZNGXSw/
b7q/ijY6E7BZqCZcNcfOel0s4j6f5aGVc/wFbMuwj7tokVY45x3Y+4W/cgb0
ux1FdwEgKRxWt4yVs4i2Pg79FhUb8RTq3iQO1Bmp0+uikAtvWaicYSv5ykJX
yclfySnXsGD1D7w1DK+AwfftJXc6LKLlFsDxHt9xRyWQwDTmUrtJYUWOLP2H
Dm+paZd6eWPLq4mS1/YSqaLN95UITFRgC+8DxiGjaN4U2U1Y+BJ3SVLhXIYR
5nTBxqeYmq6F5om3y6G7ClvhpcQi23Ep9ameqYKV28Qiio1LYUYIdYe52xYy
47LbDdZowy7dBl0eo+Kde0nPEoO5ZKJdZTneUnJlJyxQG62gg2exZHApkiYK
bo0gsrLVTHfe2loTIvc3PXcjc2QxQ+4CMYjLthV9kQt/CSnDae5G+CRbtK3V
xBtRZyOpw07L17CUdLe3TpMjW2yWr6rxxYTtlaxCV0sjtNKyhckWvOR8K3B8
HbI466hYU3YN9KsnU/SuINIEXbQrVbqi8p6b7zcZiQdI0BdXbS3Xrmrw9/22
ftwVady1PQ08LfESRH/VcXwp0oom7JWsbnRjaadjYLEdg8Ht9sJpBkvIGoAg
j1utPFiiPt8Sa9fJ3lp2k8q1RM27qwG90FLqZJrWta+WyTWMHlp0kXwfFeyU
fdHM65TSgW2ZM9Jqnpuw4t355WlI9hAj2+te2ZbYknksIRZGrpQSJFbKtyei
SxRlD5RoLkS1+x5fhDoUyMYV3vkCNoHslxuaHOx+zZXOpJzXTZEmBKjyCilK
FVZxoGAf5tChQU5or4EYWuc7faSOR+jay0xyzcXs0FWs4+/u0OPNxZpM8qft
vNiWWrTYfgEAkshEbIJo+B2s3IeTSYkwARjheFr98/9W1R1mbMMPbxBEqO+y
Yvr3G3jCfv1cA+uo1/pGl3iPMi8tfP/DP/8HpggGJtOYgnwnpa9qd3M7DZr2
cjBnrEYlycfkei6aDsQJ3Qxs2NgiurF32aBo/Xj2+vX5j8dO+E8M3sHVf43m
ARYbQw7q5OLs6uzy9ITLz4k8vjjYO9hzj1yefX922X+BdnjnBxg8YvTSUK1A
9e3Tg6+fHgD7/T+PCbu0KrwAAA==

-->

</rfc>
