<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.29 (Ruby 3.3.7) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-ace-workflow-and-params-05" category="std" consensus="true" submissionType="IETF" updates="9200, 9201, 9202, 9203, 9431" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.29.0 -->
  <front>
    <title abbrev="New ACE Workflow and Parameters">Short Distribution Chain (SDC) Workflow and New OAuth Parameters for the Authentication and Authorization for Constrained Environments (ACE) Framework</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-ace-workflow-and-params-05"/>
    <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="G." surname="Selander" fullname="Göran Selander">
      <organization>Ericsson AB</organization>
      <address>
        <postal>
          <street>Torshamnsgatan 23</street>
          <city>Kista</city>
          <code>16440 Stockholm</code>
          <country>Sweden</country>
        </postal>
        <email>goran.selander@ericsson.com</email>
      </address>
    </author>
    <date year="2025" month="July" day="07"/>
    <area>Security</area>
    <workgroup>ACE Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 98?>

<t>This document updates the Authentication and Authorization for Constrained Environments Framework (ACE, RFC 9200) as follows. (1) It defines the Short Distribution Chain (SDC) workflow that the authorization server (AS) can use for uploading an access token to a resource server on behalf of the client. (2) For the OAuth 2.0 token endpoint, it defines new parameters and encodings and it extends the semantics of the "ace_profile" parameter. (3) It defines how the client and the AS can coordinate on the exchange of the client's and resource server's public authentication credentials, when those can be transported by value or identified by reference; this extends the semantics of the "rs_cnf" parameter for the OAuth 2.0 token endpoint, thus updating RFC 9201. (4) It extends the error handling at the AS, for which it defines a new error code. (5) It deprecates the original payload format of error responses conveying an error code, when CBOR is used to encode message payloads. For those responses, it defines a new payload format aligned with RFC 9290, thus updating in this respect also the profiles defined in RFC 9202, RFC 9203, and RFC 9431. (6) It amends two of the requirements on profiles of the framework.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-ace-workflow-and-params/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Authentication and Authorization for Constrained Environments (ace) Working Group mailing list (<eref target="mailto:ace@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/ace/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/ace/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/ace-wg/ace-workflow-and-params"/>.</t>
    </note>
  </front>
  <middle>
    <?line 102?>

<section anchor="intro">
      <name>Introduction</name>
      <t>The Authentication and Authorization for Constrained Environments (ACE) framework <xref target="RFC9200"/> defines an architecture to enforce access control for constrained devices. A client (C) requests an assertion of granted permissions from an authorization server (AS) in the form of an access token, then uploads the access token to the target resource server (RS), and finally accesses protected resources at the RS according to the permissions specified in the access token.</t>
      <t>The framework has as main building blocks the OAuth 2.0 framework <xref target="RFC6749"/>, the Constrained Application Protocol (CoAP) <xref target="RFC7252"/> for message transfer, Concise Binary Object Representation (CBOR) <xref target="RFC8949"/> for compact encoding, and CBOR Object Signing and Encryption (COSE) <xref target="RFC9052"/><xref target="RFC9053"/> for self-contained protection of access tokens. In addition, separate profile documents define in detail how the participants in the ACE architecture communicate, especially as to the security protocols that they use.</t>
      <t>This document updates <xref target="RFC9200"/> as follows.</t>
      <ul spacing="normal">
        <li>
          <t>It defines the Short Distribution Chain (SDC) workflow for the ACE framework (see <xref target="sec-workflow"/>), according to which the AS uploads the access token to the RS on behalf of C and then informs C about the outcome. The SDC workflow is especially convenient in deployments where the communication leg between C and the RS is constrained, but the communication leg between the AS and the RS is not.  </t>
          <t>
The SDC workflow has no ambition to replace the original workflow defined in <xref target="RFC9200"/>. The AS can use one workflow or the other depending, for example, on the specific RS for which an access token has been issued and the nature of the communication leg with that RS.</t>
        </li>
        <li>
          <t>It defines new parameters and encodings for the OAuth 2.0 token endpoint at the AS (see <xref target="sec-parameters"/>). These include:  </t>
          <ul spacing="normal">
            <li>
              <t>"token_upload", used by C to inform the AS that it opts in to use the SDC workflow and by the AS to inform C about the outcome of the token uploading to the RS per the SDC workflow.</t>
            </li>
            <li>
              <t>"token_hash", used by the AS to provide C with a token hash, which corresponds to an access token that the AS has issued for C and has successfully uploaded to the RS on behalf of C per the SDC workflow.</t>
            </li>
            <li>
              <t>"to_rs", used by C to provide the AS with information to relay to the RS, upon asking the AS to upload the access token to the RS per the SDC workflow. Its specific use with the OSCORE profile <xref target="RFC9203"/> is also described, as effectively enabling the use of the SDC workflow for that profile.</t>
            </li>
            <li>
              <t>"from_rs", used by the AS to provide C with information to relay from the RS, after the AS has successfully uploaded the access token to the RS per the SDC workflow. Its specific use with the OSCORE profile <xref target="RFC9203"/> is also described, as effectively enabling the use of SDC workflow for that profile.</t>
            </li>
            <li>
              <t>"rs_cnf2", used by the AS to provide C with the public keys of the RSs in the group-audience for which the access token is issued (see <xref section="6.9" sectionFormat="of" target="RFC9200"/>).</t>
            </li>
            <li>
              <t>"audience2", used by the AS to provide C with the identifiers of the RSs in the group-audience for which the access token is issued.</t>
            </li>
            <li>
              <t>"anchor_cnf", used by the AS to provide C with the public keys of trust anchors, which C can use to validate the public key of an RS (e.g., as provided in the "rs_cnf" parameter defined in <xref target="RFC9201"/> or in the "rs_cnf2" parameter defined in this document).</t>
            </li>
            <li>
              <t>"token_series_id", used by the AS to provide C with the identifier of a token series and by C to ask the AS for a new access token in the same token series that dynamically updates access rights. A corresponding access token claim, namely "token_series_id", is also defined.</t>
            </li>
          </ul>
        </li>
        <li>
          <t>It extends the semantics of the "ace_profile" parameter for the OAuth 2.0 token endpoint at the authorization server defined in <xref target="RFC9200"/> (see <xref target="sec-updated-ace-profile-parameter"/>).</t>
        </li>
        <li>
          <t>It defines how C and the AS can coordinate on the exchange of the client's and resource server's public authentication credentials, when those can be transported by value or identified by reference in the access token request and response (see <xref target="sec-coord-exchanged-cred"/>).  </t>
          <t>
This extends the semantics of the "rs_cnf" parameter for the OAuth 2.0 token endpoint defined in <xref target="RFC9201"/> and therefore updates <xref target="RFC9201"/>.</t>
        </li>
        <li>
          <t>It extends the error handling at the AS, for which it defines a new error code that the AS can use for error responses sent to the client, after failing to verify the proof of possession of the client's private key when processing an access token request (see <xref target="sec-error-failed-pop"/>).</t>
        </li>
        <li>
          <t>It deprecates the original payload format of error responses that convey an error code, when CBOR is used to encode message payloads in the ACE framework. For such error responses, it defines a new payload format according to the problem-details format specified in <xref target="RFC9290"/> (see <xref target="sec-updated-error-responses"/>).  </t>
          <t>
In this respect, it also updates the profiles of the ACE framework defined in <xref target="RFC9202"/>, <xref target="RFC9203"/>, and <xref target="RFC9431"/>.</t>
        </li>
        <li>
          <t>It amends two of the requirements on profiles of the ACE framework originally compiled in <xref section="C" sectionFormat="of" target="RFC9200"/> (see <xref target="sec-updated-requirements"/>).</t>
        </li>
      </ul>
      <section anchor="terminology">
        <name>Terminology</name>
        <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" 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>
        <?line -18?>

<t>Readers are expected to be familiar with the terms and concepts described in the ACE framework for Authentication and Authorization <xref target="RFC9200"/><xref target="RFC9201"/>, as well as with terms and concepts related to CBOR Web Tokens (CWTs) <xref target="RFC8392"/> and CWT Confirmation Methods <xref target="RFC8747"/>.</t>
        <t>The terminology for entities in the considered architecture is defined in OAuth 2.0 <xref target="RFC6749"/>. In particular, this includes client (C), resource server (RS), and authorization server (AS).</t>
        <t>Readers are also expected to be familiar with the terms and concepts related to CoAP <xref target="RFC7252"/>, Concise Data Definition Language (CDDL) <xref target="RFC8610"/>, CBOR <xref target="RFC8949"/>, JavaScript Object Notation (JSON) <xref target="RFC8259"/>, and COSE <xref target="RFC9052"/><xref target="RFC9053"/>.</t>
        <t>Note that the term "endpoint" is used here following its OAuth definition <xref target="RFC6749"/>, aimed at denoting resources such as /token and /introspect at the AS, and /authz-info at the RS. The CoAP definition, which is "[a]n entity participating in the CoAP protocol" <xref target="RFC7252"/>, is not used in this document.</t>
        <t>Furthermore, this document uses the following terms.</t>
        <ul spacing="normal">
          <li>
            <t>Token series: a set of access tokens, all of which are bound to the same proof-of-possession (PoP) key and are sequentially issued by the same AS for the same pair (client, audience) per the same profile of ACE. A token series ends when the latest access token of that token series becomes invalid (e.g., when it expires or gets revoked).  </t>
            <t>
Profiles of ACE can provide their extended and specialized definition, e.g., by further taking into account the public authentication credentials of C and the RS.</t>
          </li>
          <li>
            <t>Token hash: identifier of an access token, in binary format encoding. The token hash has no relation to other access token identifiers possibly used, such as the 'cti' (CWT ID) claim of CBOR Web Tokens (CWTs) <xref target="RFC8392"/>.</t>
          </li>
        </ul>
        <t>CBOR <xref target="RFC8949"/> and CDDL <xref target="RFC8610"/> are used in this document. CDDL predefined type names, especially bstr for CBOR byte strings and tstr for CBOR text strings, are used extensively in this document.</t>
        <t>Examples throughout this document are expressed in CBOR diagnostic notation as defined in <xref section="8" sectionFormat="of" target="RFC8949"/> and <xref section="G" sectionFormat="of" target="RFC8610"/>. Diagnostic notation comments are often used to provide a textual representation of the parameters' keys and values.</t>
        <t>In the CBOR diagnostic notation used in this document, constructs of the form e'SOME_NAME' are replaced by the value assigned to SOME_NAME in the CDDL model shown in <xref target="fig-cddl-model"/> of <xref target="sec-cddl-model"/>. For example, {e'audience2' : ["rs1", "rs2"]} stands for {53 : ["rs1", "rs2"]}.</t>
        <t>Note to RFC Editor: Please delete the paragraph immediately preceding this note. Also, in the CBOR diagnostic notation used in this document, please replace the constructs of the form e'SOME_NAME' with the value assigned to SOME_NAME in the CDDL model shown in <xref target="fig-cddl-model"/> of <xref target="sec-cddl-model"/>. Finally, please delete this note.</t>
      </section>
    </section>
    <section anchor="sec-workflow">
      <name>The Short Distribution Chain (SDC) Workflow</name>
      <t>As defined in <xref section="4" sectionFormat="of" target="RFC9200"/>, the ACE framework relies on its basic protocol workflow shown in <xref target="fig-old-workflow"/>.</t>
      <t>That is, the client first sends an access token request to the token endpoint at the AS (Step A), specifying permissions that it seeks to obtain for accessing protected resources at the RS, possibly together with information on its own public authentication credential.</t>
      <t>Then, if the request has been successfully verified, authenticated, and authorized, the AS replies to the client (Step B), providing an access token and possibly additional parameters as access information including the actually granted permissions.</t>
      <t>Finally, the client uploads the access token to the RS and, consistently with the permissions granted according to the access token, accesses a resource at the RS (Step C), which replies with the result of the resource access (Step F). Details about what protocol the client and the RS use to establish a secure association, mutually authenticate, and secure their communications are defined in the specific profile of ACE used, e.g., <xref target="RFC9202"/><xref target="RFC9203"/><xref target="RFC9431"/><xref target="I-D.ietf-ace-edhoc-oscore-profile"/><xref target="I-D.ietf-ace-group-oscore-profile"/>.</t>
      <t>Further interactions are possible between the AS and the RS, i.e., the exchange of an introspection request and response where the AS validates a previously issued access token for the RS (Steps D and E).</t>
      <figure anchor="fig-old-workflow">
        <name>ACE Basic Protocol Workflow.</name>
        <artwork><![CDATA[
+--------+                               +---------------+
|        |---(A)-- Token Request ------->|               |
|        |                               | Authorization |
|        |<--(B)-- Access Token ---------|    Server     |
|        |    + Access Information       |               |
|        |    + Refresh Token (optional) +---------------+
|        |                                      ^ |
|        |            Introspection Request  (D)| |
| Client |                         Response     | |(E)
|        |            (optional exchange)       | |
|        |                                      | v
|        |                               +--------------+
|        |---(C)-- Token + Request ----->|              |
|        |                               |   Resource   |
|        |<--(F)-- Protected Resource ---|    Server    |
|        |                               |              |
+--------+                               +--------------+
]]></artwork>
      </figure>
      <t>This section defines the alternative Short Distribution Chain (SDC) workflow shown in <xref target="fig-new-workflow"/>, which <bcp14>MAY</bcp14> be supported by the AS. Unlike in the original workflow defined in <xref target="RFC9200"/>, the AS uploads the access token to the RS on behalf of the client and then informs the client about the outcome.</t>
      <t>If the token uploading has been successfully completed, the client typically does not need to obtain the access token from the AS altogether. That is, the client simply establishes a secure association with the RS (if that has not happened already) and then accesses protected resources at the RS, according to the permissions granted per the access token and specified by the AS as access information.</t>
      <figure anchor="fig-new-workflow">
        <name>ACE Short Distribution Chain (SDC) Workflow.</name>
        <artwork><![CDATA[
+--------+                               +----------------------------+
|        |---(A)-- Token Request ------->|                            |
|        |                               |       Authorization        |
|        |<--(B)-- Token Response -------|           Server           |
|        |    + Access Information       |                            |
|        |    + Access Token (optional)  +----------------------------+
|        |    + Refresh Token (optional)   ^ |         | ^
|        |                                 | |         | | Token-Upload
|        |        Introspection Request (D)| |     (A1)| |      Request
| Client |                     Response    | |(E)      | |(A2) Response
|        |        (optional exchange)      | |         | |
|        |                                 | v         v |
|        |                               +----------------------------+
|        |---(C1)-- Token (Optional) --->|                            |
|        |                               |                            |
|        |---(C2)-- Protected Request -->|          Resource          |
|        |                               |           Server           |
|        |<--(F)--- Protected Resource --|                            |
|        |                               |                            |
+--------+                               +----------------------------+
]]></artwork>
      </figure>
      <t>More specifically, the SDC workflow consists of the following steps.</t>
      <ul spacing="normal">
        <li>
          <t>Step A - Like in the original workflow, the client sends an access token request to the token endpoint at the AS, with the additional indication that it opts in to use the SDC workflow.  </t>
          <t>
As defined in <xref target="sec-token_upload"/>, this information is conveyed to the AS by means of the "token_upload" parameter. The parameter also specifies what the AS has to return in the access token response at Step B, following a successful uploading of the access token from the AS to the RS.</t>
        </li>
        <li>
          <t>Step A1 - This new step consists of the AS uploading the access token to the RS, typically at the authz-info endpoint, just like the client does in the original workflow.</t>
        </li>
        <li>
          <t>Step A2 - This new step consists of the RS replying to the AS, following the uploading of the access token at Step A1.</t>
        </li>
        <li>
          <t>Step B - In the access token response, the AS tells the client that it has attempted to upload the access token to the RS, specifying the outcome of the token uploading based on the reply received from the RS at Step A2.  </t>
          <t>
As defined in <xref target="sec-token_upload"/>, this information is conveyed to the client by means of the "token_upload" parameter included in the access token response. If the token uploading has failed, the access token response also includes the access token. Otherwise, the access token response includes information consistent with what was specified by the "token_upload" parameter of the access token request at Step A.</t>
        </li>
        <li>
          <t>Step C1 - This step occurs only if the token uploading from the AS has failed, and the AS has provided the client with the access token at Step B. In such a case, the client uploads the access token to the RS just like at Step C of the original workflow.</t>
        </li>
        <li>
          <t>Step C2 - The client attempts to access a protected resource at the RS, according to the permissions granted per the access token and specified by the AS as access information at Step B.</t>
        </li>
        <li>
          <t>Steps D, E, and F are as in the original workflow.</t>
        </li>
      </ul>
      <t>The SDC workflow has no ambition to replace the original workflow defined in <xref target="RFC9200"/>. The AS can use one workflow or the other depending, for example, on the specific RS for which the access token has been issued and the nature of the communication leg with that RS.</t>
      <t>When using the SDC workflow, all the communications between the AS and the RS <bcp14>MUST</bcp14> be protected, consistent with Sections <xref target="RFC9200" section="5.8.4.3" sectionFormat="bare"/> and <xref target="RFC9200" section="6.5" sectionFormat="bare"/> of <xref target="RFC9200"/>. Unlike in the original workflow, this results in protecting also the uploading of the first access token in a token series, i.e., in addition to the uploading of the following access tokens in the token series for dynamically updating the access rights of the client.</t>
      <t>The SDC workflow is also suitable for deployments where clients are not aware of details such as the need for access tokens to be issued by the AS and uploaded at the RS. Consistent with the intended access policies, the AS can be configured to automatically issue access tokens for such clients and upload those access tokens to the RS. This means that such clients do not have to request for an access token to be issued in the first place. That is, they can immediately send requests to the RS for accessing its protected resources, in accordance with the access tokens already issued and uploaded by the AS.</t>
    </section>
    <section anchor="sec-parameters">
      <name>New Parameters</name>
      <t>The rest of this section defines a number of additional parameters and encodings for the OAuth 2.0 token endpoint at the AS.</t>
      <section anchor="sec-token_upload">
        <name>token_upload</name>
        <t>This section defines the additional "token_upload" parameter. The parameter can be used in an access token request sent by C to the token endpoint at the AS, as well as in the successful access token response sent as reply by the AS.</t>
        <ul spacing="normal">
          <li>
            <t>The "token_upload" parameter is <bcp14>OPTIONAL</bcp14> in an access token request. The presence of this parameter indicates that C opts in to use the SDC workflow defined in <xref target="sec-workflow"/>, whose actual use for uploading the issued access token to the RS is an exclusive prerogative of the AS.  </t>
            <t>
This parameter can take one of the following integer values. When the access token request is encoded in CBOR, those values are encoded as CBOR unsigned integers. The value of the parameter determines whether the follow-up successful access token response will have to include certain information, in case the AS has successfully uploaded the access token to the RS.  </t>
            <ul spacing="normal">
              <li>
                <t>0: The access token response will have to include neither the access token nor its corresponding token hash.</t>
              </li>
              <li>
                <t>1: The access token response will have to include the token hash corresponding to the access token, but not the access token.</t>
              </li>
              <li>
                <t>2: The access token response will have to include the access token, but not the corresponding token hash.</t>
              </li>
            </ul>
            <t>
If the AS supports the SDC workflow and the access token request includes the "token_upload" parameter with value 0, 1, or 2, then the AS <bcp14>MAY</bcp14> use the SDC workflow to upload the access token to the RS on behalf of C. Otherwise, following that access token request, the AS <bcp14>MUST NOT</bcp14> use the SDC workflow.</t>
          </li>
          <li>
            <t>The "token_upload" parameter is <bcp14>REQUIRED</bcp14> in a successful access token response with response code 2.01 (Created), if both the following conditions apply. Otherwise, the "token_upload" parameter <bcp14>MUST NOT</bcp14> be present.  </t>
            <ul spacing="normal">
              <li>
                <t>The corresponding access token request included the "token_upload" parameter, with value 0, 1, or 2.</t>
              </li>
              <li>
                <t>The AS has attempted to upload the issued access token to the RS as per the SDC workflow, irrespective of the result of the token upload.</t>
              </li>
            </ul>
            <t>
When the "token_upload" parameter is present in the access token response, it can take one of the following integer values. When the access token response is encoded in CBOR, those values are encoded as CBOR unsigned integers.  </t>
            <ul spacing="normal">
              <li>
                <t>If the token upload to the RS was not successful, then the "token_upload" parameter <bcp14>MUST</bcp14> specify the value 1.      </t>
                <t>
In this case, the access token response <bcp14>MUST</bcp14> include the "access_token" parameter specifying the issued access token.</t>
              </li>
              <li>
                <t>If the token upload at the RS was successful, then the "token_upload" parameter <bcp14>MUST</bcp14> specify the value 0.      </t>
                <t>
In this case, the access token response can include additional parameters as defined below, depending on the value of the "token_upload" parameter in the corresponding access token request.      </t>
                <ul spacing="normal">
                  <li>
                    <t>If the "token_upload" parameter in the access token request specified the value 0, then the access token response <bcp14>MUST NOT</bcp14> include the "access_token" parameter and <bcp14>MUST NOT</bcp14> include the "token_hash" parameter defined in <xref target="sec-token_hash"/>.</t>
                  </li>
                  <li>
                    <t>If the "token_upload" parameter in the access token request specified the value 1, then the access token response <bcp14>MUST NOT</bcp14> include the "access_token" parameter and <bcp14>MUST</bcp14> include the "token_hash" parameter defined in <xref target="sec-token_hash"/>, specifying the hash corresponding to the issued access token and computed as defined in <xref target="sec-token_hash"/>.</t>
                  </li>
                  <li>
                    <t>If the "token_upload" parameter in the access token request specified the value 2, then the access token response <bcp14>MUST</bcp14> include the "access_token" parameter specifying the issued access token and <bcp14>MUST NOT</bcp14> include the "token_hash" parameter defined in <xref target="sec-token_hash"/>.</t>
                  </li>
                </ul>
              </li>
            </ul>
          </li>
        </ul>
        <section anchor="examples">
          <name>Examples</name>
          <t><xref target="fig-example-AS-to-C-token-upload"/> shows an example, with first an access token request from C to the AS and then an access token response from the AS to C, following the issue of an access token bound to a symmetric PoP key.</t>
          <t>The access token request specifies the "token_upload" parameter with value 0. That is, C indicates that it requires neither the access token nor the corresponding token hash from the AS, in case the AS successfully uploads the access token to the RS.</t>
          <t>The access token response specifies the "token_upload" parameter with value 0, which indicates that the AS has successfully uploaded the access token to the RS on behalf of C.</t>
          <t>Consistent with the value of the "token_upload" parameter in the access token request, the access token response includes neither the access token nor its corresponding token hash. The access token response also includes the "cnf" parameter specifying the symmetric PoP key bound to the access token.</t>
          <figure anchor="fig-example-AS-to-C-token-upload">
            <name>Example of Access Token Request-Response Exchange. Following a successful uploading of the access token from the AS to the RS, the access token response includes the "token_upload" parameter but not the access token, which is bound to a symmetric key and was uploaded to the RS by the AS.</name>
            <artwork><![CDATA[
   Access token request

   Header: POST (Code=0.02)
   Uri-Host: "as.example.com"
   Uri-Path: "token"
   Content-Format: 19 (application/ace+cbor)
   Payload:
   {
     / audience /  5 : "tempSensor4711",
     / scope /     9 : "read",
     e'token_upload' : 0
   }


   Access token response

   Header: Created (Code=2.01)
   Content-Format: 19 (application/ace+cbor)
   Max-Age: 3560
   Payload:
   {
      e'token_upload' : 0,
     / expires_in / 2 : 3600,
     / cnf /        8 : {
       / COSE_Key / 1 : {
         / kty / 1 : 4 / Symmetric /,
         / kid / 2 : h'3d027833fc6267ce',
         / k /  -1 : h'73657373696f6e6b6579'
       }
     }
   }
]]></artwork>
          </figure>
          <t><xref target="fig-example-AS-to-C-token-upload-success-ret-token"/> shows another example, with first an access token request from C to the AS and then an access token response from the AS to C, also following the issue of an access token bound to a symmetric PoP key.</t>
          <t>The access token request specifies the "token_upload" parameter with value 2. That is, C indicates that it requires the access token from the AS, even in case the AS successfully uploads the access token to the RS.</t>
          <t>The access token response specifies the "token_upload" parameter with value 0, which indicates that the AS has successfully uploaded the access token to the RS on behalf of C.</t>
          <t>Consistent with the value of the "token_upload" parameter in the access token request, the access token response includes the "access_token" parameter specifying the issued access token. The access token response also includes the "cnf" parameter specifying the symmetric PoP key bound to the access token.</t>
          <figure anchor="fig-example-AS-to-C-token-upload-success-ret-token">
            <name>Example of Access Token Request-Response Exchange. Following a successful uploading of the access token from the AS to the RS, the access token response includes the "token_upload" parameter as well as the "access_token" parameter conveying the access token, which is bound to a symmetric key and was uploaded to the RS by the AS.</name>
            <artwork><![CDATA[
   Access token request

   Header: POST (Code=0.02)
   Uri-Host: "as.example.com"
   Uri-Path: "token"
   Content-Format: 19 (application/ace+cbor)
   Payload:
   {
     / audience /  5 : "tempSensor4711",
     / scope /     9 : "read",
     e'token_upload' : 2
   }


   Access token response

   Header: Created (Code=2.01)
   Content-Format: 19 (application/ace+cbor)
   Max-Age: 3560
   Payload:
   {
        e'token_upload' : 0,
     / access_token / 1 : h'd08343a1...4819',
       / (full CWT elided for brevity;
          CWT contains the symmetric PoP key in the "cnf" claim) /
     / expires_in /   2 : 3600,
     / cnf /          8 : {
       / COSE_Key / 1 : {
         / kty / 1 : 4 / Symmetric /,
         / kid / 2 : h'3d027833fc6267ce',
         / k /  -1 : h'73657373696f6e6b6579'
       }
     }
   }
]]></artwork>
          </figure>
          <t><xref target="fig-example-AS-to-C-token-upload-failed"/> shows another example, with first an access token request from C to the AS and then an access token response from the AS to C, also following the issue of an access token bound to a symmetric PoP key.</t>
          <t>The access token request specifies the "token_upload" parameter with value 0. That is, C indicates that it requires neither the access token nor the corresponding token hash from the AS, in case the AS successfully uploads the access token to the RS.</t>
          <t>In this example, the access token response includes the "token_upload" parameter with value 1, which indicates that the AS has attempted and failed to upload the access token to the RS on behalf of C. The access token response also includes the "access_token" parameter specifying the issued access token, together with the "cnf" parameter specifying the symmetric PoP key bound to the access token.</t>
          <t>Note that, even though the AS has failed to upload the access token to the RS, the response code 2.01 (Created) is used when replying to C, since the access token request as such has been successfully processed at the AS, with the following issue of the access token.</t>
          <figure anchor="fig-example-AS-to-C-token-upload-failed">
            <name>Example of Access Token Request-Response Exchange. Following a failed uploading of the access token from the AS to the RS, the access token response includes the "token_upload" parameter with value 1 as well the "access_token" parameter conveying the access token bound to a symmetric key.</name>
            <artwork><![CDATA[
   Access token request

   Header: POST (Code=0.02)
   Uri-Host: "as.example.com"
   Uri-Path: "token"
   Content-Format: 19 (application/ace+cbor)
   Payload:
   {
     / audience /  5 : "tempSensor4711",
     / scope /     9 : "read",
     e'token_upload' : 0
   }


   Access token response

   Header: Created (Code=2.01)
   Content-Format: 19 (application/ace+cbor)
   Max-Age: 3560
   Payload:
   {
        e'token_upload' : 1,
     / access_token / 1 : h'd08343a1...4819',
       / (full CWT elided for brevity;
          CWT contains the symmetric PoP key in the "cnf" claim) /
     / expires_in /   2 : 3600,
     / cnf /          8 : {
       / COSE_Key / 1 : {
         / kty / 1 : 4 / Symmetric /,
         / kid / 2 : h'3d027833fc6267ce',
         / k /  -1 : h'73657373696f6e6b6579'
       }
     }
   }
]]></artwork>
          </figure>
        </section>
      </section>
      <section anchor="sec-token_hash">
        <name>token_hash</name>
        <t>This section defines the additional "token_hash" parameter. The parameter can be used in a successful access token response sent as reply by the AS to C.</t>
        <t>The following refers to the base64url encoding without padding (see <xref section="5" sectionFormat="of" target="RFC4648"/>) and denotes as "binary representation" of a text string the corresponding UTF-8 encoding <xref target="RFC3629"/>, which is the implied charset used in JSON (see <xref section="8.1" sectionFormat="of" target="RFC8259"/>).</t>
        <t>The "token_hash" parameter is <bcp14>REQUIRED</bcp14> in a successful access token response with response code 2.01 (Created), if both the following conditions apply. Otherwise, the "token_hash" parameter <bcp14>MUST NOT</bcp14> be present.</t>
        <ul spacing="normal">
          <li>
            <t>The corresponding access token request included the "token_upload" parameter with value 1.</t>
          </li>
          <li>
            <t>The access token response includes the "token_upload" parameter with value 0. That is, the AS has successfully uploaded the issued access token to the RS, as per the SDC workflow.</t>
          </li>
        </ul>
        <t>This parameter specifies the token hash corresponding to the access token issued by the AS and successfully uploaded to the RS on behalf of C. In particular:</t>
        <ul spacing="normal">
          <li>
            <t>If the access token response is encoded in CBOR, then the "token_hash" parameter is a CBOR byte string, with value the token hash.</t>
          </li>
          <li>
            <t>If the access token response is encoded in JSON, then the "token_hash" parameter has as value the base64url-encoded text string that encodes the token hash.</t>
          </li>
        </ul>
        <t>The AS computes the token hash as defined in <xref target="sec-token-hash-output"/>.</t>
        <section anchor="sec-token-hash-output">
          <name>Computing the Token Hash</name>
          <t>The AS computes the token hash over the value that the "access_token" parameter would have had in the same access token response, if it was included therein and specifying the access token.</t>
          <t>In particular, the input HASH_INPUT over which the token hash is computed is determined as follows.</t>
          <ul spacing="normal">
            <li>
              <t>If the access token response is encoded in CBOR, then:  </t>
              <ul spacing="normal">
                <li>
                  <t>BYTES denotes the value of the CBOR byte string that would be conveyed by the "access_token" parameter, if this was included in the access token response.</t>
                </li>
                <li>
                  <t>HASH_INPUT_TEXT is the base64url-encoded text string that encodes BYTES.</t>
                </li>
                <li>
                  <t>HASH_INPUT is the binary representation of HASH_INPUT_TEXT.</t>
                </li>
              </ul>
            </li>
            <li>
              <t>If the access token response is encoded in JSON, then HASH_INPUT is the binary representation of the text string conveyed by the "access_token" parameter, if this was included in the access token response.</t>
            </li>
          </ul>
          <t>Once determined HASH_INPUT as defined above, a hash value of HASH_INPUT is generated as per <xref section="6" sectionFormat="of" target="RFC6920"/>. The resulting output in binary format is used as the token hash. Note that the used binary format embeds the identifier of the used hash function in the first byte of the computed token hash.</t>
          <t>The specific hash function used <bcp14>MUST</bcp14> be collision resistant on byte strings and <bcp14>MUST</bcp14> be selected from the "Named Information Hash Algorithm Registry" <xref target="IANA.Hash.Algorithms"/>. Consistent with the compliance requirements in <xref section="2" sectionFormat="of" target="RFC6920"/>, the hash function sha-256 as specified in <xref target="SHA-256"/> is mandatory to implement.</t>
          <t>The computation of token hashes defined above is aligned with that specified for the computation of token hashes in <xref section="4" sectionFormat="of" target="RFC9770"/>, where they are used as identifiers of revoked access tokens. Therefore, given a hash algorithm and an access token, the AS computes the same corresponding token hash in either case.</t>
          <t>If the AS supports the method specified in <xref target="RFC9770"/>, then the AS <bcp14>MUST</bcp14> use the same hash algorithm for computing both the token hashes to include in the "token_hash" parameter and the token hashes computed per that method to identify revoked access tokens.</t>
        </section>
        <section anchor="example">
          <name>Example</name>
          <t><xref target="fig-example-AS-to-C-token-hash"/> shows an example, with first an access token request from C to the AS and then an access token response from the AS to C, following the issue of an access token bound to a symmetric PoP key.</t>
          <t>The access token request specifies the "token_upload" parameter with value 1. That is, C indicates that it requires the token hash corresponding to the access token from the AS, in case the AS successfully uploads the access token to the RS.</t>
          <t>The access token response specifies the "token_upload" parameter with value 0, which indicates that the AS has successfully uploaded the access token to the RS on behalf of C.</t>
          <t>Consistent with the value of the "token_upload" parameter in the access token request, the access token response includes the "token_hash" parameter, which specifies the token hash corresponding to the issued access token. The access token response also includes the "cnf" parameter specifying the symmetric PoP key bound to the access token.</t>
          <figure anchor="fig-example-AS-to-C-token-hash">
            <name>Example of Access Token Request-Response Exchange. Following a successful uploading of the access token from the AS to the RS, the access token response includes the "token_upload" parameter as well as the "token_hash" parameter. The "token_hash" parameter conveys the token hash corresponding to the issued access token, which is bound to a symmetric key and was uploaded to the RS by the AS.</name>
            <artwork><![CDATA[
   Access token request

   Header: POST (Code=0.02)
   Uri-Host: "as.example.com"
   Uri-Path: "token"
   Content-Format: 19 (application/ace+cbor)
   Payload:
   {
     / audience /  5 : "tempSensor4711",
     / scope /     9 : "read",
     e'token_upload' : 1
   }


   Access token response

   Header: Created (Code=2.01)
   Content-Format: 19 (application/ace+cbor)
   Max-Age: 3560
   Payload:
   {
      e'token_upload' : 0,
        e'token_hash' : h'0153269057e12fe2b74ba07c892560a2d7
                          53877eb62ff44d5a19002530ed97ffe4',
     / expires_in / 2 : 3600,
     / cnf /        8 : {
       / COSE_Key / 1 : {
         / kty / 1 : 4 / Symmetric /,
         / kid / 2 : h'3d027833fc6267ce',
         / k /  -1 : h'73657373696f6e6b6579'
       }
     }
   }
]]></artwork>
          </figure>
        </section>
      </section>
      <section anchor="sec-to_rs-from_rs">
        <name>to_rs and from_rs</name>
        <t>The rest of this section defines the additional parameters "to_rs" (see <xref target="sec-to_rs"/>) and "from_rs" (see <xref target="sec-from_rs"/>).</t>
        <t>The "to_rs" parameter can be used in an access token request sent by C to the token endpoint at the AS. The "from_rs" parameter can be used in an access token response sent by the AS, in reply to a request to the token endpoint from C.</t>
        <t>The semantics and encoding of the information specified in the two parameters depend on the specific profile of ACE and application used.</t>
        <t>For instance, when using the OSCORE profile of ACE <xref target="RFC9203"/>, C and RS can use the two parameters to exchange the expected nonces and identifiers via the AS. <xref target="sec-to_rs-from_rs-oscore-profile"/> describes how the two parameters are used when the OSCORE profile of ACE is used, thereby effectively enabling the use of the SDC workflow for that profile.</t>
        <section anchor="sec-to_rs">
          <name>to_rs</name>
          <t>The "to_rs" parameter is <bcp14>OPTIONAL</bcp14> in an access token request. The presence of this parameter indicates that:</t>
          <ul spacing="normal">
            <li>
              <t>C wishes the AS to relay the information specified therein to the RS, when the AS uploads the issued access token to the RS per the SDC workflow defined in <xref target="sec-workflow"/>; and</t>
            </li>
            <li>
              <t>C wishes the AS to relay information received from the RS to C, after having successfully uploaded the access token to the RS per the SDC workflow defined in <xref target="sec-workflow"/>.</t>
            </li>
          </ul>
          <t>This parameter <bcp14>MUST NOT</bcp14> be present if the "token_upload" parameter defined in <xref target="sec-token_upload"/> is not present in the access token request. Also, this parameter <bcp14>MUST NOT</bcp14> be present if the requested access token is not the first one of a new token series, i.e., if C is asking the AS for a new access token in the same token series that dynamically updates access rights.</t>
          <t>If C wishes that the AS relays information from the RS after successfully uploading the access token but C does not have any information to be relayed to the RS, then this parameter <bcp14>MUST</bcp14> specify the CBOR simple value <tt>null</tt> (0xf6).</t>
          <t>Otherwise, this parameter specifies the information that C wishes the AS to relay to the RS, when uploading the access token to the RS on behalf of C.</t>
          <t>Such information consists in what C would provide to the RS in addition to the access token, by sending a POST request to the authz-info endpoint in case the original workflow was used.</t>
          <t>When composing the parameter "to_rs", C considers the same information and <bcp14>MUST</bcp14> wrap it in a data structure STRUCT, by using the same method that it employs when using the original workflow. For example, with reference to the OSCORE profile of ACE <xref target="RFC9203"/>, such a method composes STRUCT as a CBOR map, which has to be sent as payload of a request with Content-Format "application/ace+cbor".</t>
          <t>After that, C builds a CBOR byte string STR, whose value is the binary representation of STRUCT.</t>
          <t>If and only if the request to the authz-info endpoint has to be sent with a Content-Format ct different from the one specified by the profile of ACE used, then C <bcp14>MUST</bcp14> tag the CBOR byte string STR (see <xref section="3.4" sectionFormat="of" target="RFC8949"/>). The tag number TN <bcp14>MUST</bcp14> be the one associated with the Content-Format ct and is determined according to the technique described in <xref section="B" sectionFormat="of" target="RFC9277"/>. For example, the Content-Format "application/ace+cbor" has Content-Format ID 19 and therefore has 1668546836 as its associated tag number.</t>
          <t>When the access token request is encoded in CBOR, the value of the "to_rs" parameter is the (tagged) CBOR byte string STR.</t>
          <t>When the access token request is encoded in JSON, the value of the "to_rs" parameter is a text string, which encodes the binary representation of the (tagged) CBOR byte string STR in base64url without padding (see <xref section="5" sectionFormat="of" target="RFC4648"/>).</t>
          <t>If the "to_rs" parameter is present and specifies a value different from the CBOR simple value <tt>null</tt> (0xf6), the AS proceeds as follows when composing the POST request to send to the authz-info endpoint on behalf of C:</t>
          <ol spacing="normal" type="1"><li>
              <t>The AS sets the Content-Format of the request to be either:  </t>
              <ul spacing="normal">
                <li>
                  <t>the one specified by the profile of ACE used, if the CBOR byte string STR conveyed by the "to_rs" parameter is not tagged; or, otherwise</t>
                </li>
                <li>
                  <t>the one associated with the tag number TN of the tagged CBOR byte string STR conveyed by the "to_rs" parameter.</t>
                </li>
              </ul>
            </li>
            <li>
              <t>The AS retrieves the structure STRUCT from STR and extends STRUCT by adding the issued access token, consistently with the profile of ACE used and the Content-Format determined at the previous step.  </t>
              <t>
For example, when using the OSCORE profile of ACE <xref target="RFC9203"/> and the Content-Format to use is "application/ace+cbor", STRUCT is a CBOR map and the access token is included therein as an entry that has: as map key, 1 encoded as a CBOR integer; as map value, a CBOR byte string whose value is the binary representation of the access token.</t>
            </li>
          </ol>
          <t>Tagging the CBOR byte string as defined above ensures that the AS can relay the information specified in the "to_rs" parameter as intended by C, i.e., by sending to the authz-info endpoint a POST request that has the correct Content-Format and conveys the correct payload.</t>
          <t>As a case in point, using the DTLS profile of ACE <xref target="RFC9202"/> typically results in a POST request to the authz-info endpoint with Content-Format "application/cwt", as per <xref section="5.10" sectionFormat="of" target="RFC9200"/>. However, the DTLS profile of ACE can be combined with application profiles of <xref target="RFC9594"/>. In such a case, the POST request might convey both the access token and additional parameters from C (e.g., "sign_info" defined in <xref section="3.3" sectionFormat="of" target="RFC9594"/>), which requires the request to have Content-Format "application/ace+cbor" (see <xref section="3.3" sectionFormat="of" target="RFC9594"/>).</t>
        </section>
        <section anchor="sec-from_rs">
          <name>from_rs</name>
          <t>The "from_rs" parameter is <bcp14>OPTIONAL</bcp14> in an access token response. The presence of this parameter indicates that the AS is relaying the information specified therein to C, which the AS has received from the RS after having successfully uploaded the access token to the RS per the SDC workflow defined in <xref target="sec-workflow"/>.</t>
          <t>This parameter <bcp14>MUST</bcp14> be present if and only if both the following conditions apply:</t>
          <ul spacing="normal">
            <li>
              <t>The "token_upload" parameter defined in <xref target="sec-token_upload"/> is present with value 0 in the access token response.</t>
            </li>
            <li>
              <t>The "to_rs" parameter was present in the access token request corresponding to the access token response.</t>
            </li>
          </ul>
          <t>This parameter specifies the information that the AS is relaying to C from the RS, following the successful upload of the access token to the RS on behalf of C.</t>
          <t>Such information consists in what C would receive in a successful response from the authz-info endpoint, if the access token was uploaded per the original workflow.</t>
          <t>When composing the parameter "from_rs", the AS builds a CBOR byte string STR as follows:</t>
          <ul spacing="normal">
            <li>
              <t>If the successful response from the authz-info endpoint does not include a payload, then STR is the empty CBOR byte string (0x40); otherwise</t>
            </li>
            <li>
              <t>The value of STR is the payload of the successful response from the authz-info endpoint.  </t>
              <t>
If and only if the response specifies a given Content-Format ct (i.e., by means of the CoAP Content-Format Option), then the AS <bcp14>MUST</bcp14> tag the CBOR byte string STR (see <xref section="3.4" sectionFormat="of" target="RFC8949"/>). The tag number TN <bcp14>MUST</bcp14> be the one associated with the Content-Format ct and is determined according to the technique described in <xref section="B" sectionFormat="of" target="RFC9277"/>.</t>
            </li>
          </ul>
          <t>When the access token response is encoded in CBOR, the value of the "from_rs" parameter is the (tagged) CBOR byte string STR.</t>
          <t>When the access token response is encoded in JSON, the value of the "from_rs" parameter is a text string, which encodes the binary representation of the (tagged) CBOR byte string STR in base64url without padding (see <xref section="5" sectionFormat="of" target="RFC4648"/>).</t>
          <t>When C receives from the AS the successful access token response specifying the "token_upload" parameter with value 0, C retrieves from the "from_rs" parameter the information relayed by the AS, just like when retrieving that information from a 2.01 (Created) response with Content-Format ct that C receives from the RS when using the original workflow.</t>
          <t>In particular, if the CBOR byte string STR is not the empty CBOR byte string (0x40), C considers as the Content-Format ct either:</t>
          <ul spacing="normal">
            <li>
              <t>the one specified by the profile of ACE used, if the CBOR byte string STR conveyed by the "from_rs" parameter is not tagged; or, otherwise</t>
            </li>
            <li>
              <t>the one associated with the tag number TN of the tagged CBOR byte string STR conveyed by the "from_rs" parameter.</t>
            </li>
          </ul>
        </section>
        <section anchor="sec-to_rs-from_rs-oscore-profile">
          <name>Use with the OSCORE Profile</name>
          <t>This section describes how to use the parameters "to_rs" and "from_rs" when the OSCORE profile of ACE <xref target="RFC9203"/> is used.</t>
          <t>Within the access token request from C to the AS, the value of the "to_rs" parameter is a CBOR byte string, whose value is the binary representation of a CBOR map C_MAP composed of two fields:</t>
          <ul spacing="normal">
            <li>
              <t>A field with the CBOR unsigned integer 40 as map key and with value the nonce N1 generated by C, encoded a CBOR byte string (see <xref section="4.1" sectionFormat="of" target="RFC9203"/>).</t>
            </li>
            <li>
              <t>A field with the CBOR unsigned integer 43 as map key and with value the Recipient ID ID1 generated by C, encoded as a CBOR byte string (see <xref section="4.1" sectionFormat="of" target="RFC9203"/>).</t>
            </li>
          </ul>
          <t>When building the POST request for uploading the access token to the authz-info endpoint at the RS, the AS sets the Content-Format of the request to "application/ace+cbor" and composes the request payload as specified in <xref section="4.1" sectionFormat="of" target="RFC9203"/>. In particular, the CBOR map specified as payload includes:</t>
          <ul spacing="normal">
            <li>
              <t>The "access_token" field, with value the access token to upload encoded as a CBOR byte string and with the CBOR unsigned integer 1 as map key.</t>
            </li>
            <li>
              <t>The "nonce1" field, with value the same CBOR byte string specified by the field of C_MAP that has the CBOR unsigned integer 40 as map key.</t>
            </li>
            <li>
              <t>The "ace_client_recipientid" field, with value the same CBOR byte string specified by the field of C_MAP that has the CBOR unsigned integer 43 as map key.</t>
            </li>
          </ul>
          <t>If the upload of the access token to the RS from the AS is successful, the RS replies to the AS with a 2.01 (Created) response, which has Content-Format "application/ace+cbor" and whose payload is a CBOR map RS_MAP that includes:</t>
          <ul spacing="normal">
            <li>
              <t>The "nonce2" field, with value the nonce N2 generated by the RS, encoded as a CBOR byte string (see <xref section="4.2" sectionFormat="of" target="RFC9203"/>).</t>
            </li>
            <li>
              <t>The "ace_server_recipientid" field, with value the Recipient ID ID2 generated by the RS, encoded as a CBOR byte string (see <xref section="4.2" sectionFormat="of" target="RFC9203"/>).</t>
            </li>
          </ul>
          <t>Within the access token response from the AS to C, the value of the "from_rs" parameter is a CBOR byte string, whose value is the binary representation of a CBOR map composed of two elements:</t>
          <ul spacing="normal">
            <li>
              <t>A field with the CBOR unsigned integer 42 as map key and with value the same CBOR byte string specified by the "nonce2" field of RS_MAP.</t>
            </li>
            <li>
              <t>A field with the CBOR unsigned integer 44 as map key and with value the same CBOR byte string specified by the "ace_server_recipientid" field of RS_MAP.</t>
            </li>
          </ul>
          <t>When C receives from the AS the successful access token response specifying the "token_upload" parameter with value 0, C retrieves the nonce N2 and the Recipient ID ID2 from the "from_rs" parameter, just like when retrieving those from a 2.01 (Created) response received from the RS when using the original workflow.</t>
          <t><xref target="fig-example-AS-to-C-token-upload-oscore-profile"/> shows an example where the OSCORE profile is used, with first an access token request from C to the AS and then an access token response from the AS to C, following the issue of an access token bound to a symmetric PoP key.</t>
          <t>The access token request specifies the "token_upload" parameter with value 0. That is, C indicates that it requires neither the access token nor the corresponding token hash from the AS, in case the AS successfully uploads the access token to the RS. Also, the access token request includes the "to_rs" parameter, specifying the values of N1 = 0x018a278f7faab55a and ID1 = 0x1645 intended to the RS.</t>
          <t>The access token response specifies the "token_upload" parameter with value 0, which indicates that the AS has successfully uploaded the access token to the RS on behalf of C.</t>
          <t>Consistent with the value of the "token_upload" parameter in the access token request, the access token response includes neither the access token nor its corresponding token hash. The access token response also includes the "cnf" parameter specifying the symmetric PoP key bound to the access token, as an OSCORE_Input_Material object (see <xref section="3.2.1" sectionFormat="of" target="RFC9203"/>). Also, the access token response includes the "from_rs" parameter, specifying the values of N2 = 0x25a8991cd700ac01 and ID2 = 0x0000 received from the RS and intended to C.</t>
          <figure anchor="fig-example-AS-to-C-token-upload-oscore-profile">
            <name>Example of Access Token Request-Response Exchange where the OSCORE Profile is Used. Following a successful uploading of the access token from the AS to the RS, the access token response includes the "token_upload" parameter but not the access token, which is bound to a symmetric key and was uploaded to the RS by the AS. C and the RS exchange N1, ID1, N2, and ID2 via the AS by means of the parameters "to_rs" and "from_rs"</name>
            <artwork><![CDATA[
   Access token request

   Header: POST (Code=0.02)
   Uri-Host: "as.example.com"
   Uri-Path: "token"
   Content-Format: 19 (application/ace+cbor)
   Payload:
   {
     / audience /  5 : "tempSensor4711",
     / scope /     9 : "read",
     e'token_upload' : 0,
            e'to_rs' : h'a2182848018a278f7faab55a182b421645'
   }


   Access token response

   Header: Created (Code=2.01)
   Content-Format: 19 (application/ace+cbor)
   Max-Age: 3560
   Payload:
   {
        e'token_upload' : 0,
             e'from_rs' : h'a2182a4825a8991cd700ac01182c420000',
     / ace_profile / 38 : / coap_oscore / 2,
       / expires_in / 2 : 3600,
       / cnf /        8 : {
         / osc / 4 : {
           / id / 0 : h'01',
           / ms / 2 : h'f9af838368e353e78888e1426bd94e6f'
         }
       }
   }
]]></artwork>
          </figure>
        </section>
      </section>
      <section anchor="sec-rs_cnf2-audience2">
        <name>rs_cnf2 and audience2</name>
        <t>This section defines the additional parameters "rs_cnf2" and "audience2" for an access token response, sent by the AS in reply to a request to the token endpoint from C.</t>
        <ul spacing="normal">
          <li>
            <t>The "rs_cnf2" parameter is <bcp14>OPTIONAL</bcp14> if the token type is "pop", asymmetric keys are used, and the access token is issued for an audience that includes multiple RSs (i.e., a group-audience, see <xref section="6.9" sectionFormat="of" target="RFC9200"/>). Otherwise, the "rs_cnf2" parameter <bcp14>MUST NOT</bcp14> be present.  </t>
            <t>
This parameter specifies information about the public keys used by the RSs of a group-audience for authenticating themselves to C. It is used in case the binding between the public keys and the corresponding RS identities are not established through other means. If this parameter is absent, either the RSs in the group-audience do not use a public key, or the AS knows that the RSs can authenticate themselves to C without additional information.  </t>
            <t>
If present, this parameter <bcp14>MUST</bcp14> encode a non-empty CBOR array of N elements, where N is the number of RSs in the group-audience for which the access token is issued. Each element of the CBOR array specifies the public key of one RS in the group-audience, and <bcp14>MUST</bcp14> follow the syntax and semantics of the "cnf" claim either from <xref section="3.1" sectionFormat="of" target="RFC8747"/> for CBOR-based interactions, or from <xref section="3.1" sectionFormat="of" target="RFC7800"/> for JSON-based interactions. It is not required that all the elements of the CBOR array rely on the same confirmation method.  </t>
            <t>
Any of the public keys may be provided together with information such as the public key algorithm and use (e.g., specified by means of the parameters "alg" and "key_ops" in a COSE_Key structure). If such information is specified, a client <bcp14>MUST NOT</bcp14> use a public key that is incompatible with the profile of ACE used or with the PoP algorithm according to that information. An RS <bcp14>MUST</bcp14> reject a proof of possession that relies on such a key and <bcp14>MUST</bcp14> reply with a response code equivalent to the CoAP code 4.00 (Bad Request).</t>
          </li>
          <li>
            <t>The "audience2" parameter is <bcp14>OPTIONAL</bcp14> and specifies the identifiers of the RSs in the group-audience for which the access token is issued.  </t>
            <t>
If present, this parameter <bcp14>MUST</bcp14> encode a non-empty CBOR array of N elements, where N is the number of RSs in the group-audience for which the access token is issued. Each element of the CBOR array in the "audience2" parameter <bcp14>MUST</bcp14> be a CBOR text string, with value the identifier of one RS in the group-audience.  </t>
            <t>
The element of the CBOR array referring to an RS in the group-audience <bcp14>SHOULD</bcp14> have the same value that would be used to identify that RS through the "audience" parameter of an access token request to the AS (see <xref section="5.8.1" sectionFormat="of" target="RFC9200"/>) and of an access token response from the AS (see <xref section="5.8.2" sectionFormat="of" target="RFC9200"/>), when requesting and issuing an access token for that individual RS.  </t>
            <t>
The "audience2" parameter is <bcp14>REQUIRED</bcp14> if the "rs_cnf2" parameter is present. In such a case, the i-th element of the CBOR array in the "audience2" parameter <bcp14>MUST</bcp14> be the identifier of the RS whose public key is specified as the i-th element of the CBOR array in the "rs_cnf2" parameter.</t>
          </li>
        </ul>
        <section anchor="example-1">
          <name>Example</name>
          <t><xref target="fig-example-AS-to-C-rs_cnf2"/> shows an example of access token response from the AS to C, following the issue of an access token for a group-audience composed of two RSs "rs1" and "rs2" and bound to C's public key as asymmetric PoP key. The access token response includes the access token as well as the parameters "audience2" and "rs_cnf2". These specify the public key of the two RSs as intended recipients of the access token and the identifiers of those two RSs, respectively.</t>
          <figure anchor="fig-example-AS-to-C-rs_cnf2">
            <name>Example of access token response with an access token bound to an asymmetric key, using the parameters "audience2" and "rs_cnf2".</name>
            <artwork><![CDATA[
   Access token response

   Header: Created (Code=2.01)
   Content-Format: 19 (application/ace+cbor)
   Max-Age: 3600
   Payload:
   {
     / access_token / 1 : b64'SlAV32hk...12',
       / (full CWT elided for brevity;
          CWT contains the client's RPK in the "cnf" claim) /
     / expires_in /   2 : 3600,
           e'audience2' : ["rs1", "rs2"],
             e'rs_cnf2' : [
               {
                 / COSE_Key / 1 : {
                   / kty /  1 : 2 / EC2 /,
                   / crv / -1 : 1 / P-256 /,
                   / x /   -2 : h'bbc34960526ea4d32e940cad2a234148
                                  ddc21791a12afbcbac93622046dd44f0',
                   / y /   -3 : h'4519e257236b2a0ce2023f0931f1f386
                                  ca7afda64fcde0108c224c51eabf6072'
                 }
               },
               {
                 / COSE_Key / 1 : {
                   / kty /  1 : 2 / EC2 /,
                   / crv / -1 : 1 / P-256 /,
                   / x /   -2 : h'ac75e9ece3e50bfc8ed6039988952240
                                  5c47bf16df96660a41298cb4307f7eb6',
                   / y /   -3 : h'6e5de611388a4b8a8211334ac7d37ecb
                                  52a387d257e6db3c2a93df21ff3affc8'
                 }
               }
             ]
   }
]]></artwork>
          </figure>
        </section>
      </section>
      <section anchor="sec-anchor_cnf">
        <name>anchor_cnf</name>
        <t>This section defines the additional "anchor_cnf" parameter for an access token response, sent by the AS in reply to a request to the token endpoint from C.</t>
        <t>The "anchor_cnf" parameter is <bcp14>OPTIONAL</bcp14> if the token type is "pop" and asymmetric keys are used. Otherwise, the "anchor_cnf" parameter <bcp14>MUST NOT</bcp14> be present.</t>
        <t>This parameter specifies information about the public keys of trust anchors, which C can use to validate the public key of the RS/RSs included in the audience for which the access token is issued. This parameter can be used when the access token is issued for an audience including one RS or multiple RSs.</t>
        <t>If this parameter is absent, either the RS/RSs in the audience do not use a public key, or the AS knows that C can validate the public key of such RS/RSs without additional information (e.g., C has already obtained the required public keys of the involved trust anchors from the AS or through other means).</t>
        <t>If present, this parameter <bcp14>MUST</bcp14> encode a non-empty CBOR array that <bcp14>MUST</bcp14> be treated as a set, i.e., the order of its elements has no meaning. Each element of the CBOR array specifies the public key of one trust anchor, which can be used to validate the public key of at least one RS included in the audience for which the access token is issued. Each element of the CBOR array <bcp14>MUST</bcp14> follow the syntax and semantics of the "cnf" claim either from <xref section="3.1" sectionFormat="of" target="RFC8747"/> for CBOR-based interactions, or from <xref section="3.1" sectionFormat="of" target="RFC7800"/> for JSON-based interactions. It is not required that all the elements of the CBOR array rely on the same confirmation method.</t>
        <t>Any of the public keys conveyed in the "anchor_cnf" parameter may be provided together with information such as the public key algorithm and use (e.g., specified by means of the parameters "alg" and "key_ops" in a COSE_Key structure). If such information is specified, a client <bcp14>MUST NOT</bcp14> use a public key that is incompatible with the profile of ACE used or with the public keys to validate and the way to validate those.</t>
        <t>The presence of this parameter does not require that the access token response also includes the "rs_cnf" parameter defined in <xref target="RFC9201"/> or the "rs_cnf2" parameter defined in <xref target="sec-rs_cnf2-audience2"/> of this document. That is, C may be able to obtain the public keys of the RS/RSs for which the access token is issued through other means.</t>
        <t>When the access token response includes both the "anchor_cnf" parameter and the "audience2" parameter defined in <xref target="sec-rs_cnf2-audience2"/>, then C <bcp14>MUST</bcp14> make sure that a public key PK_RS is associated with an RS identified by an element of "audience2", before using any of the public keys specified in "anchor_cnf" to validate PK_RS.</t>
        <t>When the access token response includes the "anchor_cnf" parameter but not the "audience2" parameter, then C can use any of the public keys specified in "anchor_cnf" to validate the public key PK_RS of any RS in the targeted audience. This allows C to use the access token with an RS that is deployed later on as part of the same audience, which is particularly useful in the case of a group-audience.</t>
        <section anchor="example-2">
          <name>Example</name>
          <t><xref target="fig-example-AS-to-C-anchor_cnf"/> shows an example of access token response from the AS to C, following the issue of an access token for a group-audience and bound to C's public key as asymmetric PoP key.</t>
          <t>The identifier of the group-audience was specified by the "audience" parameter of the access token request to the AS, is specified by the "aud" claim of the issued access token, and is not repeated in the access token response from the AS.</t>
          <t>The access token response includes the "anchor_cnf" parameter. This specifies the public key of a trust anchor that C can use to validate the public keys of any RS with which the access token is going to be used. By means of the CWT confirmation method "x5chain" defined in <xref target="I-D.ietf-ace-edhoc-oscore-profile"/>, the public key of the trust anchor is here conveyed within an X.509 certificate <xref target="RFC5280"/> used as public authentication credential for that trust anchor.</t>
          <figure anchor="fig-example-AS-to-C-anchor_cnf">
            <name>Example of Access Token Response with an access token bound to an asymmetric key, using the "anchor_cnf" parameter.</name>
            <artwork><![CDATA[
   Access token response

   Header: Created (Code=2.01)
   Content-Format: 19 (application/ace+cbor)
   Max-Age: 3600
   Payload:
   {
     / access_token / 1 : b64'SlAV32hk...12',
       / (full CWT elided for brevity;
          CWT contains the client's RPK in the "cnf" claim) /
     / expires_in /   2 : 3600,
          e'anchor_cnf' : [
            {
              e'x5chain' : h'308201363081dea003020102020301f50d30
                             0a06082a8648ce3d04030230163114301206
                             035504030c0b524643207465737420434130
                             1e170d3230303130313030303030305a170d
                             3231303230323030303030305a3022312030
                             1e06035504030c1730312d32332d34352d46
                             462d46452d36372d38392d41423059301306
                             072a8648ce3d020106082a8648ce3d030107
                             03420004b1216ab96e5b3b3340f5bdf02e69
                             3f16213a04525ed44450b1019c2dfd3838ab
                             ac4e14d86c0983ed5e9eef2448c6861cc406
                             547177e6026030d051f7792ac206a30f300d
                             300b0603551d0f040403020780300a06082a
                             8648ce3d04030203470030440220445d798c
                             90e7f500dc747a654cec6cfa6f037276e14e
                             52ed07fc16294c84660d02205a33985dfbd4
                             bfdd6d4acf3804c3d46ebf3b7fa62640674f
                             c0354fa056dbaea6'
            }
          ]
   }
]]></artwork>
          </figure>
        </section>
      </section>
      <section anchor="sec-token_series_id">
        <name>token_series_id</name>
        <t>This section defines the additional "token_series_id" parameter. The parameter can be used in an access token request sent by C to the token endpoint at the AS as well as in the successful access token response sent as reply by the AS.</t>
        <ul spacing="normal">
          <li>
            <t>The "token_series_id" parameter is <bcp14>OPTIONAL</bcp14> in an access token request. The presence of this parameter indicates that C wishes to obtain a new access token for dynamically updating its access rights. That is, the new access token is intended to be the next one in an active token series and to supersede the latest access token in that token series. This parameter <bcp14>MUST NOT</bcp14> be present if the requested access token is the first one of a new token series.  </t>
            <t>
If present, this parameter specifies the identifier of the token series that the new access token is intended to extend. The identifier does not change throughout the lifetime of the token series and was provided to C in the successful access token response that the AS sent when issuing the first access token in that token series. When the access token request is encoded in CBOR, the value of this parameter is encoded as a CBOR byte string.</t>
          </li>
          <li>
            <t>The "token_series_id" parameter is <bcp14>OPTIONAL</bcp14> in an access token response. This parameter <bcp14>MUST NOT</bcp14> be present if the issued access token is not the first one of the token series it belongs to.  </t>
            <t>
If present, this parameter specifies the identifier of the token series to which the issued access token belongs. When the access token response is encoded in CBOR, the value of this parameter is encoded as a CBOR byte string.</t>
          </li>
        </ul>
        <t>If the AS relies on the "token_series_id" parameter to exchange the identifier of token series with clients, then the following applies.</t>
        <ul spacing="normal">
          <li>
            <t>The value assigned to the identifier of a token series <bcp14>MUST</bcp14> be associated with all the access tokens issued by the AS for that token series and <bcp14>MUST</bcp14> be selected from a pool that the AS exclusively controls.  </t>
            <t>
In particular, the triple (TS_ID, C, AUD) <bcp14>MUST</bcp14> uniquely identify a token series and its corresponding access tokens, where TS_ID is the identifier of the token series, while C and AUD are the client and the audience for which the access token is issued, respectively. The AS <bcp14>MUST</bcp14> take into account both ongoing and ended token series for selecting a new TS_ID that complies with the above requirements.  </t>
            <t>
Note that the ACE profile is not part of the triple, hence the requirement spans across all the ACE profiles that the AS and its registered clients/RSs support.</t>
          </li>
          <li>
            <t>An issued access token that belongs to a token series <bcp14>MUST</bcp14> include the identifier of that token series. This allows the RS to identify the latest access token in the token series to be superseded by the issued access token.  </t>
            <t>
In particular, each of such access tokens <bcp14>MUST</bcp14> include a claim specifying the identifier of the token series to which the access token belongs. When CWTs are used as access tokens, this information <bcp14>MUST</bcp14> be transported in the "token_series_id" claim registered in <xref target="iana-token-cwt-claims"/>.</t>
          </li>
        </ul>
        <t>If a profile of ACE relies on a construct that uses different parameters/claims to transport the identifier of a token series, then the new "token_series_id" parameter and "token_series_id" claim <bcp14>MUST NOT</bcp14> be used when using that profile.</t>
        <t>For example, a number of parameters/claims are already used to transport information that acts de facto as identifier of token series, in the PSK mode of the DTLS profile <xref target="RFC9202"/>, in the OSCORE profile <xref target="RFC9203"/>, and in the EDHOC and OSCORE profile <xref target="I-D.ietf-ace-edhoc-oscore-profile"/>.</t>
      </section>
    </section>
    <section anchor="sec-updated-ace-profile-parameter">
      <name>Updated "ace_profile" Parameter</name>
      <t>This section extends the semantics of the "ace_profile" parameter defined in <xref target="RFC9200"/> for the OAuth 2.0 token endpoint at the authorization server.</t>
      <t>In addition to what is specified in Sections <xref target="RFC9200" section="5.8.1" sectionFormat="bare"/>, <xref target="RFC9200" section="5.8.2" sectionFormat="bare"/>, and <xref target="RFC9200" section="5.8.4.3" sectionFormat="bare"/> of <xref target="RFC9200"/>, the following applies.</t>
      <ul spacing="normal">
        <li>
          <t>When sending an access token request to the token endpoint at the AS (see <xref section="5.8.1" sectionFormat="of" target="RFC9200"/>), C <bcp14>MAY</bcp14> include the "ace_profile" parameter, specifying the identifier of the profile that C wishes to use towards the RS.</t>
        </li>
        <li>
          <t>If the AS receives an access token request that includes the "ace_profile" parameter specifying the identifier of a profile, then the AS proceeds as follows.  </t>
          <t>
In case the AS does not issue access tokens per the profile specified in the access token request, or C and the RS do not share that profile, then the AS <bcp14>MUST</bcp14> reject the request and <bcp14>MUST</bcp14> reply with an error response (see <xref section="5.8.3" sectionFormat="of" target="RFC9200"/>). The error response <bcp14>MUST</bcp14> have a response code equivalent to the CoAP code 4.00 (Bad Request) and <bcp14>MUST</bcp14> include the error code "incompatible_ace_profiles".  </t>
          <t>
In case the AS issues an access token to C, the access token <bcp14>MUST</bcp14> be per the profile whose identifier was specified by the "ace_profile" parameter in the access token request.  </t>
          <t>
In case the AS replies to C with a successful access token response (see <xref section="5.8.2" sectionFormat="of" target="RFC9200"/>), then the response <bcp14>MAY</bcp14> include the "ace_profile" parameter. If it is included in the access token response, the "ace_profile" parameter <bcp14>MUST</bcp14> specify the same profile identifier that was specified by the "ace_profile" parameter of the corresponding access token request.</t>
        </li>
      </ul>
    </section>
    <section anchor="sec-coord-exchanged-cred">
      <name>Coordinating on the Exchange of Public Authentication Credentials</name>
      <t>In some profiles of ACE, it is possible for C and the RS to use public authentication credentials. Depending on the specific profile, the access token request and response exchanged between C and the AS can specify those authentication credentials as transported by value or instead identified by reference. For instance, this is the case in the EDHOC and OSCORE profile <xref target="I-D.ietf-ace-edhoc-oscore-profile"/> and in the DTLS profile <xref target="RFC9202"/> as extended in <xref target="I-D.ietf-ace-authcred-dtls-profile"/>.</t>
      <t>At some point, the AS (C) might become unable to use a credential identifier as a reference for accessing the authentication credential of C (of the RS) obtained earlier, e.g., due to having deleted the credential from its local storage. This can prevent the AS (C) from successfully processing an incoming access token request (response) that specifies the authentication credential of C (of the RS) as identified by reference. Ultimately, this can prevent the AS from issuing an access token and C from securely accessing protected resources at the RS.</t>
      <t>Conversely, unbeknown to the AS, C might already be storing the authentication credential of the RS when sending the access token request. In such a situation, the AS would specify the authentication credential of the RS by value in the access token response. However, it would be sufficient for C that the response specified the credential of the RS as identified by reference, or even that the response omitted the credential altogether.</t>
      <t>In order to allow C and the AS to coordinate on the exchange of the authentication credentials of C and the RS, the rest of this section defines:</t>
      <ul spacing="normal">
        <li>
          <t>How the AS can instruct C to specify its public authentication credential by value in the "req_cnf" parameter of an access token request (see <xref target="sec-cred-c-value"/>).</t>
        </li>
        <li>
          <t>How C can instruct the AS to specify the public authentication credential(s) of the RS(s) by value or by reference in the "rs_cnf" or "rs_cnf2" parameter of an access token response (see <xref target="sec-cred-rs-value"/>), or instead to omit the credential(s) from the access token response.</t>
        </li>
      </ul>
      <section anchor="sec-cred-c-value">
        <name>Instructing C on How to Provide its Authentication Credential</name>
        <t>When the AS receives an access token request and this includes the "req_cnf" parameter identifying the public authentication credential of C by reference, it might happen that the AS is not able to access the credential by using the specified reference.</t>
        <t>In such a case, the AS <bcp14>MUST</bcp14> reject the request and <bcp14>MUST</bcp14> reply with an error response (see <xref section="5.8.3" sectionFormat="of" target="RFC9200"/>). The error response <bcp14>MUST</bcp14> have a response code equivalent to the CoAP code 5.00 (Internal Server Error) and <bcp14>MUST</bcp14> include the error code "unknown_credential_referenced". The error code and its CBOR abbreviation are registered in <xref target="iana-oauth-extensions-errors"/> and <xref target="iana-oauth-error-code-cbor-mappings"/>, respectively.</t>
        <t>After receiving such an error response, C can send a new access token request, where the "req_cnf" parameter specifies the authentication credential of C by value.</t>
      </section>
      <section anchor="sec-cred-rs-value">
        <name>Instructing the AS on How to Provide the RS's Authentication Credential</name>
        <t>When C receives an access token response and this includes the "req_cnf" or "req_cnf2" parameter identifying the authentication credential(s) of the RS(s) by reference, it might happen that C is not able to access the authentication credential(s) by using the specified reference(s).</t>
        <t>Conversely, if the response includes the "rs_cnf" or "rs_cnf2" parameter specifying the authentication credential(s) of the RS(s) by value, it might happen that C has already been storing those credential(s), unbeknown to the AS. In fact, it would have been sufficient that the "rs_cnf" or "rs_cnf2" parameter identified the credential(s) by reference, or that neither parameter was included in the response.</t>
        <t>The following extends the semantics of the "rs_cnf" parameter defined in <xref target="RFC9201"/>, so that C can include the "rs_cnf" parameter in an access token request. When doing so, C instructs the AS about whether and how the successful access token response should specify the authentication credential(s) of the RS(s) belonging to the targeted audience.</t>
        <t>Per its extended semantics, the "rs_cnf" parameter is also <bcp14>OPTIONAL</bcp14> to include in an access token request for requesting the first access token in a token series, if the token type is "pop" and asymmetric keys are used. Otherwise, the parameter <bcp14>MUST NOT</bcp14> be included in an access token request.</t>
        <t>When C includes the "rs_cnf" parameter in an access token request, the parameter <bcp14>MUST</bcp14> have one of the following encodings.</t>
        <ul spacing="normal">
          <li>
            <t>If the parameter specifies the CBOR simple value <tt>true</tt> (0xf5), then it instructs the AS to include in the successful access token response the "rs_cnf" or "rs_cnf2" parameter, specifying the authentication credential(s) of the RS(s) by value.  </t>
            <t>
In the successful access token response, each pertaining authentication credential <bcp14>MUST</bcp14> be specified by value.</t>
          </li>
          <li>
            <t>If the parameter specifies the CBOR simple value <tt>false</tt> (0xf4), then it instructs the AS to include in the successful access token response the "rs_cnf" or "rs_cnf2" parameter, specifying the authentication credential(s) of the RS(s) by reference.  </t>
            <t>
In the successful access token response, each pertaining authentication credential <bcp14>MUST</bcp14> be specified by reference, or alternatively by value only in case that was not possible.</t>
          </li>
          <li>
            <t>If the parameter specifies the CBOR simple value <tt>null</tt> (0xf6), then it instructs the AS to omit the "rs_cnf" and "rs_cnf2" parameters from the successful access token response.  </t>
            <t>
In the successful access token response, the "rs_cnf" and "rs_cnf2" parameters <bcp14>MUST NOT</bcp14> be included.</t>
          </li>
        </ul>
        <t>If the AS is not able to comply in the first two cases above, then the AS <bcp14>MUST</bcp14> reject the request and <bcp14>MUST</bcp14> reply with an error response. The error response <bcp14>MUST</bcp14> have a response code equivalent to the CoAP code 5.00 (Internal Server Error).</t>
        <t>Irrespective of what "rs_cnf" specifies in the access token request, C <bcp14>MUST</bcp14> rely on the authentication credential(s) specified by the parameter "rs_cnf" or "rs_cnf2" in the access token response, as those that are used by the RS(s) to authenticate.</t>
        <t>If C does not currently store the authentication credential(s) of the RS(s), then C <bcp14>MUST NOT</bcp14> include the "rs_cnf" parameter specifying the CBOR simple value <tt>null</tt> (0xf6) in an access token request.</t>
      </section>
    </section>
    <section anchor="sec-error-failed-pop">
      <name>Failed Verification of Proof of Possession at the AS</name>
      <t>When sending an access token request to the AS (see <xref section="5.8.1" sectionFormat="of" target="RFC9200"/>), a client can include the "req_cnf" parameter defined in <xref section="3.1" sectionFormat="of" target="RFC9201"/> in order to provide the AS with a specific PoP key to bind to the requested access token.</t>
      <t>Typically, the PoP key in question is the client's public key. In such a case, as per <xref section="3.1" sectionFormat="of" target="RFC9201"/>, the AS has to verify proof of possession of the client's private key, i.e., that the client is indeed in possession of the private key corresponding to the public key conveyed in the "req_cnf" parameter.</t>
      <t>The AS might have previously achieved proof of possession of the private key in question, e.g., from previous interactions with the client or through out-of-band means. Alternatively, a profile of ACE might define how the AS verifies a PoP evidence that the client computes and provides to the AS by means of a parameter included in the access token request (e.g., see <xref target="I-D.ietf-ace-group-oscore-profile"/>).</t>
      <t>Irrespective of the method used, if the AS fails to verify the proof of possession of the client's private key, then the AS <bcp14>MUST</bcp14> reject the access token request and <bcp14>MUST</bcp14> reply with an error response (see <xref section="5.8.3" sectionFormat="of" target="RFC9200"/>). The error response <bcp14>MUST</bcp14> have a response code equivalent to the CoAP code 4.00 (Bad Request) and <bcp14>MUST</bcp14> include the error code "failed_pop_verification".The error code and its CBOR abbreviation are registered in <xref target="iana-oauth-extensions-errors"/> and <xref target="iana-oauth-error-code-cbor-mappings"/>, respectively.</t>
    </section>
    <section anchor="sec-updated-error-responses">
      <name>Updated Payload Format of Error Responses</name>
      <t>This section deprecates the original payload format of error responses conveying an error code, when CBOR is used to encode message payloads in the ACE framework. That format is referred to, e.g., when defining the error responses of Sections <xref target="RFC9200" section="5.8.3" sectionFormat="bare"/> and <xref target="RFC9200" section="5.9.3" sectionFormat="bare"/> of <xref target="RFC9200"/>.</t>
      <t>Also, this section defines a new payload format that allows such error responses to convey an error code together with further error-specific information, according to the problem-details format specified in <xref target="RFC9290"/>.</t>
      <t>Such error responses <bcp14>MUST</bcp14> have Content-Format set to "application/concise-problem-details+cbor". The payload of these error responses <bcp14>MUST</bcp14> be a CBOR map specifying a Concise Problem Details data item (see <xref section="2" sectionFormat="of" target="RFC9290"/>). The CBOR map is formatted as follows:</t>
      <ul spacing="normal">
        <li>
          <t>It <bcp14>MUST</bcp14> include the Custom Problem Detail entry "ace-error" registered in <xref target="iana-problem-details"/> of this document.  </t>
          <t>
This entry is formatted as a CBOR map including only one field, namely "error-code". The map key for the "error-code" field is the CBOR unsigned integer with value 0. The value of the "error-code" field is a CBOR integer specifying the error code associated with the occurred error. This value is taken from the "CBOR Value" column of the "OAuth Error Code CBOR Mappings" registry <xref target="ACE.OAuth.Error.Code.CBOR.Mappings"/>.  </t>
          <t>
The new payload format <bcp14>MUST</bcp14> use the "error-code" field in order to convey the same information that the original payload format conveys through the "error" parameter (see, e.g., Sections <xref target="RFC9200" section="5.8.3" sectionFormat="bare"/> and <xref target="RFC9200" section="5.9.3" sectionFormat="bare"/> of <xref target="RFC9200"/>).  </t>
          <t>
The CDDL notation <xref target="RFC8610"/> of the "ace-error" entry is given below.</t>
        </li>
      </ul>
      <sourcecode type="CDDL"><![CDATA[
   ace-error = {
     &(error-code: 0) => int
   }
]]></sourcecode>
      <ul spacing="normal">
        <li>
          <t>It <bcp14>MAY</bcp14> include further Standard Problem Detail entries or Custom Problem Detail entries (see <xref target="RFC9290"/>). The following Standard Problem Detail entries are of particular relevance for the ACE framework.  </t>
          <ul spacing="normal">
            <li>
              <t>"detail" (map key -2): its value is a CBOR text string that specifies a human-readable diagnostic description of the occurred error (see <xref section="2" sectionFormat="of" target="RFC9290"/>).      </t>
              <t>
The diagnostic text is intended for software engineers as well as for device and network operators in order to aid in debugging and provide context for possible intervention. The diagnostic message <bcp14>SHOULD</bcp14> be logged by the sender of the error response. The "detail" entry is unlikely to be relevant in an unattended setup where human intervention is not expected.      </t>
              <t>
The new payload format <bcp14>MUST</bcp14> use the Standard Problem Detail entry "detail" in order to convey the same information that the original payload format conveys through the "error_description" parameter (see, e.g., Sections <xref target="RFC9200" section="5.8.3" sectionFormat="bare"/> and <xref target="RFC9200" section="5.9.3" sectionFormat="bare"/> of <xref target="RFC9200"/>).</t>
            </li>
            <li>
              <t>"instance" (map key -3): its value is a URI reference identifying the specific occurrence of the error (see <xref section="2" sectionFormat="of" target="RFC9290"/>).      </t>
              <t>
The new payload format <bcp14>MUST</bcp14> use the Standard Problem Detail entry "instance" in order to convey the same information that the original payload format conveys through the "error_uri" parameter (see, e.g., Sections <xref target="RFC9200" section="5.8.3" sectionFormat="bare"/> and <xref target="RFC9200" section="5.9.3" sectionFormat="bare"/> of <xref target="RFC9200"/>).</t>
            </li>
          </ul>
        </li>
      </ul>
      <t>An example of an error response using the problem-details format is shown in <xref target="fig-example-error-response"/>.</t>
      <figure anchor="fig-example-error-response">
        <name>Example of Error Response with Problem Details.</name>
        <artwork><![CDATA[
Header: Bad Request (Code=4.00)
Content-Format: 257 (application/concise-problem-details+cbor)
Payload:
{
  / title /  -1 : "Incompatible ACE profile",
  / detail / -2 : "The RS supports only the OSCORE profile",
    e'ace-error': {
      / error_code / 0: 8 / incompatible_ace_profiles /
    }
}
]]></artwork>
      </figure>
      <t>When the ACE framework is used with CBOR for encoding message payloads, the following applies.</t>
      <ul spacing="normal">
        <li>
          <t>It is <bcp14>RECOMMENDED</bcp14> that authorization servers, clients, and resource servers support the payload format defined in this section.</t>
        </li>
        <li>
          <t>Authorization servers, clients, and resource servers that support the payload format defined in this section <bcp14>MUST</bcp14> use it when composing an outgoing error response that conveys an error code.</t>
        </li>
      </ul>
    </section>
    <section anchor="sec-updated-requirements">
      <name>Updated Requirements on Profiles of ACE</name>
      <t><xref section="C" sectionFormat="of" target="RFC9200"/> compiles a list of requirements on the profiles of ACE. This document amends two of those requirements as follows.</t>
      <t>The text of the fifth requirement</t>
      <blockquote>
        <t>Specify the security protocol the client and RS must use to protect their communication (e.g., OSCORE or DTLS). This must provide encryption and integrity and replay protection (Section 5.8.4.3).</t>
      </blockquote>
      <t>is replaced by the following text:</t>
      <blockquote>
        <t>Specify the security protocol the client and RS must use to protect their communication (e.g., OSCORE or DTLS). In combination with the used communication protocol, this must provide encryption, integrity and replay protection, and a binding between requests and responses (Section 5.8.4.3 and Section 6.5).</t>
      </blockquote>
      <t>The text of the tenth requirement</t>
      <blockquote>
        <t>Specify the communication and security protocol for interactions between the client and AS. This must provide encryption, integrity protection, replay protection, and a binding between requests and responses (Sections 5 and 5.8).</t>
      </blockquote>
      <t>is replaced by the following text:</t>
      <blockquote>
        <t>Specify the communication and security protocol for interactions between the client and AS. The combined use of those protocols must provide encryption, integrity protection, replay protection, and a binding between requests and responses (Sections 5 and 5.8).</t>
      </blockquote>
      <t>At the time of writing, all the profiles of ACE that are published as RFC (i.e., <xref target="RFC9202"/><xref target="RFC9203"/><xref target="RFC9431"/>) already comply with the two updated requirements as formulated above.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The same security considerations from the ACE framework for Authentication and Authorization <xref target="RFC9200"/> apply to this document, together with those from the specific profile of ACE used, e.g., <xref target="RFC9202"/><xref target="RFC9203"/><xref target="RFC9431"/><xref target="I-D.ietf-ace-edhoc-oscore-profile"/><xref target="I-D.ietf-ace-group-oscore-profile"/><xref target="RFC9431"/>.</t>
      <t>When using the problem-details format defined in <xref target="RFC9290"/> for error responses, then the privacy and security considerations from Sections <xref target="RFC9290" section="4" sectionFormat="bare"/> and <xref target="RFC9290" section="5" sectionFormat="bare"/> of <xref target="RFC9290"/> also apply.</t>
      <t>Editor's note: add more security considerations.</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-oauth-params">
        <name>OAuth Parameters Registry</name>
        <t>IANA is asked to add the following entries to the "OAuth Parameters" registry within the "OAuth Parameters" registry group.</t>
        <ul spacing="normal">
          <li>
            <t>Name: token_upload</t>
          </li>
          <li>
            <t>Parameter Usage Location: token request and token response</t>
          </li>
          <li>
            <t>Change Controller: IETF</t>
          </li>
          <li>
            <t>Reference: [RFC-XXXX]</t>
          </li>
        </ul>
        <t><br/></t>
        <ul spacing="normal">
          <li>
            <t>Name: token_hash</t>
          </li>
          <li>
            <t>Parameter Usage Location: token response</t>
          </li>
          <li>
            <t>Change Controller: IETF</t>
          </li>
          <li>
            <t>Reference: [RFC-XXXX]</t>
          </li>
        </ul>
        <t><br/></t>
        <ul spacing="normal">
          <li>
            <t>Name: to_rs</t>
          </li>
          <li>
            <t>Parameter Usage Location: token request</t>
          </li>
          <li>
            <t>Change Controller: IETF</t>
          </li>
          <li>
            <t>Reference: [RFC-XXXX]</t>
          </li>
        </ul>
        <t><br/></t>
        <ul spacing="normal">
          <li>
            <t>Name: from_rs</t>
          </li>
          <li>
            <t>Parameter Usage Location: token response</t>
          </li>
          <li>
            <t>Change Controller: IETF</t>
          </li>
          <li>
            <t>Reference: [RFC-XXXX]</t>
          </li>
        </ul>
        <t><br/></t>
        <ul spacing="normal">
          <li>
            <t>Name: rs_cnf2</t>
          </li>
          <li>
            <t>Parameter Usage Location: token response</t>
          </li>
          <li>
            <t>Change Controller: IETF</t>
          </li>
          <li>
            <t>Reference: [RFC-XXXX]</t>
          </li>
        </ul>
        <t><br/></t>
        <ul spacing="normal">
          <li>
            <t>Name: audience2</t>
          </li>
          <li>
            <t>Parameter Usage Location: token response</t>
          </li>
          <li>
            <t>Change Controller: IETF</t>
          </li>
          <li>
            <t>Reference: [RFC-XXXX]</t>
          </li>
        </ul>
        <t><br/></t>
        <ul spacing="normal">
          <li>
            <t>Name: anchor_cnf</t>
          </li>
          <li>
            <t>Parameter Usage Location: token response</t>
          </li>
          <li>
            <t>Change Controller: IETF</t>
          </li>
          <li>
            <t>Reference: [RFC-XXXX]</t>
          </li>
        </ul>
        <t><br/></t>
        <ul spacing="normal">
          <li>
            <t>Name: token_series_id</t>
          </li>
          <li>
            <t>Parameter Usage Location: token request and token response</t>
          </li>
          <li>
            <t>Change Controller: IETF</t>
          </li>
          <li>
            <t>Reference: [RFC-XXXX]</t>
          </li>
        </ul>
        <t><br/></t>
        <t>In the same registry, IANA is asked to update the entry for "rs_cnf" to be as follows:</t>
        <ul spacing="normal">
          <li>
            <t>The "Parameter Usage Location" column specifies "token request, token response".</t>
          </li>
          <li>
            <t>The "Reference" column specifies "[RFC9201, Section 5][RFC-XXXX, <xref target="sec-cred-rs-value"/>]".</t>
          </li>
        </ul>
      </section>
      <section anchor="iana-oauth-cbor-mappings">
        <name>OAuth Parameters CBOR Mappings Registry</name>
        <t>IANA is asked to add the following entries to the "OAuth Parameters CBOR Mappings" registry within the "Authentication and Authorization for Constrained Environments (ACE)" registry group, following the procedure specified in <xref target="RFC9200"/>.</t>
        <ul spacing="normal">
          <li>
            <t>Name: token_upload</t>
          </li>
          <li>
            <t>CBOR Key: TBD (value between 1 and 255)</t>
          </li>
          <li>
            <t>Value Type: unsigned integer</t>
          </li>
          <li>
            <t>Reference: [RFC-XXXX]</t>
          </li>
          <li>
            <t>Original Specification: [RFC-XXXX]</t>
          </li>
        </ul>
        <t><br/></t>
        <ul spacing="normal">
          <li>
            <t>Name: token_hash</t>
          </li>
          <li>
            <t>CBOR Key: TBD (value between 1 and 255)</t>
          </li>
          <li>
            <t>Value Type: unsigned integer</t>
          </li>
          <li>
            <t>Reference: [RFC-XXXX]</t>
          </li>
          <li>
            <t>Original Specification: [RFC-XXXX]</t>
          </li>
        </ul>
        <t><br/></t>
        <ul spacing="normal">
          <li>
            <t>Name: to_rs</t>
          </li>
          <li>
            <t>CBOR Key: TBD (value between 1 and 255)</t>
          </li>
          <li>
            <t>Value Type: Null or byte string or #6.&lt;uint&gt;(bstr)</t>
          </li>
          <li>
            <t>Reference: [RFC-XXXX]</t>
          </li>
          <li>
            <t>Original Specification: [RFC-XXXX]</t>
          </li>
        </ul>
        <t><br/></t>
        <ul spacing="normal">
          <li>
            <t>Name: from_rs</t>
          </li>
          <li>
            <t>CBOR Key: TBD (value between 1 and 255)</t>
          </li>
          <li>
            <t>Value Type: byte string or #6.&lt;uint&gt;(bstr)</t>
          </li>
          <li>
            <t>Reference: [RFC-XXXX]</t>
          </li>
          <li>
            <t>Original Specification: [RFC-XXXX]</t>
          </li>
        </ul>
        <t><br/></t>
        <ul spacing="normal">
          <li>
            <t>Name: rs_cnf2</t>
          </li>
          <li>
            <t>CBOR Key: TBD (value between 1 and 255)</t>
          </li>
          <li>
            <t>Value Type: array</t>
          </li>
          <li>
            <t>Reference: [RFC-XXXX]</t>
          </li>
          <li>
            <t>Original Specification: [RFC-XXXX]</t>
          </li>
        </ul>
        <t><br/></t>
        <ul spacing="normal">
          <li>
            <t>Name: audience2</t>
          </li>
          <li>
            <t>CBOR Key: TBD (value between 1 and 255)</t>
          </li>
          <li>
            <t>Value Type: array</t>
          </li>
          <li>
            <t>Reference: [RFC-XXXX]</t>
          </li>
          <li>
            <t>Original Specification: [RFC-XXXX]</t>
          </li>
        </ul>
        <t><br/></t>
        <ul spacing="normal">
          <li>
            <t>Name: anchor_cnf</t>
          </li>
          <li>
            <t>CBOR Key: TBD (value between 1 and 255)</t>
          </li>
          <li>
            <t>Value Type: array</t>
          </li>
          <li>
            <t>Reference: [RFC-XXXX]</t>
          </li>
          <li>
            <t>Original Specification: [RFC-XXXX]</t>
          </li>
        </ul>
        <t><br/></t>
        <ul spacing="normal">
          <li>
            <t>Name: token_series_id</t>
          </li>
          <li>
            <t>CBOR Key: TBD (value between 1 and 255)</t>
          </li>
          <li>
            <t>Value Type: byte string</t>
          </li>
          <li>
            <t>Reference: [RFC-XXXX]</t>
          </li>
          <li>
            <t>Original Specification: [RFC-XXXX]</t>
          </li>
        </ul>
        <t><br/></t>
        <t>In the same registry, IANA is asked to update the entry for "rs_cnf" to be as follows:</t>
        <ul spacing="normal">
          <li>
            <t>The "Value Type" column specifies "True or False or Null or map".</t>
          </li>
          <li>
            <t>The "Reference" column specifies "[RFC9201, Section 3.2][RFC-XXXX, <xref target="sec-cred-rs-value"/>]".</t>
          </li>
        </ul>
      </section>
      <section anchor="iana-token-json-claims">
        <name>JSON Web Token Claims Registry</name>
        <t>IANA is asked to add the following entry to the "JSON Web Token Claims" registry within the "JSON Web Token (JWT)" registry group, following the procedure specified in <xref target="RFC7519"/>.</t>
        <ul spacing="normal">
          <li>
            <t>Claim Name: token_series_id</t>
          </li>
          <li>
            <t>Claim Description: The identifier of a token series</t>
          </li>
          <li>
            <t>Change Controller: IETF</t>
          </li>
          <li>
            <t>Reference: [RFC-XXXX]</t>
          </li>
        </ul>
      </section>
      <section anchor="iana-token-cwt-claims">
        <name>CBOR Web Token (CWT) Claims Registry</name>
        <t>IANA is asked to add the following entry to the "CBOR Web Token (CWT) Claims" registry within the "CBOR Web Token (CWT) Claims" registry group, following the procedure specified in <xref target="RFC8392"/>.</t>
        <ul spacing="normal">
          <li>
            <t>Claim Name: token_series_id</t>
          </li>
          <li>
            <t>Claim Description: The identifier of a token series</t>
          </li>
          <li>
            <t>JWT Claim Name: token_series_id</t>
          </li>
          <li>
            <t>Claim Key: TBD (value between 1 and 255)</t>
          </li>
          <li>
            <t>Claim Value Type: byte string</t>
          </li>
          <li>
            <t>Change Controller: IETF</t>
          </li>
          <li>
            <t>Reference: <xref target="sec-token_series_id"/> of [RFC-XXXX]</t>
          </li>
        </ul>
      </section>
      <section anchor="iana-oauth-extensions-errors">
        <name>OAuth Extensions Error Registry</name>
        <t>IANA is asked to add the following entries to the "OAuth Extensions Error Registry" within the "OAuth Parameters" registry group.</t>
        <ul spacing="normal">
          <li>
            <t>Name: unknown_credential_referenced</t>
          </li>
          <li>
            <t>Usage Location: token error response</t>
          </li>
          <li>
            <t>Protocol Extension: [RFC-XXXX]</t>
          </li>
          <li>
            <t>Change Controller: IETF</t>
          </li>
          <li>
            <t>Reference: <xref target="sec-coord-exchanged-cred"/> of [RFC-XXXX]</t>
          </li>
        </ul>
        <t><br/></t>
        <ul spacing="normal">
          <li>
            <t>Name: failed_pop_verification</t>
          </li>
          <li>
            <t>Usage Location: token error response</t>
          </li>
          <li>
            <t>Protocol Extension: [RFC-XXXX]</t>
          </li>
          <li>
            <t>Change Controller: IETF</t>
          </li>
          <li>
            <t>Reference: <xref target="sec-error-failed-pop"/> of [RFC-XXXX]</t>
          </li>
        </ul>
      </section>
      <section anchor="iana-oauth-error-code-cbor-mappings">
        <name>OAuth Error Code CBOR Mappings Registry</name>
        <t>IANA is asked to add the following entries to the "OAuth Error Code CBOR Mappings" registry within the "Authentication and Authorization for Constrained Environments (ACE)" registry group.</t>
        <ul spacing="normal">
          <li>
            <t>Name: unknown_credential_referenced</t>
          </li>
          <li>
            <t>CBOR Value: TBD (value between 1 and 255)</t>
          </li>
          <li>
            <t>Reference: [RFC-XXXX]</t>
          </li>
          <li>
            <t>Original Specification: [RFC-XXXX]</t>
          </li>
        </ul>
        <t><br/></t>
        <ul spacing="normal">
          <li>
            <t>Name: failed_pop_verification</t>
          </li>
          <li>
            <t>CBOR Value: TBD (value between 1 and 255)</t>
          </li>
          <li>
            <t>Reference: [RFC-XXXX]</t>
          </li>
          <li>
            <t>Original Specification: [RFC-XXXX]</t>
          </li>
        </ul>
      </section>
      <section anchor="iana-problem-details">
        <name>Custom Problem Detail Keys Registry</name>
        <t>IANA is asked to register the following entry in the "Custom Problem Detail Keys" registry within the "Constrained RESTful Environments (CoRE) Parameters" registry group.</t>
        <ul spacing="normal">
          <li>
            <t>Key Value: TBD (value between 0 and 23)</t>
          </li>
          <li>
            <t>Name: ace-error</t>
          </li>
          <li>
            <t>Brief Description: Carry ACE <xref target="RFC9200"/> problem details in a Concise Problem Details data item.</t>
          </li>
          <li>
            <t>Change Controller: IETF</t>
          </li>
          <li>
            <t>Reference: <xref target="sec-updated-error-responses"/> of [RFC-XXXX]</t>
          </li>
        </ul>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC3629">
          <front>
            <title>UTF-8, a transformation format of ISO 10646</title>
            <author fullname="F. Yergeau" initials="F." surname="Yergeau"/>
            <date month="November" year="2003"/>
            <abstract>
              <t>ISO/IEC 10646-1 defines a large character set called the Universal Character Set (UCS) which encompasses most of the world's writing systems. The originally proposed encodings of the UCS, however, were not compatible with many current applications and protocols, and this has led to the development of UTF-8, the object of this memo. UTF-8 has the characteristic of preserving the full US-ASCII range, providing compatibility with file systems, parsers and other software that rely on US-ASCII values but are transparent to other values. This memo obsoletes and replaces RFC 2279.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="63"/>
          <seriesInfo name="RFC" value="3629"/>
          <seriesInfo name="DOI" value="10.17487/RFC3629"/>
        </reference>
        <reference anchor="RFC4648">
          <front>
            <title>The Base16, Base32, and Base64 Data Encodings</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
            <date month="October" year="2006"/>
            <abstract>
              <t>This document describes the commonly used base 64, base 32, and base 16 encoding schemes. It also discusses the use of line-feeds in encoded data, use of padding in encoded data, use of non-alphabet characters in encoded data, use of different encoding alphabets, and canonical encodings. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4648"/>
          <seriesInfo name="DOI" value="10.17487/RFC4648"/>
        </reference>
        <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="RFC6749">
          <front>
            <title>The OAuth 2.0 Authorization Framework</title>
            <author fullname="D. Hardt" initials="D." role="editor" surname="Hardt"/>
            <date month="October" year="2012"/>
            <abstract>
              <t>The OAuth 2.0 authorization framework enables a third-party application to obtain limited access to an HTTP service, either on behalf of a resource owner by orchestrating an approval interaction between the resource owner and the HTTP service, or by allowing the third-party application to obtain access on its own behalf. This specification replaces and obsoletes the OAuth 1.0 protocol described in RFC 5849. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6749"/>
          <seriesInfo name="DOI" value="10.17487/RFC6749"/>
        </reference>
        <reference anchor="RFC6920">
          <front>
            <title>Naming Things with Hashes</title>
            <author fullname="S. Farrell" initials="S." surname="Farrell"/>
            <author fullname="D. Kutscher" initials="D." surname="Kutscher"/>
            <author fullname="C. Dannewitz" initials="C." surname="Dannewitz"/>
            <author fullname="B. Ohlman" initials="B." surname="Ohlman"/>
            <author fullname="A. Keranen" initials="A." surname="Keranen"/>
            <author fullname="P. Hallam-Baker" initials="P." surname="Hallam-Baker"/>
            <date month="April" year="2013"/>
            <abstract>
              <t>This document defines a set of ways to identify a thing (a digital object in this case) using the output from a hash function. It specifies a new URI scheme for this purpose, a way to map these to HTTP URLs, and binary and human-speakable formats for these names. The various formats are designed to support, but not require, a strong link to the referenced object, such that the referenced object may be authenticated to the same degree as the reference to it. The reason for this work is to standardise current uses of hash outputs in URLs and to support new information-centric applications and other uses of hash outputs in protocols.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6920"/>
          <seriesInfo name="DOI" value="10.17487/RFC6920"/>
        </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="RFC7519">
          <front>
            <title>JSON Web Token (JWT)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred between two parties. The claims in a JWT are encoded as a JSON object that is used as the payload of a JSON Web Signature (JWS) structure or as the plaintext of a JSON Web Encryption (JWE) structure, enabling the claims to be digitally signed or integrity protected with a Message Authentication Code (MAC) and/or encrypted.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7519"/>
          <seriesInfo name="DOI" value="10.17487/RFC7519"/>
        </reference>
        <reference anchor="RFC7800">
          <front>
            <title>Proof-of-Possession Key Semantics for JSON Web Tokens (JWTs)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <date month="April" year="2016"/>
            <abstract>
              <t>This specification describes how to declare in a JSON Web Token (JWT) that the presenter of the JWT possesses a particular proof-of- possession key and how the recipient can cryptographically confirm proof of possession of the key by the presenter. Being able to prove possession of a key is also sometimes described as the presenter being a holder-of-key.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7800"/>
          <seriesInfo name="DOI" value="10.17487/RFC7800"/>
        </reference>
        <reference anchor="RFC8259">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author fullname="T. Bray" initials="T." role="editor" surname="Bray"/>
            <date month="December" year="2017"/>
            <abstract>
              <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format. It was derived from the ECMAScript Programming Language Standard. JSON defines a small set of formatting rules for the portable representation of structured data.</t>
              <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="90"/>
          <seriesInfo name="RFC" value="8259"/>
          <seriesInfo name="DOI" value="10.17487/RFC8259"/>
        </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="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC8610">
          <front>
            <title>Concise Data Definition Language (CDDL): A Notational Convention to Express Concise Binary Object Representation (CBOR) and JSON Data Structures</title>
            <author fullname="H. Birkholz" initials="H." surname="Birkholz"/>
            <author fullname="C. Vigano" initials="C." surname="Vigano"/>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <date month="June" year="2019"/>
            <abstract>
              <t>This document proposes a notational convention to express Concise Binary Object Representation (CBOR) data structures (RFC 7049). Its main goal is to provide an easy and unambiguous way to express structures for protocol messages and data formats that use CBOR or JSON.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8610"/>
          <seriesInfo name="DOI" value="10.17487/RFC8610"/>
        </reference>
        <reference anchor="RFC8747">
          <front>
            <title>Proof-of-Possession Key Semantics for CBOR Web Tokens (CWTs)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="L. Seitz" initials="L." surname="Seitz"/>
            <author fullname="G. Selander" initials="G." surname="Selander"/>
            <author fullname="S. Erdtman" initials="S." surname="Erdtman"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <date month="March" year="2020"/>
            <abstract>
              <t>This specification describes how to declare in a CBOR Web Token (CWT) (which is defined by RFC 8392) that the presenter of the CWT possesses a particular proof-of-possession key. Being able to prove possession of a key is also sometimes described as being the holder-of-key. This specification provides equivalent functionality to "Proof-of-Possession Key Semantics for JSON Web Tokens (JWTs)" (RFC 7800) but using Concise Binary Object Representation (CBOR) and CWTs rather than JavaScript Object Notation (JSON) and JSON Web Tokens (JWTs).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8747"/>
          <seriesInfo name="DOI" value="10.17487/RFC8747"/>
        </reference>
        <reference anchor="RFC8949">
          <front>
            <title>Concise Binary Object Representation (CBOR)</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <date month="December" year="2020"/>
            <abstract>
              <t>The Concise Binary Object Representation (CBOR) is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation. These design goals make it different from earlier binary serializations such as ASN.1 and MessagePack.</t>
              <t>This document obsoletes RFC 7049, providing editorial improvements, new details, and errata fixes while keeping full compatibility with the interchange format of RFC 7049. It does not create a new version of the format.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="94"/>
          <seriesInfo name="RFC" value="8949"/>
          <seriesInfo name="DOI" value="10.17487/RFC8949"/>
        </reference>
        <reference anchor="RFC9052">
          <front>
            <title>CBOR Object Signing and Encryption (COSE): Structures and Process</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>Concise Binary Object Representation (CBOR) is a data format designed for small code size and small message size. There is a need to be able to define basic security services for this data format. This document defines the CBOR Object Signing and Encryption (COSE) protocol. This specification describes how to create and process signatures, message authentication codes, and encryption using CBOR for serialization. This specification additionally describes how to represent cryptographic keys using CBOR.</t>
              <t>This document, along with RFC 9053, obsoletes RFC 8152.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="96"/>
          <seriesInfo name="RFC" value="9052"/>
          <seriesInfo name="DOI" value="10.17487/RFC9052"/>
        </reference>
        <reference anchor="RFC9053">
          <front>
            <title>CBOR Object Signing and Encryption (COSE): Initial Algorithms</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>Concise Binary Object Representation (CBOR) is a data format designed for small code size and small message size. There is a need to be able to define basic security services for this data format. This document defines a set of algorithms that can be used with the CBOR Object Signing and Encryption (COSE) protocol (RFC 9052).</t>
              <t>This document, along with RFC 9052, obsoletes RFC 8152.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9053"/>
          <seriesInfo name="DOI" value="10.17487/RFC9053"/>
        </reference>
        <reference anchor="RFC9200">
          <front>
            <title>Authentication and Authorization for Constrained Environments Using the OAuth 2.0 Framework (ACE-OAuth)</title>
            <author fullname="L. Seitz" initials="L." surname="Seitz"/>
            <author fullname="G. Selander" initials="G." surname="Selander"/>
            <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="August" year="2022"/>
            <abstract>
              <t>This specification defines a framework for authentication and authorization in Internet of Things (IoT) environments called ACE-OAuth. The framework is based on a set of building blocks including OAuth 2.0 and the Constrained Application Protocol (CoAP), thus transforming a well-known and widely used authorization solution into a form suitable for IoT devices. Existing specifications are used where possible, but extensions are added and profiles are defined to better serve the IoT use cases.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9200"/>
          <seriesInfo name="DOI" value="10.17487/RFC9200"/>
        </reference>
        <reference anchor="RFC9201">
          <front>
            <title>Additional OAuth Parameters for Authentication and Authorization for Constrained Environments (ACE)</title>
            <author fullname="L. Seitz" initials="L." surname="Seitz"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>This specification defines new parameters and encodings for the OAuth 2.0 token and introspection endpoints when used with the framework for Authentication and Authorization for Constrained Environments (ACE). These are used to express the proof-of-possession (PoP) key the client wishes to use, the PoP key that the authorization server has selected, and the PoP key the resource server uses to authenticate to the client.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9201"/>
          <seriesInfo name="DOI" value="10.17487/RFC9201"/>
        </reference>
        <reference anchor="RFC9202">
          <front>
            <title>Datagram Transport Layer Security (DTLS) Profile for Authentication and Authorization for Constrained Environments (ACE)</title>
            <author fullname="S. Gerdes" initials="S." surname="Gerdes"/>
            <author fullname="O. Bergmann" initials="O." surname="Bergmann"/>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <author fullname="G. Selander" initials="G." surname="Selander"/>
            <author fullname="L. Seitz" initials="L." surname="Seitz"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>This specification defines a profile of the Authentication and Authorization for Constrained Environments (ACE) framework that allows constrained servers to delegate client authentication and authorization. The protocol relies on DTLS version 1.2 or later for communication security between entities in a constrained network using either raw public keys or pre-shared keys. A resource-constrained server can use this protocol to delegate management of authorization information to a trusted host with less-severe limitations regarding processing power and memory.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9202"/>
          <seriesInfo name="DOI" value="10.17487/RFC9202"/>
        </reference>
        <reference anchor="RFC9203">
          <front>
            <title>The Object Security for Constrained RESTful Environments (OSCORE) Profile of the Authentication and Authorization for Constrained Environments (ACE) Framework</title>
            <author fullname="F. Palombini" initials="F." surname="Palombini"/>
            <author fullname="L. Seitz" initials="L." surname="Seitz"/>
            <author fullname="G. Selander" initials="G." surname="Selander"/>
            <author fullname="M. Gunnarsson" initials="M." surname="Gunnarsson"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>This document specifies a profile for the Authentication and Authorization for Constrained Environments (ACE) framework. It utilizes Object Security for Constrained RESTful Environments (OSCORE) to provide communication security and proof-of-possession for a key owned by the client and bound to an OAuth 2.0 access token.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9203"/>
          <seriesInfo name="DOI" value="10.17487/RFC9203"/>
        </reference>
        <reference anchor="RFC9277">
          <front>
            <title>On Stable Storage for Items in Concise Binary Object Representation (CBOR)</title>
            <author fullname="M. Richardson" initials="M." surname="Richardson"/>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>This document defines a stored ("file") format for Concise Binary Object Representation (CBOR) data items that is friendly to common systems that recognize file types, such as the Unix file(1) command.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9277"/>
          <seriesInfo name="DOI" value="10.17487/RFC9277"/>
        </reference>
        <reference anchor="RFC9290">
          <front>
            <title>Concise Problem Details for Constrained Application Protocol (CoAP) APIs</title>
            <author fullname="T. Fossati" initials="T." surname="Fossati"/>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <date month="October" year="2022"/>
            <abstract>
              <t>This document defines a concise "problem detail" as a way to carry machine-readable details of errors in a Representational State Transfer (REST) response to avoid the need to define new error response formats for REST APIs for constrained environments. The format is inspired by, but intended to be more concise than, the problem details for HTTP APIs defined in RFC 7807.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9290"/>
          <seriesInfo name="DOI" value="10.17487/RFC9290"/>
        </reference>
        <reference anchor="RFC9430">
          <front>
            <title>Extension of the Datagram Transport Layer Security (DTLS) Profile for Authentication and Authorization for Constrained Environments (ACE) to Transport Layer Security (TLS)</title>
            <author fullname="O. Bergmann" initials="O." surname="Bergmann"/>
            <author fullname="J. Preuß Mattsson" initials="J." surname="Preuß Mattsson"/>
            <author fullname="G. Selander" initials="G." surname="Selander"/>
            <date month="July" year="2023"/>
            <abstract>
              <t>This document updates "Datagram Transport Layer Security (DTLS) Profile for Authentication and Authorization for Constrained Environments (ACE)" (RFC 9202) by specifying that the profile applies to TLS as well as DTLS.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9430"/>
          <seriesInfo name="DOI" value="10.17487/RFC9430"/>
        </reference>
        <reference anchor="RFC9431">
          <front>
            <title>Message Queuing Telemetry Transport (MQTT) and Transport Layer Security (TLS) Profile of Authentication and Authorization for Constrained Environments (ACE) Framework</title>
            <author fullname="C. Sengul" initials="C." surname="Sengul"/>
            <author fullname="A. Kirby" initials="A." surname="Kirby"/>
            <date month="July" year="2023"/>
            <abstract>
              <t>This document specifies a profile for the Authentication and Authorization for Constrained Environments (ACE) framework to enable authorization in a publish-subscribe messaging system based on Message Queuing Telemetry Transport (MQTT). Proof-of-Possession keys, bound to OAuth 2.0 access tokens, are used to authenticate and authorize MQTT Clients. The protocol relies on TLS for confidentiality and MQTT server (Broker) authentication.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9431"/>
          <seriesInfo name="DOI" value="10.17487/RFC9431"/>
        </reference>
        <reference anchor="RFC9770">
          <front>
            <title>Notification of Revoked Access Tokens in the Authentication and Authorization for Constrained Environments (ACE) Framework</title>
            <author fullname="M. Tiloca" initials="M." surname="Tiloca"/>
            <author fullname="F. Palombini" initials="F." surname="Palombini"/>
            <author fullname="S. Echeverria" initials="S." surname="Echeverria"/>
            <author fullname="G. Lewis" initials="G." surname="Lewis"/>
            <date month="June" year="2025"/>
            <abstract>
              <t>This document specifies a method of the Authentication and Authorization for Constrained Environments (ACE) framework, which allows an authorization server to notify clients and resource servers (i.e., registered devices) about revoked access tokens. As specified in this document, the method allows clients and resource servers (RSs) to access a Token Revocation List (TRL) on the authorization server by using the Constrained Application Protocol (CoAP), with the possible additional use of resource observation. Resulting (unsolicited) notifications of revoked access tokens complement alternative approaches such as token introspection, while not requiring additional endpoints on clients and RSs.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9770"/>
          <seriesInfo name="DOI" value="10.17487/RFC9770"/>
        </reference>
        <reference anchor="I-D.ietf-ace-edhoc-oscore-profile">
          <front>
            <title>Ephemeral Diffie-Hellman Over COSE (EDHOC) and Object Security for Constrained Environments (OSCORE) Profile for Authentication and Authorization for Constrained Environments (ACE)</title>
            <author fullname="Göran Selander" initials="G." surname="Selander">
              <organization>Ericsson</organization>
            </author>
            <author fullname="John Preuß Mattsson" initials="J. P." surname="Mattsson">
              <organization>Ericsson</organization>
            </author>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE</organization>
            </author>
            <author fullname="Rikard Höglund" initials="R." surname="Höglund">
              <organization>RISE</organization>
            </author>
            <date day="7" month="July" year="2025"/>
            <abstract>
              <t>   This document specifies a profile for the Authentication and
   Authorization for Constrained Environments (ACE) framework.  It
   utilizes Ephemeral Diffie-Hellman Over COSE (EDHOC) for achieving
   mutual authentication between an ACE-OAuth client and resource
   server, and it binds an authentication credential of the client to an
   ACE-OAuth access token.  EDHOC also establishes an Object Security
   for Constrained RESTful Environments (OSCORE) Security Context, which
   is used to secure communications between the client and resource
   server when accessing protected resources according to the
   authorization information indicated in the access token.  This
   profile can be used to delegate management of authorization
   information from a resource-constrained server to a trusted host with
   less severe limitations regarding processing power and memory.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-ace-edhoc-oscore-profile-08"/>
        </reference>
        <reference anchor="ACE.OAuth.Error.Code.CBOR.Mappings" target="https://www.iana.org/assignments/ace/ace.xhtml#oauth-error-code-cbor-mappings">
          <front>
            <title>OAuth Error Code CBOR Mappings</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="IANA.Hash.Algorithms" target="https://www.iana.org/assignments/named-information/named-information.xhtml">
          <front>
            <title>Named Information Hash Algorithm Registry</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="SHA-256" target="https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.180-4.pdf">
          <front>
            <title>Secure Hash Standard</title>
            <author>
              <organization>NIST</organization>
            </author>
            <date year="2015" month="August"/>
          </front>
          <seriesInfo name="NIST FIPS PUB 180-4, DOI 10.6028/NIST.FIPS.180-4" value=""/>
        </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 anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC9594">
          <front>
            <title>Key Provisioning for Group Communication Using Authentication and Authorization for Constrained Environments (ACE)</title>
            <author fullname="F. Palombini" initials="F." surname="Palombini"/>
            <author fullname="M. Tiloca" initials="M." surname="Tiloca"/>
            <date month="September" year="2024"/>
            <abstract>
              <t>This document defines how to use the Authentication and Authorization for Constrained Environments (ACE) framework to distribute keying material and configuration parameters for secure group communication. Candidate group members that act as Clients and are authorized to join a group can do so by interacting with a Key Distribution Center (KDC) acting as the Resource Server, from which they obtain the keying material to communicate with other group members. While defining general message formats as well as the interface and operations available at the KDC, this document supports different approaches and protocols for secure group communication. Therefore, details are delegated to separate application profiles of this document as specialized instances that target a particular group communication approach and define how communications in the group are protected. Compliance requirements for such application profiles are also specified.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9594"/>
          <seriesInfo name="DOI" value="10.17487/RFC9594"/>
        </reference>
        <reference anchor="I-D.ietf-ace-group-oscore-profile">
          <front>
            <title>The Group Object Security for Constrained RESTful Environments (Group OSCORE) Profile of the Authentication and Authorization for Constrained Environments (ACE) Framework</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="Francesca Palombini" initials="F." surname="Palombini">
              <organization>Ericsson AB</organization>
            </author>
            <date day="3" month="March" year="2025"/>
            <abstract>
              <t>   This document specifies a profile for the Authentication and
   Authorization for Constrained Environments (ACE) framework.  The
   profile uses Group Object Security for Constrained RESTful
   Environments (Group OSCORE) to provide communication security between
   a client and one or multiple resource servers that are members of an
   OSCORE group.  The profile securely binds an OAuth 2.0 access token
   to the public key of the client associated with the private key used
   by that client in the OSCORE group.  The profile uses Group OSCORE to
   achieve server authentication, as well as proof-of-possession for the
   client's public key.  Also, it provides proof of the client's
   membership to the OSCORE group by binding the access token to
   information from the Group OSCORE Security Context, thus allowing the
   resource server(s) to verify the client's membership upon receiving a
   message protected with Group OSCORE from the client.  Effectively,
   the profile enables fine-grained access control paired with secure
   group communication, in accordance with the Zero Trust principles.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-ace-group-oscore-profile-04"/>
        </reference>
        <reference anchor="I-D.ietf-ace-authcred-dtls-profile">
          <front>
            <title>Additional Formats of Authentication Credentials for the Datagram Transport Layer Security (DTLS) Profile for Authentication and Authorization for Constrained Environments (ACE)</title>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <author fullname="John Preuß Mattsson" initials="J. P." surname="Mattsson">
              <organization>Ericsson AB</organization>
            </author>
            <date day="3" month="March" year="2025"/>
            <abstract>
              <t>   This document updates the Datagram Transport Layer Security (DTLS)
   profile for Authentication and Authorization for Constrained
   Environments (ACE).  In particular, it specifies the use of
   additional formats of authentication credentials for establishing a
   DTLS session, when peer authentication is based on asymmetric
   cryptography.  Therefore, this document updates RFC 9202.  What is
   defined in this document is seamlessly applicable also if the profile
   uses Transport Layer Security (TLS) instead, as defined in RFC 9430.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-ace-authcred-dtls-profile-01"/>
        </reference>
      </references>
    </references>
    <?line 1250?>

<section anchor="sec-benefits-for-profiles">
      <name>Benefits for ACE Profiles</name>
      <t>For any profile of ACE, the following holds.</t>
      <ul spacing="normal">
        <li>
          <t>The SDC workflow defined in <xref target="sec-workflow"/> is effectively possible to use. This is beneficial for deployments where the communication leg between C and the RS is constrained, but the communication leg between the AS and RS is not.</t>
        </li>
        <li>
          <t>When the SDC workflow is used, the "token_upload" parameter defined in <xref target="sec-token_upload"/> is used:  </t>
          <ul spacing="normal">
            <li>
              <t>To inform the AS about C opting in to use the SDC workflow.</t>
            </li>
            <li>
              <t>To request the AS that the follow-up successful access token response includes certain information, if the AS has successfully uploaded the access token to the RS.</t>
            </li>
            <li>
              <t>To inform C that the AS has attempted to upload the issued access token to the RS, specifying whether the uploading has succeeded or failed.</t>
            </li>
          </ul>
        </li>
        <li>
          <t>When the SDC workflow is used, it remains possible for C to always obtain the issued access token from the AS.  </t>
          <t>
That is, by specifying the value 2 for the "token_upload" parameter in the access token request, C will ensure to receive the access token from the AS, even if the AS successfully uploads the access token to the RS on behalf of C.  </t>
          <t>
This is useful in profiles of ACE where C can re-upload the same access token to the RS by itself, e.g., in order to perform a key update like defined for the OSCORE profile <xref target="RFC9203"/>.</t>
        </li>
      </ul>
      <section anchor="dtls-profile">
        <name>DTLS Profile</name>
        <t>When the RPK mode of the DTLS profile is used (see <xref section="3.2" sectionFormat="of" target="RFC9202"/>), it becomes possible for the AS to effectively issue an access token intended to an audience that includes multiple RSs.</t>
        <t>This is enabled by the parameters "rs_cnf2" and "audience2" defined in <xref target="sec-rs_cnf2-audience2"/> as well as by the "anchor_cnf" parameter defined in <xref target="sec-anchor_cnf"/>. This seamlessly applies also if the profile uses Transport Layer Security (TLS) <xref target="RFC8446"/> as defined in <xref target="RFC9430"/>.</t>
      </section>
      <section anchor="edhoc-and-oscore-profile">
        <name>EDHOC and OSCORE Profile</name>
        <t>When the EDHOC and OSCORE profile is used <xref target="I-D.ietf-ace-edhoc-oscore-profile"/>, it becomes possible for the AS to effectively issue an access token intended to an audience that includes multiple RSs.</t>
        <t>This is enabled by the parameters "rs_cnf2" and "audience2" defined in <xref target="sec-rs_cnf2-audience2"/> as well as by the "anchor_cnf" parameter defined in <xref target="sec-anchor_cnf"/>.</t>
      </section>
    </section>
    <section anchor="sec-open-points">
      <name>Open Points</name>
      <section anchor="sec-open-points-workflow">
        <name>SDC Workflow</name>
        <t>The following discusses open points related to the use of the SDC workflow defined in <xref target="sec-workflow"/>.</t>
        <section anchor="sec-open-points-workflow-dynamic-access-rights">
          <name>Prevent Ambiguities in the Dynamic Update of Access Rights</name>
          <t>In some profiles of ACE, C can request a new access token to update its access rights, while preserving the same secure association with the RS. The new access token supersedes the current one stored at the RS, as they are both part of the same token series.</t>
          <t>When using the original workflow, C uploads the new access token to the RS by protecting the message exchange through the secure association with the RS. This allows the RS to determine that the upload of such access token is for updating the access rights of C.</t>
          <t>When using the SDC workflow, the AS uploads the new access token to the RS also when an update of access rights for C is to be performed. This message exchange is protected through the secure association between the AS and the RS.</t>
          <t>In this latter case, even though the access token claim "token_series_id" defined in <xref target="sec-token_series_id"/> provides the RS with an explicit indication for recognizing a stored access token as belonging to an ongoing token series, such a process might still lead to ambiguities.</t>
          <t>For example, the RS might have deleted a stored access token due to memory limitations. This effectively terminates the corresponding token series, which is however impractical for the RS to remember indefinitely. Consequently, if the AS uploads to the RS a new access token belonging to the same token series, the RS would erroneously interpret it to be the first access token of a new series.</t>
          <t>This can be avoided by relying on a new "updated_rights" parameter, which the AS can include in a POST request to the authz-info endpoint when uploading to the RS an access token for dynamically updating the access rights of C (see <xref target="sec-more-parameters"/>).</t>
        </section>
      </section>
      <section anchor="sec-more-parameters">
        <name>Further New Parameters to Consider</name>
        <t>The following discusses possible, further new parameters that can be defined for addressing the open points raised earlier in <xref target="sec-open-points"/>.</t>
        <ul spacing="normal">
          <li>
            <t>"updated_rights" - When using the SDC workflow and issuing an access token for dynamically updating the access rights of C, the AS specifies this parameter in the request sent to the RS for uploading the access token on behalf of C (see <xref target="sec-open-points-workflow-dynamic-access-rights"/>). This parameter encodes the CBOR simple value <tt>true</tt> (0xf5).</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="sec-cddl-model" removeInRFC="true">
      <name>CDDL Model</name>
      <figure anchor="fig-cddl-model">
        <name>CDDL model</name>
        <artwork type="CDDL" align="left"><![CDATA[
; OAuth Parameters CBOR Mappings
token_upload = 48
token_hash = 49
to_rs = 50
from_rs = 51
rs_cnf2 = 52
audience2 = 53
anchor_cnf = 54
token_series_id_param = 55

; CBOR Web Token (CWT) Claims
token_series_id_claim = 42

; CWT Confirmation Methods
x5chain = 24

; Custom Problem Detail Keys Registry
ace-error = 2
]]></artwork>
      </figure>
    </section>
    <section anchor="sec-document-updates" removeInRFC="true">
      <name>Document Updates</name>
      <section anchor="sec-04-05">
        <name>Version -04 to -05</name>
        <ul spacing="normal">
          <li>
            <t>Error handling and error code for failed PoP verification at the AS.</t>
          </li>
          <li>
            <t>Extended definition of the parameters "to_rs" and "from_rs".</t>
          </li>
          <li>
            <t>Fixes and presentation improvements in the IANA considerations.</t>
          </li>
          <li>
            <t>Updated references.</t>
          </li>
          <li>
            <t>Revised order of some sections.</t>
          </li>
          <li>
            <t>Editorial fixes and improvements.</t>
          </li>
        </ul>
      </section>
      <section anchor="sec-03-04">
        <name>Version -03 to -04</name>
        <ul spacing="normal">
          <li>
            <t>Updated document title.</t>
          </li>
          <li>
            <t>Defined name for the new workflow.</t>
          </li>
          <li>
            <t>Improved definition of "token series".</t>
          </li>
          <li>
            <t>Revised note on the new workflow suitable for "unaware" clients.</t>
          </li>
          <li>
            <t>Revised criterion for the AS to choose a token series identifier.</t>
          </li>
          <li>
            <t>Extended semantics of the "ace_profile" parameter.</t>
          </li>
          <li>
            <t>Specified means for C and the AS to coordinate on the exchange of public authentication credentials.</t>
          </li>
          <li>
            <t>Removed content on bidirectional access control.</t>
          </li>
          <li>
            <t>Suggested value ranges for codepoints to register.</t>
          </li>
          <li>
            <t>Editorial fixes and improvements.</t>
          </li>
        </ul>
      </section>
      <section anchor="sec-02-03">
        <name>Version -02 to -03</name>
        <ul spacing="normal">
          <li>
            <t>Defined parameter and claim "token_series_id".</t>
          </li>
          <li>
            <t>Defined parameters "to_rs" and "from_rs".</t>
          </li>
          <li>
            <t>Defined use of "to_rs" and "from_rs" in the OSCORE profile.</t>
          </li>
          <li>
            <t>Lowercase use of "client", "resource server", and "authorization server".</t>
          </li>
          <li>
            <t>Fixed naming of parameters/claims for audience.</t>
          </li>
          <li>
            <t>Split elision and comments in the examples in CBOR Diagnostic Notation.</t>
          </li>
          <li>
            <t>SHA-256 is mandatory to implement for computing token hashes.</t>
          </li>
          <li>
            <t>Fixes in the IANA considerations.</t>
          </li>
          <li>
            <t>Removed (parts of) appendices that are not needed anymore.</t>
          </li>
          <li>
            <t>Clarifications and editorial improvements.</t>
          </li>
        </ul>
      </section>
      <section anchor="sec-01-02">
        <name>Version -01 to -02</name>
        <ul spacing="normal">
          <li>
            <t>CBOR diagnostic notation uses placeholders from a CDDL model.</t>
          </li>
          <li>
            <t>Note on the new workflow supporting also non-ACE clients.</t>
          </li>
          <li>
            <t>Revised semantics of the "token_upload" parameter.</t>
          </li>
          <li>
            <t>Defined the new "token_hash" parameter.</t>
          </li>
          <li>
            <t>First definition of bidirectional access control through a single access token.</t>
          </li>
          <li>
            <t>Revised and extended considerations and next steps in appendices.</t>
          </li>
          <li>
            <t>Clarifications and editorial improvements.</t>
          </li>
        </ul>
      </section>
      <section anchor="sec-00-01">
        <name>Version -00 to -01</name>
        <ul spacing="normal">
          <li>
            <t>Definition of the "token series" moved to the "Terminology" section.</t>
          </li>
          <li>
            <t>Clarifications and fixes on using parameters in messages.</t>
          </li>
          <li>
            <t>Amended two of the requirements on profiles of the framework.</t>
          </li>
          <li>
            <t>The client has to opt-in for using the new workflow.</t>
          </li>
          <li>
            <t>Parameter "token_uploaded" renamed to "token_upload".</t>
          </li>
          <li>
            <t>Updated format of error response payload to use RFC 9290.</t>
          </li>
          <li>
            <t>Security considerations inherited from other documents.</t>
          </li>
          <li>
            <t>Editorial fixes and improvements.</t>
          </li>
        </ul>
      </section>
    </section>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>The authors sincerely thank <contact fullname="Christian Amsüss"/>, <contact fullname="Rikard Höglund"/>, and <contact fullname="Dave Robin"/> for their comments and feedback.</t>
      <t>This work was supported by the Sweden's Innovation Agency VINNOVA within the EUREKA CELTIC-NEXT project CYPRESS; and by the H2020 project SIFIS-Home (Grant agreement 952652).</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
GhCT5WpJfHrCECu+a6nPNyzGZtpexRjC+qpGajib8Wo1307nelo2l9Cf1Qoq
oibMlmX5w5IDuJbJkoJjzCPU6Uq6WXwpaItj2uTmJDW3zAveHEuj4E25uMyk
R9L3btJktVSwRhCYPHnUPrSicvbKNc0cG61qO1jp1rfi5ifoxSJ8Wk1mEgZc
jkWaEjLWuO218/ZXqF3kRN2Z48+zaHbHxh6s2KVLwJhS9SRmyclsUm5OLwFv
y1mYq0CJankc6W7ZgCOYGZbdkniZUilYLrhMt6XNnnM7DgbeniCYmp4h6eE+
heRY2KnoNI1eB99YZ1O2jAfc/bhAfU4JwThWQLih4BMVoaNciMalMk5GesLF
ibrTiNjEg0k9yaJlOLL8NPUfSOpS5hBZGOWttK3oBtDVO6/pba/uQds79dHJ
yvNYJad4GbZ+oeGHj6JvinNQyrM3dVIH66RCLF7k/o8cqKyyOKVGoIuYypMl
QmFKvaqc4f5gHxRx3CGutYWuXZYxU5+ezeh8K9/fP8AbSu+ji9rxvkR/xB2h
o4oME18U2pRn4wBaikmPiZGZRW3X5a3lRBFCkePFg+IIxhWawxhEDyjdBxmR
WZPZivEyussbh2NXvEHcFxF2lqGpiiM14HXBDmCw62QJWgKF5Kj0exVTvEdX
NCtG+MSGpwIpJ5vJ7T6y5m0U5JdCapP5EgaZzKL64OLEqFCNOpaxZTvGwnZu
g5q0QKSlpaQRKVc+TpCQ7rpMsgyuiYqXgpNE3FeQVoKCeH8pY6D9QhlMRBnQ
n3DXgglSBAt9N2iDprT7nR9Kwcu0JWv+6+aGdpA/WXns4kj15HAjovAvQ71k
LLITqjKmR5ij7dgT22pr1zCro3uCeUc1i6Ics1Tgp7+oHMq7fP3u/fcnoq+1
JCVGnUVVA5AuhFmjib7GTF7BUy0gmDBw2AYLshvwx2J4TPvAND50ZKkC51gO
S6VjuJ49XFPagGkl0mWIZ84/F5QJmTiOggkQTGx6f3GpDqLySulat9NK8UxH
gLojoeNW/tn4V0YwZb4mr5imkiZZlVR/wxWU97ZZyS7xnsvqjef9vGZpznEu
3IKiiwhJBmynKzhUmgnVRel14xeZxQszU0uQRu5Na/racex2kROLZeoTFsti
eNNE2snikKJItxH7MlMklNtHUfVSTL2T+iPOiPGatClZhmGt1e2LW4pGnSpL
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
YPUqMy2Y9RbbTbNNmqBbeUYgsmW8KA9SFzVDtyokHx5WUh0rYSSTl5hTPIFs
0L7xct3KlLG1YT+3m4vMZYQiL4/ZNqqUcLCzcx5xgVuloyqgNiuhkXGijwpl
yFXST1181JSIrSrOgoO7YzmKLpnnSt51x1OYmFd1yIp2rsttqh7DuQS6fEZw
hoHmGMOA/My0YldxGUdnZsDAiDszD6XFDo1FRdS0T24jlNyALJTs+NsTQWnQ
3GRJwo+6jFI0TJB2Xcl2VXyDaQqUMz4F0FO4CgLSg382SJvC7c8HbZsngDqM
wigLa4biRZ0AlUFbGHApUEFYO594XqWW5ZXHpbQvdQZWjZ5SQ9pNgLcdoDeb
3EXMrCingtxEMSOqxhOTYCz9g6DOOH7kGR1BP5P2ghtOtdyPqE4eVAU+s/pC
pfmqKRMlzSTn2itV7vmm2386r269v4MSmROJ8iomQ9VlxSlR9DWKjPJRj42Y
zVWKoRCzB5IPo+3Igp0vili1RjQq0J81N66eyX7jvfLjGez3j8D5p3Kx6EGR
lRbPdaVFrd9LfYdVwikN0QLxQKo8G/q4N/Rmq1zustxY1gYr+lEbg2Lqc2xY
AZeGnqf7JilvjGwMgIFHsW4N4A49RuFZdhsXPbjF6zAjC2KJik9WuVI6o61c
va7UVry4F2UVofZTiXeHJ/ngLJUpnWxq3hRufh5xUoCsOyFOWYCcVNIwYoCW
hzJGcLdDNpL1SoUIyqcndA/YjNTG7ij89i5OVhnZ52+xk01YtztzSQbQpc+E
GIcc0qrRoCP6xN7NAiCrvJVMWxMkwKLk8bHJRpvlCCreAaOjUj9gZ3Q+3FsX
cSNC3FOVrY3ZkWmschGOKXA0M26OWUzBtwTiWj+vsPOK0gxRye/GWbdFv5uL
2uPgIqXT6rOJjhegCCYy8rlsiZB1DLHS/vmVmf+eEibB5PQayOn1nUGVG+2v
1dqnI8VE7qmnWyqSrKBSlbJSzBhPIwGalVOJ4KrKFBijM5RsQTdVE9nHJcue
CCakoSZKlhLMZNV0jDTnij1zQCr/RnW4U5IL3ucpXjDsSCXSZsTU1KIdC8XS
QJLK0CR09yWbLq4PllyILeuLmLLDAj6iPVW0jHEkWbHdtAAPWVkG422JmxRn
J6EUAWRDx7OrvkxXKf3Ch6Q4ohH32CxWcaZ7DmLvvBVGOVEBsaRCVB3t7pB3
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

-->

</rfc>
