<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version  (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-ace-key-groupcomm-19" category="std" consensus="true" submissionType="IETF" tocDepth="4" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.18.0 -->
  <front>
    <title abbrev="Key Provisioning for Group Communication">Key Provisioning for Group Communication using ACE</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-ace-key-groupcomm-19"/>
    <author initials="F." surname="Palombini" fullname="Francesca Palombini">
      <organization>Ericsson AB</organization>
      <address>
        <postal>
          <street>Torshamnsgatan 23</street>
          <city>Kista</city>
          <code>16440 Stockholm</code>
          <country>Sweden</country>
        </postal>
        <email>francesca.palombini@ericsson.com</email>
      </address>
    </author>
    <author initials="M." surname="Tiloca" fullname="Marco Tiloca">
      <organization>RISE AB</organization>
      <address>
        <postal>
          <street>Isafjordsgatan 22</street>
          <city>Kista</city>
          <code>16440 Stockholm</code>
          <country>Sweden</country>
        </postal>
        <email>marco.tiloca@ri.se</email>
      </address>
    </author>
    <date year="2024" month="April" day="30"/>
    <workgroup>ACE Working Group</workgroup>
    <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 acting as Clients and authorized to join a group can do so by interacting with a Key Distribution Center (KDC) acting as 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>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Source for this draft and an issue tracker can be found at
  <eref target="https://github.com/ace-wg/ace-key-groupcomm"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="intro">
      <name>Introduction</name>
      <t>This document builds on the Authentication and Authorization for Constrained Environments (ACE) framework and defines how to request, distribute, and renew keying material and configuration parameters to protect message exchanges in a group communication environment.</t>
      <t>Candidate group members acting as ACE Clients and authorized to join a group can interact with the Key Distribution Center (KDC) acting as ACE Resource Server and responsible for that group, in order to obtain the necessary keying material and parameters to communicate with other group members.</t>
      <t>In particular, this document defines the operations and interface available at the KDC, as well as general message formats for the interactions between Clients and KDC. At the same time, communications in the group can rely on different approaches, e.g., based on multicast <xref target="I-D.ietf-core-groupcomm-bis"/> or on publish-subscribe messaging <xref target="I-D.ietf-core-coap-pubsub"/>, and can be protected in different ways.</t>
      <t>Therefore, this document delegates details on the communication and security approaches used in a group to separate application profiles. These are specialized instances of this document, targeting a particular group communication approach and defining how communications in the group are protected, as well as the specific keying material and configuration parameters provided to group members.</t>
      <t>In order to ensure consistency and aid the development of such application profiles, <xref target="req"/> of this document defines a number of related compliance requirements. In particular, <xref target="req-mandatory"/> compiles the requirements that application profiles are REQUIRED to fulfill; these are referred to by an identifier that starts with "REQ". Instead, <xref target="req-optional"/> compiles the requirements that application profiles MAY fulfill; these are referred to by an identifier that starts with "OPT".</t>
      <t>New keying material is intended to be generated and distributed to the group upon membership changes (rekeying). If the application requires backward security (i.e., new group members must be prevented from accessing communications in the group prior to their joining), then a rekeying has to occur every time new members join the group. If the application requires forward security (i.e., former group members must be prevented from accessing communications in the group after their leaving), then a rekeying has to occur every time current members leave or are evicted from the group.</t>
      <t>A group rekeying scheme performs the actual distribution of the new keying material, by rekeying the current group members when a new Client joins the group, and the remaining group members when a Client leaves the group. This can rely on different approaches, including efficient group rekeying schemes such as <xref target="RFC2093"/>, <xref target="RFC2094"/>, and <xref target="RFC2627"/>.</t>
      <t>Consistently with what is recommended in the ACE framework, this document uses CBOR <xref target="RFC8949"/> for data encoding. However, using JSON <xref target="RFC8259"/> instead of CBOR is possible, by relying on the conversion method specified in Sections <xref target="RFC8949" section="6.1" sectionFormat="bare"/> and <xref target="RFC8949" section="6.2" sectionFormat="bare"/> of <xref target="RFC8949"/>.</t>
      <section anchor="terminology">
        <name>Terminology</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL
NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED",
"MAY", and "OPTIONAL" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
        <t>Readers are expected to be familiar with:</t>
        <ul spacing="normal">
          <li>The terms and concepts described in the ACE framework <xref target="RFC9200"/> and in the Authorization Information Format (AIF) <xref target="RFC9237"/> to express authorization information. 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).</li>
          <li>The terms and concepts described in CoAP <xref target="RFC7252"/>. Unless otherwise indicated, the term "endpoint" is used here following its OAuth definition, aimed at denoting resources such as /token and /introspect at the AS, and /authz-info at the RS. This document does not use the CoAP definition of "endpoint", which is "An entity participating in the CoAP protocol".</li>
          <li>The terms and concepts described in CDDL <xref target="RFC8610"/>, CBOR <xref target="RFC8949"/>, and COSE <xref target="RFC9052"/><xref target="RFC9053"/><xref target="RFC9338"/>.</li>
        </ul>
        <t>A node interested to participate in group communication as well as already participating as a group member is interchangeably denoted as "Client".</t>
        <t>This document also uses the following terms.</t>
        <ul spacing="normal">
          <li>
            <t>Group: a set of nodes that share common keying material and security parameters used to protect their communications with one another. That is, the term refers to a "security group".  </t>
            <t>
This term is not to be confused with an "application group", which has relevance at the application level and whose members share a common pool of resources or content. Examples of application groups are the set of all nodes deployed in a same physical room, or the set of nodes registered to a pub-sub topic.  </t>
            <t>
This term is also not to be confused with a "multicast group", which has relevance at the network level and whose members all listen to a group network address for receiving messages sent to that group. An example of multicast group is the set of nodes that are configured to receive messages that are sent to the group's associated IP multicast address.  </t>
            <t>
The same security group might be associated with multiple application groups. Also, the same application group can be associated with multiple security groups. Further details and considerations on the mapping between the three types of group are out of the scope of this document.</t>
          </li>
          <li>Key Distribution Center (KDC): the entity responsible for managing one or multiple groups, with particular reference to the group membership and the keying material to use for protecting group communications.</li>
        </ul>
        <t>Furthermore, this document uses "names" or "identifiers" for groups and nodes. Their different meanings are summarized below.</t>
        <ul spacing="normal">
          <li>Group name: The identifier of a group, as a text string encoded as UTF-8 <xref target="RFC3629"/>. Once established, it is invariant. It is used in the interactions between Client, AS, and RS to identify a group. A group name is always unique among the group names of the existing groups under the same KDC.</li>
          <li>GROUPNAME: The text string used in URIs to identify a group. Once established, it is invariant. GROUPNAME uniquely maps to the group name of a group, although they do not necessarily coincide.</li>
          <li>Group identifier: the identifier of the group keying material used in a group. Unlike group name and GROUPNAME, this identifier changes over time, when the group keying material is updated.</li>
          <li>Node name: The identifier of a node, as a text string encoded as UTF-8 <xref target="RFC3629"/> and consistent with the semantics of URI path segments (see <xref section="3.3" sectionFormat="of" target="RFC3986"/>). Once established, it is invariant. It is used in the interactions between Client and RS, as well as to identify a member of a group. A node name is always unique among the node names of the current nodes within a group.</li>
          <li>NODENAME: The text string used in URIs to identify a member of a group. Once established, it is invariant. Its value coincides with the node name of the associated group member.</li>
        </ul>
        <t>This document additionally uses the following terminology:</t>
        <ul spacing="normal">
          <li>Transport profile: a profile of ACE as per <xref section="5.8.4.3" sectionFormat="of" target="RFC9200"/>. A transport profile specifies the communication protocol and communication security protocol between an ACE Client and Resource Server, as well as proof-of-possession methods, if it supports proof-of-possession access tokens, etc. Transport profiles of ACE include, for instance, <xref target="RFC9203"/>, <xref target="RFC9202"/>, and <xref target="RFC9431"/>.</li>
          <li>Application profile: a profile that defines how applications enforce and use supporting security services they require. These services may include, for instance, provisioning, revocation, and distribution of keying material. An application profile may define specific procedures and message formats.</li>
          <li>Authentication credential: the set of information associated with an entity, including that entity's public key and parameters associated with the public key. Examples of authentication credentials are CBOR Web Tokens (CWTs) and CWT Claims Sets (CCSs) <xref target="RFC8392"/>, X.509 certificates <xref target="RFC5280"/>, and C509 certificates <xref target="I-D.ietf-cose-cbor-encoded-cert"/>.</li>
          <li>Individual keying material: information pertaining exclusively to a group member, as associated with its group membership and related to other keying material and parameters used in the group. For example, this can be an identifier that the secure communication protocol employs to uniquely identify a node as a group member (e.g., a cryptographic key identifier uniquely associated with the group member in question). The specific nature and format of individual keying material used in a group is defined in application profiles of this specification. The individual keying material of a group member is not related to the secure association between that group member and the KDC.</li>
        </ul>
        <t>Examples throughout this document are expressed in CBOR diagnostic notation without the tag and value abbreviations.</t>
      </section>
    </section>
    <section anchor="overview">
      <name>Overview</name>
      <t>At a high level, the key provisioning process is separated in two phases: the first one follows the ACE Framework between Client, AS, and KDC; the second one is the actual key distribution between Client and KDC. After the two phases are completed, the Client is able to participate in the group communication, via a Dispatcher entity.</t>
      <figure anchor="fig-roles">
        <name>Key Distribution Participants</name>
        <artset>
          <artwork type="svg" align="center"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="224" width="544" viewBox="0 0 544 224" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
              <path d="M 8,32 L 8,64" fill="none" stroke="black"/>
              <path d="M 8,128 L 8,176" fill="none" stroke="black"/>
              <path d="M 56,72 L 56,120" fill="none" stroke="black"/>
              <path d="M 112,32 L 112,64" fill="none" stroke="black"/>
              <path d="M 112,128 L 112,176" fill="none" stroke="black"/>
              <path d="M 184,48 L 184,144" fill="none" stroke="black"/>
              <path d="M 240,32 L 240,64" fill="none" stroke="black"/>
              <path d="M 240,144 L 240,176" fill="none" stroke="black"/>
              <path d="M 344,32 L 344,64" fill="none" stroke="black"/>
              <path d="M 344,144 L 344,176" fill="none" stroke="black"/>
              <path d="M 408,128 L 408,176" fill="none" stroke="black"/>
              <path d="M 424,144 L 424,192" fill="none" stroke="black"/>
              <path d="M 440,160 L 440,208" fill="none" stroke="black"/>
              <path d="M 504,128 L 504,144" fill="none" stroke="black"/>
              <path d="M 520,144 L 520,160" fill="none" stroke="black"/>
              <path d="M 536,160 L 536,208" fill="none" stroke="black"/>
              <path d="M 8,32 L 112,32" fill="none" stroke="black"/>
              <path d="M 240,32 L 344,32" fill="none" stroke="black"/>
              <path d="M 184,48 L 232,48" fill="none" stroke="black"/>
              <path d="M 8,64 L 112,64" fill="none" stroke="black"/>
              <path d="M 240,64 L 344,64" fill="none" stroke="black"/>
              <path d="M 8,128 L 112,128" fill="none" stroke="black"/>
              <path d="M 408,128 L 504,128" fill="none" stroke="black"/>
              <path d="M 120,144 L 184,144" fill="none" stroke="black"/>
              <path d="M 240,144 L 344,144" fill="none" stroke="black"/>
              <path d="M 424,144 L 520,144" fill="none" stroke="black"/>
              <path d="M 120,160 L 232,160" fill="none" stroke="black"/>
              <path d="M 352,160 L 400,160" fill="none" stroke="black"/>
              <path d="M 440,160 L 536,160" fill="none" stroke="black"/>
              <path d="M 8,176 L 112,176" fill="none" stroke="black"/>
              <path d="M 240,176 L 344,176" fill="none" stroke="black"/>
              <path d="M 408,176 L 424,176" fill="none" stroke="black"/>
              <path d="M 424,192 L 440,192" fill="none" stroke="black"/>
              <path d="M 440,208 L 536,208" fill="none" stroke="black"/>
              <polygon class="arrowhead" points="408,160 396,154.4 396,165.6" fill="black" transform="rotate(0,400,160)"/>
              <polygon class="arrowhead" points="360,160 348,154.4 348,165.6" fill="black" transform="rotate(180,352,160)"/>
              <polygon class="arrowhead" points="240,160 228,154.4 228,165.6" fill="black" transform="rotate(0,232,160)"/>
              <polygon class="arrowhead" points="240,48 228,42.4 228,53.6" fill="black" transform="rotate(0,232,48)"/>
              <polygon class="arrowhead" points="128,160 116,154.4 116,165.6" fill="black" transform="rotate(180,120,160)"/>
              <polygon class="arrowhead" points="128,144 116,138.4 116,149.6" fill="black" transform="rotate(180,120,144)"/>
              <polygon class="arrowhead" points="64,120 52,114.4 52,125.6" fill="black" transform="rotate(90,56,120)"/>
              <polygon class="arrowhead" points="64,72 52,66.4 52,77.6" fill="black" transform="rotate(270,56,72)"/>
              <g class="text">
                <text x="60" y="52">AS</text>
                <text x="288" y="52">KDC</text>
                <text x="60" y="148">Client</text>
                <text x="292" y="164">Dispatcher</text>
                <text x="488" y="180">Group</text>
                <text x="488" y="196">members</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art" align="center"><![CDATA[
.------------.               .------------.
|     AS     |        .----->|    KDC     |
'------------'        |      '------------'
      ^               |
      |               |
      v               |
.------------.        |                           .-----------.
|   Client   |<-------'      .------------.       | .---------+-.
|            |<------------->| Dispatcher |<----->| | .---------+-.
'------------'               '------------'       '-+ |   Group   |
                                                    '-+  members  |
                                                      '-----------'
]]></artwork>
        </artset>
      </figure>
      <t>The following participants (see <xref target="fig-roles"/>) take part in the authorization and key distribution.</t>
      <ul spacing="normal">
        <li>Client (C): node that wants to join a group and take part in group communication with other group members. Within the group, the Client can have different roles.</li>
        <li>Authorization Server (AS): as per the AS defined in the ACE Framework <xref target="RFC9200"/>, it enforces access policies that prescribe whether a node is allowed to join a given group and with what roles and rights (e.g., write and/or read).</li>
        <li>Key Distribution Center (KDC): entity that maintains the keying material to protect group communications, and provides it to Clients authorized to join a given group. During the first part of the exchange (<xref target="sec-auth"/>), the KDC takes the role of the RS in the ACE Framework. During the second part (<xref target="key-distr"/>), which is not based on the ACE Framework, the KDC distributes the keying material. In addition, the KDC provides the latest keying material to group members when requested or, if required by the application, when group membership changes.</li>
        <li>
          <t>Dispatcher: entity through which the Clients communicate with the group when sending a message intended for multiple group members. That is, the Dispatcher distributes such a one-to-many message to the group members as intended recipients. The Dispatcher does not have access to the group keying material. A single-recipient message intended for only one group member may be delivered by alternative means, with no assistance from the Dispatcher.  </t>
          <t>
Examples of a Dispatcher are: the Broker in a pub-sub setting; a relayer for group communication that delivers group messages as multiple unicast messages to all group members; an implicit entity as in a multicast communication setting, where messages are transmitted to a multicast IP address and delivered on the transport channel.  </t>
          <t>
If it consists of an explicit entity such as a pub-sub Broker or a message relayer, the Dispatcher is comparable to an untrusted on-path intermediary, and as such it is able to see the messages sent by Clients in the group, but not to decrypt them and read their plain content.</t>
        </li>
      </ul>
      <t>This document specifies a mechanism for:</t>
      <ul spacing="normal">
        <li>Authorizing a Client to join the group (<xref target="sec-auth"/>), and providing it with the group keying material to communicate with the other group members (<xref target="key-distr"/>).</li>
        <li>Allowing a group member to retrieve group keying material (<xref target="ssec-key-material-retrieval"/> and <xref target="update-keys"/>).</li>
        <li>Allowing a group member to retrieve authentication credentials of other group members (<xref target="sec-key-retrieval"/>) and to provide an updated authentication credential (<xref target="update-pub-key"/>).</li>
        <li>Allowing a group member to leave the group (<xref target="ssec-group-leaving"/>).</li>
        <li>Evicting a group member from the group (<xref target="sec-node-removal"/>).</li>
        <li>
          <t>Renewing and re-distributing the group keying material (rekeying), e.g., upon a membership change in the group (<xref target="sec-group-rekeying"/>).  </t>
          <t>
Rekeying the group may result in a temporary misalignment of the keying material stored by the different group members. Different situations where this can happen and how they can be handled are discussed in <xref target="sec-misalignment-keying-material"/>.</t>
        </li>
      </ul>
      <t><xref target="fig-flow"/> provides a high level overview of the message flow for a node joining a group. The message flow can be expanded as follows.</t>
      <ol spacing="normal" type="1"><li>
          <t>The joining node requests an access token from the AS, in order to access one or more group-membership resources at the KDC and hence join the associated groups.  </t>
          <t>
This exchange between Client and AS MUST be secured, as specified by the transport profile of ACE used between Client and KDC. Based on the response from the AS, the joining node will establish or continue using a secure communication association with the KDC.</t>
        </li>
        <li>
          <t>The joining node transfers authentication and authorization information to the KDC, by transferring the obtained access token. This is typically achieved by including the access token in a request sent to the /authz-info endpoint at the KDC.  </t>
          <t>
Once this exchange is completed, the joining node MUST have a secure communication association established with the KDC, before joining a group under that KDC.  </t>
          <t>
This exchange and the following secure communications between the Client and the KDC MUST occur in accordance with the transport profile of ACE used between Client and KDC, such as the DTLS transport profile <xref target="RFC9202"/> and OSCORE transport profile <xref target="RFC9203"/> of ACE.</t>
        </li>
        <li>
          <t>The joining node starts the joining process to become a member of the group, by sending a request to the related group-membership resource at the KDC. Based on the application requirements and policies, the KDC may perform a group rekeying, by generating new group keying material and distributing it to the current group members through the rekeying scheme used in the group.  </t>
          <t>
At the end of the joining process, the joining node has received from the KDC the parameters and group keying material to securely communicate with the other group members. Also, the KDC has stored the association between the authorization information from the access token and the secure session with the joining node.</t>
        </li>
        <li>The joining node and the KDC maintain the secure association, to support possible future communications. These especially include key management operations, such as retrieval of updated keying material or participation to a group rekeying process.</li>
        <li>The joining node can communicate securely with the other group members, using the keying material provided in step 3.</li>
      </ol>
      <figure anchor="fig-flow">
        <name>Message Flow Upon New Node's Joining</name>
        <artwork align="center"><![CDATA[
        C                            AS  KDC                   Group
        |                             |   |                   Members
      / |                             |   |                      |
     |  |--- Authorization Request -->|   |                      |
     |  |                             |   |                      |
     |  |<-- Authorization Response --|   |                      |
(*) <   |                             |   |                      |
     |  |                             |   |                      |
     |  |---  Token Transfer Request ---->|                      |
     |  |                                 |                      |
     |  |<--- Token Transfer Response-----|                      |
      \ |                             |   |                      |
        |                             |   |                      |
        |--------- Join Request --------->|                      |
        |                             |   |                      |
        |                             |   | -- Group rekeying -->|
        |                             |   |      (optional)      |
        |<-------- Join Response ---------|                      |
        |                             |   |                      |
        |                             |   |                      |
        |                             |   |       Dispatcher     |
        |                                             |          |
        |<======= Secure group communication =========|=========>|
        |                                             |          |

(*) Defined in the ACE framework
]]></artwork>
      </figure>
    </section>
    <section anchor="sec-auth">
      <name>Authorization to Join a Group</name>
      <t>This section describes in detail the format of messages exchanged by the participants when a node requests access to a given group. This exchange is based on ACE <xref target="RFC9200"/>.</t>
      <t>As defined in <xref target="RFC9200"/>, the Client asks the AS for the authorization to join the group through the KDC (see <xref target="ssec-authorization-request"/>). If the request is approved and authorization is granted, the AS provides the Client with a proof-of-possession access token and parameters to securely communicate with the KDC (see <xref target="ssec-authorization-response"/>).</t>
      <t>Communications between the Client and the AS MUST be secured, according to what is defined by the used transport profile of ACE. The Content-Format used in the message also depends on the used transport profile of ACE. For example, it can be application/ace+cbor for the first two messages and application/cwt for the third message, which are defined in the ACE framework.</t>
      <t>The transport profile of ACE also defines a number of details such as the communication and security protocols used with the KDC (see Appendix C of <xref target="RFC9200"/>).</t>
      <t><xref target="fig-group-member-registration"/> gives an overview of the exchange described above.</t>
      <figure anchor="fig-group-member-registration">
        <name>Message Flow of Join Authorization</name>
        <artwork align="center"><![CDATA[
Client                                             AS    KDC
   |                                                |     |
   |---- Authorization Request: POST /token ------->|     |
   |                                                |     |
   |<--- Authorization Response: 2.01 (Created) ----|     |
   |                                                |     |
   |---- Token Transfer Request: POST /authz-info ------->|
   |                                                |     |
   |<--- Token Transfer Response: 2.01 (Created) -------->|
   |                                                |     |
]]></artwork>
      </figure>
      <section anchor="ssec-authorization-request">
        <name>Authorization Request</name>
        <t>The Authorization Request sent from the Client to the AS is defined in <xref section="5.8.1" sectionFormat="of" target="RFC9200"/> and MAY contain the following parameters, which, if included, MUST have the format and value as specified below.</t>
        <ul spacing="normal">
          <li>
            <t>'scope', specifying the names of the groups that the Client requests to access, and optionally the roles that the Client requests to have in those groups.  </t>
            <t>
This parameter is encoded as a CBOR byte string, which wraps a CBOR array of scope entries. All the scope entries are specified according to a same format, i.e., either the AIF format or the textual format defined below.  </t>
            <ul spacing="normal">
              <li>
                <t>If the AIF format is used, each scope entry is encoded as per <xref target="RFC9237"/>, i.e., as a CBOR array [Toid, Tperm]. If a scope entry expresses a set of roles to take in a group as per this document, the object identifier "Toid" specifies the group name and MUST be encoded as a CBOR text string, while the permission set "Tperm" specifies the roles that the Client wishes to take in the group.      </t>
                <t>
The AIF format is the default format for application profiles of this specification, and is preferable for those that aim for a compact encoding of scope. This is desirable especially for application profiles defining several roles, with the Client possibly asking for multiple roles combined.      </t>
                <t><xref target="cddl-ex-0"/> shows an example in CDDL notation <xref target="RFC8610"/> where scope uses the AIF format.</t>
              </li>
              <li>
                <t>If the textual format is used, each scope entry is a CBOR array formatted as follows.      </t>
                <ul spacing="normal">
                  <li>As first element, the group name, encoded as a CBOR text string.</li>
                  <li>Optionally, as second element, the role or CBOR array of roles that the Client wishes to take in the group. This element is optional since roles may have been pre-assigned to the Client, as associated with its verifiable identity credentials. Alternatively, the application may have defined a single, well-known role for the target resource(s) and audience(s).</li>
                </ul>
                <t>
<xref target="cddl-ex"/> shows an example in CDDL notation where scope uses the textual format, with group name and role identifiers encoded as CBOR text strings.</t>
              </li>
            </ul>
            <t>
It is REQUIRED of application profiles of this specification to specify the exact format and encoding of scope (REQ1). This includes defining the set of possible roles and their identifiers, as well as the corresponding encoding to use in the scope entries according to the used scope format.  </t>
            <t>
If the application profile uses the AIF format, it is also REQUIRED to register its specific instance of "Toid" and "Tperm", as well as the corresponding Media Type and Content-Format, as per the guidelines in <xref target="RFC9237"/> (REQ2).  </t>
            <t>
If the application profile uses the textual format, it MAY additionally specify CBOR values to use for abbreviating the role identifiers (OPT1).</t>
          </li>
          <li>'audience', with an identifier of the KDC.</li>
        </ul>
        <t>As defined in <xref target="RFC9200"/>, other additional parameters can be included if necessary.</t>
        <figure anchor="cddl-ex-0">
          <name>Example of scope using the AIF format</name>
          <sourcecode type="CDDL"><![CDATA[
;# include rfc9237

gname = tstr

permissions = uint .bits roles

roles = &(
   Requester: 1,
   Responder: 2,
   Monitor: 3,
   Verifier: 4
)

scope_entries = AIF-Generic<gname, permissions>

scope = bstr .cbor scope_entries

]]></sourcecode>
        </figure>
        <figure anchor="cddl-ex">
          <name>Example of scope using the textual format, with the role identifiers encoded as text strings</name>
          <sourcecode type="CDDL"><![CDATA[
gname = tstr

role = tstr

scope_entry = [ gname , ? ( role / [ 2*role ] ) ]

scope_entries = [ * scope_entry ]

scope = bstr .cbor scope_entries
]]></sourcecode>
        </figure>
      </section>
      <section anchor="ssec-authorization-response">
        <name>Authorization Response</name>
        <t>The AS processes the Authorization Request as defined in <xref section="5.8.2" sectionFormat="of" target="RFC9200"/>, especially verifying that the Client is authorized to access the specified groups with the requested roles, or possibly a subset of those.</t>
        <t>In case of successful verification, the Authorization Response sent from the AS to the Client is also defined in <xref section="5.8.2" sectionFormat="of" target="RFC9200"/>. Note that the parameter 'expires_in' MAY be omitted if the application defines how the expiration time is communicated to the Client via other means, or if it establishes a default value.</t>
        <t>Additionally, when included, the following parameter MUST have the corresponding values:</t>
        <ul spacing="normal">
          <li>'scope' has the same format and encoding of 'scope' in the Authorization Request, defined in <xref target="ssec-authorization-request"/>. If this parameter is not present, the granted scope is equal to the one requested in <xref target="ssec-authorization-request"/>.</li>
        </ul>
        <t>The proof-of-possession access token (in 'access_token' above) MUST contain the following parameters:</t>
        <ul spacing="normal">
          <li>a confirmation claim (see, for example 'cnf' defined in <xref section="3.1" sectionFormat="of" target="RFC8747"/> for CWT);</li>
          <li>an expiration time claim (see, for example 'exp' defined in <xref section="3.1.4" sectionFormat="of" target="RFC8392"/> for CWT);</li>
          <li>
            <t>a scope claim (see, for example 'scope' registered in <xref section="8.14" sectionFormat="of" target="RFC9200"/> for CWT).  </t>
            <t>
This claim specifies the same access control information as in the 'scope' parameter of the Authorization Response, if the parameter is present in the message. If the parameter is not present, the claim specifies the access control information as in the 'scope' parameter of the Authorization Request, if present, or the default scope that the AS is granting the Client, if not present.  </t>
            <t>
By default, this claim has the same encoding as the 'scope' parameter in the Authorization Request, defined in <xref target="ssec-authorization-request"/>.  </t>
            <t>
Optionally, an alternative extended format of scope defined in <xref target="sec-extended-scope"/> can be used. This format explicitly signals the semantics used to express the actual access control information, and according to which this has to be parsed. This enables a Resource Server to correctly process a received access token, also in case:  </t>
            <ul spacing="normal">
              <li>The Resource Server implements a KDC that supports multiple application profiles of this specification, using different scope semantics; and/or</li>
              <li>The Resource Server implements further services beyond a KDC for group communication, using different scope semantics.</li>
            </ul>
            <t>
If the Authorization Server is aware that this applies to the Resource Server for which the access token is issued, the Authorization Server SHOULD use the extended format of scope defined in <xref target="sec-extended-scope"/>.</t>
          </li>
        </ul>
        <t>The access token MAY additionally contain other claims that the transport profile of ACE requires, or other optional parameters.</t>
        <t>When receiving an Authorization Request from a Client that was previously authorized, and for which the AS still stores a valid non-expired access token, the AS MAY reply with that token. Note that it is up to application profiles of ACE to make sure that re-posting the same access token does not cause re-use of keying material between nodes (for example, that is accomplished with the use of random nonces in <xref target="RFC9203"/>).</t>
      </section>
      <section anchor="token-post">
        <name>Token Transferring</name>
        <t>The Client sends a Token Transfer Request to the KDC, i.e., a CoAP POST request including the access token and targeting the authz-info endpoint (see <xref section="5.10.1" sectionFormat="of" target="RFC9200"/>).</t>
        <t>Note that this request deviates from the one defined in <xref target="RFC9200"/>, since it allows asking the KDC for additional information concerning the authentication credentials used in the group to ensure source authentication, as well as for possible additional group parameters.</t>
        <t>The joining node MAY ask for this information from the KDC through the same Token Transfer Request. In this case, the message MUST have Content-Format set to application/ace+cbor defined in <xref section="8.16" sectionFormat="of" target="RFC9200"/>, and the message payload MUST be formatted as a CBOR map, which MUST include the access token. The CBOR map MAY additionally include the following parameter, which, if included, MUST have the format and value as specified below.</t>
        <ul spacing="normal">
          <li>'sign_info' defined in <xref target="sign-info"/>, specifying the CBOR simple value "null" (0xf6) to request information about the signature algorithm, the signature algorithm parameters, the signature key parameters, and the exact format of authentication credentials used in the groups that the Client has been authorized to join.</li>
        </ul>
        <t>Alternatively, such information may be pre-configured on the joining node, or may be retrieved by alternative means. For example, the joining node may have performed an early group discovery process and obtained the link to the associated group-membership resource at the KDC, together with attributes descriptive of the group configuration (see, e.g., <xref target="I-D.tiloca-core-oscore-discovery"/>).</t>
        <t>After successful verification, the Client is authorized to receive the group keying material from the KDC and join the group. Hence, the KDC replies to the Client with a Token Transfer Response, i.e., a  CoAP 2.01 (Created) response.</t>
        <t>The Token Transfer Response MUST have Content-Format "application/ace+cbor", and its payload is a CBOR map. Note that this deviates from what is defined in the ACE framework, where the response from the authz-info endpoint is defined as conveying no payload (see <xref section="5.10.1" sectionFormat="of" target="RFC9200"/>).</t>
        <t>If a scope entry in the access token specifies a role that requires the Client to send its own authentication credential to the KDC when joining the related group, then the CBOR map MUST include the parameter 'kdcchallenge' defined in <xref target="kdcchallenge"/>, specifying a dedicated challenge N_S generated by the KDC.</t>
        <t>Later, when joining the group (see <xref target="ssec-key-distribution-exchange"/>), the Client uses the 'kdcchallenge' value and additional information to build a proof-of-possession (PoP) input. This is in turn used to compute a PoP evidence, which the Client also provides to the KDC in order to prove possession of its own private key (see the 'client_cred_verify' parameter in <xref target="gid-post"/>).</t>
        <t>While storing the access token, the KDC MUST store the 'kdcchallenge' value associated with the Client at least until it receives a Join Request from the Client (see <xref target="ssec-key-distribution-exchange"/>), to be able to verify the PoP evidence provided during the join process, and thus that the Client possesses its own private key. The KDC deletes the 'kdcchallenge' value associated with the Client upon deleting the access token (e.g., upon its expiration, see <xref section="5.10.3" sectionFormat="of" target="RFC9200"/>).</t>
        <t>The same 'kdcchallenge' value MAY be reused several times by the Client, to generate a new PoP evidence, e.g., in case the Client provides the KDC with a new authentication credential while being a group member (see <xref target="update-pub-key"/>), or joins a different group where it intends to use a different authentication credential. Therefore, it is RECOMMENDED that the KDC keeps storing the 'kdcchallenge' value after the first join is processed as well. If, upon receiving a Join Request from a Client, the KDC has already discarded the 'kdcchallenge' value, that will trigger an error response with a newly generated 'kdcchallenge' value that the Client can use to restart the join process, as specified in <xref target="ssec-key-distribution-exchange"/>.</t>
        <t>If 'sign_info' is included in the Token Transfer Request, the KDC SHOULD include the 'sign_info' parameter in the Token Transfer Response, as per the format defined in <xref target="sign-info"/>. Note that the field 'id' of each 'sign_info_entry' specifies the name, or array of group names, to which that 'sign_info_entry' applies. As an exception, the KDC MAY omit the 'sign_info' parameter in the Token Transfer Response even if 'sign_info' is included in the Token Transfer Request, in case none of the groups that the Client is authorized to join uses signatures to achieve source authentication.</t>
        <t>Note that the CBOR map specified as payload of the 2.01 (Created) response may include further parameters, e.g., according to the used transport profile of ACE. Application profiles of this specification MAY define additional parameters to use within this exchange (OPT2).</t>
        <t>Application profiles of this specification MAY define alternative specific negotiations of parameter values for the signature algorithm and signature keys, if 'sign_info' is not used (OPT3).</t>
        <t>If allowed by the used transport profile of ACE, the Client may provide the Access Token to the KDC by other means than the Token Transfer Request. An example is the DTLS transport profile of ACE, where the Client can provide the access token to the KDC during the secure session establishment (see <xref section="3.3.2" sectionFormat="of" target="RFC9202"/>).</t>
        <section anchor="sign-info">
          <name>'sign_info' Parameter</name>
          <t>The 'sign_info' parameter is an OPTIONAL parameter of the request and response messages exchanged between the Client and the authz-info endpoint at the RS (see <xref section="5.10.1." sectionFormat="of" target="RFC9200"/>).</t>
          <t>This parameter allows the Client and the RS to exchange information about a signature algorithm and about authentication credentials to accordingly use for signature verification. Its exact semantics and content are application specific.</t>
          <t>In this specification and in application profiles building on it, this parameter is used to exchange information about the signature algorithm and about authentication credentials to be used with it, in the groups indicated by the transferred access token as per its 'scope' claim (see <xref target="ssec-authorization-response"/>).</t>
          <t>When used in the Token Transfer Request sent to the KDC (see <xref target="token-post"/>), the 'sign_info' parameter specifies the CBOR simple value "null" (0xf6). This is done to ask for information about the signature algorithm and about the authentication credentials used in the groups that, as per the granted roles, the Client has been authorized to join or interact with (e.g., as an external signature verifier).</t>
          <t>When used in the following Token Transfer Response from the KDC (see <xref target="token-post"/>), the 'sign_info' parameter is a CBOR array of one or more elements. The number of elements is at most the number of groups that the Client has been authorized to join or interact with. Each element contains information about signing parameters and about authentication credentials for one or more groups, and is formatted as follows.</t>
          <ul spacing="normal">
            <li>The first element 'id' is a group name or a CBOR array of group names, associated with groups for which the next four elements apply. Each specified group name is a CBOR text string and is hereafter referred to as 'gname'.</li>
            <li>The second element 'sign_alg' is a CBOR integer or a text string, indicating the signature algorithm used in the groups identified by the 'gname' values. It is REQUIRED of application profiles to define specific values that this parameter can take (REQ3), selected from the set of signing algorithms of the COSE Algorithms registry <xref target="COSE.Algorithms"/>.</li>
            <li>The third element 'sign_parameters' is a CBOR array indicating the parameters of the signature algorithm used in the groups identified by the 'gname' values. Its content depends on the value of 'sign_alg'. It is REQUIRED of application profiles to define the possible values and structure for the elements of this parameter (REQ4).</li>
            <li>The fourth element 'sign_key_parameters' is a CBOR array indicating the parameters of the key used with the signature algorithm, in the groups identified by the 'gname' values. Its content depends on the value of 'sign_alg'. It is REQUIRED of application profiles to define the possible values and structure for the elements of this parameter (REQ5).</li>
            <li>The fifth element 'cred_fmt' is either a CBOR integer indicating the format of authentication credentials used in the groups identified by the 'gname' values, or has value the CBOR simple value "null" (0xf6) indicating that the KDC does not act as repository of authentication credentials for group members. Its acceptable integer values are taken from the 'Label' column of the "COSE Header Parameters" registry <xref target="COSE.Header.Parameters"/>, with some of those values also indicating the type of container to use for exchanging the authentication credentials with the KDC (e.g., a chain or bag of certificates). It is REQUIRED of application profiles to define specific values to use for this parameter, consistently with the acceptable formats of authentication credentials (REQ6).</li>
          </ul>
          <t>The CDDL notation <xref target="RFC8610"/> of the 'sign_info' parameter is given below.</t>
          <sourcecode type="CDDL"><![CDATA[
sign_info = sign_info_req / sign_info_resp

sign_info_req  = null                  ; in the Token Transfer
                                       ; Request to the KDC

sign_info_resp = [ + sign_info_entry ] ; in the Token Transfer
                                       ; Response from the KDC

sign_info_entry =
[
  id : gname / [ + gname ],
  sign_alg : int / tstr,
  sign_parameters : [ any ],
  sign_key_parameters : [ + parameter : any ],
  cred_fmt : int / null
]

gname = tstr
]]></sourcecode>
          <t>This format is consistent with every signature algorithm currently defined in <xref target="RFC9053"/>, i.e., with algorithms that have only the COSE key type as their COSE capability. <xref target="sec-future-cose-algs"/> describes how the format of each 'sign_info_entry' can be generalized for possible future registered algorithms having a different set of COSE capabilities.</t>
        </section>
        <section anchor="kdcchallenge">
          <name>'kdcchallenge' Parameter</name>
          <t>The 'kdcchallenge' parameter is an OPTIONAL parameter of the response message returned from the authz-info endpoint at the RS, as defined in <xref section="5.10.1" sectionFormat="of" target="RFC9200"/>. This parameter contains a challenge generated by the RS and provided to the Client.</t>
          <t>In this specification and in application profiles building on it, the Client can use this challenge to prove possession of its own private key in the Join Request (see the 'client_cred_verify' parameter in <xref target="gid-post"/>).</t>
        </section>
      </section>
    </section>
    <section anchor="key-distr">
      <name>KDC Functionalities</name>
      <t>This section describes the functionalities provided by the KDC, as related to the provisioning of the keying material as well as to the group membership management.</t>
      <t>In particular, this section defines the interface available at the KDC; specifies the handlers of each resource provided by the KDC interface; and describes how Clients interact with those resources to join a group and to perform additional operations as group members.</t>
      <t>A key operation that the Client can perform after transferring the access token to the KDC is a Join Request-Response exchange with the KDC. In the Join Request, the Client specifies the group it requests to join (see <xref target="ssec-key-distribution-exchange"/>). The KDC will then verify the access token and that the Client is authorized to join the specified group. If so, the KDC provides the Client with the keying material to securely communicate with the other members of the group.</t>
      <t>Later on as a group member, the Client can also rely on the interface at the KDC to perform additional operations, consistent with the roles it has in the group.</t>
      <section anchor="kdc-if">
        <name>Interface at the KDC</name>
        <t>The KDC provides its interface by hosting the following resources. Note that the root url-path "ace-group" used hereafter is a default name; implementations are not required to use this name, and can define their own instead.</t>
        <t>If request messages sent to the KDC as well as success response messages from the KDC include a payload and specify a Content-Format, those messages MUST have Content-Format set to application/ace-groupcomm+cbor, defined in <xref target="content-type"/>. CBOR labels for the message parameters are defined in <xref target="params"/>.</t>
        <ul spacing="normal">
          <li>
            <t>/ace-group : the path of this root resource is invariant once the resource is established, and indicates that this specification is used. If other applications run on a KDC implementing this specification and use this same path, those applications will collide, and a mechanism will be needed to differentiate the endpoints.  </t>
            <t>
A Client can access this resource in order to retrieve a set of group names, each corresponding to one of the specified group identifiers. This operation is described in <xref target="retrieval-gnames"/>.  </t>
            <t>
Clients may be authorized to access this resource even without being members of any group at the KDC, and even if they are not authorized to become group members (e.g., when authorized to be external signature verifiers).  </t>
            <t>
The Interface Description (if=) Link Target Attribute value "ace.groups" is registered in <xref target="if-ace-group"/> and can be used to describe the interface provided by this root resource.  </t>
            <t>
The example below shows an exchange with a KDC with address 2001:db8::ab that hosts the resource /ace-group and returns a link to such a resource in link-format <xref target="RFC6690"/>.  </t>
            <artwork><![CDATA[
Request:

Header: GET (Code=0.01)
Uri-Host: "kdc.example.com"
Uri-Path: ".well-known"
Uri-Path: "core"
Uri-Query: "if=ace.groups"

Response:

Header: Content (Code=2.05)
Content-Format: 40 (application/link-format)
Payload:
  <coap://[2001:db8::ab]/ace-group>;if="ace.groups"
]]></artwork>
          </li>
          <li>
            <t>/ace-group/GROUPNAME : one such sub-resource to /ace-group is hosted for each group with name GROUPNAME that the KDC manages. In particular, it is the group-membership resource associated with that group, of which it contains the symmetric group keying material.  </t>
            <t>
A Client can access this resource in order to join the group with name GROUPNAME, or later as a group member to retrieve the current group keying material. These operations are described in <xref target="ssec-key-distribution-exchange"/> and <xref target="ssec-key-material-retrieval"/>, respectively.  </t>
            <t>
The Interface Description (if=) Link Target Attribute value "ace.group" is registered in <xref target="if-ace-group"/> and can be used to describe the interface provided by a group-membership resource.  </t>
            <t>
The example below shows an exchange with a KDC with address 2001:db8::ab that hosts the group-membership resource /ace-group/gp1 and returns a link to such a resource in link-format <xref target="RFC6690"/>.  </t>
            <artwork><![CDATA[
Request:

Header: GET (Code=0.01)
Uri-Host: "kdc.example.com"
Uri-Path: ".well-known"
Uri-Path: "core"
Uri-Query: "if=ace.group"

Response:

Header: Content (Code=2.05)
Content-Format: 40 (application/link-format)
Payload:
  <coap://[2001:db8::ab]/ace-group/gp1>;if="ace.group"
]]></artwork>
            <t>
If it is not required that the value of the GROUPNAME URI path and the group name in the access token scope ('gname' in <xref target="ssec-authorization-response"/>) coincide, the KDC MUST implement a mechanism to map the GROUPNAME value in the URI to the group name, in order to refer to the correct group (REQ7).</t>
          </li>
          <li>
            <t>/ace-group/GROUPNAME/creds : the path of this resource is invariant once the resource is established. This resource contains the authentication credentials of all the members of the group with name GROUPNAME.  </t>
            <t>
This resource is created only in case the KDC acts as a repository of authentication credentials for group members.  </t>
            <t>
As a group member, a Client can access this resource in order to retrieve the authentication credentials of other group members. That is, the Client can retrieve the authentication credentials of all the current group members, or a subset of them by specifying filter criteria. These operations are described in <xref target="sec-key-retrieval-all"/> and <xref target="sec-key-retrieval"/>, respectively.  </t>
            <t>
Clients may be authorized to access this resource even without being group members, e.g., if authorized to be external signature verifiers for the group.</t>
          </li>
          <li>
            <t>/ace-group/GROUPNAME/kdc-cred : the path of this resource is invariant once the resource is established. This resource contains the authentication credential of the KDC for the group with name GROUPNAME.  </t>
            <t>
This resource is created only in case the KDC has an associated authentication credential and this is required for the correct group operation. It is REQUIRED of application profiles to define whether the KDC has such an associated authentication credential (REQ8).  </t>
            <t>
As a group member, a Client can access this resource in order to retrieve the current authentication credential of the KDC.  </t>
            <t>
Clients may be authorized to access this resource even without being group members, e.g., if authorized to be external signature verifiers for the group.</t>
          </li>
          <li>
            <t>/ace-group/GROUPNAME/policies : the path of this resource is invariant once the resource is established. This resource contains the group policies of the group with name GROUPNAME.  </t>
            <t>
A Client can access this resource as a group member in order to retrieve the group policies. This operation is described in <xref target="policies"/>.</t>
          </li>
          <li>
            <t>/ace-group/GROUPNAME/num : the path of this resource is invariant once the resource is established. This resource contains the current version number for the symmetric group keying material of the group with name GROUPNAME.  </t>
            <t>
A Client can access this resource as a group member in order to retrieve the version number of the keying material currently used in the group. This operation is described in <xref target="key-version"/>.</t>
          </li>
          <li>
            <t>/ace-group/GROUPNAME/nodes/NODENAME : one such sub-resource of /ace-group/GROUPNAME is hosted for each group member of the group with name GROUPNAME. Each such resource is identified by the node name NODENAME of the associated group member, and contains the group keying material and the individual keying material for that group member.  </t>
            <t>
A Client as a group member can access this resource in order to retrieve the current group keying material together with its individual keying material; request new individual keying material to use in the group; and leave the group. These operations are described in <xref target="update-keys"/>, <xref target="new-keys"/>, and <xref target="ssec-group-leaving"/>, respectively.</t>
          </li>
          <li>
            <t>/ace-group/GROUPNAME/nodes/NODENAME/cred : the path of this resource is invariant once the resource is established. This resource contains the individual authentication credential for the node with name NODENAME, as group member of the group with name GROUPNAME.  </t>
            <t>
A Client can access this resource in order to upload at the KDC a new authentication credential to use in the group. This operation is described in <xref target="update-pub-key"/>.  </t>
            <t>
This resource is not created if the group member does not have an authentication credential to use in the group, or if the KDC does not store the authentication credentials of group members.</t>
          </li>
        </ul>
        <t>The KDC is expected to fully provide the interface defined above. It is otherwise REQUIRED of the application profiles of this specification to indicate which resources are not hosted, i.e., which parts of the interface defined in this section are not supported by the KDC (REQ9). Application profiles of this specification MAY extend the KDC interface, by defining additional handlers, as well as defining additional resources and their handlers.</t>
        <t>It is REQUIRED of application profiles of this specification to register a Resource Type for the group-membership resource (REQ10), i.e., the group-membership resource at /ace-group/GROUPNAME. This Resource Type can be used to discover the correct URL for sending a Join Request to the KDC. This Resource Type can also be used to indicate which specific application profile of this specification is used by a specific group-membership resource at the KDC.</t>
        <t>It is REQUIRED of application profiles of this specification to define what specific actions (e.g., CoAP methods) are allowed on each resource provided by the KDC interface, depending on whether the Client is a current group member; the roles that a Client is authorized to take as per the obtained access token (see <xref target="ssec-authorization-request"/>); and the roles that the Client has as current group member (REQ11).</t>
        <section anchor="client-operations">
          <name>Operations Supported by Clients</name>
          <t>It is expected that a Client minimally supports the following set of primary operations and corresponding interactions with the KDC.</t>
          <ul spacing="normal">
            <li>FETCH request to /ace-group/ , in order to retrieve group names associated with group identifiers.</li>
            <li>POST and GET requests to /ace-group/GROUPNAME/ , in order to join a group (POST) and later retrieve the current group key material as a group member (GET).</li>
            <li>GET and FETCH requests to /ace-group/GROUPNAME/creds , in order to retrieve the authentication credentials of all the other group members (GET) or only some of them by filtering (FETCH). While retrieving authentication credentials remains possible by using GET requests, retrieval by filtering allows Clients to greatly limit the size of exchanged messages.</li>
            <li>GET request to /ace-group/GROUPNAME/num , in order to retrieve the current version of the group key material as a group member.</li>
            <li>DELETE request to /ace-group/GROUPNAME/nodes/NODENAME , in order to leave the group.</li>
          </ul>
          <t>In addition, some Clients may rather not support the following set of secondary operations and corresponding interactions with the KDC. This can be specified, for instance, in compliance documents defining minimalistic Clients and their capabilities in specific deployments. In turn, these might also have to consider the used application profile of this specification.</t>
          <ul spacing="normal">
            <li>GET request to /ace-group/GROUPNAME/kdc-cred , in order to retrieve the current authentication credential of the KDC. This is relevant only if the KDC has an associated authentication credential and this is required for the correct group operation.</li>
            <li>GET request to /ace-group/GROUPNAME/policies , in order to retrieve the current group policies as a group member.</li>
            <li>GET request to /ace-group/GROUPNAME/nodes/NODENAME , in order to retrieve the current group keying material and individual keying material. The former can also be retrieved through a GET request to /ace-group/GROUPNAME/ (see above).</li>
            <li>PUT request to /ace-group/GROUPNAME/nodes/NODENAME , in order to ask for new individual keying material. Alternatively, the Client could obtain new individual keying material by re-joining the group through a POST request to /ace-group/GROUPNAME/ (see above). Furthermore, depending on its roles in the group or on the application profile of this specification, the Client might simply not be associated with any individual keying material.</li>
            <li>POST request to /ace-group/GROUPNAME/nodes/NODENAME/cred , in order to provide the KDC with a new authentication credential. Alternatively, the Client could provide a new authentication credential by re-joining the group through a POST request to /ace-group/GROUPNAME/ (see above). Furthermore, depending on its roles in the group, the Client might simply not have an associated authentication credential to provide.</li>
          </ul>
          <t>It is REQUIRED of application profiles of this specification to categorize possible newly defined operations for Clients into primary operations and secondary operations, and to provide accompanying considerations (REQ12).</t>
        </section>
        <section anchor="kdc-if-errors">
          <name>Error Handling</name>
          <t>Upon receiving a request from a Client, the KDC MUST check that it is storing a valid access token from that Client. If this is not the case, the KDC MUST reply with a 4.01 (Unauthorized) error response.</t>
          <t>Unless the request targets the /ace-group resource, the KDC MUST check that it is storing a valid access token from that Client such that:</t>
          <ul spacing="normal">
            <li>The scope specified in the access token includes a scope entry related to the group name GROUPNAME associated with the targeted resource; and</li>
            <li>The set of roles specified in that scope entry allows the Client to perform the requested operation on the targeted resource (REQ11).</li>
          </ul>
          <t>In case the KDC stores a valid access token but the verifications above fail, the KDC MUST reply with a 4.03 (Forbidden) error response. This response MAY be an AS Request Creation Hints, as defined in <xref section="5.3" sectionFormat="of" target="RFC9200"/>, in which case the Content-Format MUST be set to application/ace+cbor.</t>
          <t>If the request is not formatted correctly (e.g., required fields are not present or are not encoded as expected), the handler MUST reply with a 4.00 (Bad Request) error response.</t>
          <t>If the request includes unknown or non-expected fields, the handler MUST silently ignore them and continue processing the request. Application profiles of this specification MAY define optional or mandatory payload formats for specific error cases (OPT4).</t>
          <t>Some error responses from the KDC can convey error-specific information according to the problem-details format defined in <xref target="RFC9290"/>. Such error responses MUST have Content-Format set to application/concise-problem-details+cbor. The payload of these error responses MUST 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 MUST include the Custom Problem Detail entry 'ace-groupcomm-error' registered in <xref target="iana-custom-problem-details"/> of this document.  </t>
              <t>
This entry is formatted as a CBOR map including only one field, namely 'error-id'. The map key for 'error-id' is the CBOR unsigned integer with value 0. The value of 'error-id' is a CBOR integer specifying the error occurred at the KDC. This value is taken from the 'Value' column of the "ACE Groupcomm Errors" registry defined in <xref target="iana-ace-groupcomm-errors"/> of this document.  </t>
              <t>
The CDDL notation <xref target="RFC8610"/> of the 'ace-groupcomm-error' entry is given below.</t>
            </li>
          </ul>
          <sourcecode type="CDDL"><![CDATA[
   ace-groupcomm-error = {
     &(error-id: 0) => int
   }
]]></sourcecode>
          <ul spacing="normal">
            <li>
              <t>It MAY include further Standard Problem Detail entries or Custom Problem Detail entries (see <xref target="RFC9290"/>).  </t>
              <t>
In particular, it can include the Standard Problem Detail entry 'detail' (map key -2), whose value is a CBOR text string that specifies a human-readable, diagnostic description of the error occurred at the KDC. The diagnostic text is intended for software engineers as well as for device and network operators, in order to aid debugging and provide context for possible intervention. The diagnostic message SHOULD be logged by the KDC. The 'detail' entry is unlikely relevant in an unattended setup where human intervention is not expected.</t>
            </li>
          </ul>
          <t>An example of error response using the problem-details format is shown in <xref target="fig-exapmle-error-response"/>.</t>
          <figure anchor="fig-exapmle-error-response">
            <name>Example of Error Response with Problem Details</name>
            <artwork><![CDATA[
Response:

Header: Service Unavailable (Code=5.03)
Content-Format: application/concise-problem-details+cbor
Payload:
{
  / title /                -1: "No available node identifiers",
  / detail /               -2: "Things will change after a
                                group rekeying; try later",
  / ace-groupcomm-error /  TBD: {
    / error-id /  0: 4 / "No available node identifiers" /,
  }
}
]]></artwork>
          </figure>
          <t>Note to RFC Editor: In the figure above, please replace "TBD" with the unsigned integer assigned as key value to the Custom Problem Detail entry 'ace-groupcomm-error' (see <xref target="iana-custom-problem-details"/>). Then, please delete this paragraph.</t>
          <t>The problem-details format in general and the Custom Problem Detail entry 'ace-groupcomm-error' in particular are OPTIONAL to support for Clients. A Client supporting the entry 'ace-groupcomm-error' and able to understand the specified error may use that information to determine what actions to take next.</t>
          <t><xref target="error-types"/> of this specification defines an initial set of error identifiers, as possible values for the 'error-id' field. Application profiles of this specification inherit this initial set of error identifiers and MAY define additional values (OPT5).</t>
        </section>
      </section>
      <section anchor="ace-group">
        <name>/ace-group</name>
        <t>This resource implements the FETCH handler.</t>
        <section anchor="ace-group-fetch">
          <name>FETCH Handler</name>
          <t>The FETCH handler receives group identifiers and returns the corresponding group names and GROUPNAME URIs.</t>
          <t>The handler expects a request with payload formatted as a CBOR map, which MUST contain the following fields:</t>
          <ul spacing="normal">
            <li>'gid', whose value is encoded as a CBOR array, containing one or more group identifiers. The exact encoding of the group identifier MUST be specified by the application profile (REQ13). The Client indicates that it wishes to receive the group names of all the groups having these identifiers.</li>
          </ul>
          <t>The handler identifies the groups where communications are secured by using the keying material identified by those group identifiers.</t>
          <t>If all verifications succeed, the handler replies with a 2.05 (Content) response, whose payload is formatted as a CBOR map that MUST contain the following fields:</t>
          <ul spacing="normal">
            <li>'gid', whose value is encoded as a CBOR array, containing zero or more group identifiers. The handler indicates that those are the identifiers it is sending group names for. This CBOR array is a subset of the 'gid' array in the FETCH request.</li>
            <li>'gname', whose value is encoded as a CBOR array, containing zero or more group names. The elements of this array are encoded as text strings. Each element of index i in this CBOR array is associated with the element of index i in the 'gid' array.</li>
            <li>'guri', whose value is encoded as a CBOR array, containing zero or more URIs, each indicating a group-membership resource. The elements of this array are encoded as text strings. Each element of index i in this CBOR array is associated with the element of index i in the 'gid' array.</li>
          </ul>
          <t>If the KDC does not find any group associated with the specified group identifiers, the handler returns a response with payload formatted as a CBOR byte string of zero length.</t>
          <t>Note that the KDC only verifies that the node is authorized by the AS to access this resource. Nodes that are not members of the group but are authorized to do signature verification on the group messages may be allowed to access this resource, if the application needs it.</t>
          <section anchor="retrieval-gnames">
            <name>Retrieve Group Names</name>
            <t>In case the joining node only knows the group identifier of the group it wishes to join or about which it wishes to get updated information from the KDC, the node can contact the KDC to request the corresponding group name and group-membership resource URI. The node can request several group identifiers at once. It does so by sending a CoAP FETCH request to the /ace-group endpoint at the KDC formatted as defined in <xref target="ace-group-fetch"/>.</t>
            <t><xref target="fig-ace-group-fetch"/> gives an overview of the exchanges described above, and <xref target="fig-ace-group-fetch-2"/> shows an example.</t>
            <figure anchor="fig-ace-group-fetch">
              <name>Message Flow of Group Name and URI Retrieval Request-Response</name>
              <artwork align="center"><![CDATA[
Client                                                         KDC
   |                                                            |
   |------------ Group Name and URI Retrieval Request: -------->|
   |                      FETCH /ace-group                      |
   |                                                            |
   |<-- Group Name and URI Retrieval Response: 2.05 (Content) --|
   |                                                            |
]]></artwork>
            </figure>
            <figure anchor="fig-ace-group-fetch-2">
              <name>Example of Group Name and URI Retrieval Request-Response</name>
              <artwork><![CDATA[
Request:

Header: FETCH (Code=0.05)
Uri-Host: "kdc.example.com"
Uri-Path: "ace-group"
Content-Format: "application/ace-groupcomm+cbor"
Payload (in CBOR diagnostic notation):
  { "gid": [1, 2] }

Response:

Header: Content (Code=2.05)
Content-Format: "application/ace-groupcomm+cbor"
Payload (in CBOR diagnostic notation):
  { "gid": [1, 2], "gname": ["group1", "group2"],
    "guri": ["/ace-group/g1", "/ace-group/g2"] }
]]></artwork>
            </figure>
          </section>
        </section>
      </section>
      <section anchor="ace-groupgroupname">
        <name>/ace-group/GROUPNAME</name>
        <t>This resource implements the POST and GET handlers.</t>
        <section anchor="gid-post">
          <name>POST Handler</name>
          <t>The POST handler processes the Join Request sent by a Client to join a group, and returns a Join Response as successful result of the joining process (see <xref target="ssec-key-distribution-exchange"/>). At a high level, the POST handler adds the Client to the list of current group members, adds the authentication credential of the Client to the list of the group members' authentication credentials, and returns the symmetric group keying material for the group identified by GROUPNAME.</t>
          <t>The handler expects a request with payload formatted as a CBOR map, which MAY contain the following fields, which, if included, MUST have the format and value as specified below.</t>
          <ul spacing="normal">
            <li>'scope', with value the specific group that the Client is attempting to join, i.e., the group name, and the roles it wishes to have in the group. This value is a CBOR byte string wrapping one scope entry, as defined in <xref target="ssec-authorization-request"/>.</li>
            <li>
              <t>'get_creds', if the Client wishes to receive the authentication credentials of the current group members from the KDC. This parameter may be included in the Join Request if the KDC stores the authentication credentials of the group members, while it is not useful to include it if the Client obtains those authentication credentials through alternative means, e.g., from the AS. Note that including this parameter might result in a following Join Response of large size, which can be inconvenient for resource-constrained devices.  </t>
              <t>
If the Client wishes to retrieve the authentication credentials of all the current group members, the 'get_creds' parameter MUST encode the CBOR simple value "null" (0xf6). Otherwise, if the Client wishes to retrieve the authentication credentials of nodes with specific roles, the 'get_creds' parameter MUST encode a non-empty CBOR array, containing the three elements 'inclusion_flag', 'role_filter', and 'id_filter' as defined below.  </t>
              <ul spacing="normal">
                <li>The first element, namely 'inclusion_flag', encodes the CBOR simple value "true" (0xf5) if the Client wishes to receive the authentication credentials of the nodes having their node identifier specified in 'id_filter' (i.e., selection by inclusive filtering). Instead, this element encodes the CBOR simple value "false" (0xf4) if the Client wishes to receive the authentication credentials of the nodes not having the node identifiers specified in the third element 'id_filter' (i.e., selection by exclusive filtering). In the Join Request, this parameter encodes the CBOR simple value "true" (0xf5).</li>
                <li>
                  <t>The second element, namely 'role_filter', is a CBOR array. Each element of the array contains one role or a combination of roles for the group identified by GROUPNAME. This parameter indicates that the Client wishes to receive the authentication credentials of all the group members having any of the specified roles or combination of roles (i.e., having any of those single roles, or at least all the roles indicated in any of those combinations of roles).      </t>
                  <t>
For example, the array ["role1", "role2+role3"] indicates that the Client wishes to receive the authentication credentials of all group members that have at least "role1" or at least both "role2" and "role3". In the Join Request this parameter is a non-empty array.</t>
                </li>
                <li>
                  <t>The third element, namely 'id_filter', is a CBOR array. Each element of the array contains a node identifier of a group member for the group identified by GROUPNAME. This parameter indicates that the Client wishes to receive the authentication credentials of the nodes that have or do not have the specified node identifiers, based on the value of 'inclusion_flag' (i.e., as a selection by inclusive or exclusive filtering). In the Join Request, the Client does not filter authentication credentials based on node identifiers, so this parameter is an empty array.      </t>
                  <t>
In fact, when first joining the group, the Client is not expected or capable to express a filter based on node identifiers of other group members. Instead, when already a group member and sending a Join Request to re-join, the Client is not expected to include the 'get_creds' parameter in the Join Request altogether, since it can rather retrieve authentication credentials associated with specific group identifiers as defined in <xref target="sec-key-retrieval"/>.</t>
                </li>
              </ul>
              <t>
The CDDL definition <xref target="RFC8610"/> of 'get_creds' is given in <xref target="cddl-ex-getpubkeys"/>, using as example encoding: node identifier encoded as a CBOR byte string; role identifier encoded as a CBOR text string, and combination of roles encoded as a CBOR array of roles.  </t>
              <t>
Note that, for this handler, 'inclusion_flag' is always set to true, the array of roles 'role_filter' is always non-empty, while the array of node identifiers 'id_filter' is always empty. However, this is not necessarily the case for other handlers using the 'get_creds' parameter.</t>
            </li>
          </ul>
          <figure anchor="cddl-ex-getpubkeys">
            <name>CDDL definition of 'get_creds', using as example node identifier encoded as bstr and role as tstr</name>
            <sourcecode type="CDDL"><![CDATA[
inclusion_flag = bool

role = tstr
comb_role = [ 2*role ]
role_filter = [ *(role / comb_role) ]

id = bstr
id_filter = [ *id ]

get_creds = null / [ inclusion_flag, role_filter, id_filter]
]]></sourcecode>
          </figure>
          <ul spacing="normal">
            <li>'client_cred', encoded as a CBOR byte string, whose value is the original binary representation of the Client's authentication credential. This parameter MUST be present if the KDC is managing (collecting from/distributing to the Client) the authentication credentials of the group members and the Client's role in the group will require the Client to send messages to one or more group members. It is REQUIRED of application profiles to define the specific formats that are acceptable to use for authentication credentials in the group (REQ6).</li>
            <li>'cnonce', encoded as a CBOR byte string, and including a dedicated nonce N_C generated by the Client. This parameter MUST be present.</li>
            <li>
              <t>'client_cred_verify', encoded as a CBOR byte string. This parameter MUST be present if the 'client_cred' parameter is present and no authentication credential associated with the Client's token can be retrieved for that group.  </t>
              <t>
This parameter contains a proof-of-possession (PoP) evidence computed by the Client over the following PoP input: the scope (encoded as a CBOR byte string), concatenated with N_S (encoded as a CBOR byte string) concatenated with N_C (encoded as a CBOR byte string), where:  </t>
              <ul spacing="normal">
                <li>scope is the CBOR byte string either specified in the 'scope' parameter above, if present, or encoding a default scope entry that the handler is expected to know, if omitted.</li>
                <li>N_S is the challenge received from the KDC in the 'kdcchallenge' parameter of the 2.01 (Created) response to the Token Transfer Request (see <xref target="token-post"/>), encoded as a CBOR byte string.</li>
                <li>N_C is the nonce generated by the Client and specified in the 'cnonce' parameter above, encoded as a CBOR byte string.</li>
              </ul>
              <t>
An example of PoP input to compute 'client_cred_verify' using CBOR encoding is given in <xref target="fig-client-cred-input"/>.  </t>
              <t>
A possible type of PoP evidence is a signature that the Client computes by using its own private key, whose corresponding public key is specified in the authentication credential carried in the 'client_cred' parameter. Application profiles of this specification MUST specify the exact approaches used to compute the PoP evidence to include in 'client_cred_verify', and MUST specify which of those approaches is used in which case (REQ14).  </t>
              <t>
If the token was not provided to the KDC through a Token Transfer Request (e.g., it is used directly to validate TLS instead), it is REQUIRED of the specific application profile to define how the challenge N_S is generated (REQ15).</t>
            </li>
            <li>'creds_repo', which can be present if the format of the Client's authentication credential in the 'client_cred' parameter is a certificate. In such a case, this parameter has as value the URI of the certificate. This parameter is encoded as a CBOR text string. Alternative specific encodings of this parameter MAY be defined in application profiles of this specification (OPT6).</li>
            <li>
              <t>'control_uri', whose value is a full URI, encoded as a CBOR text string. A default url-path is /ace-group/GROUPNAME/node, although implementations can use different ones instead. The URI MUST NOT have url-path /ace-group/GROUPNAME.  </t>
              <t>
If 'control_uri' is specified in the Join Request, the Client acts as a CoAP server and hosts a resource at this specific URI. The KDC MAY use this URI to send CoAP requests to the Client (acting as CoAP server in this exchange), for example for one-to-one provisioning of new group keying material when performing a group rekeying (see <xref target="update-keys"/>), or to inform the Client of its removal from the group (see <xref target="sec-node-removal"/>).  </t>
              <t>
In particular, this resource is intended for communications concerning exclusively the group identified by GROUPNAME and whose group name is specified in the 'scope' parameter, if present. If the KDC does not implement mechanisms using this resource for that group, it can ignore this parameter. Other additional functionalities of this resource MAY be defined in application profiles of this specifications (OPT7).</t>
            </li>
          </ul>
          <figure anchor="fig-client-cred-input">
            <name>Example of PoP input to compute 'client_cred_verify' using CBOR encoding</name>
            <artwork><![CDATA[
scope, N_S, and N_C expressed in CBOR diagnostic notation:
  scope = h'826667726f7570316673656e646572'
  N_S   = h'018a278f7faab55a'
  N_C   = h'25a8991cd700ac01'


scope, N_S, and N_C as CBOR encoded byte strings:
  scope = 0x4f826667726f7570316673656e646572
  N_S   = 0x48018a278f7faab55a
  N_C   = 0x4825a8991cd700ac01

PoP input:
  0x4f 826667726f7570316673656e646572
    48 018a278f7faab55a 48 25a8991cd700ac01
]]></artwork>
          </figure>
          <t>If the request does not include a 'scope' field, the KDC is expected to understand what roles the Client is requesting to join the group with. For example, as per the access token, the Client might have been granted access to the group with only one role. If the KDC cannot determine which exact roles should be considered for the Client, it MUST reply with a 4.00 (Bad Request) error response.</t>
          <t>The handler considers the scope specified in the access token associated with the Client, and checks the scope entry related to the group identified by the GROUPNAME associated with the endpoint. In particular, the handler checks whether the set of roles specified in that scope entry includes all the roles that the Client wishes to have in the group as per the Join Request. If this is not the case, the KDC MUST reply with a 4.03 (Forbidden) error response.</t>
          <t>If the KDC manages the group members' authentication credentials, the handler checks if one is included in the 'client_cred' field. If so, the KDC retrieves the authentication credential and performs the following actions.</t>
          <ul spacing="normal">
            <li>If the access token was provided through a Token Transfer Request (see <xref target="token-post"/>) but the KDC cannot retrieve the 'kdcchallenge' associated with this Client (see <xref target="token-post"/>), the KDC MUST reply with a 4.00 (Bad Request) error response, which MUST also have Content-Format application/ace-groupcomm+cbor. The payload of the error response is a CBOR map including a newly generated 'kdcchallenge' value, which is specified in the 'kdcchallenge' parameter. The KDC MUST store the newly generated value as the 'kdcchallenge' value associated with this Client, replacing the currently stored value (if any).</li>
            <li>
              <t>The KDC checks the authentication credential to be valid for the group identified by GROUPNAME. That is, it checks that the authentication credential has the format used in the group, is intended for the public key algorithm used in the group, and is aligned with the possible associated parameters used in the group.  </t>
              <t>
If this verification fails, the handler MUST reply with a 4.00 (Bad Request) error response. The response MUST have Content-Format set to application/concise-problem-details+cbor and is formatted as defined in <xref target="kdc-if-errors"/>. Within the Custom Problem Detail entry 'ace-groupcomm-error', the value of the 'error-id' field  MUST be set to 2 ("Authentication credential incompatible with the group configuration").</t>
            </li>
            <li>
              <t>The KDC verifies the PoP evidence contained in the 'client_cred_verify' field. Application profiles of this specification MUST specify the exact approaches used to verify the PoP evidence, and MUST specify which of those approaches is used in which case (REQ14).  </t>
              <t>
If the PoP evidence does not pass verification, the handler MUST reply with a 4.00 (Bad Request) error response. The response MUST have Content-Format set to application/concise-problem-details+cbor and is formatted as defined in <xref target="kdc-if-errors"/>. Within the Custom Problem Detail entry 'ace-groupcomm-error', the value of the 'error-id' field  MUST be set to 3 ("Invalid Proof-of-Possession evidence").</t>
            </li>
          </ul>
          <t>If no authentication credential is included in the 'client_cred' field, the handler checks if an authentication credential is already associated with the received access token and to the group identified by GROUPNAME (see also <xref target="ssec-key-distribution-exchange"/>). Note that the same joining node may use different authentication credentials in different groups, and all those authentication credentials would be associated with the same access token.</t>
          <t>If an eligible authentication credential for the Client is neither present in the 'client_cred' field nor retrieved from the stored ones at the KDC, it is RECOMMENDED that the handler stops the processing and replies with a 4.00 (Bad Request) error response. Application profiles MAY define alternatives (OPT8).</t>
          <t>If, regardless of the reason, the KDC replies with a 4.00 (Bad Request) error response, the payload of the response MAY be a CBOR map. For instance, the CBOR map can include a 'sign_info' parameter formatted as 'sign_info_res' defined in <xref target="sign-info"/>, with the 'cred_fmt' element set to the CBOR simple value "null" (0xf6) if the Client sent its own authentication credential and the KDC is not set to store authentication credentials of the group members. When the response payload is a CBOR map including such parameters, the error response has Content-Format set to application/ace-groupcomm+cbor.</t>
          <t>If all the verifications above succeed, the KDC proceeds as follows.</t>
          <t>First, only in case the Client is not already a group member, the handler performs the following actions:</t>
          <ul spacing="normal">
            <li>The handler adds the Client to the list of current members of the group.</li>
            <li>The handler assigns a name NODENAME to the Client, and creates a sub-resource to /ace-group/GROUPNAME at the KDC, i.e., "/ace-group/GROUPNAME/nodes/NODENAME".</li>
            <li>The handler associates the node identifier NODENAME with the access token and the secure communication association for the Client.</li>
          </ul>
          <t>Then, the handler performs the following actions.</t>
          <ul spacing="normal">
            <li>
              <t>If the KDC manages the group members' authentication credentials:  </t>
              <ul spacing="normal">
                <li>The handler associates the retrieved Client's authentication credential to the tuple composed of the node name NODENAME, the group name GROUPNAME, and the received access token.</li>
                <li>The handler adds the retrieved Client's authentication credential to the stored list of authentication credentials stored for the group identified by GROUPNAME. If such list already includes an authentication credential for the Client, but a different authentication credential is specified in the 'client_cred' field, then the handler MUST replace the old authentication credential in the list with the one specified in the 'client_cred' field.</li>
              </ul>
            </li>
            <li>If backward security is prescribed by application policies installed at the KDC or by the used application profile of this specification, then the KDC MUST generate new group keying material and securely distribute it to the current group members (see <xref target="sec-group-rekeying"/>).</li>
            <li>The handler returns a successful Join Response as defined below, containing the symmetric group keying material; the group policies; and the authentication credentials of the current members of the group, if the KDC manages those and the Client requested them.</li>
          </ul>
          <t>The Join Response MUST have response code 2.01 (Created) if the Client has been added to the list of group members in this join exchange (see above), or 2.04 (Changed) otherwise, i.e., if the Client is re-joining the group without having left it.</t>
          <t>The Join Response message MUST include the Location-Path CoAP option, specifying the URI path to the sub-resource associated with the Client, i.e., "/ace-group/GROUPNAME/nodes/NODENAME".</t>
          <t>The Join Response message MUST have Content-Format application/ace-groupcomm+cbor. The payload of the response is formatted as a CBOR map, which MUST contain the following fields and values.</t>
          <ul spacing="normal">
            <li>'gkty', identifying the key type of the keying material specified in the 'key' parameter. This parameter is encoded as a CBOR integer or a CBOR text string. The set of values can be found in the "Key Type" column of the "ACE Groupcomm Key Types" registry. Implementations MUST verify that the key type matches the application profile being used, if present, as registered in the "ACE Groupcomm Key Types" registry.</li>
            <li>'key', containing the keying material for the group communication, or information required to derive it.</li>
            <li>'num', containing the version number of the keying material for the group communication, formatted as a CBOR integer. This is a strictly monotonic increasing field. The application profile MUST define the initial version number (REQ16).</li>
          </ul>
          <t>The exact type of the keying material specified in the 'key' parameter MUST be defined in application profiles of this specification (REQ17), together with values of 'gkty' accepted by the application (REQ18). Additionally, documents specifying a type of keying material MUST register an entry in the "ACE Groupcomm Key Types" registry defined in <xref target="iana-key"/>, including its name, the corresponding value for the 'gkty parameter', and the application profile to be used with.</t>
          <figure anchor="fig-gkty">
            <name>ACE Groupcomm Key Types</name>
            <artwork align="center"><![CDATA[
+----------+----------------+---------+-------------+------------+
| Name     | Key Type Value | Profile | Description | Reference  |
+----------+----------------+---------+-------------+------------+
| Reserved | 0              |         | This value  | [RFC-XXXX] |
|          |                |         | is reserved |            |
+----------+----------------+---------+-------------+------------+
]]></artwork>
          </figure>
          <t>Note to RFC Editor: In <xref target="fig-gkty"/>, please replace "[RFC-XXXX]" with the RFC number of this specification and delete this paragraph.</t>
          <t>The Join Response SHOULD contain the following parameters:</t>
          <ul spacing="normal">
            <li>'exp', with value the expiration time of the keying material for the group communication, encoded as a CBOR unsigned integer. This field contains a numeric value representing the number of seconds from 1970-01-01T00:00:00Z UTC until the specified UTC date/time, ignoring leap seconds, analogous to what is specified for NumericDate in <xref section="2" sectionFormat="of" target="RFC7519"/>. Group members MUST NOT use the keying material after the time indicated in this field, and they can retrieve the new group keying material from the KDC.</li>
            <li>'exi', with value the residual lifetime of the keying material for the group communication, encoded as a CBOR unsigned integer. If the 'exp' parameter is included, this parameter MUST also be included. This field contains a numeric value representing the residual lifetime of the keying material in seconds, i.e., the number of seconds between the current time at the KDC and the time when the keying material expires (as specified in the 'exp' parameter, if present). A Client determines the expiration time of the keying material by adding the seconds specified in the 'exi' parameter to its current time upon receiving the response containing the 'exi' parameter. The Client MUST NOT use the keying material after such an expiration time, and it can retrieve the new group keying material from the KDC.</li>
          </ul>
          <t>If a Client has a reliable way to synchronize its internal clock with UTC, and both the 'exp' and 'exi' parameters are present, then the Client MUST use the 'exp' parameter value as expiration time for the group keying material. Otherwise, the Client uses the 'exi' parameter value.</t>
          <t>When a Client relies on the 'exi' parameter, the expiration time that it computes is offset in the future with respect to the actual expiration time as intended by the KDC and specified in the 'exp' parameter (if present). Such an offset is the amount of time between when the KDC sends the response message including the 'exi' parameter and when the Client receives that message. That is, especially if the delivery of the response to the Client is delayed, the Client will believe the keying material to be valid for a longer time than the KDC actually means. However, before approaching the actual expiration time, the KDC is expected to rekey the group and distribute new keying material (see <xref target="sec-group-rekeying"/>).</t>
          <t>Optionally, the Join Response MAY contain the following parameters, which, if included, MUST have the format and value as specified below.</t>
          <ul spacing="normal">
            <li>'ace_groupcomm_profile', with value a CBOR integer that MUST be used to uniquely identify the application profile for group communication. Applications of this specification MUST register an application profile identifier and the related value for this parameter in the "ACE Groupcomm Profiles" registry (REQ19).</li>
          </ul>
          <figure anchor="ace-groupcomm-profile-0">
            <name>ACE Groupcomm Profiles</name>
            <artwork align="center"><![CDATA[
+----------+------------------------+------------+------------+
| Name     | Description            | CBOR Value | Reference  |
+----------+------------------------+------------+------------+
| Reserved | This value is reserved | 0          | [RFC-XXXX] |
+----------+------------------------+------------+------------+
]]></artwork>
          </figure>
          <t>Note to RFC Editor: In <xref target="ace-groupcomm-profile-0"/>, please replace "[RFC-XXXX]" with the RFC number of this specification and delete this paragraph.</t>
          <ul spacing="normal">
            <li>'creds', which MUST be present if 'get_creds' was present in the request, otherwise it MUST NOT be present. This parameter is a CBOR array specifying the authentication credentials of the group members, i.e., of all of them or of the ones selected according to the 'get_creds' parameter in the request. In particular, each element of the array is a CBOR byte string, whose value is the original binary representation of a group member's authentication credential. It is REQUIRED of application profiles to define the specific formats of authentication credentials that are acceptable to use in the group (REQ6).</li>
            <li>
              <t>'peer_roles', which SHOULD be present if 'creds' is also present, otherwise it MUST NOT be present. This parameter is a CBOR array of n elements, where n is the number of authentication credentials included in the 'creds' parameter (at most the number of members in the group). The i-th element of the array specifies the role(s) that the group member associated with the i-th authentication credential in 'creds' has in the group. In particular, each array element is encoded like the role element of a scope entry, consistent with the used format (see <xref target="ssec-authorization-request"/>).  </t>
              <t>
This parameter MAY be omitted if the Client can rely on other means to unambiguously gain knowledge of the role of each group member whose associated authentication credential is specified in the 'creds' parameter. For example, all such group members may have the same role in the group joined by the Client, and such a role can be unambiguously assumed by the Client (e.g., based on what is defined in the used application profile of this specification). As another example, each of the authentication credentials specified in the 'creds' parameter can indicate the role(s) that the corresponding group member has in the group joined by the Client.  </t>
              <t>
When receiving the authentication credential of a Client in the 'client_cred' parameter of a Join Request (see <xref target="ssec-key-distribution-exchange"/>) or of an Authentication Credential Update Request (see <xref target="update-pub-key"/>), the KDC is not expected to check that the authentication credential indicates the role(s) that the Client can have or has in the group in question. When preparing a Join Response, the KDC can decide whether to include the 'peer_roles' parameter depending on the specific set of authentication credentials specified in the 'creds' parameter of that Join Response.</t>
            </li>
            <li>'peer_identifiers', which MUST be present if 'creds' is also present, otherwise it MUST NOT be present. This parameter is a CBOR array of n elements, where n is the number of authentication credentials included in the 'creds' parameter (at most the number of members in the group). The i-th element of the array specifies the node identifier that the group member associated with the i-th authentication credential in 'creds' has in the group. In particular, the i-th array element is encoded as a CBOR byte string, whose value is the node identifier of the group member. The specific format of node identifiers of group members is specified by the application profile (REQ25).</li>
            <li>'group_policies', with value a CBOR map, whose entries specify how the group handles specific management aspects. These include, for instance, approaches to achieve synchronization of sequence numbers among group members. The elements of this field are registered in the "ACE Groupcomm Policies" registry. This specification defines the three elements "Sequence Number Synchronization Methods", "Key Update Check Interval", and "Expiration Delta", which are summarized in <xref target="fig-ACE-Groupcomm-Policies"/>. Application profiles that build on this document MUST specify the exact content format and default value of included map entries (REQ20).</li>
          </ul>
          <figure anchor="fig-ACE-Groupcomm-Policies">
            <name>ACE Groupcomm Policies</name>
            <artwork align="center"><![CDATA[
+--------------+-------+--------+----------------------+------------+
|     Name     | CBOR  |  CBOR  |     Description      | Reference  |
|              | label |  type  |                      |            |
+--------------+-------+--------+----------------------+------------+
| Sequence     | 0     | int or | Method for recipient | [RFC-XXXX] |
| Number       |       | tstr   | group members to     |            |
| Synchroniza- |       |        | synchronize with     |            |
| tion Method  |       |        | sequence numbers of  |            |
|              |       |        | sender group         |            |
|              |       |        | members. Its value   |            |
|              |       |        | is taken from the    |            |
|              |       |        | 'Value' column of    |            |
|              |       |        | the Sequence Number  |            |
|              |       |        | Synchronization      |            |
|              |       |        | Method registry      |            |
+--------------+-------+--------+----------------------+------------+
| Key Update   | 1     | int    | Polling interval in  | [RFC-XXXX] |
| Check        |       |        | seconds, for group   |            |
| Interval     |       |        | members to check at  |            |
|              |       |        | the KDC if the       |            |
|              |       |        | latest group keying  |            |
|              |       |        | material is the one  |            |
|              |       |        | that they store      |            |
+--------------+-------+--------+----------------------+------------+
| Expiration   | 2     | uint   | Number of seconds    | [RFC-XXXX] |
| Delta        |       |        | from 'exp' until a   |            |
|              |       |        | UTC date/time, after |            |
|              |       |        | which group members  |            |
|              |       |        | MUST stop using the  |            |
|              |       |        | group keying         |            |
|              |       |        | material that they   |            |
|              |       |        | store to decrypt     |            |
|              |       |        | incoming messages    |            |
+--------------+-------+--------+----------------------+------------+
]]></artwork>
          </figure>
          <t>Note to RFC Editor: In <xref target="fig-ACE-Groupcomm-Policies"/>, please replace all occurrences of "[RFC-XXXX]" with the RFC number of this specification and delete this paragraph.</t>
          <ul spacing="normal">
            <li>
              <t>'kdc_cred', encoded as a CBOR byte string, whose value is the original binary representation of the KDC's authentication credential. This parameter is used if the KDC has an associated authentication credential and this is required for the correct group operation. It is REQUIRED of application profiles to define whether the KDC has an authentication credential and if this has to be provided through the 'kdc_cred' parameter (REQ8).  </t>
              <t>
In such a case, the KDC's authentication credential MUST have the same format used for the authentication credentials of the group members. It is REQUIRED of application profiles to define the specific formats that are acceptable to use for the authentication credentials in the group (REQ6).</t>
            </li>
            <li>'kdc_nonce', encoded as a CBOR byte string, and including a dedicated nonce N_KDC generated by the KDC. This parameter MUST be present if the 'kdc_cred' parameter is present.</li>
            <li>
              <t>'kdc_cred_verify', encoded as a CBOR byte string. This parameter MUST be present if the 'kdc_cred' parameter is present.  </t>
              <t>
This parameter contains a proof-of-possession (PoP) evidence computed by the KDC over the following PoP input: the nonce N_C (encoded as a CBOR byte string) concatenated with the nonce N_KDC (encoded as a CBOR byte string), where:  </t>
              <ul spacing="normal">
                <li>N_C is the nonce generated by the Client and specified in the 'cnonce' parameter of the Join Request, encoded as a CBOR byte string.</li>
                <li>N_KDC is the nonce generated by the KDC and specified in the 'kdc_nonce' parameter, encoded as a CBOR byte string.</li>
              </ul>
              <t>
An example of PoP input to compute 'kdc_cred_verify' using CBOR encoding is given in <xref target="fig-kdc-cred-input"/>.  </t>
              <t>
A possible type of PoP evidence is a signature that the KDC computes by using its own private key, whose corresponding public key is specified in the authentication credential carried in the 'kdc_cred' parameter. Application profiles of this specification MUST specify the exact approaches used by the KDC to compute the PoP evidence to include in 'kdc_cred_verify', and MUST specify which of those approaches is used in which case (REQ21).</t>
            </li>
            <li>'rekeying_scheme', identifying the rekeying scheme that the KDC uses to provide new group keying material to the group members. This parameter is encoded as a CBOR integer, whose value is taken from the "Value" column of the "ACE Groupcomm Rekeying Schemes" registry defined in <xref target="iana-ace-groupcomm-rekeying-schemes"/> of this specification.</li>
          </ul>
          <figure anchor="rekeying-scheme-0">
            <name>ACE Groupcomm Rekeying Schemes</name>
            <artwork align="center"><![CDATA[
+-------+----------------+-------------------------------+------------+
| Value |      Name      |          Description          | Reference  |
+-------+----------------+-------------------------------+------------+
|   0   | Point-to-Point | The KDC individually targets  | [RFC-XXXX] |
|       |                | each node to rekey, using the |            |
|       |                | pairwise secure communication |            |
|       |                | association with that node    |            |
+-------+----------------+-------------------------------+------------+
]]></artwork>
          </figure>
          <t>Application profiles of this specification MAY define a default group rekeying scheme, to refer to in case the 'rekeying_scheme' parameter is not included in the Join Response (OPT9).</t>
          <t>Note to RFC Editor: In <xref target="rekeying-scheme-0"/>, please replace "[RFC-XXXX]" with the RFC number of this specification and delete this paragraph.</t>
          <ul spacing="normal">
            <li>
              <t>'mgt_key_material', encoded as a CBOR byte string and containing the specific administrative keying material that the joining node requires in order to participate in the group rekeying process performed by the KDC. This parameter MUST NOT be present if the 'rekeying_scheme' parameter is not present and the application profile does not specify a default group rekeying scheme to use in the group. Some simple rekeying schemes may not require specific administrative keying material to be provided, e.g., the basic "Point-to-Point" group rekeying scheme (see <xref target="point-to-point-rekeying"/>).  </t>
              <t>
In more advanced group rekeying schemes, the administrative keying material can be composed of multiple keys organized, for instance, into a logical tree hierarchy, whose root key is the only administrative key shared by all the group members. In such a case, each group member is exclusively associated with one leaf key in the hierarchy, and stores only the administrative keys from the associated leaf key all the way up along the path to the root key. That is, different group members can be provided with a different subset of the overall administrative keying material.  </t>
              <t>
It is expected from separate documents to define how the advanced group rekeying scheme possibly indicated in the 'rekeying_scheme' parameter is used by an application profile of this specification. This includes defining the format of the administrative keying material to specify in 'mgt_key_material', consistently with the group rekeying scheme and the application profile in question.</t>
            </li>
            <li>
              <t>'control_group_uri', with a full URI as value, encoded as a CBOR text string. The URI MUST specify addressing information intended to reach all the members in the group. For example, this can be a multicast IP address, optionally together with a port number that, if omitted, defaults to 5683, i.e., the default port number for the "coap" URI scheme (see <xref section="6.1" sectionFormat="of" target="RFC7252"/>). The URI MUST include GROUPNAME in the url-path. A default url-path is /ace-group/GROUPNAME, although implementations can use different ones instead. The URI MUST NOT have url-path /ace-group/GROUPNAME/node.  </t>
              <t>
If 'control_group_uri' is included in the Join Response, the Clients supporting this parameter act as CoAP servers, host a resource at this specific URI, and listen to the specified addressing information.  </t>
              <t>
The KDC MAY use this URI to send one-to-many CoAP requests to the Client group members (acting as CoAP servers in this exchange), for example for one-to-many provisioning of new group keying material when performing a group rekeying (see <xref target="update-keys"/>), or to inform the Clients of their removal from the group (see <xref target="sec-node-removal"/>).  </t>
              <t>
In particular, this resource is intended for communications concerning exclusively the group identified by GROUPNAME and whose group name was specified in the 'scope' parameter of the Join Request, if present. If the KDC does not implement mechanisms using this resource for that group, it can ignore this parameter. Other additional functionalities of this resource MAY be defined in application profiles of this specifications (OPT10).</t>
            </li>
          </ul>
          <figure anchor="fig-kdc-cred-input">
            <name>Example of PoP input to compute 'kdc_cred_verify' using CBOR encoding</name>
            <artwork><![CDATA[
N_C and N_KDC expressed in CBOR diagnostic notation:
  N_C   = h'25a8991cd700ac01'
  N_KDC = h'cef04b2aa791bc6d'


N_C and N_KDC as CBOR encoded byte strings:
  N_C   = 0x4825a8991cd700ac01
  N_KDC = 0x48cef04b2aa791bc6d

PoP input:
  0x48 25a8991cd700ac01 48 cef04b2aa791bc6d
]]></artwork>
          </figure>
          <t>After sending the Join Response, if the KDC has an associated authentication credential, the KDC MUST store the N_C value specified in the 'cnonce' parameter of the Join Request, as a 'clientchallenge' value associated with the Client, replacing the currently stored value (if any). If, as a group member, the Client later sends a GET request to the /ace-group/GROUPNAME/kdc-cred resource for retrieving the latest KDC's authentication credential (see <xref target="kdc-pub-key-get"/>), then the KDC is able to use the stored 'clientchallenge' for computing a PoP evidence to include in the response sent to the Client, hence proving the possession of its own private key.</t>
          <t>If the Join Response includes the 'kdc_cred_verify' parameter, the Client verifies the conveyed PoP evidence and considers the group joining unsuccessful in case of failed verification. Application profiles of this specification MUST specify the exact approaches used by the Client to verify the PoP evidence in 'kdc_cred_verify', and MUST specify which of those approaches is used in which case (REQ21).</t>
          <t>Specific application profiles that build on this document MUST specify the communication protocol that members of the group use to communicate with each other (REQ22) and how exactly the keying material is used to protect the group communication (REQ23).</t>
          <section anchor="ssec-key-distribution-exchange">
            <name>Join the Group</name>
            <t><xref target="fig-key-distr-join"/> gives an overview of the join exchange between the Client and the KDC, when the Client first joins a group, while <xref target="fig-key-distr-join-2"/> shows an example.</t>
            <figure anchor="fig-key-distr-join">
              <name>Message Flow of the Join Request-Response</name>
              <artwork align="center"><![CDATA[
Client                                                     KDC
   |                                                        |
   |-------- Join Request: POST /ace-group/GROUPNAME ------>|
   |                                                        |
   |<------------ Join Response: 2.01 (Created) ----------- |
   | Location-Path = "/ace-group/GROUPNAME/nodes/NODENAME"  |
]]></artwork>
            </figure>
            <figure anchor="fig-key-distr-join-2">
              <name>Example of First Join Request-Response for Group Joining</name>
              <artwork align="center"><![CDATA[
Request:

Header: POST (Code=0.02)
Uri-Host: "kdc.example.com"
Uri-Path: "ace-group"
Uri-Path: "g1"
Content-Format: "application/ace-groupcomm+cbor"
Payload (in CBOR diagnostic notation,
         with AUTH_CRED and POP_EVIDENCE being CBOR byte strings):
  { "scope": << [ "group1", ["sender", "receiver"] ] >> ,
    "get_creds": [true, ["sender"], []], "client_cred": AUTH_CRED,
    "cnonce": h'25a8991cd700ac01', "client_cred_verify": POP_EVIDENCE }

Response:

Header: Created (Code=2.01)
Content-Format: "application/ace-groupcomm+cbor"
Location-Path: "kdc.example.com"
Location-Path: "g1"
Location-Path: "nodes"
Location-Path: "c101"
Payload (in CBOR diagnostic notation,
         with KEY, AUTH_CRED_1, AUTH_CRED_2,
         ID_1, and ID_2 being CBOR byte strings):
  { "gkty": 13, "key": KEY, "num": 12, "exp": 1924992000,
    "exi": 2592000, "creds": [ AUTH_CRED_1, AUTH_CRED_2 ],
    "peer_roles": ["sender", ["sender", "receiver"]],
    "peer_identifiers": [ ID1, ID2 ] }
]]></artwork>
            </figure>
            <t>If not previously established, the Client and the KDC MUST first establish a pairwise secure communication association (REQ24). This can be achieved, for instance, by using a transport profile of ACE. The join exchange MUST occur over that secure communication association. The Client and the KDC MAY use that same secure communication association to protect further pairwise communications that must be protected.</t>
            <t>It is REQUIRED that the secure communication association between the Client and the KDC is established by using the proof-of-possession key bound to the access token. As a result, the proof-of-possession to bind the access token to the Client is performed by using the proof-of-possession key bound to the access token for establishing secure communication between the Client and the KDC.</t>
            <t>To join the group, the Client sends a CoAP POST request to the /ace-group/GROUPNAME endpoint at the KDC, where the group to join is identified by GROUPNAME. The group name is specified in the scope entry conveyed by the 'scope' parameter of the request (if present), formatted as specified in <xref target="gid-post"/>. This group name is the same as in the scope entry corresponding to that group, specified in the 'scope' parameter of the Authorization Request/Response, or it can be retrieved from it. Note that, in case of successful joining, the Client will receive the URI to retrieve individual keying material and to leave the group in the Location-Path option of the response.</t>
            <t>If the node is joining a group for the first time and the KDC maintains the authentication credentials of the group members, the Client is REQUIRED to send its own authentication credential and proof-of-possession (PoP) evidence in the Join Request (see the 'client_cred' and 'client_cred_verify' parameters in <xref target="gid-post"/>). The request is accepted only if both the authentication credential is provided and the PoP evidence is successfully verified.</t>
            <t>If a node re-joins a group as authorized by the same access token and using the same authentication credential, it can omit the authentication credential and the PoP evidence, or just the PoP evidence, from the Join Request. Then, the KDC will be able to retrieve the node's authentication credential associated with the access token for that group. If the authentication credential has been discarded, the KDC replies with a 4.00 (Bad Request) error response, as specified in <xref target="gid-post"/>. If a node re-joins a group but wants to update its own authentication credential, it needs to include both its authentication credential and the PoP evidence in the Join Request like when it joined the group for the first time.</t>
          </section>
        </section>
        <section anchor="gid-get">
          <name>GET Handler</name>
          <t>The GET handler returns the symmetric group keying material for the group identified by GROUPNAME.</t>
          <t>The handler expects a GET request.</t>
          <t>In addition to what is defined in <xref target="kdc-if-errors"/>, the handler verifies that the Client is a current member of the group. If the verification fails, the KDC MUST reply with a 4.03 (Forbidden) error response. The response MUST have Content-Format set to application/concise-problem-details+cbor and is formatted as defined in <xref target="kdc-if-errors"/>. Within the Custom Problem Detail entry 'ace-groupcomm-error', the value of the 'error-id' field  MUST be set to 0 ("Operation permitted only to group members").</t>
          <t>If all verifications succeed, the handler replies with a 2.05 (Content) response containing the symmetric group keying material. The payload of the response is formatted as a CBOR map which MUST contain the parameters 'gkty', 'key', and 'num' specified in <xref target="gid-post"/>.</t>
          <t>Each of the following parameters specified in <xref target="gid-post"/> MUST also be included in the payload of the response, if they are included in the payload of the Join Responses sent for the group: 'rekeying_scheme', 'mgt_key_material'.</t>
          <t>The payload MAY also include the parameters 'ace_groupcomm_profile', 'exp', and 'exi' specified in <xref target="gid-post"/>. If the 'exp' parameter is included, the 'exi' parameter MUST also be included. If the parameter 'exi' is included, its value specifies the residual lifetime of the group keying material from the current time at the KDC.</t>
          <section anchor="ssec-key-material-retrieval">
            <name>Retrieve Group Keying Material</name>
            <t>A node in the group can contact the KDC to retrieve the current group keying material, by sending a CoAP GET request to the /ace-group/GROUPNAME endpoint at the KDC, where the group is identified by GROUPNAME.</t>
            <t><xref target="fig-retrieve-key-material"/> gives an overview of the key distribution exchange between the Client and the KDC, when the Client first joins a group, while <xref target="fig-retrieve-key-material-2"/> shows an example.</t>
            <figure anchor="fig-retrieve-key-material">
              <name>Message Flow of Key Distribution Request-Response</name>
              <artwork align="center"><![CDATA[
Client                                                              KDC
   |                                                                 |
   |------ Key Distribution Request: GET /ace-group/GROUPNAME ------>|
   |                                                                 |
   |<----------- Key Distribution Response: 2.05 (Content) --------- |
   |                                                                 |
]]></artwork>
            </figure>
            <figure anchor="fig-retrieve-key-material-2">
              <name>Example of Key Distribution Request-Response</name>
              <artwork><![CDATA[
Request:

Header: GET (Code=0.01)
Uri-Host: "kdc.example.com"
Uri-Path: "ace-group"
Uri-Path: "g1"
Payload: -

Response:

Header: Content (Code=2.05)
Content-Format: "application/ace-groupcomm+cbor"
Payload (in CBOR diagnostic notation,
         with KEY being a CBOR byte strings):
  { "gkty": 13, "key": KEY, "num": 12 }
]]></artwork>
            </figure>
          </section>
        </section>
      </section>
      <section anchor="ace-groupgroupnamecreds">
        <name>/ace-group/GROUPNAME/creds</name>
        <t>This resource implements the GET and FETCH handlers.</t>
        <section anchor="pubkey-fetch">
          <name>FETCH Handler</name>
          <t>The FETCH handler receives identifiers of group members for the group identified by GROUPNAME and returns the authentication credentials of such group members.</t>
          <t>The handler expects a request with payload formatted as a CBOR map, which MUST contain the following field.</t>
          <ul spacing="normal">
            <li>
              <t>'get_creds', whose value is encoded as in <xref target="gid-post"/> with the following modifications.  </t>
              <ul spacing="normal">
                <li>
                  <t>The arrays 'role_filter' and 'id_filter' MUST NOT both be empty, i.e., in CDDL notation: [ bool, [ ], [ ] ]. If the 'get_creds' parameter has such a format, the request MUST be considered malformed, and the KDC MUST reply with a 4.00 (Bad Request) error response.      </t>
                  <t>
Note that a group member can retrieve the authentication credentials of all the current group members by sending a GET request to the same KDC resource instead (see <xref target="sec-key-retrieval-all"/>).</t>
                </li>
                <li>The element 'inclusion_flag' encodes the CBOR simple value "true" (0xf5) or "false" (0xf4), as defined in <xref target="gid-post"/>.</li>
                <li>The array 'role_filter' can be empty, if the Client does not wish to filter the requested authentication credentials based on the roles of the group members.</li>
                <li>The array 'id_filter' contains zero or more node identifiers of group members, for the group identified by GROUPNAME, as defined in <xref target="gid-post"/>. The array may be empty, if the Client does not wish to filter the requested authentication credentials based on the node identifiers of the group members.</li>
              </ul>
            </li>
          </ul>
          <t>Note that, in case the 'role_filter' array and the 'id_filter' array are both non-empty:</t>
          <ul spacing="normal">
            <li>If the 'inclusion_flag' encodes the CBOR simple value "true" (0xf5), the handler returns the authentication credentials of group members whose roles match with 'role_filter' and/or having their node identifier specified in 'id_filter'.</li>
            <li>If the 'inclusion_flag' encodes the CBOR simple value "false" (0xf4), the handler returns the authentication credentials of group members whose roles match with 'role_filter' and, at the same time, not having their node identifier specified in 'id_filter'.</li>
          </ul>
          <t>The specific format of authentication credentials as well as identifiers, roles, and combination of roles of group members MUST be specified by application profiles of this specification (REQ1, REQ6, REQ25).</t>
          <t>The handler identifies the authentication credentials of the current group members for which either of the following holds:</t>
          <ul spacing="normal">
            <li>the role identifier matches with one of those indicated in the request; note that the request can specify a combination of roles, in which case the handler selects only the group members that have all the roles included in the combination.</li>
            <li>the node identifier matches with one of those indicated in the request, or does not match with any of those, consistent with the value of the element 'inclusion_flag'.</li>
          </ul>
          <t>If all verifications succeed, the handler returns a 2.05 (Content) message response with payload formatted as a CBOR map, containing only the following parameters from <xref target="gid-post"/>.</t>
          <ul spacing="normal">
            <li>'num', which encodes the version number of the current group keying material.</li>
            <li>'creds', which encodes the list of authentication credentials of the selected group members.</li>
            <li>
              <t>'peer_roles', which encodes the role(s) that each of the selected group members has in the group.  </t>
              <t>
This parameter SHOULD be present and it MAY be omitted, according to the same criteria defined for the Join Response (see <xref target="gid-post"/>).</t>
            </li>
            <li>'peer_identifiers', which encodes the node identifier that each of the selected group members has in the group.</li>
          </ul>
          <t>The specific format of authentication credentials as well as of node identifiers of group members is specified by the application profile (REQ6, REQ25).</t>
          <t>If the KDC does not store any authentication credential associated with the specified node identifiers, the handler returns a response with payload formatted as a CBOR byte string of zero length.</t>
          <t>The handler MAY enforce one of the following policies, in order to handle possible node identifiers that are included in the 'id_filter' element of the 'get_creds' parameter of the request but are not associated with any current group member. Such a policy MUST be specified by the application profile (REQ26).</t>
          <ul spacing="normal">
            <li>The KDC silently ignores those node identifiers.</li>
            <li>
              <t>The KDC retains authentication credentials of group members for a given amount of time after their leaving, before discarding them. As long as such authentication credentials are retained, the KDC provides them to a requesting Client.  </t>
              <t>
If the KDC adopts this policy, the application profile MUST also specify the amount of time during which the KDC retains the authentication credential of a former group member after its leaving, possibly on a per-member basis.</t>
            </li>
          </ul>
          <t>Note that this resource handler only verifies that the node is authorized by the AS to access this resource. Nodes that are not members of the group but are authorized to do signature verifications on the group messages may be allowed to access this resource, if the application needs it.</t>
          <section anchor="sec-key-retrieval">
            <name>Retrieve a Subset of Authentication Credentials in the Group</name>
            <t>In case the KDC maintains the authentication credentials of group members, a node in the group can contact the KDC to request the authentication credentials, roles, and node identifiers of a specified subset of group members, by sending a CoAP FETCH request to the /ace-group/GROUPNAME/creds endpoint at the KDC, where the group is identified by GROUPNAME, and formatted as defined in <xref target="pubkey-fetch"/>.</t>
            <t><xref target="fig-public-key-1"/> gives an overview of the exchange mentioned above, while <xref target="fig-public-key-2"/> shows an example of such an exchange.</t>
            <figure anchor="fig-public-key-1">
              <name>Message Flow of Authentication Credential Request-Response to Obtain the Authentication Credentials of Specific Group Members</name>
              <artwork align="center"><![CDATA[
Client                                                      KDC
   |                                                         |
   |            Authentication Credential Request:           |
   |-------------------------------------------------------->|
   |             FETCH /ace-group/GROUPNAME/creds            |
   |                                                         |
   |<-- Authentication Credential Response: 2.05 (Created) --|
   |                                                         |
]]></artwork>
            </figure>
            <figure anchor="fig-public-key-2">
              <name>Example of Authentication Credential Request-Response to Obtain the Authentication Credentials of Specific Group Members</name>
              <artwork><![CDATA[
Request:

Header: FETCH (Code=0.05)
Uri-Host: "kdc.example.com"
Uri-Path: "ace-group"
Uri-Path: "g1"
Uri-Path: "creds"
Content-Format: "application/ace-groupcomm+cbor"
Payload (in CBOR diagnostic notation):
  { "get_creds": [true, [], [ ID_2, ID_3 ]] }

Response:

Header: Content (Code=2.05)
Content-Format: "application/ace-groupcomm+cbor"
Payload (in CBOR diagnostic notation,
         with AUTH_CRED_2, AUTH_CRED_3,
         ID_2, and ID_3 being CBOR byte strings):
  { "creds": [ AUTH_CRED_2, AUTH_CRED_3, ],
    "peer_roles": [ ["sender", "receiver"], "receiver" ],
    "peer_identifiers": [ ID_2, ID_3 ] }
]]></artwork>
            </figure>
          </section>
        </section>
        <section anchor="pubkey-get">
          <name>GET Handler</name>
          <t>The handler expects a GET request.</t>
          <t>If all verifications succeed, the KDC replies with a 2.05 (Content) response as in the FETCH handler in <xref target="pubkey-fetch"/>, but specifying in the payload the authentication credentials of all the group members, together with their roles and node identifiers.</t>
          <t>The parameter 'peer_roles' SHOULD be present in the payload of the response and it MAY be omitted, according to the same criteria defined for the Join Response (see <xref target="gid-post"/>).</t>
          <section anchor="sec-key-retrieval-all">
            <name>Retrieve All Authentication Credentials in the Group</name>
            <t>In case the KDC maintains the authentication credentials of group members, a group or an external signature verifier can contact the KDC to request the authentication credentials, roles, and node identifiers of all the current group members, by sending a CoAP GET request to the /ace-group/GROUPNAME/creds endpoint at the KDC, where the group is identified by GROUPNAME.</t>
            <t><xref target="fig-public-key-3"/> gives an overview of the message exchange, while <xref target="fig-public-key-4"/> shows an example of such an exchange.</t>
            <figure anchor="fig-public-key-3">
              <name>Message Flow of Authentication Credential Request-Response to Obtain the Authentication Credentials of all the Group Members</name>
              <artwork align="center"><![CDATA[
Client                                                      KDC
   |                                                         |
   |            Authentication Credential Request:           |
   |-------------------------------------------------------->|
   |              GET /ace-group/GROUPNAME/creds             |
   |                                                         |
   |<-- Authentication Credential Response: 2.05 (Content) --|
   |                                                         |
]]></artwork>
            </figure>
            <figure anchor="fig-public-key-4">
              <name>Example of Authentication Credential Request-Response to Obtain the Authentication Credentials of all the Group Members</name>
              <artwork><![CDATA[
Request:

Header: GET (Code=0.01)
Uri-Host: "kdc.example.com"
Uri-Path: "ace-group"
Uri-Path: "g1"
Uri-Path: "creds"
Payload: -

Response:

Header: Content (Code=2.05)
Content-Format: "application/ace-groupcomm+cbor"
Payload (in CBOR diagnostic notation,
         with AUTH_CRED_1, AUTH_CRED_2, AUTH_CRED_3,
         ID_1, ID_2, and ID_3 being CBOR byte strings):
  { "num": 5,
    "creds": [ AUTH_CRED_1, AUTH_CRED_2, AUTH_CRED_3 ],
    "peer_roles": ["sender", ["sender", "receiver"], "receiver"],
    "peer_identifiers": [ ID_1, ID_2, ID_3 ] }
]]></artwork>
            </figure>
          </section>
        </section>
      </section>
      <section anchor="ace-groupgroupnamekdc-cred">
        <name>/ace-group/GROUPNAME/kdc-cred</name>
        <t>This resource implements a GET handler.</t>
        <section anchor="kdc-pub-key-get">
          <name>GET Handler</name>
          <t>The handler expects a GET request.</t>
          <t>If all verifications succeed, the handler returns a 2.05 (Content) message containing the KDC's authentication credential together with a proof-of-possession (PoP) evidence. The response MUST have Content-Format set to application/ace-groupcomm+cbor. The payload of the response is a CBOR map, which includes the following fields.</t>
          <ul spacing="normal">
            <li>The 'kdc_cred' parameter, specifying the KDC's authentication credential. This parameter is encoded like the 'kdc_cred' parameter in the Join Response (see <xref target="gid-post"/>).</li>
            <li>The 'kdc_nonce' parameter, specifying a nonce generated by the KDC. This parameter is encoded like the 'kdc_nonce' parameter in the Join Response (see <xref target="gid-post"/>).</li>
            <li>
              <t>The 'kdc_cred_verify' parameter, specifying a PoP evidence computed by the KDC over the following PoP input: the nonce N_C (encoded as a CBOR byte string) concatenated with the nonce N_KDC (encoded as a CBOR byte string), where:  </t>
              <ul spacing="normal">
                <li>N_C is the nonce generated by the Client group member such that: i) the nonce was specified in the 'cnonce' parameter of the latest Join Request that the Client sent to the KDC in order to join the group identified by GROUPNAME; and ii) the KDC stored the nonce as 'clientchallenge' value associated with this Client as group member after sending the corresponding Join Response (see <xref target="gid-post"/>). This nonce is encoded as a CBOR byte string.</li>
                <li>N_KDC is the nonce generated by the KDC and specified in the 'kdc_nonce' parameter, encoded as a CBOR byte string.</li>
              </ul>
              <t>
An example of PoP input to compute 'kdc_cred_verify' using CBOR encoding is given in <xref target="fig-kdc-cred-input-2"/>.  </t>
              <t>
The PoP evidence is computed by means of the same method used for computing the PoP evidence that was included in the Join Response for this Client (see <xref target="gid-post"/>).  </t>
              <t>
Application profiles of this specification MUST specify the exact approaches used by the KDC to compute the PoP evidence to include in 'kdc_cred_verify', and MUST specify which of those approaches is used in which case (REQ21).  </t>
              <t>
If an application profile supports the presence of external signature verifiers that send GET requests to this resource, then the application profile MUST specify how external signature verifiers provide the KDC with a self-generated nonce to use as N_C (REQ21).</t>
            </li>
          </ul>
          <figure anchor="fig-kdc-cred-input-2">
            <name>Example of PoP input to compute 'kdc_cred_verify' using CBOR encoding</name>
            <artwork><![CDATA[
N_C and N_KDC expressed in CBOR diagnostic notation:
  N_C   = h'25a8991cd700ac01'
  N_KDC = h'0b7db12aaff56da3'


N_C and N_KDC as CBOR encoded byte strings:
  N_C   = 0x4825a8991cd700ac01
  N_KDC = 0x480b7db12aaff56da3

PoP input:
  0x48 25a8991cd700ac01 48 0b7db12aaff56da3
]]></artwork>
          </figure>
          <section anchor="kdc-pub-key">
            <name>Retrieve the KDC's Authentication Credential</name>
            <t>In case the KDC has an associated authentication credential as required for the correct group operation, a group member or an external signature verifier can contact the KDC to request the KDC's authentication credential, by sending a CoAP GET request to the /ace-group/GROUPNAME/kdc-cred endpoint at the KDC, where GROUPNAME identifies the group.</t>
            <t>Upon receiving the 2.05 (Content) response, the Client retrieves the KDC's authentication credential from the 'kdc_cred' parameter, and MUST verify the proof-of-possession (PoP) evidence specified in the 'kdc_cred_verify' parameter. In case of successful verification of the PoP evidence, the Client MUST store the obtained KDC's authentication credential and replace the currently stored one.</t>
            <t>The PoP evidence is verified by means of the same method used when processing the Join Response (see <xref target="gid-post"/>). Application profiles of this specification MUST specify the exact approaches used by the Client to verify the PoP evidence in 'kdc_cred_verify', and MUST specify which of those approaches is used in which case (REQ21).</t>
            <t><xref target="fig-kdc-pub-key-req-resp"/> gives an overview of the exchange described above, while <xref target="fig-kdc-pub-key-req-resp-ex"/> shows an example.</t>
            <figure anchor="fig-kdc-pub-key-req-resp">
              <name>Message Flow of KDC Authentication Credential Request-Response to Obtain the Authentication Credential of the KDC</name>
              <artwork align="center"><![CDATA[
Group
Member                                                         KDC
  |                                                             |
  |             KDC Authentication Credential Request           |
  |------------------------------------------------------------>|
  |               GET /ace-group/GROUPNAME/kdc-cred             |
  |                                                             |
  |<-- KDC Authentication Credential Response: 2.05 (Content) --|
  |                                                             |
]]></artwork>
            </figure>
            <figure anchor="fig-kdc-pub-key-req-resp-ex">
              <name>Example of KDC Authentication Credential Request-Response to Obtain the Authentication Credential of the KDC</name>
              <artwork><![CDATA[
Request:

Header: GET (Code=0.01)
Uri-Host: "kdc.example.com"
Uri-Path: "ace-group"
Uri-Path: "g1"
Uri-Path: "kdc-cred"
Payload: -

Response:

Header: Content (Code=2.05)
Content-Format: "application/ace-groupcomm+cbor"
Payload (in CBOR diagnostic notation, with AUTH_CRED_KDC
         and POP_EVIDENCE being CBOR byte strings):
  {
    "kdc_nonce": h'0b7db12aaff56da3',
    "kdc_cred": AUTH_CRED_KDC,
    "kdc_cred_verify": POP_EVIDENCE
  }
]]></artwork>
            </figure>
          </section>
        </section>
      </section>
      <section anchor="ace-groupgroupnamepolicies">
        <name>/ace-group/GROUPNAME/policies</name>
        <t>This resource implements the GET handler.</t>
        <section anchor="policies-get">
          <name>GET Handler</name>
          <t>The handler expects a GET request.</t>
          <t>In addition to what is defined in <xref target="kdc-if-errors"/>, the handler verifies that the Client is a current member of the group. If the verification fails, the KDC MUST reply with a 4.03 (Forbidden) error response. The response MUST have Content-Format set to application/concise-problem-details+cbor and is formatted as defined in <xref target="kdc-if-errors"/>. Within the Custom Problem Detail entry 'ace-groupcomm-error', the value of the 'error-id' field  MUST be set to 0 ("Operation permitted only to group members").</t>
          <t>If all verifications succeed, the handler replies with a 2.05 (Content) response containing the list of policies for the group identified by GROUPNAME. The payload of the response is formatted as a CBOR map including only the parameter 'group_policies' defined in <xref target="gid-post"/> and specifying the current policies in the group. If the KDC does not store any policy, the payload is formatted as a zero-length CBOR byte string.</t>
          <t>The specific format and meaning of group policies MUST be specified in the application profile (REQ20).</t>
          <section anchor="policies">
            <name>Retrieve the Group Policies</name>
            <t>A node in the group can contact the KDC to retrieve the current group policies, by sending a CoAP GET request to the /ace-group/GROUPNAME/policies endpoint at the KDC, where GROUPNAME identifies the group, and formatted as defined in <xref target="policies-get"/></t>
            <t><xref target="fig-policies"/> gives an overview of the exchange described above, while <xref target="fig-policies-2"/> shows an example.</t>
            <figure anchor="fig-policies">
              <name>Message Flow of Policies Request-Response</name>
              <artwork align="center"><![CDATA[
Client                                                       KDC
   |                                                          |
   |-- Policies Request: GET /ace-group/GROUPNAME/policies -->|
   |                                                          |
   |<----------- Policies Response: 2.05 (Content) -----------|
   |                                                          |
]]></artwork>
            </figure>
            <figure anchor="fig-policies-2">
              <name>Example of Policies Request-Response</name>
              <artwork><![CDATA[
Request:

Header: GET (Code=0.01)
Uri-Host: "kdc.example.com"
Uri-Path: "ace-group"
Uri-Path: "g1"
Uri-Path: "policies"
Payload: -

Response:

Header: Content (Code=2.05)
Content-Format: "application/ace-groupcomm+cbor"
Payload(in CBOR diagnostic notation):
  { "group_policies": {"exp-delta": 120} }
]]></artwork>
            </figure>
          </section>
        </section>
      </section>
      <section anchor="ace-groupgroupnamenum">
        <name>/ace-group/GROUPNAME/num</name>
        <t>This resource implements the GET handler.</t>
        <section anchor="num-get">
          <name>GET Handler</name>
          <t>The handler expects a GET request.</t>
          <t>In addition to what is defined in <xref target="kdc-if-errors"/>, the handler verifies that the Client is a current member of the group. If the verification fails, the KDC MUST reply with a 4.03 (Forbidden) error response. The response MUST have Content-Format set to application/concise-problem-details+cbor and is formatted as defined in <xref target="kdc-if-errors"/>. Within the Custom Problem Detail entry 'ace-groupcomm-error', the value of the 'error-id' field  MUST be set to 0 ("Operation permitted only to group members").</t>
          <t>If all verifications succeed, the handler returns a 2.05 (Content) message containing an integer that represents the version number of the symmetric group keying material. This number is incremented on the KDC every time the KDC updates the symmetric group keying material, before the new keying material is distributed. This number is stored in persistent storage.</t>
          <t>The payload of the response is formatted as a CBOR integer.</t>
          <section anchor="key-version">
            <name>Retrieve the Keying Material Version</name>
            <t>A node in the group can contact the KDC to request information about the version number of the symmetric group keying material, by sending a CoAP GET request to the /ace-group/GROUPNAME/num endpoint at the KDC, where GROUPNAME identifies the group, formatted as defined in <xref target="num-get"/>. In particular, the version is incremented by the KDC every time the group keying material is renewed, before it is distributed to the group members.</t>
            <t><xref target="fig-version"/> gives an overview of the exchange described above, while <xref target="fig-version-2"/> shows an example.</t>
            <figure anchor="fig-version">
              <name>Message Flow of Version Request-Response</name>
              <artwork align="center"><![CDATA[
Client                                                     KDC
   |                                                        |
   |---- Version Request: GET /ace-group/GROUPNAME/num ---->|
   |                                                        |
   |<---------- Version Response: 2.05 (Content) -----------|
   |                                                        |
]]></artwork>
            </figure>
            <figure anchor="fig-version-2">
              <name>Example of Version Request-Response</name>
              <artwork><![CDATA[
Request:

Header: GET (Code=0.01)
Uri-Host: "kdc.example.com"
Uri-Path: "ace-group"
Uri-Path: "g1"
Uri-Path: "num"
Payload: -

Response:

Header: Content (Code=2.05)
Payload(in CBOR diagnostic notation):
  13
]]></artwork>
            </figure>
          </section>
        </section>
      </section>
      <section anchor="node-subresource">
        <name>/ace-group/GROUPNAME/nodes/NODENAME</name>
        <t>This resource implements the GET, PUT, and DELETE handlers.</t>
        <t>In addition to what is defined in <xref target="kdc-if-errors"/>, each of the handlers performs the following two verifications.</t>
        <ul spacing="normal">
          <li>The handler verifies that the Client is a current member of the group. If the verification fails, the KDC MUST reply with a 4.03 (Forbidden) error response. The response MUST have Content-Format set to application/concise-problem-details+cbor and is formatted as defined in <xref target="kdc-if-errors"/>. Within the Custom Problem Detail entry 'ace-groupcomm-error', the value of the 'error-id' field  MUST be set to 0 ("Operation permitted only to group members").</li>
          <li>The handler verifies that the node name of the Client is equal to NODENAME used in the url-path. If the verification fails, the handler replies with a 4.03 (Forbidden) error response.</li>
        </ul>
        <section anchor="node-get">
          <name>GET Handler</name>
          <t>The handler expects a GET request.</t>
          <t>If all verifications succeed, the handler replies with a 2.05 (Content) response containing both the group keying material and the individual keying material for the Client, or information enabling the Client to derive it.</t>
          <t>The payload of the response is formatted as a CBOR map, which includes the same fields of the response defined in <xref target="gid-get"/>. In particular, the format for the group keying material is the same as defined in the response of <xref target="gid-get"/>. If the 'exp' parameter is included, the 'exi' parameter MUST also be included. If the parameter 'exi' is included, its value specifies the residual lifetime of the group keying material from the current time at the KDC.</t>
          <t>The CBOR map can include additional parameters that specify the individual keying material for the Client. The specific format of individual keying material for group members, or of the information to derive it, and corresponding CBOR label, MUST be specified in the application profile (REQ27) and registered in <xref target="iana-reg"/>.</t>
          <t>Optionally, the KDC can make the sub-resource at /ace-group/GROUPNAME/nodes/NODENAME also Observable <xref target="RFC7641"/> for the associated node. In case the KDC removes that node from the group without having been explicitly asked for it, this allows the KDC to send an unsolicited 4.04 (Not Found) response to the node as a notification of eviction from the group (see <xref target="sec-node-removal"/>).</t>
          <t>Note that the node could have also been observing the resource at /ace-group/GROUPNAME, in order to be informed of changes in the keying material. In such a case, this method would result in largely overlapping notifications received for the resource at /ace-group/GROUPNAME and the sub-resource at /ace-group/GROUPNAME/nodes/NODENAME.</t>
          <t>In order to mitigate this, a node that supports the No-Response option <xref target="RFC7967"/> can use it when starting the observation of the sub-resource at /ace-group/GROUPNAME/nodes/NODENAME. In particular, the GET observation request can also include the No-Response option, with value set to 2 (Not interested in 2.xx responses).</t>
          <section anchor="update-keys">
            <name>Retrieve Group and Individual Keying Material</name>
            <t>When any of the following happens, a node MUST stop using the stored group keying material to protect outgoing messages, and SHOULD stop using it to decrypt and verify incoming messages.</t>
            <ul spacing="normal">
              <li>Upon expiration of the keying material, according to what is indicated by the KDC with the 'exp' and/or 'exi' parameter (e.g., in a Join Response), or to a pre-configured value.</li>
              <li>Upon receiving a notification of revoked/renewed keying material from the KDC, possibly as part of an update of the keying material (rekeying) triggered by the KDC.</li>
              <li>Upon receiving messages from other group members without being able to retrieve the keying material to correctly decrypt them. This may be due to rekeying messages previously sent by the KDC, that the Client was not able to receive or decrypt.</li>
            </ul>
            <t>In either case, if it wants to continue participating in the group communication, the Client has to request the latest keying material from the KDC. To this end, the Client sends a CoAP GET request to the /ace-group/GROUPNAME/nodes/NODENAME endpoint at the KDC, formatted as specified in <xref target="node-get"/>. The Client can request the latest keying material from the KDC before the currently stored, old keying material reaches its expiration time.</t>
            <t>Note that policies can be set up, so that the Client sends a Key Distribution Request to the KDC only after a given number of received messages could not be decrypted (because of failed decryption processing or inability to retrieve the necessary keying material).</t>
            <t>It is application dependent and pertaining to the particular message exchange (e.g., <xref target="I-D.ietf-core-oscore-groupcomm"/>) to set up these policies for instructing Clients to retain incoming messages and for how long (OPT11). This allows Clients to possibly decrypt such messages after getting updated keying material, rather than just consider them invalid messages to discard right away.</t>
            <t>After having failed to decrypt messages from another group member and having sent a Key Distribution Request to the KDC, the Client might end up retrieving the same, latest group keying material that it already stores. In such a case, multiple failed decryptions might be due to the message sender and/or the KDC that have changed their authentication credential. Hence, the Client can retrieve such latest authentication credentials, by sending to the KDC an Authentication Credential Request (see <xref target="sec-key-retrieval"/> and <xref target="sec-key-retrieval-all"/>) and a KDC Authentication Credential Request (see <xref target="kdc-pub-key"/>), respectively.</t>
            <t>The Client can also send to the KDC a Key Distribution Request without having been triggered by a failed decryption of a message from another group member, if the Client wants to be sure that it currently stores the latest group keying material. If that is the case, the Client will receive from the KDC the same group keying material it already stores.</t>
            <t><xref target="fig-key-redistr-req-resp"/> gives an overview of the exchange described above, while <xref target="fig-key-redistr-req-resp-2"/> shows an example.</t>
            <figure anchor="fig-key-redistr-req-resp">
              <name>Message Flow of Key Distribution Request-Response</name>
              <artwork align="center"><![CDATA[
Client                                                          KDC
   |                                                             |
   |------------------ Key Distribution Request: --------------->|
   |           GET /ace-group/GROUPNAME/nodes/NODENAME           |
   |                                                             |
   |<-------- Key Distribution Response: 2.05 (Content) ---------|
   |                                                             |
]]></artwork>
            </figure>
            <figure anchor="fig-key-redistr-req-resp-2">
              <name>Example of Key Distribution Request-Response</name>
              <artwork><![CDATA[
Request:

Header: GET (Code=0.01)
Uri-Host: "kdc.example.com"
Uri-Path: "ace-group"
Uri-Path: "g1"
Uri-Path: "nodes"
Uri-Path: "c101"
Payload: -

Response:

Header: Content (Code=2.05)
Content-Format: "application/ace-groupcomm+cbor"
Payload (in CBOR diagnostic notation,
         with KEY and IND_KEY being CBOR byte strings,
         and "ind-key" being the profile-specified label
         for individual keying material):
  { "gkty": 13, "key": KEY, "num": 12, "ind-key": IND_KEY }
]]></artwork>
            </figure>
          </section>
        </section>
        <section anchor="node-put">
          <name>PUT Handler</name>
          <t>The PUT handler processes requests from a Client that asks for new individual keying material, as required to process messages exchanged in the group.</t>
          <t>The handler expects a PUT request with empty payload.</t>
          <t>In addition to what is defined in <xref target="kdc-if-errors"/> and at the beginning of <xref target="node-subresource"/>, the handler verifies that this operation is consistent with the set of roles that the Client has in the group (REQ11). If the verification fails, the KDC MUST reply with a 4.00 (Bad Request) error response. The response MUST have Content-Format set to application/concise-problem-details+cbor and is formatted as defined in <xref target="kdc-if-errors"/>. Within the Custom Problem Detail entry 'ace-groupcomm-error', the value of the 'error-id' field  MUST be set to 1 ("Request inconsistent with the current roles").</t>
          <t>If the KDC is currently not able to serve this request, i.e., to generate new individual keying material for the requesting Client, the KDC MUST reply with a 5.03 (Service Unavailable) error response. The response MUST have Content-Format set to application/concise-problem-details+cbor and is formatted as defined in <xref target="kdc-if-errors"/>. Within the Custom Problem Detail entry 'ace-groupcomm-error', the value of the 'error-id' field  MUST be set to 4 ("No available node identifiers").</t>
          <t>If all verifications succeed, the handler replies with a 2.05 (Content) response containing newly generated, individual keying material for the Client. The payload of the response is formatted as a CBOR map. The specific format of newly-generated individual keying material for group members, or of the information to derive it, and corresponding CBOR label, MUST be specified in the application profile (REQ27) and registered in <xref target="iana-reg"/>.</t>
          <t>The typical successful outcome consists in replying with newly generated, individual keying material for the Client, as defined above. However, application profiles of this specification MAY also extend this handler in order to achieve different akin outcomes (OPT12), for instance:</t>
          <ul spacing="normal">
            <li>Not providing the Client with newly generated, individual keying material, but rather rekeying the whole group, i.e., providing all the current group members with newly generated group keying material.</li>
            <li>Both providing the Client with newly generated, individual keying material, as well as rekeying the whole group, i.e., providing all the current group members with newly generated group keying material.</li>
          </ul>
          <t>In either case, the handler may specify the new group keying material as part of the 2.05 (Content) response.</t>
          <t>Note that this handler is not intended to accommodate requests from a group member to trigger a group rekeying, whose scheduling and execution is an exclusive prerogative of the KDC (see also related security considerations in <xref target="sec-cons-rekeying"/>).</t>
          <section anchor="new-keys">
            <name>Request to Change Individual Keying Material</name>
            <t>A Client may ask the KDC for new, individual keying material. For instance, this can be due to the expiration of such individual keying material, or to the exhaustion of AEAD nonces, if an AEAD encryption algorithm is used for protecting communications in the group. An example of individual keying material can simply be an individual encryption key associated with the Client. Hence, the Client may ask for a new individual encryption key, or for new input material to derive it.</t>
            <t>To this end, the Client performs a Key Renewal Request-Response exchange with the KDC, i.e., it sends a CoAP PUT request to the /ace-group/GROUPNAME/nodes/NODENAME endpoint at the KDC, where GROUPNAME identifies the group and NODENAME is its node name, and formatted as defined in <xref target="node-get"/>.</t>
            <t><xref target="fig-renewal-req-resp"/> gives an overview of the exchange described above, while <xref target="fig-renewal-req-resp-2"/> shows an example.</t>
            <figure anchor="fig-renewal-req-resp">
              <name>Message Flow of Key Renewal Request-Response</name>
              <artwork align="center"><![CDATA[
Client                                                    KDC
   |                                                       |
   |---------------- Key Renewal Request: ---------------->|
   |        PUT /ace-group/GROUPNAME/nodes/NODENAME        |
   |                                                       |
   |<-------- Key Renewal Response: 2.05 (Content) --------|
   |                                                       |
]]></artwork>
            </figure>
            <figure anchor="fig-renewal-req-resp-2">
              <name>Example of Key Renewal Request-Response</name>
              <artwork><![CDATA[
Request:

Header: PUT (Code=0.03)
Uri-Host: "kdc.example.com"
Uri-Path: "ace-group"
Uri-Path: "g1"
Uri-Path: "nodes"
Uri-Path: "c101"
Payload: -

Response:

Header: Content (Code=2.05)
Content-Format: "application/ace-groupcomm+cbor"
Payload (in CBOR diagnostic notation, with IND_KEY being a
         CBOR byte string, and "ind-key" being the profile-specified
         label for individual keying material):
  { "ind-key": IND_KEY }
]]></artwork>
            </figure>
            <t>Note that there is a difference between the Key Renewal Request in this section and the Key Distribution Request in <xref target="update-keys"/>. The former asks the KDC for new individual keying material, while the latter asks the KDC for the current group keying material together with the current individual keying material.</t>
            <t>As discussed in <xref target="node-put"/>, application profiles of this specification may define alternative outcomes for the Key Renewal Request-Response exchange (OPT12), where the provisioning of new individual keying material is replaced by or combined with the execution of a whole group rekeying.</t>
          </section>
        </section>
        <section anchor="node-delete">
          <name>DELETE Handler</name>
          <t>The DELETE handler removes the node identified by NODENAME from the group identified by GROUPNAME.</t>
          <t>The handler expects a DELETE request with empty payload.</t>
          <t>In addition to what is defined in <xref target="kdc-if-errors"/>, the handler verifies that the Client is a current member of the group. If the verification fails, the KDC MUST reply with a 4.03 (Forbidden) error response. The response MUST have Content-Format set to application/concise-problem-details+cbor and is formatted as defined in <xref target="kdc-if-errors"/>. Within the Custom Problem Detail entry 'ace-groupcomm-error', the value of the 'error-id' field  MUST be set to 0 ("Operation permitted only to group members").</t>
          <t>If all verification succeeds, the handler performs the actions defined in <xref target="sec-node-removal"/> and replies with a 2.02 (Deleted) response with empty payload.</t>
          <section anchor="ssec-group-leaving">
            <name>Leave the Group</name>
            <t>A Client can actively request to leave the group. In this case, the Client sends a CoAP DELETE request to the endpoint /ace-group/GROUPNAME/nodes/NODENAME at the KDC, where GROUPNAME identifies the group and NODENAME is its node name, formatted as defined in <xref target="node-delete"/></t>
            <t>Note that, after having left the group, the Client may wish to join it again. Then, as long as the Client is still authorized to join the group, i.e., the associated access token is still valid, the Client can request to re-join the group directly to the KDC (see <xref target="ssec-key-distribution-exchange"/>), without having to retrieve a new access token from the AS.</t>
          </section>
        </section>
      </section>
      <section anchor="ace-groupgroupnamenodesnodenamecred">
        <name>/ace-group/GROUPNAME/nodes/NODENAME/cred</name>
        <t>This resource implements the POST handler.</t>
        <section anchor="node-pub-key-post">
          <name>POST Handler</name>
          <t>The POST handler is used to replace the stored authentication credential of this Client (identified by NODENAME) with the one specified in the request at the KDC, for the group identified by GROUPNAME.</t>
          <t>The handler expects a POST request with payload as specified in <xref target="gid-post"/>, with the difference that it includes only the parameters 'client_cred', 'cnonce', and 'client_cred_verify'.</t>
          <t>The PoP evidence included in the 'client_cred_verify' parameter is computed in the same way considered in <xref target="gid-post"/> and defined by the specific application profile (REQ14), by using the following to build the PoP input: i) the same scope entry specified by the Client in the 'scope' parameter of the latest Join Request that the Client sent to the KDC in order to join the group identified by GROUPNAME; ii) the latest N_S value stored by the Client; iii) a new N_C nonce generated by the Client and specified in the parameter 'cnonce' of this request.</t>
          <t>An example of PoP input to compute 'client_cred_verify' using CBOR encoding is given in <xref target="fig-client-cred-input-2"/>.</t>
          <t>It is REQUIRED of application profiles to define the specific formats of authentication credentials that are acceptable to use in the group (REQ6).</t>
          <t>In addition to what is defined in <xref target="kdc-if-errors"/> and at the beginning of <xref target="node-subresource"/>, the handler verifies that this operation is consistent with the set of roles that the node has in the group. If the verification fails, the KDC MUST reply with a 4.00 (Bad Request) error response. The response MUST have Content-Format set to application/concise-problem-details+cbor and is formatted as defined in <xref target="kdc-if-errors"/>. Within the Custom Problem Detail entry 'ace-groupcomm-error', the value of the 'error-id' field  MUST be set to 1 ("Request inconsistent with the current roles").</t>
          <t>If the KDC cannot retrieve the 'kdcchallenge' associated with this Client (see <xref target="token-post"/>), the KDC MUST reply with a 4.00 (Bad Request) error response, which MUST also have Content-Format application/ace-groupcomm+cbor. The payload of the error response is a CBOR map including a newly generated 'kdcchallenge' value. This is specified in the 'kdcchallenge' parameter. In such a case the KDC MUST store the newly generated value as the 'kdcchallenge' value associated with this Client, replacing the currently stored value (if any).</t>
          <t>Otherwise, the handler checks that the authentication credential specified in the 'client_cred' field is valid for the group identified by GROUPNAME. That is, the handler checks that the authentication credential is encoded according to the format used in the group, is intended for the public key algorithm used in the group, and is aligned with the possible associated parameters used in the group. If that cannot be successfully verified, the handler MUST reply with a 4.00 (Bad Request) error response. The response MUST have Content-Format set to application/concise-problem-details+cbor and is formatted as defined in <xref target="kdc-if-errors"/>. Within the Custom Problem Detail entry 'ace-groupcomm-error', the value of the 'error-id' field  MUST be set to 2 ("Authentication credential incompatible with the group configuration").</t>
          <t>Otherwise, the handler verifies the PoP evidence contained in the 'client_cred_verify' field of the request, by using the authentication credential specified in the 'client_cred' field, as well as the same way considered in <xref target="gid-post"/> and defined by the specific application profile (REQ14). If the PoP evidence does not pass verification, the handler MUST reply with a 4.00 (Bad Request) error response. The response MUST have Content-Format set to application/concise-problem-details+cbor and is formatted as defined in <xref target="kdc-if-errors"/>. Within the Custom Problem Detail entry 'ace-groupcomm-error', the value of the 'error-id' field  MUST be set to 3 ("Invalid Proof-of-Possession evidence").</t>
          <t>If all verifications succeed, the handler performs the following actions.</t>
          <ul spacing="normal">
            <li>The handler associates the authentication credential from the 'client_cred' field of the request with the node identifier NODENAME, as well as with the access token associated with the node identified by NODENAME.</li>
            <li>In the stored list of group members' authentication credentials for the group identified by GROUPNAME, the handler replaces the authentication credential of the node identified by NODENAME with the authentication credential specified in the 'client_cred' field of the request.</li>
          </ul>
          <t>Then, the handler replies with a 2.04 (Changed) response, which does not include a payload.</t>
          <figure anchor="fig-client-cred-input-2">
            <name>Example of PoP input to compute 'client_cred_verify' using CBOR encoding</name>
            <artwork><![CDATA[
scope, N_S, and N_C expressed in CBOR diagnostic notation:
  scope = h'826667726f7570316673656e646572'
  N_S   = h'018a278f7faab55a'
  N_C   = h'0446baefc56111bf'


scope, N_S, and N_C as CBOR encoded byte strings:
  scope = 0x4f826667726F7570316673656E646572
  N_S   = 0x48018a278f7faab55a
  N_C   = 0x480446baefc56111bf

PoP input:
  0x4f 826667726f7570316673656e646572
    48 018a278f7faab55a 48 0446baefc56111bf
]]></artwork>
          </figure>
          <section anchor="update-pub-key">
            <name>Uploading an Authentication Credential</name>
            <t>In case the KDC maintains the authentication credentials of group members, a node in the group can contact the KDC to upload a new authentication credential to use in the group, and to replace the currently stored one.</t>
            <t>To this end, the Client performs an Authentication Credential Update Request-Response exchange with the KDC, i.e., it sends a CoAP POST request to the /ace-group/GROUPNAME/nodes/NODENAME/cred endpoint at the KDC, where GROUPNAME identifies the group and NODENAME is its node name.</t>
            <t>The request is formatted as specified in <xref target="node-pub-key-post"/>.</t>
            <t><xref target="fig-pub-key-update-req-resp"/> gives an overview of the exchange described above, while <xref target="fig-pub-key-update-req-resp-2"/> shows an example.</t>
            <figure anchor="fig-pub-key-update-req-resp">
              <name>Message Flow of Authentication Credential Update Request-Response</name>
              <artwork align="center"><![CDATA[
Client                                                          KDC
|                                                                |
|----------- Authentication Credential Update Request: --------->|
|         POST /ace-group/GROUPNAME/nodes/NODENAME/cred          |
|                                                                |
|<-- Authentication Credential Update Response: 2.04 (Changed) --|
|                                                                |
]]></artwork>
            </figure>
            <figure anchor="fig-pub-key-update-req-resp-2">
              <name>Example of Authentication Credential Update Request-Response</name>
              <artwork><![CDATA[
Request:

Header: POST (Code=0.02)
Uri-Host: "kdc.example.com"
Uri-Path: "ace-group"
Uri-Path: "g1"
Uri-Path: "nodes"
Uri-Path: "c101"
Uri-Path: "cred"
Content-Format: "application/ace-groupcomm+cbor"
Payload (in CBOR diagnostic notation, with AUTH_CRED
         and POP_EVIDENCE being CBOR byte strings):
  { "client_cred": AUTH_CRED, "cnonce": h'0446baefc56111bf',
    "client_cred_verify": POP_EVIDENCE }

Response:

Header: Changed (Code=2.04)
Payload: -
]]></artwork>
            </figure>
            <t>Additionally, after updating its own authentication credential, a group member MAY send to the group a number of requests including an identifier of the updated authentication credential, to notify other group members that they have to retrieve it. How this is done depends on the group communication protocol used, and therefore is application profile specific (OPT13).</t>
          </section>
        </section>
      </section>
    </section>
    <section anchor="sec-node-removal">
      <name>Removal of a Group Member</name>
      <t>A Client identified by NODENAME may be removed from a group identified by GROUPNAME where it is a member, for example due to the following reasons.</t>
      <ol spacing="normal" type="1"><li>The Client explicitly asks to leave the group, as defined in <xref target="ssec-group-leaving"/>.</li>
        <li>The node has been found compromised or is suspected so. The KDC is expected to determine that a group member has to be evicted either through its own means, or based on information that it obtains from a trusted source (e.g., an Intrusion Detection System, or an issuer of authentication credentials). Additional mechanics, protocols, and interfaces at the KDC that can support this are out of the scope of this document.</li>
        <li>The Client's authorization to be a group member with the current roles is not valid anymore, i.e., the access token has expired or has been revoked. If the AS provides token introspection (see <xref section="5.9" sectionFormat="of" target="RFC9200"/>), the KDC can optionally use it and check whether the Client is still authorized.</li>
      </ol>
      <t>In either case, the KDC performs the following actions.</t>
      <ul spacing="normal">
        <li>The KDC removes the Client from the list of current members of the group. When doing so, the KDC deletes the currently stored value of 'clientchallenge' for that Client, which was specified in the latest Join Request that the Client sent to the KDC in order to join the group (see <xref target="gid-post"/>).</li>
        <li>In case of forced eviction, i.e., for cases 2 and 3 above, the KDC deletes the authentication credential of the removed Client, if it acts as a repository of authentication credentials for group members.</li>
        <li>If the removed Client is registered as an observer of the group-membership resource at /ace-group/GROUPNAME, the KDC removes the Client from the list of observers of that resource.</li>
        <li>
          <t>If the sub-resource nodes/NODENAME was created for the removed Client, the KDC deletes that sub-resource.  </t>
          <t>
In case of forced eviction, i.e., for cases 2 and 3 above, the KDC MAY explicitly inform the removed Client, by means of the following methods.  </t>
          <ul spacing="normal">
            <li>If the evicted Client implements the 'control_uri' resource specified in <xref target="gid-post"/>, the KDC sends a DELETE request, targeting the URI specified in the 'control_uri' parameter of the Join Request (see <xref target="gid-post"/>).</li>
            <li>
              <t>If the evicted Client is observing its associated sub-resource at /ace-group/GROUPNAME/nodes/NODENAME (see <xref target="node-get"/>), the KDC sends an unsolicited 4.04 (Not Found) error response, which does not include the Observe option and indicates that the observed resource has been deleted (see <xref section="3.2" sectionFormat="of" target="RFC7641"/>).      </t>
              <t>
The response MUST have Content-Format set to application/concise-problem-details+cbor and is formatted as defined in <xref target="kdc-if-errors"/>. Within the Custom Problem Detail entry 'ace-groupcomm-error', the value of the 'error-id' field  MUST be set to 5 ("Group membership terminated").</t>
            </li>
          </ul>
        </li>
        <li>If forward security is prescribed by application policies installed at the KDC or by the used application profile of this specification, then the KDC MUST generate new group keying material and securely distribute it to all the current group members except the leaving node (see <xref target="sec-group-rekeying"/>).</li>
      </ul>
    </section>
    <section anchor="sec-group-rekeying">
      <name>Group Rekeying Process</name>
      <t>A group rekeying is started and driven by the KDC. The KDC is not intended to accommodate explicit requests from group members to trigger a group rekeying. That is, the scheduling and execution of a group rekeying is an exclusive prerogative of the KDC. Reasons that can trigger a group rekeying are a change in the group membership, the current group keying material approaching its expiration time, or a regularly scheduled update of the group keying material.</t>
      <t>The KDC can perform a group rekeying before the current group keying material expires, unless it is acceptable or there are reasons to temporarily pause secure communications in the group, following the expiration of the current keying material. For example, a pause in the group communication might have been scheduled to start anyway when the group keying material expires, e.g., to allow maintenance operations on the group members. As another example, the KDC might be carrying out a verification that some group members are seemingly compromised and to be evicted, and this requires to be completed in order to appropriately define and schedule the exact rekeying process to perform. As a result, the KDC could delay the execution of the group rekeying.</t>
      <t>The KDC MUST increment the version number NUM of the current keying material, before distributing the newly generated keying material with version number NUM+1 to the group. Once the group rekeying is completed, the KDC MUST delete the old keying material and SHOULD store the newly distributed keying material in persistent storage.</t>
      <t>Distributing the new group keying material requires the KDC to send multiple rekeying messages to the group members. Depending on the rekeying scheme used in the group and the reason that has triggered the rekeying process, each rekeying message can be intended for one or multiple group members, hereafter referred to as target group members. The KDC MUST support at least the "Point-to-Point" group rekeying scheme in <xref target="point-to-point-rekeying"/> and MAY support additional ones.</t>
      <t>Each rekeying message MUST have Content-Format set to application/ace-groupcomm+cbor and its payload formatted as a CBOR map, which MUST include at least the information specified in the Key Distribution Response message (see <xref target="gid-get"/>), i.e., the parameters 'gkty', 'key', and 'num' defined in <xref target="gid-post"/>. The CBOR map SHOULD also include the parameters 'exp' and 'exi'. If the 'exp' parameter is included, the 'exi' parameter MUST also be included. The CBOR map MAY include the parameter 'mgt_key_material' specifying new administrative keying material for the target group members, if relevant for the used rekeying scheme.</t>
      <t>A rekeying message may include additional information, depending on the rekeying scheme used in the group, the reason that has triggered the rekeying process, and the specific target group members. In particular, if the group rekeying is performed due to one or multiple Clients that have joined the group and the KDC acts as a repository of authentication credentials of the group members, then a rekeying message MAY also include the authentication credentials that those Clients use in the group, together with the roles and node identifier that the corresponding Client has in the group. It is RECOMMENDED to specify this information by means of the parameters 'creds', 'peer_roles', and 'peer_identifiers', like it is done in the Join Response message (see <xref target="gid-post"/>).</t>
      <t>The complete format of a rekeying message, including the encoding and content of the 'mgt_key_material' parameter, has to be defined in separate specifications aimed at profiling the used rekeying scheme in the context of the used application profile of this specification. As a particular case, an application profile of this specification MAY define additional information to include in rekeying messages for the "Point-to-Point" group rekeying scheme in <xref target="point-to-point-rekeying"/> (OPT14).</t>
      <t>Consistently with the used group rekeying scheme, the actual delivery of rekeying messages can occur through different approaches, as discussed in the following <xref target="point-to-point-rekeying"/> and <xref target="one-to-many-rekeying"/>.</t>
      <t>The possible, temporary misalignment of the keying material stored by the different group members due to a group rekeying is discussed in <xref target="sec-misalignment-keying-material"/>. Further security considerations related to the group rekeying process are compiled in <xref target="sec-cons-rekeying"/>.</t>
      <section anchor="point-to-point-rekeying">
        <name>Point-to-Point Group Rekeying</name>
        <t>A point-to-point group rekeying consists in the KDC sending one individual rekeying message to each target group member. In particular, the rekeying message is protected by means of the security association between the KDC and the target group member in question, as per the used application profile of this specification and the used transport profile of ACE.</t>
        <t>This is the approach taken by the basic "Point-to-Point" group rekeying scheme, that the KDC can explicitly signal in the Join Response (see <xref target="gid-post"/>), through the 'rekeying_scheme' parameter specifying the value 0.</t>
        <t>When taking this approach in the group identified by GROUPNAME, the KDC can practically deliver the rekeying messages to the target group members in different, co-existing ways.</t>
        <ul spacing="normal">
          <li>
            <t>The KDC SHOULD make the /ace-group/GROUPNAME resource Observable <xref target="RFC7641"/>. Thus, upon performing a group rekeying, the KDC can distribute the new group keying material through individual notification responses sent to the target group members that are also observing that resource.  </t>
            <t>
In case the KDC deletes the group (and thus deletes the /ace-group/GROUPNAME resource), relying on CoAP Observe as discussed above also allows the KDC to send an unsolicited 4.04 (Not Found) response to each observer group member, as a notification of group termination. The response MUST have Content-Format set to application/concise-problem-details+cbor and is formatted as defined in <xref target="kdc-if-errors"/>. Within the Custom Problem Detail entry 'ace-groupcomm-error', the value of the 'error-id' field  MUST be set to 6 ("Group deleted").</t>
          </li>
          <li>
            <t>If a target group member specified a URI in the 'control_uri' parameter of the Join Request upon joining the group (see <xref target="gid-post"/>), the KDC can provide that group member with the new group keying material by sending a unicast POST request to that URI.  </t>
            <t>
A Client that does not plan to observe the /ace-group/GROUPNAME resource at the KDC SHOULD provide a URI in the 'control_uri' parameter of the Join Request upon joining the group.</t>
          </li>
        </ul>
        <t>If the KDC has to send a rekeying message to a target group member, but this did not include the 'control_uri' parameter in the Join Request and is not a registered observer for the /ace-group/GROUPNAME resource, then that target group member would not be able to participate in the group rekeying. Later on, after having repeatedly failed to successfully exchange secure messages in the group, that group member can retrieve the current group keying material from the KDC, by sending a GET request to /ace-group/GROUPNAME or /ace-group/GROUPNAME/nodes/NODENAME (see <xref target="gid-get"/> and <xref target="node-get"/>, respectively).</t>
        <t><xref target="fig-rekeying-example-1"/> provides an example of point-to-point group rekeying. In particular, the example makes the following assumptions.</t>
        <ul spacing="normal">
          <li>The group currently consists of four group members, namely C1, C2, C3, and C4.</li>
          <li>Each group member, when joining the group, provided the KDC with a URI in the 'control_uri' parameter, with url-path "grp-rek".</li>
          <li>Before the group rekeying is performed, the keying material used in the group has version number num=5.</li>
          <li>The KDC performs the group rekeying in such a way to evict the group member C3, which has been found to be compromised.</li>
        </ul>
        <t>In the example, the KDC individually rekeys the group members intended to remain in the group (i.e., C1, C2, and C4), by means of one rekeying message each.</t>
        <figure anchor="fig-rekeying-example-1">
          <name>Example of Message Exchanges for a Point-to-Point Group Rekeying</name>
          <artset>
            <artwork type="svg" align="center"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="384" width="560" viewBox="0 0 560 384" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
                <path d="M 32,32 L 32,64" fill="none" stroke="black"/>
                <path d="M 40,256 L 40,288" fill="none" stroke="black"/>
                <path d="M 80,72 L 80,208" fill="none" stroke="black"/>
                <path d="M 112,256 L 112,288" fill="none" stroke="black"/>
                <path d="M 184,256 L 184,288" fill="none" stroke="black"/>
                <path d="M 224,72 L 224,208" fill="none" stroke="black"/>
                <path d="M 256,256 L 256,288" fill="none" stroke="black"/>
                <path d="M 328,256 L 328,288" fill="none" stroke="black"/>
                <path d="M 400,256 L 400,288" fill="none" stroke="black"/>
                <path d="M 480,256 L 480,288" fill="none" stroke="black"/>
                <path d="M 520,72 L 520,208" fill="none" stroke="black"/>
                <path d="M 552,32 L 552,64" fill="none" stroke="black"/>
                <path d="M 552,256 L 552,288" fill="none" stroke="black"/>
                <path d="M 32,32 L 552,32" fill="none" stroke="black"/>
                <path d="M 32,64 L 552,64" fill="none" stroke="black"/>
                <path d="M 40,256 L 112,256" fill="none" stroke="black"/>
                <path d="M 184,256 L 256,256" fill="none" stroke="black"/>
                <path d="M 328,256 L 400,256" fill="none" stroke="black"/>
                <path d="M 480,256 L 552,256" fill="none" stroke="black"/>
                <path d="M 40,288 L 112,288" fill="none" stroke="black"/>
                <path d="M 184,288 L 256,288" fill="none" stroke="black"/>
                <path d="M 328,288 L 400,288" fill="none" stroke="black"/>
                <path d="M 480,288 L 552,288" fill="none" stroke="black"/>
                <path d="M 44,344 L 140,344" fill="none" stroke="black"/>
                <path d="M 444,344 L 548,344" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="528,208 516,202.4 516,213.6" fill="black" transform="rotate(90,520,208)"/>
                <polygon class="arrowhead" points="232,208 220,202.4 220,213.6" fill="black" transform="rotate(90,224,208)"/>
                <polygon class="arrowhead" points="88,208 76,202.4 76,213.6" fill="black" transform="rotate(90,80,208)"/>
                <g class="text">
                  <text x="288" y="52">KDC</text>
                  <text x="24" y="100">Group</text>
                  <text x="168" y="100">Group</text>
                  <text x="464" y="100">Group</text>
                  <text x="28" y="116">keying</text>
                  <text x="172" y="116">keying</text>
                  <text x="468" y="116">keying</text>
                  <text x="36" y="132">material</text>
                  <text x="180" y="132">material</text>
                  <text x="476" y="132">material</text>
                  <text x="32" y="148">(num=6)</text>
                  <text x="176" y="148">(num=6)</text>
                  <text x="472" y="148">(num=6)</text>
                  <text x="76" y="244">/grp-rek</text>
                  <text x="220" y="244">/grp-rek</text>
                  <text x="364" y="244">/grp-rek</text>
                  <text x="516" y="244">/grp-rek</text>
                  <text x="76" y="276">C1</text>
                  <text x="220" y="276">C2</text>
                  <text x="364" y="276">C3</text>
                  <text x="516" y="276">C4</text>
                  <text x="320" y="308">[TO</text>
                  <text x="348" y="308">BE</text>
                  <text x="396" y="308">EVICTED]</text>
                  <text x="40" y="324">|</text>
                  <text x="552" y="324">|</text>
                  <text x="40" y="340">\</text>
                  <text x="172" y="340">Stored</text>
                  <text x="224" y="340">group</text>
                  <text x="276" y="340">keying</text>
                  <text x="340" y="340">material</text>
                  <text x="408" y="340">(num=5)</text>
                  <text x="552" y="340">/</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art" align="center"><![CDATA[
    .----------------------------------------------------------------.
    |                              KDC                               |
    '----------------------------------------------------------------'
          |                 |                                    |
 Group    |        Group    |                           Group    |
 keying   |        keying   |                           keying   |
 material |        material |                           material |
 (num=6)  |        (num=6)  |                           (num=6)  |
          |                 |                                    |
          |                 |                                    |
          |                 |                                    |
          v                 v                                    v

      /grp-rek          /grp-rek          /grp-rek           /grp-rek
     .--------.        .--------.        .--------.         .--------.
     |   C1   |        |   C2   |        |   C3   |         |   C4   |
     '--------'        '--------'        '--------'         '--------'
                                       [TO BE EVICTED]
     |                                                               |
     \____________ Stored group keying material (num=5) _____________/

]]></artwork>
          </artset>
        </figure>
      </section>
      <section anchor="one-to-many-rekeying">
        <name>One-to-Many Group Rekeying</name>
        <t>This section provides high-level recommendations on how the KDC can rekey a group by means of a more efficient and scalable group rekeying scheme, e.g., <xref target="RFC2093"/><xref target="RFC2094"/><xref target="RFC2627"/>. That is, each rekeying message might be, and likely is, intended for multiple target group members, and thus can be delivered to the whole group, although possible to decrypt only for the actual target group members.</t>
        <t>This yields an overall lower number of rekeying messages, thus potentially reducing the overall time required to rekey the group. On the other hand, it requires the KDC to provide and use additional administrative keying material to protect the rekeying messages, and to additionally sign them to ensure source authentication (see <xref target="one-to-many-rekeying-protection"/>).</t>
        <t>Compared to a group rekeying performed in a point-to-point fashion (see <xref target="point-to-point-rekeying"/>), a one-to-many group rekeying typically pays off in large-scale groups, due to the reduced time for completing the rekeying, a more efficient utilization of network resources, and a reduced performance overhead at the KDC. To different extents, it also requires individual group members to locally perform additional operations, in order to handle the administrative keying material and verify source authentication of rekeying messages. Therefore, one-to-many group rekeying schemes and their employment ought to ensure that the experienced performance overhead on the group members remains bearable also for resource-constrained devices.</t>
        <t>The exact set of rekeying messages to send, their content and format, the administrative keying material to use to protect them, as well as the set of target group members depend on the specific group rekeying scheme, and are typically affected by the reason that has triggered the group rekeying. Details about the data content and format of rekeying messages have to be defined by separate documents profiling the use of the group rekeying scheme, in the context of the used application profile of this specification.</t>
        <t>When one of these group rekeying schemes is used, the KDC provides a number of related information to a Client joining the group in the Join Response message (see <xref target="gid-post"/>). In particular, 'rekeying_scheme' identifies the rekeying scheme used in the group (if no default can be assumed); 'control_group_uri', if present, specifies a URI whose addressing information is, e.g., a multicast IP address, and where the KDC will send the rekeying messages for that group by reaching all the group members; 'mgt_key_material' specifies a subset of the administrative keying material intended for that particular joining Client to have, as used to protect the rekeying messages sent to the group when intended also to that joining Client.</t>
        <t>Rekeying messages can be protected at the application layer, by using COSE and the administrative keying material as prescribed by the specific group rekeying scheme (see <xref target="one-to-many-rekeying-protection"/>). After that, the delivery of protected rekeying messages to the intended target group members can occur in different ways, such as the following ones.</t>
        <ul spacing="normal">
          <li>
            <t>Over multicast - In this case, the KDC simply sends a rekeying message as a CoAP request addressed to the URI specified in the 'control_group_uri' parameter of the Join Response (see <xref target="gid-post"/>).  </t>
            <t>
If a particular rekeying message is intended for a single target group member, the KDC may alternatively protect the message using the security association with that group member, and deliver the message like when using the "Point-to-Point" group rekeying scheme (see <xref target="point-to-point-rekeying"/>).</t>
          </li>
          <li>
            <t>Through a pub-sub communication model - In this case, the KDC acts as a publisher and publishes each rekeying message to a specific "rekeying topic", which is associated with the group and is hosted at a broker server. Following their group joining, the group members subscribe to the rekeying topic at the broker, thus receiving the group rekeying messages as they are published by the KDC.  </t>
            <t>
In order to make such message delivery more efficient, the rekeying topic associated with a group can be further organized into subtopics. For instance, the KDC can use a particular subtopic to address a particular set of target group members during the rekeying process, as possibly aligned to a similar organization of the administrative keying material (e.g., a key hierarchy).  </t>
            <t>
The setup of rekeying topics at the broker as well as the discovery of the topics at the broker for group members are application specific. A possible way is for the KDC to provide such information in the Join Response message (see <xref target="gid-post"/>), by means of a new parameter analogous to 'control_group_uri' and specifying the URI(s) of the rekeying topic(s) that a group member has to subscribe to at the broker.</t>
          </li>
        </ul>
        <t>Regardless of the specifically used delivery method, the group rekeying scheme can perform a possible roll-over of the administrative keying material through the same sent rekeying messages. Actually, such a roll-over occurs every time a group rekeying is performed upon the leaving of group members, which have to be excluded from future communications in the group.</t>
        <t>From a high level point of view, each group member stores only a subset of the overall administrative keying material, obtained upon joining the group. Then, when a group rekeying occurs:</t>
        <ul spacing="normal">
          <li>Each rekeying message is protected by using a (most convenient) key from the administrative keying material such that: i) the used key is not stored by any node leaving the group, i.e., the key is safe to use and does not have to be renewed; and ii) the used key is stored by all the target group members, that indeed have to be provided with new group keying material to protect communications in the group.</li>
          <li>Each rekeying message includes not only the new group keying material intended for all the rekeyed group members, but also any new administrative keys that: i) are pertaining to and supposed to be stored by the target group members; and ii) had to be updated since leaving group members store the previous version.</li>
        </ul>
        <t>Further details depend on the specific rekeying scheme used in the group.</t>
        <t><xref target="fig-rekeying-example-2"/> provides an example of one-to-many group rekeying over multicast. In particular, the example makes the following assumptions.</t>
        <ul spacing="normal">
          <li>The group currently consists of four group members, namely C1, C2, C3, and C4.</li>
          <li>Each group member, when joining the group, provided the KDC with a URI in the 'control_uri' parameter, with url-path "grp-rek".</li>
          <li>Each group member, when joining the group, received from the KDC a URI in the 'control_group_uri' parameter, specifying the multicast address MULT_ADDR and url-path "grp-mrek".</li>
          <li>Before the group rekeying is performed, the keying material used in the group has version number num=5.</li>
          <li>The KDC performs the group rekeying in such a way to evict the group member C3, which has been found to be compromised.</li>
        </ul>
        <t>In the example, the KDC determines that the most convenient way to perform a group rekeying that evicts C3 is as follows.</t>
        <t>First, the KDC sends one rekeying message over multicast, to the multicast address MULT_ADDR and the url-path "grp-mrek". In the figure, the message is denoted with dashed lines. The message is protected with a non-compromised key from the administrative keying material that only C1 and C2 store. Therefore, even though all the group members receive this message, only C1 and C2 are able to decrypt it. The message includes: the new group keying material with version number num=6; and new keys from the administrative keying material to replace those stored by the group members C1, C2, and C3.</t>
        <t>After that, the KDC sends one rekeying message addressed individually to C4 and with url-path "grp-rek". In the figure, the message is denoted with a dotted line. The message is protected with the secure association shared between C4 and the KDC. The message includes: the new group keying material with version number num=6; and new keys from the administrative keying material to replace those stored by both C4 and C3.</t>
        <figure anchor="fig-rekeying-example-2">
          <name>Example of Message Exchanges for a One-to-Many Group Rekeying</name>
          <artset>
            <artwork type="svg" align="center"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="400" width="576" viewBox="0 0 576 400" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
                <path d="M 8,32 L 8,64" fill="none" stroke="black"/>
                <path d="M 8,288 L 8,320" fill="none" stroke="black"/>
                <path d="M 56,192 L 56,240" fill="none" stroke="black"/>
                <path d="M 80,288 L 80,320" fill="none" stroke="black"/>
                <path d="M 112,288 L 112,320" fill="none" stroke="black"/>
                <path d="M 160,192 L 160,240" fill="none" stroke="black"/>
                <path d="M 184,288 L 184,320" fill="none" stroke="black"/>
                <path d="M 216,288 L 216,320" fill="none" stroke="black"/>
                <path d="M 272,72 L 272,240" fill="none" stroke="black"/>
                <path d="M 312,288 L 312,320" fill="none" stroke="black"/>
                <path d="M 344,288 L 344,320" fill="none" stroke="black"/>
                <path d="M 392,192 L 392,240" fill="none" stroke="black"/>
                <path d="M 568,32 L 568,64" fill="none" stroke="black"/>
                <path d="M 568,288 L 568,320" fill="none" stroke="black"/>
                <path d="M 8,32 L 568,32" fill="none" stroke="black"/>
                <path d="M 8,64 L 568,64" fill="none" stroke="black"/>
                <path d="M 56,192 L 392,192" fill="none" stroke="black"/>
                <path d="M 8,288 L 80,288" fill="none" stroke="black"/>
                <path d="M 112,288 L 184,288" fill="none" stroke="black"/>
                <path d="M 216,288 L 312,288" fill="none" stroke="black"/>
                <path d="M 344,288 L 568,288" fill="none" stroke="black"/>
                <path d="M 8,320 L 80,320" fill="none" stroke="black"/>
                <path d="M 112,320 L 184,320" fill="none" stroke="black"/>
                <path d="M 216,320 L 312,320" fill="none" stroke="black"/>
                <path d="M 344,320 L 568,320" fill="none" stroke="black"/>
                <path d="M 12,376 L 132,376" fill="none" stroke="black"/>
                <path d="M 436,376 L 564,376" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="400,240 388,234.4 388,245.6" fill="black" transform="rotate(90,392,240)"/>
                <polygon class="arrowhead" points="280,240 268,234.4 268,245.6" fill="black" transform="rotate(90,272,240)"/>
                <polygon class="arrowhead" points="168,240 156,234.4 156,245.6" fill="black" transform="rotate(90,160,240)"/>
                <polygon class="arrowhead" points="64,240 52,234.4 52,245.6" fill="black" transform="rotate(90,56,240)"/>
                <circle cx="8" cy="96" r="6" class="closeddot" fill="black"/>
                <circle cx="8" cy="112" r="6" class="closeddot" fill="black"/>
                <circle cx="336" cy="96" r="6" class="closeddot" fill="black"/>
                <circle cx="336" cy="128" r="6" class="closeddot" fill="black"/>
                <g class="text">
                  <text x="272" y="52">KDC</text>
                  <text x="544" y="84">:</text>
                  <text x="40" y="100">Group</text>
                  <text x="92" y="100">keying</text>
                  <text x="156" y="100">material</text>
                  <text x="224" y="100">(num=6)</text>
                  <text x="368" y="100">Group</text>
                  <text x="420" y="100">keying</text>
                  <text x="544" y="100">:</text>
                  <text x="48" y="116">Updated</text>
                  <text x="140" y="116">administrative</text>
                  <text x="380" y="116">material</text>
                  <text x="448" y="116">(num=6)</text>
                  <text x="544" y="116">:</text>
                  <text x="44" y="132">keying</text>
                  <text x="108" y="132">material</text>
                  <text x="160" y="132">for</text>
                  <text x="188" y="132">C1</text>
                  <text x="216" y="132">and</text>
                  <text x="244" y="132">C2</text>
                  <text x="376" y="132">Updated</text>
                  <text x="468" y="132">administrative</text>
                  <text x="544" y="132">:</text>
                  <text x="372" y="148">keying</text>
                  <text x="436" y="148">material</text>
                  <text x="488" y="148">for</text>
                  <text x="516" y="148">C4</text>
                  <text x="544" y="148">:</text>
                  <text x="544" y="164">:</text>
                  <text x="544" y="180">:</text>
                  <text x="544" y="196">:</text>
                  <text x="544" y="212">:</text>
                  <text x="544" y="228">:</text>
                  <text x="544" y="244">v</text>
                  <text x="48" y="276">/grp-mrek</text>
                  <text x="152" y="276">/grp-mrek</text>
                  <text x="256" y="276">/grp-mrek</text>
                  <text x="384" y="276">/grp-mrek</text>
                  <text x="532" y="276">/grp-rek</text>
                  <text x="44" y="308">C1</text>
                  <text x="148" y="308">C2</text>
                  <text x="268" y="308">C3</text>
                  <text x="452" y="308">C4</text>
                  <text x="216" y="340">[TO</text>
                  <text x="244" y="340">BE</text>
                  <text x="292" y="340">EVICTED]</text>
                  <text x="8" y="356">|</text>
                  <text x="568" y="356">|</text>
                  <text x="8" y="372">\</text>
                  <text x="164" y="372">Stored</text>
                  <text x="216" y="372">group</text>
                  <text x="268" y="372">keying</text>
                  <text x="332" y="372">material</text>
                  <text x="400" y="372">(num=5)</text>
                  <text x="568" y="372">/</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art" align="center"><![CDATA[
.---------------------------------------------------------------------.
|                               KDC                                   |
'---------------------------------------------------------------------'
                                 |                                 :
* Group keying material (num=6)  |       * Group keying            :
* Updated administrative         |         material (num=6)        :
  keying material for C1 and C2  |       * Updated administrative  :
                                 |         keying material for C4  :
                                 |                                 :
                                 |                                 :
      +------------+-------------+--------------+                  :
      |            |             |              |                  :
      |            |             |              |                  :
      v            v             v              v                  v

 /grp-mrek    /grp-mrek    /grp-mrek       /grp-mrek          /grp-rek
.--------.   .--------.   .-----------.   .---------------------------.
|   C1   |   |   C2   |   |     C3    |   |            C4             |
'--------'   '--------'   '-----------'   '---------------------------'
                         [TO BE EVICTED]
|                                                                     |
\_______________ Stored group keying material (num=5) ________________/

]]></artwork>
          </artset>
        </figure>
        <section anchor="one-to-many-rekeying-protection">
          <name>Protection of Rekeying Messages</name>
          <t>When using a group rekeying scheme relying on one-to-many rekeying messages, the actual data content of each rekeying message is prepared according to what the rekeying scheme prescribes.</t>
          <t>The following describes one possible method for the KDC to protect the rekeying messages when using the administrative keying material.</t>
          <t>The method assumes that the following holds for the administrative keying material specified in the 'mgt_key_material' parameter of the Join Response (see <xref target="gid-post"/>).</t>
          <ul spacing="normal">
            <li>The encryption algorithm SHOULD be the same one used to protect communications in the group.</li>
            <li>The included symmetric encryption keys are accompanied by a corresponding and unique key identifier assigned by the KDC.</li>
            <li>A Base IV is also included, with the same size of the AEAD nonce considered by the encryption algorithm to use.</li>
          </ul>
          <t>First, the KDC computes a COSE_Encrypt0 object as follows.</t>
          <ul spacing="normal">
            <li>The encryption key to use is selected from the administrative keying material, as defined by the rekeying scheme used in the group.</li>
            <li>The plaintext is the actual data content of the rekeying message.</li>
            <li>The Additional Authenticated Data (AAD) is empty, unless otherwise specified by separate documents profiling the use of the group rekeying scheme.</li>
            <li>
              <t>Since the KDC is the only sender of rekeying messages, the AEAD nonce can be computed as follows, where NONCE_SIZE is the size in bytes of the AEAD nonce. Separate documents profiling the use of the group rekeying scheme may define alternative ways to compute the AEAD nonce.  </t>
              <t>
The KDC considers the following values.  </t>
              <ul spacing="normal">
                <li>COUNT, as a 2-byte unsigned integer associated with the used encryption key. Its value is set to 0 when starting to perform a new group rekeying instance, and is incremented after each use of the encryption key.</li>
                <li>NEW_NUM, as the version number of the new group keying material to distribute in this rekeying instance, left-padded with zeros to exactly NONCE_SIZE - 2 bytes.</li>
              </ul>
              <t>
Then, the KDC computes a Partial IV as the byte string concatenation of COUNT and NEW_NUM, in this order. Finally, the AEAD nonce is computed as the XOR between the Base IV and the Partial IV.  </t>
              <t>
In order to comply with the security requirements of AEAD encryption algorithms, the KDC MUST NOT reuse the same pair (AEAD encryption key, AEAD nonce). For example, this includes not using the same encryption key from the administrative keying material more than 2^16 times during the same rekeying instance.</t>
            </li>
            <li>
              <t>The protected header of the COSE_Encrypt0 object MUST include the following parameters.  </t>
              <ul spacing="normal">
                <li>'alg', specifying the used encryption algorithm.</li>
                <li>'kid', specifying the identifier of the encryption key from the administrative keying material used to protect this rekeying message.</li>
              </ul>
            </li>
            <li>The unprotected header of the COSE_Encrypt0 object MUST include the 'Partial IV' parameter, with value the Partial IV computed above.</li>
          </ul>
          <t>In order to ensure source authentication, each rekeying message protected with the administrative keying material MUST be signed by the KDC. To this end, the KDC computes a countersignature of the COSE_Encrypt0 object, as described in Sections <xref target="RFC9338" section="3.2" sectionFormat="bare"/> and <xref target="RFC9338" section="3.3" sectionFormat="bare"/> of <xref target="RFC9338"/>. In particular, the following applies when computing the countersignature.</t>
          <ul spacing="normal">
            <li>The Countersign_structure contains the context text string "CounterSignature0".</li>
            <li>The private key of the KDC is used as signing key.</li>
            <li>The payload is the ciphertext of the COSE_Encrypt0 object.</li>
            <li>The Additional Authenticated Data (AAD) is empty, unless otherwise specified by separate documents profiling the use of a group rekeying scheme.</li>
            <li>The protected header of the signing object MUST include the parameter 'alg', specifying the used signature algorithm.</li>
          </ul>
          <t>If source authentication of messages exchanged in the group is also ensured by means of signatures, then rekeying messages MUST be signed using the same signature algorithm and related parameters. Also, the KDC's authentication credential including the public key to use for signature verification MUST be provided in the Join Response through the 'kdc_cred' parameter, together with the corresponding proof-of-possession (PoP) evidence in the 'kdc_cred_verify' parameter.</t>
          <t>If source authentication of messages exchanged in the group is not ensured by means of signatures, then the administrative keying material conveyed in the 'mgt_key_material' parameter of the Join Response sent by KDC (see <xref target="gid-post"/>) MUST also comprise a KDC's authentication credential including the public key to use for signature verification, together with a corresponding PoP evidence. Within the 'mgt_key_material' parameter, it is RECOMMENDED to specify this information by using the same format and encoding used for the parameters 'kdc_cred', 'kdc_nonce', and 'kdc_cred_verify' in the Join Response. It is up to separate documents profiling the use of the group rekeying scheme to specify such details.</t>
          <t>After that, the KDC specifies the computed countersignature in the 'Countersignature0 version 2' header parameter of the COSE_Encrypt0 object.</t>
          <t>Finally, the KDC specifies the COSE_Encrypt0 object as payload of a CoAP request, which is sent to the target group members as per the used message delivery method.</t>
        </section>
      </section>
      <section anchor="sec-misalignment-keying-material">
        <name>Misalignment of Group Keying Material</name>
        <t>A group member can receive a message shortly after the group has been rekeyed, and new keying material has been distributed by the KDC. In the following two cases, this may result in misaligned keying material between the group members.</t>
        <t>In the first case, the sender protects a message using the old group keying material. However, the recipient receives the message after having received the new group keying material, hence not being able to correctly process it. A possible way to limit the impact of this issue is to preserve the old, recent group keying material for a maximum amount of time defined by the application, during which it is used solely for processing incoming messages. By doing so, the recipient can still temporarily process received messages also by using the old, retained group keying material. Note that a former (compromised) group member can take advantage of this by sending messages protected with the old, retained group keying material. Therefore, a conservative application policy should not admit the storage of old group keying material. Eventually, the sender will have obtained the new group keying material too, and can possibly re-send the message protected with such keying material.</t>
        <t>In the second case, the sender protects a message using the new group keying material, but the recipient receives that message before having received the new group keying material. Therefore, the recipient would not be able to correctly process the message and hence discards it. If the recipient receives the new group keying material shortly after that and the application at the sender endpoint performs retransmissions, the former will still be able to receive and correctly process the message. In any case, the recipient should actively ask the KDC for the latest group keying material according to an application-defined policy, for instance after a given number of unsuccessfully decrypted incoming messages.</t>
      </section>
    </section>
    <section anchor="sec-extended-scope">
      <name>Extended Scope Format</name>
      <t>This section defines an extended format of binary encoded scope, which additionally specifies the semantics used to express the same access control information from the corresponding original scope.</t>
      <t>As also discussed in <xref target="ssec-authorization-response"/>, this enables a Resource Server to unambiguously process a received access token, also in case the Resource Server runs multiple applications or application profiles that involve different scope semantics.</t>
      <t>The extended format is intended only for the 'scope' claim of access tokens, for the cases where the claim takes as value a CBOR byte string. That is, the extended format does not apply to the 'scope' parameter included in ACE messages, i.e., the Authorization Request and Authorization Response exchanged between the Client and the Authorization Server (see Sections <xref target="RFC9200" section="5.8.1" sectionFormat="bare"/> and <xref target="RFC9200" section="5.8.2" sectionFormat="bare"/> of <xref target="RFC9200"/>), the AS Request Creation Hints message from the Resource Server (see <xref section="5.3" sectionFormat="of" target="RFC9200"/>), and the Introspection Response from the Authorization Server (see <xref section="5.9.2" sectionFormat="of" target="RFC9200"/>).</t>
      <t>The value of the 'scope' claim following the extended format is composed as follows. Given the original scope using a semantics SEM and encoded as a CBOR byte string, the corresponding extended scope consists of the same CBOR byte string enclosed by a CBOR tag <xref target="RFC8949"/>, whose tag number identifies the semantics SEM.</t>
      <t>The resulting tagged CBOR byte string is used as value of the 'scope' claim of the access token.</t>
      <t><xref target="cddl-ex-0-ext"/> and <xref target="cddl-ex-ext"/> build on the examples in <xref target="ssec-authorization-response"/>, and show the corresponding extended scopes.</t>
      <figure anchor="cddl-ex-0-ext">
        <name>Example CDDL definition of scope, using the default Authorization Information Format</name>
        <sourcecode type="CDDL"><![CDATA[
;# include rfc9237

gname = tstr

permissions = uint .bits roles

roles = &(
   Requester: 1,
   Responder: 2,
   Monitor: 3,
   Verifier: 4
)

scope_entries = AIF-Generic<gname, permissions>

scope = bstr .cbor scope_entries

extended_scope = #6.TAG_FOR_THIS_SEMANTICS(scope)
]]></sourcecode>
      </figure>
      <figure anchor="cddl-ex-ext">
        <name>CDDL definition of scope, using as example group name encoded as tstr and role as tstr</name>
        <sourcecode type="CDDL"><![CDATA[
gname = tstr

role = tstr

scope_entry = [ gname , ? ( role / [ 2*role ] ) ]

scope_entries = [ * scope_entry ]

scope = bstr .cbor scope_entries

extended_scope = #6.TAG_FOR_THIS_SEMANTICS(scope)
]]></sourcecode>
      </figure>
      <t>The usage of the extended scope format is not limited to application profiles of this specification or to applications based on group communication. Rather, it is generally applicable to any application and application profile where access control information in the access token is expressed as a binary encoded scope.</t>
      <t>Applications and application profiles using the extended format of scope have to specify which CBOR tag from <xref target="CBOR.Tags"/> is used for identifying the scope semantics, or to register a new CBOR tag if a suitable one does not exist already (REQ28). In case there is an already existing, suitable CBOR tag, a new CBOR tag should not be registered in order to avoid codepoint squatting.</t>
      <t>If the binary encoded scope uses a semantics associated with a registered CoAP Content-Format <xref target="RFC7252"/><xref target="CoAP.Content.Formats"/>, then a suitable CBOR tag associated with that CoAP Content-Format would already be registered, as defined in <xref section="4.3" sectionFormat="of" target="RFC9277"/>.</t>
      <t>This is especially relevant when the binary encoded scope uses the AIF format. That is, it is expected that the definition of an AIF specific data model comes together with the registration of CoAP Content-Formats for the relevant combinations of its Toid and Tperm values. As discussed above, this yields the automatic registration of the CBOR tags associated with those CoAP Content-Formats.</t>
    </section>
    <section anchor="params">
      <name>ACE Groupcomm Parameters</name>
      <t>This specification defines a number of parameters used during the second part of the message exchange, after the exchange of Token Transfer Request and Response. The table below summarizes them, and specifies the CBOR key to use instead of the full descriptive name.</t>
      <t>Note that the media type application/ace-groupcomm+cbor MUST be used when these parameters are transported in the respective message fields.</t>
      <figure anchor="fig-ACE-Groupcomm-Parameters">
        <name>ACE Groupcomm Parameters</name>
        <artwork align="center"><![CDATA[
+-----------------------+------+-----------------+------------+
| Name                  | CBOR | CBOR Type       | Reference  |
|                       | Key  |                 |            |
+-----------------------+------+-----------------+------------+
| gid                   | 0    | array           | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| gname                 | 1    | array of tstr   | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| guri                  | 2    | array of tstr   | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| scope                 | 3    | bstr            | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| get_creds             | 4    | Null or array   | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| client_cred           | 5    | bstr            | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| cnonce                | 6    | bstr            | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| client_cred_verify    | 24   | bstr            | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| creds_repo            | 25   | tstr            | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| control_uri           | 26   | tstr            | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| gkty                  | 7    | int or tstr     | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| key                   | 8    | See the "ACE    | [RFC-XXXX] |
|                       |      | Groupcomm Key   |            |
|                       |      | Types" registry |            |
+-----------------------+------+-----------------+------------+
| num                   | 9    | int             | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| ace_groupcomm_profile | 10   | int             | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| exp                   | 11   | uint            | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| exi                   | 12   | uint            | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| creds                 | 13   | array           | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| peer_roles            | 14   | array           | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| peer_identifiers      | 15   | array           | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| group_policies        | 16   | map             | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| kdc_cred              | 17   | bstr            | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| kdc_nonce             | 18   | bstr            | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| kdc_cred_verify       | 19   | bstr            | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| rekeying_scheme       | 20   | int             | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| mgt_key_material      | 27   | bstr            | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| control_group_uri     | 28   | tstr            | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| sign_info             | 29   | Null or array   | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
| kdcchallenge          | 30   | bstr            | [RFC-XXXX] |
+-----------------------+------+-----------------+------------+
]]></artwork>
      </figure>
      <t>Note to RFC Editor: In <xref target="fig-ACE-Groupcomm-Parameters"/>, please replace all occurrences of "[RFC-XXXX]" with the RFC number of this specification and delete this paragraph.</t>
      <t>The KDC is expected to support all the parameters above. Instead, a Client can support only a subset of such parameters, depending on the roles it expects to take in the joined groups or on other conditions defined in application profiles of this specification.</t>
      <t>In the following, the parameters are categorized according to the support expected by Clients. That is, a Client that supports a parameter is able to: i) use and specify it in a request message to the KDC; and ii) understand and process it if specified in a response message from the KDC. It is REQUIRED of application profiles of this specification to sort their newly defined parameters according to the same categorization (REQ29).</t>
      <t>Note that the actual use of a parameter and its inclusion in a message depends on the specific exchange, the specific Client and group involved, as well as what is defined in the used application profile of this specification.</t>
      <t>A Client MUST support the following parameters.</t>
      <ul spacing="normal">
        <li>'scope', 'cnonce', 'gkty', 'key', 'num', 'exp', 'exi', 'gid', 'gname', 'guri', 'creds', 'peer_identifiers', 'ace_groupcomm_profile', 'control_uri', 'rekeying_scheme'.</li>
      </ul>
      <t>A Client SHOULD support the following parameter.</t>
      <ul spacing="normal">
        <li>'get_creds'. That is, not supporting this parameter would yield the inconvenient and undesirable behavior where: i) the Client does not ask for the other group members' authentication credentials upon joining the group (see <xref target="ssec-key-distribution-exchange"/>); and ii) later on as a group member, the Client only retrieves the authentication credentials of all group members (see <xref target="sec-key-retrieval-all"/>).</li>
      </ul>
      <t>The following conditional parameters are relevant only if specific conditions hold. It is REQUIRED of application profiles of this specification to define whether Clients must, should, or may support these parameters, and under which circumstances (REQ30).</t>
      <ul spacing="normal">
        <li>'client_cred' and 'client_cred_verify'. These parameters are relevant for a Client that has an authentication credential to use in a joined group.</li>
        <li>'kdcchallenge'. This parameter is relevant for a Client that has an authentication credential to use in a joined group and that provides the access token to the KDC through a Token Transfer Request (see <xref target="token-post"/>).</li>
        <li>'creds_repo'. This parameter is relevant for a Client that has an authentication credential to use in a joined group and that makes it available from a key repository different than the KDC.</li>
        <li>'group_policies'. This parameter is relevant for a Client that is interested in the specific policies used in a group, but it does not know them or cannot become aware of them before joining that group.</li>
        <li>'peer_roles'. This parameter is relevant for a Client that has to know about the roles of other group members, especially when retrieving and handling their corresponding authentication credentials.</li>
        <li>'kdc_nonce', 'kdc_cred', 'kdc_cred_verify'. These parameters are relevant for a Client that joins a group for which, as per the used application profile of this specification, the KDC has an associated authentication credential and this is required for the correct group operation.</li>
        <li>'mgt_key_material'. This parameter is relevant for a Client that supports an advanced rekeying scheme possibly used in the group, such as based on one-to-many rekeying messages sent over IP multicast.</li>
        <li>'control_group_uri'. This parameter is relevant for a Client that supports the hosting of local resources each associated with a group (hence acting as CoAP server) and the reception of one-to-many requests sent to those resources by the KDC (e.g., over IP multicast), targeting multiple members of the corresponding group. Examples of related management operations that the KDC can perform by this means are the eviction of group members and the execution of a group rekeying process through an advanced rekeying scheme, such as based on one-to-many rekeying messages.</li>
      </ul>
    </section>
    <section anchor="error-types">
      <name>ACE Groupcomm Error Identifiers</name>
      <t>This specification defines a number of values that the KDC can use as error identifiers. These are used in error responses with Content-Format application/concise-problem-details+cbor, as values of the 'error-id' field within the Custom Problem Detail entry 'ace-groupcomm-error' (see <xref target="kdc-if-errors"/>).</t>
      <figure anchor="fig-ACE-Groupcomm-Error-Identifiers">
        <name>ACE Groupcomm Error Identifiers</name>
        <artwork align="center"><![CDATA[
+-------+---------------------------------------------+
| Value |                 Description                 |
+-------+---------------------------------------------+
|   0   | Operation permitted only to group members   |
+-------+---------------------------------------------+
|   1   | Request inconsistent with the current roles |
+-------+---------------------------------------------+
|   2   | Authentication credential incompatible with |
|       | the group configuration                     |
+-------+---------------------------------------------+
|   3   | Invalid proof-of-possession evidence        |
+-------+---------------------------------------------+
|   4   | No available node identifiers               |
+-------+---------------------------------------------+
|   5   | Group membership terminated                 |
+-------+---------------------------------------------+
|   6   | Group deleted                               |
+-------+---------------------------------------------+
]]></artwork>
      </figure>
      <t>If a Client supports the problem-details format <xref target="RFC9290"/> and the Custom Problem Detail entry 'ace-groupcomm-error' defined in <xref target="kdc-if-errors"/>, and is able to understand the error specified in the 'error-id' field therein, then the Client can use that information to determine what actions to take next. If the Concise Problem Details data item specified in the error response includes the 'detail' entry and the Client supports it, such an entry may provide additional context.</t>
      <t>In particular, the following guidelines apply, and application profiles of this specification can define more detailed actions for the Client to take when learning that a specific error has occurred.</t>
      <ul spacing="normal">
        <li>In case of error 0, the Client should stop sending the request in question to the KDC. Rather, the Client should first join the targeted group. If it has not happened already, this first requires the Client to obtain an appropriate access token authorizing access to the group and provide it to the KDC.</li>
        <li>In case of error 1, the Client as a group member should re-join the group with all the roles needed to perform the operation in question. This might require the Client to first obtain a new access token and provide it to the KDC, if the current access token does not authorize it to take those roles in the group. For operations admitted to a Client which is not a group member (e.g., an external signature verifier), the Client should first obtain a new access token authorizing to also have the missing roles.</li>
        <li>In case of error 2, the Client has to obtain or self-generate a different asymmetric key pair, as aligned to the public key algorithms and parameters used in the targeted group. After that, the Client should provide the KDC with its new authentication credential, consistent with the format used in the targeted group and including the new public key.</li>
        <li>In case of error 3, the Client should ensure to be computing its proof-of-possession evidence by correctly using the parameters and procedures defined in the used application profile of this specification. In an unattended setup, it might be not possible for a Client to autonomously diagnose the error and take an effective next action to address it.</li>
        <li>In case of error 4, the Client should wait for a certain (pre-configured) amount of time, before trying re-sending its request to the KDC.</li>
        <li>In case of error 5, the Client may try joining the group again. This might require the Client to first obtain a new access token and provide it to the KDC, e.g., if the current access token has expired.</li>
        <li>In case of error 6, the Client should clean up its state regarding the group, just like if it has left the group with no intention to re-join it.</li>
      </ul>
    </section>
    <section anchor="sec-cons">
      <name>Security Considerations</name>
      <t>Security considerations are inherited from the ACE framework <xref target="RFC9200"/>, and from the specific transport profile of ACE used between the Clients and the KDC, e.g., <xref target="RFC9202"/> and <xref target="RFC9203"/>.</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>Furthermore, the following security considerations apply.</t>
      <section anchor="sec-cons-communication">
        <name>Secure Communication in the Group</name>
        <t>When a group member receives a message from a certain sender for the first time since joining the group, it needs to have a mechanism in place to avoid replayed messages and to assert their freshness, e.g., <xref section="B.1.2" sectionFormat="of" target="RFC8613"/> or <xref section="10" sectionFormat="of" target="I-D.ietf-core-oscore-groupcomm"/>. Such a mechanism aids the recipient group member also in case it has rebooted and lost the security state used to protect previous group communications with that sender.</t>
        <t>By its nature, the KDC is invested with a large amount of trust, since it acts as a generator and provider of the symmetric keying material used to protect communications in each of its groups. While details depend on the specific communication and security protocols used in the group, the KDC is in the position to decrypt messages exchanged in the group as if it was also a group member, as long as those are protected through commonly shared group keying material.</t>
        <t>A compromised KDC would thus put the attacker in the same position, which also means that:</t>
        <ul spacing="normal">
          <li>The attacker can generate and control new group keying material, hence possibly rekeying the group and evicting certain group members as part of a broader attack.</li>
          <li>The attacker can actively participate in communications in a group even without been authorized to join it, and can allow further unauthorized entities to do so.</li>
          <li>The attacker can build erroneous associations between node identifiers and group members' authentication credentials.</li>
        </ul>
        <t>On the other hand, as long as the security protocol used in the group ensures source authentication of messages (e.g., by means of signatures), the KDC is not able to impersonate group members since it does not have their private keys.</t>
        <t>Further security considerations are specific to the communication and security protocols used in the group, and thus have to be provided by those protocols and complemented by the application profiles of this specification using them.</t>
      </section>
      <section anchor="sec-cons-rekeying">
        <name>Update of Group Keying Material</name>
        <t>The KDC can generate new group keying material and provide it to the group members (rekeying) through the rekeying scheme used in the group, as discussed in <xref target="sec-group-rekeying"/>.</t>
        <t>In particular, the KDC must renew the group keying material latest upon its expiration. Before then, the KDC MAY also renew the group keying material on a regular or periodical fashion.</t>
        <t>Unless otherwise defined by an application profile of this specification, the KDC SHOULD renew the group keying material upon a group membership change. As a possible exception, the KDC may not rekey the group upon the joining of a new group member, if the application does not require backward security. As another possible exception discussed more in detail later in this section, the KDC may rely on a rekeying policy that reasonably take into account the expected rate of group membership changes and the duration of a group rekeying.</t>
        <t>Since the minimum number of group members is one, the KDC SHOULD provide even a Client joining an empty group with new keying material never used before in that group. Similarly, the KDC SHOULD provide new group keying material also to a Client that remains the only member in the group after the leaving of other group members.</t>
        <t>Note that the considerations in <xref target="sec-cons-communication"/> about dealing with replayed messages still hold, even in case the KDC rekeys the group upon every single joining of a new group member. However, if the KDC has renewed the group keying material upon a group member's joining, and the time interval between the end of the rekeying process and that member's joining is sufficiently small, then that group member is also on the safe side, since it would not accept replayed messages protected with the old group keying material previous to its joining.</t>
        <t>Once a joining node has obtained the new, latest keying material through a Join Response from the KDC (see <xref target="ssec-key-distribution-exchange"/>), the joining node becomes able to read any message that was exchanged in the group and protected with that keying material. This is the case if the KDC provides the current group members with the new, latest keying material before completing the joining procedure. However, the joining node is not able to read messages exchanged in the group and protected with keying material older than the one provided in the Join Response, i.e., having a strictly lower version number NUM.</t>
        <t>A node that has left the group should not expect any of its outgoing messages to be successfully processed, if received by other nodes in the group after its leaving, due to a possible group rekeying occurred before the message reception.</t>
        <t>The KDC may enforce a rekeying policy that takes into account the overall time required to rekey the group, as well as the expected rate of changes in the group membership. That is, the KDC may not rekey the group at each and every group membership change, for instance if members' joining and leaving occur frequently and performing a group rekeying takes too long. Instead, the KDC might rekey the group after a minimum number of group members have joined or left within a given time interval, or after a maximum amount of time since the last group rekeying was completed, or yet during predictable network inactivity periods.</t>
        <t>However, this would result in the KDC not constantly preserving backward and forward security in the group. That is:</t>
        <ul spacing="normal">
          <li>Newly joining group members would be able to access the keying material used before their joining, and thus they could access past group communications if they have recorded old exchanged messages. This might still be acceptable for some applications and in situations where the new group members are freshly deployed through strictly controlled procedures.</li>
          <li>The leaving group members would remain able to access upcoming group communications, as protected with the current keying material that has not been updated. This is typically undesirable, especially if the leaving group member is compromised or suspected to be, and it might have an impact or compromise the security properties of the protocols used in the group to protect messages exchanged among the group members.</li>
        </ul>
        <t>The KDC should renew the group keying material in case it has rebooted, even if it stores the whole group keying material in persistent storage. This assumes that the secure associations with the current group members as well as any administrative keying material required to rekey the group are also stored in persistent storage.</t>
        <t>However, if the KDC relies on Observe notifications to distribute the new group keying material, the KDC would have lost all the current ongoing Observations with the group members after rebooting, and the group members would continue using the old group keying material. Therefore, the KDC will rather rely on each group member asking for the new group keying material (see <xref target="ssec-key-material-retrieval"/> and <xref target="update-keys"/>), or rather perform a group rekeying by actively sending rekeying messages to group members as discussed in <xref target="sec-group-rekeying"/>.</t>
        <t>The KDC needs to have a mechanism in place to detect DoS attacks from nodes repeatedly performing actions that might trigger a group rekeying. Such actions can include leaving and/or re-joining the group at high rates, or often asking the KDC for new individual keying material. Ultimately, the KDC can resort to removing these nodes from the group and (temporarily) preventing them from joining the group again.</t>
        <t>The KDC also needs to have a congestion control mechanism in place, in order to avoid network congestion upon distributing new group keying material. For example, CoAP and Observe give guidance on such mechanisms, see <xref section="4.7" sectionFormat="of" target="RFC7252"/> and <xref section="4.5.1" sectionFormat="of" target="RFC7641"/>.</t>
      </section>
      <section anchor="block-wise-considerations">
        <name>Block-Wise Considerations</name>
        <t>If the Block-Wise CoAP options <xref target="RFC7959"/> are used, and the keying material is updated in the middle of a Block-Wise transfer, the sender of the blocks just changes the group keying material to the updated one and continues the transfer. As long as both sides get the new group keying material, updating the group keying material in the middle of a transfer will not cause any issue. Otherwise, the sender will have to transmit the message again, when receiving an error message from the recipient.</t>
        <t>Compared to a scenario where the transfer does not use Block-Wise, depending on how fast the group keying material is changed, the group members might consume a larger amount of the network bandwidth by repeatedly resending the same blocks, which might be problematic.</t>
      </section>
    </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="media-type">
        <name>Media Type Registrations</name>
        <t>This specification registers the 'application/ace-groupcomm+cbor' media type for messages of the protocols defined in this document following the ACE exchange and carrying parameters encoded in CBOR. This registration follows the procedures specified in <xref target="RFC6838"/>.</t>
        <t>Type name: application</t>
        <t>Subtype name: ace-groupcomm+cbor</t>
        <t>Required parameters: N/A</t>
        <t>Optional parameters: N/A</t>
        <t>Encoding considerations: Must be encoded as a CBOR map containing the parameters defined in [RFC-XXXX].</t>
        <t>Security considerations: See <xref target="sec-cons"/> of [RFC-XXXX].</t>
        <t>Interoperability considerations: N/A</t>
        <t>Published specification: [RFC-XXXX]</t>
        <t>Applications that use this media type: The type is used by Authorization Servers, Clients, and Resource Servers that support the ACE groupcomm framework as specified in [RFC-XXXX].</t>
        <t>Fragment identifier considerations: N/A</t>
        <t>Additional information: N/A</t>
        <t>Person &amp; email address to contact for further information: ACE WG mailing list (ace@ietf.org) or IETF Applications and Real-Time Area (art@ietf.org)</t>
        <t>Intended usage: COMMON</t>
        <t>Restrictions on usage: None</t>
        <t>Author/Change controller: IETF</t>
        <t>Provisional registration: No</t>
      </section>
      <section anchor="content-type">
        <name>CoAP Content-Formats</name>
        <t>IANA is asked to register the following entry to the "CoAP Content-Formats" registry within the "CoRE Parameters" registry group.</t>
        <t>Content Type: application/ace-groupcomm+cbor</t>
        <t>Content Coding: -</t>
        <t>ID: TBD</t>
        <t>Reference: [RFC-XXXX]</t>
      </section>
      <section anchor="iana-kinfo">
        <name>OAuth Parameters</name>
        <t>IANA is asked to register the following entries in the "OAuth Parameters" registry following the procedure specified in <xref section="11.2" sectionFormat="of" target="RFC6749"/>.</t>
        <ul spacing="normal">
          <li>Parameter name: sign_info</li>
          <li>Parameter usage location: client-rs request, rs-client response</li>
          <li>Change Controller: IETF</li>
          <li>Specification Document(s): [RFC-XXXX]</li>
        </ul>
        <t> </t>
        <ul spacing="normal">
          <li>Parameter name: kdcchallenge</li>
          <li>Parameter usage location: rs-client response</li>
          <li>Change Controller: IETF</li>
          <li>Specification Document(s): [RFC-XXXX]</li>
        </ul>
      </section>
      <section anchor="iana-kinfo-map">
        <name>OAuth Parameters CBOR Mappings</name>
        <t>IANA is asked to register the following entries in the "OAuth Parameters CBOR
Mappings" registry following the procedure specified in <xref section="8.10" sectionFormat="of" target="RFC9200"/>.</t>
        <ul spacing="normal">
          <li>Name: sign_info</li>
          <li>CBOR Key: TBD (range -256 to 255)</li>
          <li>Value Type: Null or array</li>
          <li>Reference: [RFC-XXXX]</li>
        </ul>
        <t> </t>
        <ul spacing="normal">
          <li>Name: kdcchallenge</li>
          <li>CBOR Key: TBD (range -256 to 255)</li>
          <li>Value Type: byte string</li>
          <li>Reference: [RFC-XXXX]</li>
        </ul>
      </section>
      <section anchor="if-ace-group">
        <name>Interface Description (if=) Link Target Attribute Values</name>
        <t>IANA is asked to register the following entry in the "Interface Description (if=) Link Target Attribute Values" registry within the "CoRE Parameters" registry group.</t>
        <ul spacing="normal">
          <li>Value: ace.groups</li>
          <li>Description: The KDC interface at the parent resource of group-membership resources is used to retrieve names of security groups using the ACE framework.</li>
          <li>Reference: <xref target="kdc-if"/> of [RFC-XXXX]</li>
        </ul>
        <t> </t>
        <ul spacing="normal">
          <li>Value: ace.group</li>
          <li>Description: The KDC interface at a group-membership resource is used to provision keying material and related information and policies to members of the corresponding security group using the ACE framework.</li>
          <li>Reference: <xref target="kdc-if"/> of [RFC-XXXX]</li>
        </ul>
      </section>
      <section anchor="iana-custom-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 "CoRE Parameters" registry group.</t>
        <ul spacing="normal">
          <li>Key Value: TBD</li>
          <li>Name: ace-groupcomm-error</li>
          <li>Brief Description: Carry [RFC-XXXX] problem details in a Concise Problem Details data item.</li>
          <li>Change Controller: IETF</li>
          <li>Reference: <xref target="kdc-if-errors"/> of [RFC-XXXX]</li>
        </ul>
      </section>
      <section anchor="iana-reg">
        <name>ACE Groupcomm Parameters</name>
        <t>This specification establishes the "ACE Groupcomm Parameters" IANA registry within the "Authentication and Authorization for Constrained Environments (ACE)" registry group.</t>
        <t>The registry has been created to use the "Expert Review" registration procedure <xref target="RFC8126"/>. Expert review guidelines are provided in <xref target="review"/>. Values in this registry are covered by different registration policies as indicated. It should be noted that, in addition to the expert review, some portions of the registry require a specification, potentially a Standards Track RFC, to be supplied as well.</t>
        <t>The columns of this registry are:</t>
        <ul spacing="normal">
          <li>Name: This is a descriptive name that enables easier reference to
the item. The name MUST be unique. It is not used in the encoding.</li>
          <li>CBOR Key: This is the value used as the CBOR key of the item. These values MUST be unique. The value can be a positive integer, a negative integer, or a text string. Different ranges of values use different registration policies <xref target="RFC8126"/>. Integer values from -256 to 255 as well as text strings of length 1 are designated as "Standards Action With Expert Review". Integer values from -65536 to -257 and from 256 to 65535, as well as text strings of length 2 are designated as "Specification Required". Integer values greater than 65535 as well as text strings of length greater than 2 are designated as "Expert Review". Integer values less than -65536 are marked as "Private Use".</li>
          <li>CBOR Type: This contains the CBOR type of the item, or a pointer to the registry that defines its type, when that depends on another item.</li>
          <li>Reference: This contains a pointer to the public specification for the item.</li>
        </ul>
        <t>This registry has been initially populated with the values in <xref target="fig-ACE-Groupcomm-Parameters"/>.</t>
      </section>
      <section anchor="iana-key">
        <name>ACE Groupcomm Key Types</name>
        <t>This specification establishes the "ACE Groupcomm Key Types" IANA registry within the "Authentication and Authorization for Constrained Environments (ACE)" registry group.</t>
        <t>The registry has been created to use the "Expert Review" registration procedure <xref target="RFC8126"/>. Expert review guidelines are provided in <xref target="review"/>. Values in this registry are covered by different registration policies as indicated. It should be noted that, in addition to the expert review, some portions of the registry require a specification, potentially a Standards Track RFC, to be supplied as well.</t>
        <t>The columns of this registry are:</t>
        <ul spacing="normal">
          <li>Name: This is a descriptive name that enables easier reference to
the item. The name MUST be unique. It is not used in the encoding.</li>
          <li>Key Type Value: This is the value used to identify the keying material. These values MUST be unique. The value can be a positive integer, a negative integer, or a text string. Different ranges of values use different registration policies <xref target="RFC8126"/>. Integer values from -256 to 255 as well as text strings of length 1 are designated as "Standards Action With Expert Review". Integer values from -65536 to -257 and from 256 to 65535, as well as text strings of length 2 are designated as "Specification Required". Integer values greater than 65535 as well as text strings of length greater than 2 are designated as "Expert Review". Integer values less than -65536 are marked as "Private Use".</li>
          <li>Profile: This field may contain one or more descriptive strings of application profiles to be used with this item. The values should be taken from the Name column of the "ACE Groupcomm Profiles" registry.</li>
          <li>Description: This field contains a brief description of the keying material.</li>
          <li>Reference: This contains a pointer to the public specification for the format of the keying material, if one exists.</li>
        </ul>
        <t>This registry has been initially populated with the value in <xref target="fig-gkty"/>.</t>
      </section>
      <section anchor="ace-groupcomm-profiles">
        <name>ACE Groupcomm Profiles</name>
        <t>This specification establishes the "ACE Groupcomm Profiles" IANA registry within the "Authentication and Authorization for Constrained Environments (ACE)" registry group.</t>
        <t>The registry has been created to use the "Expert Review" registration procedure <xref target="RFC8126"/>. Expert review guidelines are provided in <xref target="review"/>. Values in this registry are covered by different registration policies as indicated. It should be noted that, in addition to the expert review, some portions of the registry require a specification, potentially a Standards Track RFC, to be supplied as well.</t>
        <t>The columns of this registry are:</t>
        <ul spacing="normal">
          <li>Name: The name of the application profile, to be used as value of the profile attribute.</li>
          <li>Description: Text giving an overview of the application profile and the context it is developed for.</li>
          <li>CBOR Value: CBOR abbreviation for the name of this application profile. These values MUST be unique. The value can be a positive integer or a negative integer. Different ranges of values use different registration policies <xref target="RFC8126"/>. Integer values from -256 to 255 are designated as "Standards Action With Expert Review". Integer values from -65536 to -257 and from 256 to 65535 are designated as "Specification Required". Integer values greater than 65535 are designated as "Expert Review". Integer values less than -65536 are marked as "Private Use".</li>
          <li>Reference: This contains a pointer to the public specification of the abbreviation for this application profile, if one exists.</li>
        </ul>
        <t>This registry has been initially populated with the value in <xref target="ace-groupcomm-profile-0"/>.</t>
      </section>
      <section anchor="ace-groupcomm-policies">
        <name>ACE Groupcomm Policies</name>
        <t>This specification establishes the "ACE Groupcomm Policies" IANA registry within the "Authentication and Authorization for Constrained Environments (ACE)" registry group.</t>
        <t>The registry has been created to use the "Expert Review" registration procedure <xref target="RFC8126"/>. Expert review guidelines are provided in <xref target="review"/>. Values in this registry are covered by different registration policies as indicated. It should be noted that, in addition to the expert review, some portions of the registry require a specification, potentially a Standards Track RFC, to be supplied as well.</t>
        <t>The columns of this registry are:</t>
        <ul spacing="normal">
          <li>Name: The name of the group communication policy.</li>
          <li>CBOR label: The value to be used to identify this group communication policy. These values MUST be unique. The value can be a positive integer, a negative integer, or a text string. Different ranges of values use different registration policies <xref target="RFC8126"/>. Integer values from -256 to 255 as well as text strings of length 1 are designated as "Standards Action With Expert Review". Integer values from -65536 to -257 and from 256 to 65535, as well as text strings of length 2 are designated as "Specification Required". Integer values greater than 65535 as well as text strings of length greater than 2 are designated as "Expert Review". Integer values less than -65536 are marked as "Private Use".</li>
          <li>CBOR type: the CBOR type used to encode the value of this group communication policy.</li>
          <li>Description: This field contains a brief description for this group communication policy.</li>
          <li>Reference: This field contains a pointer to the public specification providing the format of the group communication policy, if one exists.</li>
        </ul>
        <t>This registry has been initially populated with the values in <xref target="fig-ACE-Groupcomm-Policies"/>.</t>
      </section>
      <section anchor="sequence-number-synchronization-methods">
        <name>Sequence Number Synchronization Methods</name>
        <t>This specification establishes the "Sequence Number Synchronization Methods" IANA registry within the "Authentication and Authorization for Constrained Environments (ACE)" registry group.</t>
        <t>The registry has been created to use the "Expert Review" registration procedure <xref target="RFC8126"/>. Expert review guidelines are provided in <xref target="review"/>. Values in this registry are covered by different registration policies as indicated. It should be noted that, in addition to the expert review, some portions of the registry require a specification, potentially a Standards Track RFC, to be supplied as well.</t>
        <t>The columns of this registry are:</t>
        <ul spacing="normal">
          <li>Name: The name of the sequence number synchronization method.</li>
          <li>Value: The value to be used to identify this sequence number synchronization method. These values MUST be unique. The value can be a positive integer, a negative integer, or a text string. Different ranges of values use different registration policies <xref target="RFC8126"/>. Integer values from -256 to 255 as well as text strings of length 1 are designated as "Standards Action With Expert Review". Integer values from -65536 to -257 and from 256 to 65535, as well as text strings of length 2 are designated as "Specification Required". Integer values greater than 65535 as well as text strings of length greater than 2 are designated as "Expert Review". Integer values less than -65536 are marked as "Private Use".</li>
          <li>Description: This field contains a brief description for this sequence number synchronization method.</li>
          <li>Reference: This field contains a pointer to the public specification describing the sequence number synchronization method.</li>
        </ul>
      </section>
      <section anchor="iana-ace-groupcomm-errors">
        <name>ACE Groupcomm Errors</name>
        <t>This specification establishes the "ACE Groupcomm Errors" IANA registry within the "Authentication and Authorization for Constrained Environments (ACE)" registry group.</t>
        <t>The registry has been created to use the "Expert Review" registration procedure <xref target="RFC8126"/>. Expert review guidelines are provided in <xref target="review"/>. Values in this registry are covered by different registration policies as indicated. It should be noted that, in addition to the expert review, some portions of the registry require a specification, potentially a Standards Track RFC, to be supplied as well.</t>
        <t>The columns of this registry are:</t>
        <ul spacing="normal">
          <li>Value: The value to be used to identify the error. These values MUST be unique. The value can be a positive integer or a negative integer. Different ranges of values use different registration policies <xref target="RFC8126"/>. Integer values from -256 to 255 are designated as "Standards Action With Expert Review". Integer values from -65536 to -257 and from 256 to 65535 are designated as "Specification Required". Integer values greater than 65535 are designated as "Expert Review". Integer values less than -65536 are marked as "Private Use".</li>
          <li>Description: This field contains a brief description of the error.</li>
          <li>Reference: This field contains a pointer to the public specification defining the error, if one exists.</li>
        </ul>
        <t>This registry has been initially populated with the values in <xref target="fig-ACE-Groupcomm-Error-Identifiers"/>. The Reference column for all of these entries refers to this document.</t>
      </section>
      <section anchor="iana-ace-groupcomm-rekeying-schemes">
        <name>ACE Groupcomm Rekeying Schemes</name>
        <t>This specification establishes the "ACE Groupcomm Rekeying Schemes" IANA registry within the "Authentication and Authorization for Constrained Environments (ACE)" registry group.</t>
        <t>The registry has been created to use the "Expert Review" registration procedure <xref target="RFC8126"/>. Expert review guidelines are provided in <xref target="review"/>. Values in this registry are covered by different registration policies as indicated. It should be noted that, in addition to the expert review, some portions of the registry require a specification, potentially a Standards Track RFC, to be supplied as well.</t>
        <t>The columns of this registry are:</t>
        <ul spacing="normal">
          <li>Value: The value to be used to identify the group rekeying scheme. These values MUST be unique. The value can be a positive integer or a negative integer. Different ranges of values use different registration policies <xref target="RFC8126"/>. Integer values from -256 to 255 are designated as "Standards Action With Expert Review". Integer values from -65536 to -257 and from 256 to 65535 are designated as "Specification Required". Integer values greater than 65535 are designated as "Expert Review". Integer values less than -65536 are marked as "Private Use".</li>
          <li>Name: The name of the group rekeying scheme.</li>
          <li>Description: This field contains a brief description of the group rekeying scheme.</li>
          <li>Reference: This field contains a pointer to the public specification defining the group rekeying scheme, if one exists.</li>
        </ul>
        <t>This registry has been initially populated with the value in <xref target="rekeying-scheme-0"/>.</t>
      </section>
      <section anchor="review">
        <name>Expert Review Instructions</name>
        <t>The IANA Registries established in this document are defined as expert review.
This section gives some general guidelines for what the experts should be looking for, but they are being designated as experts for a reason so they should be given substantial latitude.</t>
        <t>Expert reviewers should take into consideration the following points:</t>
        <ul spacing="normal">
          <li>Point squatting should be discouraged. Reviewers are encouraged to get sufficient information for registration requests to ensure that the usage is not going to duplicate one that is already registered and that the point is likely to be used in deployments. The zones tagged as private use are intended for testing purposes and closed environments, code points in other ranges should not be assigned for testing.</li>
          <li>Specifications are required for the standards track range of point assignment. Specifications should exist for specification required ranges, but early assignment before a specification is available is considered to be permissible. When specifications are not provided, the description provided needs to have sufficient information to identify what the point is being used for.</li>
          <li>Experts should take into account the expected usage of fields when approving point assignments. The fact that there is a range for Standards Track documents does not mean that a Standards Track document cannot have points assigned outside of that range. The length of the encoded value should be weighed against how many code points of that length are left, the size of device it will be used on, and the number of code points left that encode to that size.</li>
        </ul>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="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="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="RFC6690">
          <front>
            <title>Constrained RESTful Environments (CoRE) Link Format</title>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby"/>
            <date month="August" year="2012"/>
            <abstract>
              <t>This specification defines Web Linking using a link format for use by constrained web servers to describe hosted resources, their attributes, and other relationships between links. Based on the HTTP Link Header field defined in RFC 5988, the Constrained RESTful Environments (CoRE) Link Format is carried as a payload and is assigned an Internet media type. "RESTful" refers to the Representational State Transfer (REST) architecture. A well-known URI is defined as a default entry point for requesting the links hosted by a server. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6690"/>
          <seriesInfo name="DOI" value="10.17487/RFC6690"/>
        </reference>
        <reference anchor="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="RFC6838">
          <front>
            <title>Media Type Specifications and Registration Procedures</title>
            <author fullname="N. Freed" initials="N." surname="Freed"/>
            <author fullname="J. Klensin" initials="J." surname="Klensin"/>
            <author fullname="T. Hansen" initials="T." surname="Hansen"/>
            <date month="January" year="2013"/>
            <abstract>
              <t>This document defines procedures for the specification and registration of media types for use in HTTP, MIME, and other Internet protocols. This memo documents an Internet Best Current Practice.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="13"/>
          <seriesInfo name="RFC" value="6838"/>
          <seriesInfo name="DOI" value="10.17487/RFC6838"/>
        </reference>
        <reference anchor="RFC8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton"/>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <author fullname="T. Narten" initials="T." surname="Narten"/>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters. To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper. For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed. This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
        <reference anchor="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>
        <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="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="RFC7967">
          <front>
            <title>Constrained Application Protocol (CoAP) Option for No Server Response</title>
            <author fullname="A. Bhattacharyya" initials="A." surname="Bhattacharyya"/>
            <author fullname="S. Bandyopadhyay" initials="S." surname="Bandyopadhyay"/>
            <author fullname="A. Pal" initials="A." surname="Pal"/>
            <author fullname="T. Bose" initials="T." surname="Bose"/>
            <date month="August" year="2016"/>
            <abstract>
              <t>There can be machine-to-machine (M2M) scenarios where server responses to client requests are redundant. This kind of open-loop exchange (with no response path from the server to the client) may be desired to minimize resource consumption in constrained systems while updating many resources simultaneously or performing high-frequency updates. CoAP already provides Non-confirmable (NON) messages that are not acknowledged by the recipient. However, the request/response semantics still require the server to respond with a status code indicating "the result of the attempt to understand and satisfy the request", per RFC 7252.</t>
              <t>This specification introduces a CoAP option called 'No-Response'. Using this option, the client can explicitly express to the server its disinterest in all responses against the particular request. This option also provides granular control to enable expression of disinterest to a particular response class or a combination of response classes. The server MAY decide to suppress the response by not transmitting it back to the client according to the value of the No-Response option in the request. This option may be effective for both unicast and multicast requests. This document also discusses a few examples of applications that benefit from this option.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7967"/>
          <seriesInfo name="DOI" value="10.17487/RFC7967"/>
        </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="RFC9237">
          <front>
            <title>An Authorization Information Format (AIF) for Authentication and Authorization for Constrained Environments (ACE)</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>Information about which entities are authorized to perform what operations on which constituents of other entities is a crucial component of producing an overall system that is secure. Conveying precise authorization information is especially critical in highly automated systems with large numbers of entities, such as the Internet of Things.</t>
              <t>This specification provides a generic information model and format for representing such authorization information, as well as two variants of a specific instantiation of that format for use with Representational State Transfer (REST) resources identified by URI path.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9237"/>
          <seriesInfo name="DOI" value="10.17487/RFC9237"/>
        </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="RFC9338">
          <front>
            <title>CBOR Object Signing and Encryption (COSE): Countersignatures</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <date month="December" year="2022"/>
            <abstract>
              <t>Concise Binary Object Representation (CBOR) is a data format designed for small code size and small message size. CBOR Object Signing and Encryption (COSE) defines a set of security services for CBOR. This document defines a countersignature algorithm along with the needed header parameters and CBOR tags for COSE. This document updates RFC 9052.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="96"/>
          <seriesInfo name="RFC" value="9338"/>
          <seriesInfo name="DOI" value="10.17487/RFC9338"/>
        </reference>
        <reference anchor="COSE.Algorithms" target="https://www.iana.org/assignments/cose/cose.xhtml#algorithms">
          <front>
            <title>COSE Algorithms</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="COSE.Header.Parameters" target="https://www.iana.org/assignments/cose/cose.xhtml#header-parameters">
          <front>
            <title>COSE Header Parameters</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="COSE.Key.Types" target="https://www.iana.org/assignments/cose/cose.xhtml#key-type">
          <front>
            <title>COSE key Types</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="CBOR.Tags" target="https://www.iana.org/assignments/cbor-tags/cbor-tags.xhtml">
          <front>
            <title>Concise Binary Object Representation (CBOR) Tags</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="CoAP.Content.Formats" target="https://www.iana.org/assignments/core-parameters/core-parameters.xhtml#content-formats">
          <front>
            <title>CoAP Content-Formats</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date/>
          </front>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC2093">
          <front>
            <title>Group Key Management Protocol (GKMP) Specification</title>
            <author fullname="H. Harney" initials="H." surname="Harney"/>
            <author fullname="C. Muckenhirn" initials="C." surname="Muckenhirn"/>
            <date month="July" year="1997"/>
            <abstract>
              <t>This specification proposes a protocol to create grouped symmetric keys and distribute them amongst communicating peers. This memo defines an Experimental Protocol for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2093"/>
          <seriesInfo name="DOI" value="10.17487/RFC2093"/>
        </reference>
        <reference anchor="RFC2094">
          <front>
            <title>Group Key Management Protocol (GKMP) Architecture</title>
            <author fullname="H. Harney" initials="H." surname="Harney"/>
            <author fullname="C. Muckenhirn" initials="C." surname="Muckenhirn"/>
            <date month="July" year="1997"/>
            <abstract>
              <t>This specification proposes a protocol to create grouped symmetric keys and distribute them amongst communicating peers. This memo defines an Experimental Protocol for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2094"/>
          <seriesInfo name="DOI" value="10.17487/RFC2094"/>
        </reference>
        <reference anchor="RFC2627">
          <front>
            <title>Key Management for Multicast: Issues and Architectures</title>
            <author fullname="D. Wallner" initials="D." surname="Wallner"/>
            <author fullname="E. Harder" initials="E." surname="Harder"/>
            <author fullname="R. Agee" initials="R." surname="Agee"/>
            <date month="June" year="1999"/>
            <abstract>
              <t>This report contains a discussion of the difficult problem of key management for multicast communication sessions. It focuses on two main areas of concern with respect to key management, which are, initializing the multicast group with a common net key and rekeying the multicast group. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2627"/>
          <seriesInfo name="DOI" value="10.17487/RFC2627"/>
        </reference>
        <reference anchor="RFC3986">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee"/>
            <author fullname="R. Fielding" initials="R." surname="Fielding"/>
            <author fullname="L. Masinter" initials="L." surname="Masinter"/>
            <date month="January" year="2005"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource. This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet. The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier. This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="66"/>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="DOI" value="10.17487/RFC3986"/>
        </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="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="RFC7641">
          <front>
            <title>Observing Resources in the Constrained Application Protocol (CoAP)</title>
            <author fullname="K. Hartke" initials="K." surname="Hartke"/>
            <date month="September" year="2015"/>
            <abstract>
              <t>The Constrained Application Protocol (CoAP) is a RESTful application protocol for constrained nodes and networks. The state of a resource on a CoAP server can change over time. This document specifies a simple protocol extension for CoAP that enables CoAP clients to "observe" resources, i.e., to retrieve a representation of a resource and keep this representation updated by the server over a period of time. The protocol follows a best-effort approach for sending new representations to clients and provides eventual consistency between the state observed by each client and the actual resource state at the server.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7641"/>
          <seriesInfo name="DOI" value="10.17487/RFC7641"/>
        </reference>
        <reference anchor="RFC7959">
          <front>
            <title>Block-Wise Transfers in the Constrained Application Protocol (CoAP)</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <author fullname="Z. Shelby" initials="Z." role="editor" surname="Shelby"/>
            <date month="August" year="2016"/>
            <abstract>
              <t>The Constrained Application Protocol (CoAP) is a RESTful transfer protocol for constrained nodes and networks. Basic CoAP messages work well for small payloads from sensors and actuators; however, applications will need to transfer larger payloads occasionally -- for instance, for firmware updates. In contrast to HTTP, where TCP does the grunt work of segmenting and resequencing, CoAP is based on datagram transports such as UDP or Datagram Transport Layer Security (DTLS). These transports only offer fragmentation, which is even more problematic in constrained nodes and networks, limiting the maximum size of resource representations that can practically be transferred.</t>
              <t>Instead of relying on IP fragmentation, this specification extends basic CoAP with a pair of "Block" options for transferring multiple blocks of information from a resource representation in multiple request-response pairs. In many important cases, the Block options enable a server to be truly stateless: the server can handle each block transfer separately, with no need for a connection setup or other server-side memory of previous block transfers. Essentially, the Block options provide a minimal way to transfer larger representations in a block-wise fashion.</t>
              <t>A CoAP implementation that does not support these options generally is limited in the size of the representations that can be exchanged, so there is an expectation that the Block options will be widely used in CoAP implementations. Therefore, this specification updates RFC 7252.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7959"/>
          <seriesInfo name="DOI" value="10.17487/RFC7959"/>
        </reference>
        <reference anchor="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="RFC8613">
          <front>
            <title>Object Security for Constrained RESTful Environments (OSCORE)</title>
            <author fullname="G. Selander" initials="G." surname="Selander"/>
            <author fullname="J. Mattsson" initials="J." surname="Mattsson"/>
            <author fullname="F. Palombini" initials="F." surname="Palombini"/>
            <author fullname="L. Seitz" initials="L." surname="Seitz"/>
            <date month="July" year="2019"/>
            <abstract>
              <t>This document defines Object Security for Constrained RESTful Environments (OSCORE), a method for application-layer protection of the Constrained Application Protocol (CoAP), using CBOR Object Signing and Encryption (COSE). OSCORE provides end-to-end protection between endpoints communicating using CoAP or CoAP-mappable HTTP. OSCORE is designed for constrained nodes and networks supporting a range of proxy operations, including translation between different transport protocols.</t>
              <t>Although an optional functionality of CoAP, OSCORE alters CoAP options processing and IANA registration. Therefore, this document updates RFC 7252.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8613"/>
          <seriesInfo name="DOI" value="10.17487/RFC8613"/>
        </reference>
        <reference anchor="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="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="I-D.ietf-core-groupcomm-bis">
          <front>
            <title>Group Communication for the Constrained Application Protocol (CoAP)</title>
            <author fullname="Esko Dijk" initials="E." surname="Dijk">
              <organization>IoTconsultancy.nl</organization>
            </author>
            <author fullname="Chonggang Wang" initials="C." surname="Wang">
              <organization>InterDigital</organization>
            </author>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <date day="24" month="April" year="2024"/>
            <abstract>
              <t>   This document specifies the use of the Constrained Application
   Protocol (CoAP) for group communication, including the use of UDP/IP
   multicast as the default underlying data transport.  Both unsecured
   and secured CoAP group communication are specified.  Security is
   achieved by use of the Group Object Security for Constrained RESTful
   Environments (Group OSCORE) protocol.  The target application area of
   this specification is any group communication use cases that involve
   resource-constrained devices or networks that support CoAP.  This
   document replaces and obsoletes RFC 7390, while it updates RFC 7252
   and RFC 7641.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-groupcomm-bis-11"/>
        </reference>
        <reference anchor="I-D.ietf-core-oscore-groupcomm">
          <front>
            <title>Group Object Security for Constrained RESTful Environments (Group OSCORE)</title>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Göran Selander" initials="G." surname="Selander">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="Francesca Palombini" initials="F." surname="Palombini">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="John Preuß Mattsson" initials="J. P." surname="Mattsson">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="Rikard Höglund" initials="R." surname="Höglund">
              <organization>RISE AB</organization>
            </author>
            <date day="4" month="March" year="2024"/>
            <abstract>
              <t>   This document defines the security protocol Group Object Security for
   Constrained RESTful Environments (Group OSCORE), providing end-to-end
   security of CoAP messages exchanged between members of a group, e.g.,
   sent over IP multicast.  In particular, the described protocol
   defines how OSCORE is used in a group communication setting to
   provide source authentication for CoAP group requests, sent by a
   client to multiple servers, and for protection of the corresponding
   CoAP responses.  Group OSCORE also defines a pairwise mode where each
   member of the group can efficiently derive a symmetric pairwise key
   with any other member of the group for pairwise OSCORE communication.
   Group OSCORE can be used between endpoints communicating with CoAP or
   CoAP-mappable HTTP.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-oscore-groupcomm-21"/>
        </reference>
        <reference anchor="I-D.ietf-core-coap-pubsub">
          <front>
            <title>A publish-subscribe architecture for the Constrained Application Protocol (CoAP)</title>
            <author fullname="Jaime Jimenez" initials="J." surname="Jimenez">
              <organization>Ericsson</organization>
            </author>
            <author fullname="Michael Koster" initials="M." surname="Koster">
              <organization>Dogtiger Labs</organization>
            </author>
            <author fullname="Ari Keränen" initials="A." surname="Keränen">
              <organization>Ericsson</organization>
            </author>
            <date day="18" month="April" year="2024"/>
            <abstract>
              <t>   This document describes a publish-subscribe architecture for the
   Constrained Application Protocol (CoAP), extending the capabilities
   of CoAP communications for supporting endpoints with long breaks in
   connectivity and/or up-time.  CoAP clients publish on and subscribe
   to a topic via a corresponding topic resource at a CoAP server acting
   as broker.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-coap-pubsub-14"/>
        </reference>
        <reference anchor="I-D.ietf-cose-cbor-encoded-cert">
          <front>
            <title>CBOR Encoded X.509 Certificates (C509 Certificates)</title>
            <author fullname="John Preuß Mattsson" initials="J. P." surname="Mattsson">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="Göran Selander" initials="G." surname="Selander">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="Shahid Raza" initials="S." surname="Raza">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Joel Höglund" initials="J." surname="Höglund">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Martin Furuhed" initials="M." surname="Furuhed">
              <organization>Nexus Group</organization>
            </author>
            <date day="4" month="March" year="2024"/>
            <abstract>
              <t>   This document specifies a CBOR encoding of X.509 certificates.  The
   resulting certificates are called C509 Certificates.  The CBOR
   encoding supports a large subset of RFC 5280 and all certificates
   compatible with the RFC 7925, IEEE 802.1AR (DevID), CNSA, RPKI, GSMA
   eUICC, and CA/Browser Forum Baseline Requirements profiles.  When
   used to re-encode DER encoded X.509 certificates, the CBOR encoding
   can in many cases reduce the size of RFC 7925 profiled certificates
   with over 50% while also significantly reducing memory and code size
   compared to ASN.1.  The CBOR encoded structure can alternatively be
   signed directly ("natively signed"), which does not require re-
   encoding for the signature to be verified.  The document also
   specifies C509 Certificate Signing Requests, C509 COSE headers, a
   C509 TLS certificate type, and a C509 file format.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-cose-cbor-encoded-cert-09"/>
        </reference>
        <reference anchor="I-D.tiloca-core-oscore-discovery">
          <front>
            <title>Discovery of OSCORE Groups with the CoRE Resource Directory</title>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Christian Amsüss" initials="C." surname="Amsüss">
         </author>
            <author fullname="Peter Van der Stok" initials="P." surname="Van der Stok">
         </author>
            <date day="4" month="March" year="2024"/>
            <abstract>
              <t>   Group communication over the Constrained Application Protocol (CoAP)
   can be secured by means of Group Object Security for Constrained
   RESTful Environments (Group OSCORE).  At deployment time, devices may
   not know the exact security groups to join, the respective Group
   Manager, or other information required to perform the joining
   process.  This document describes how a CoAP endpoint can use
   descriptions and links of resources registered at the CoRE Resource
   Directory to discover security groups and to acquire information for
   joining them through the respective Group Manager.  A given security
   group may protect multiple application groups, which are separately
   announced in the Resource Directory as sets of endpoints sharing a
   pool of resources.  This approach is consistent with, but not limited
   to, the joining of security groups based on the ACE framework for
   Authentication and Authorization in constrained environments.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-tiloca-core-oscore-discovery-15"/>
        </reference>
      </references>
    </references>
    <section anchor="req">
      <name>Requirements for Application Profiles</name>
      <t>This section lists the requirements for application profiles of this specification, for the convenience of application profile designers.</t>
      <section anchor="req-mandatory">
        <name>Mandatory-to-Address Requirements</name>
        <ul spacing="normal">
          <li>REQ1: Specify the format and encoding of 'scope'. This includes defining the set of possible roles and their identifiers, as well as the corresponding encoding to use in the scope entries according to the used scope format (see <xref target="ssec-authorization-request"/>).</li>
          <li>REQ2: If the AIF format of 'scope' is used, register its specific instance of "Toid" and "Tperm" as Media Type parameters and a corresponding Content-Format, as per the guidelines in <xref target="RFC9237"/>.</li>
          <li>REQ3: If used, specify the acceptable values for 'sign_alg' (see <xref target="token-post"/>).</li>
          <li>REQ4: If used, specify the acceptable values for 'sign_parameters' (see <xref target="token-post"/>).</li>
          <li>REQ5: If used, specify the acceptable values for 'sign_key_parameters' (see <xref target="token-post"/>).</li>
          <li>REQ6: Specify the acceptable formats for authentication credentials and, if used, the acceptable values for 'cred_fmt' (see <xref target="token-post"/>).</li>
          <li>REQ7: If the value of the GROUPNAME URI path and the group name in the access token scope (gname in <xref target="ssec-authorization-response"/>) are not required to coincide, specify the mechanism to map the GROUPNAME value in the URI to the group name (see <xref target="kdc-if"/>).</li>
          <li>REQ8: Define whether the KDC has an authentication credential and if this has to be provided through the 'kdc_cred' parameter, see <xref target="gid-post"/>.</li>
          <li>REQ9: Specify if any part of the KDC interface as defined in this document is not supported by the KDC (see <xref target="kdc-if"/>).</li>
          <li>REQ10: Register a Resource Type for the group-membership resource, which is used to discover the correct URL for sending a Join Request to the KDC (see <xref target="kdc-if"/>).</li>
          <li>REQ11: Define what specific actions (e.g., CoAP methods) are allowed on each resource provided by the KDC interface, depending on whether the Client is a current group member; the roles that a Client is authorized to take as per the obtained access token (see <xref target="ssec-authorization-request"/>); and the roles that the Client has as current group member.</li>
          <li>REQ12: Categorize possible newly defined operations for Clients into primary operations expected to be minimally supported and secondary operations, and provide accompanying considerations (see <xref target="client-operations"/>).</li>
          <li>REQ13: Specify the encoding of group identifier (see <xref target="ace-group-fetch"/>).</li>
          <li>REQ14: Specify the approaches used to compute and verify the PoP evidence to include in 'client_cred_verify', and which of those approaches is used in which case (see <xref target="gid-post"/>).</li>
          <li>REQ15: Specify how the nonce N_S is generated, if the token is not provided to the KDC through the Token Transfer Request to the authz-info endpoint (e.g., if it is used directly to validate TLS instead).</li>
          <li>REQ16 Define the initial value of the 'num' parameter (see <xref target="gid-post"/>).</li>
          <li>REQ17: Specify the format of the 'key' parameter and register a corresponding entry in the "ACE Groupcomm Key Types" IANA registry (see <xref target="gid-post"/>).</li>
          <li>REQ18: Specify the acceptable values of the 'gkty' parameter (see <xref target="gid-post"/>).</li>
          <li>REQ19: Specify and register the application profile identifier (see <xref target="gid-post"/>).</li>
          <li>REQ20: If used, specify the format and content of 'group_policies' and its entries. Specify the policies default values (see <xref target="gid-post"/>).</li>
          <li>REQ21: Specify the approaches used to compute and verify the PoP evidence to include in 'kdc_cred_verify', and which of those approaches is used in which case (see <xref target="gid-post"/> and <xref target="kdc-pub-key-get"/>). If external signature verifiers are supported, specify how those provide a nonce to the KDC to be used for computing the PoP evidence (see <xref target="kdc-pub-key-get"/>).</li>
          <li>REQ22: Specify the communication protocol that the members of the group must use (e.g., CoAP for group communication).</li>
          <li>REQ23: Specify the security protocol the group members must use to protect their communication (e.g., group OSCORE). This must provide encryption, integrity, and replay protection.</li>
          <li>REQ24: Specify how the communication is secured between Client and KDC. Optionally, specify a transport profile of ACE <xref target="RFC9200"/> to use between Client and KDC (see <xref target="ssec-key-distribution-exchange"/>).</li>
          <li>REQ25: Specify the format of the identifiers of group members (see <xref target="gid-post"/> and <xref target="pubkey-fetch"/>).</li>
          <li>REQ26: Specify policies at the KDC to handle ids that are not included in 'get_creds' (see <xref target="pubkey-fetch"/>).</li>
          <li>REQ27: Specify the format of newly-generated individual keying material for group members, or of the information to derive it, and corresponding CBOR label (see <xref target="node-get"/>).</li>
          <li>REQ28: Specify which CBOR tag is used for identifying the semantics of binary scopes, or register a new CBOR tag if a suitable one does not exist already (see <xref target="sec-extended-scope"/>).</li>
          <li>REQ29: Categorize newly defined parameters according to the same criteria of <xref target="params"/>.</li>
          <li>REQ30: Define whether Clients must, should, or may support the conditional parameters defined in <xref target="params"/>, and under which circumstances.</li>
        </ul>
      </section>
      <section anchor="req-optional">
        <name>Optional-to-Address Requirements</name>
        <ul spacing="normal">
          <li>OPT1: Optionally, if the textual format of 'scope' is used, specify CBOR values to use for abbreviating the role identifiers in the group (see <xref target="ssec-authorization-request"/>).</li>
          <li>OPT2: Optionally, specify the additional parameters used in the exchange of Token Transfer Request and Response (see <xref target="token-post"/>).</li>
          <li>OPT3: Optionally, specify the negotiation of parameter values for signature algorithm and signature keys, if 'sign_info' is not used (see <xref target="token-post"/>).</li>
          <li>OPT4: Optionally, specify possible or required payload formats for specific error cases.</li>
          <li>OPT5: Optionally, specify additional identifiers of error types, as values of the 'error-id' field within the Custom Problem Detail entry 'ace-groupcomm-error' (see <xref target="kdc-if-errors"/>).</li>
          <li>OPT6: Optionally, specify the encoding of 'creds_repo' if the default is not used (see <xref target="gid-post"/>).</li>
          <li>OPT7: Optionally, specify the functionalities implemented at the 'control_uri' resource hosted at the Client, including message exchange encoding and other details (see <xref target="gid-post"/>).</li>
          <li>OPT8: Optionally, specify the behavior of the handler in case of failure to retrieve an authentication credential for the specific node (see <xref target="gid-post"/>).</li>
          <li>OPT9: Optionally, define a default group rekeying scheme, to refer to in case the 'rekeying_scheme' parameter is not included in the Join Response (see <xref target="gid-post"/>).</li>
          <li>OPT10: Optionally, specify the functionalities implemented at the 'control_group_uri' resource hosted at the Client, including message exchange encoding and other details (see <xref target="gid-post"/>).</li>
          <li>OPT11: Optionally, specify policies that instruct Clients to retain messages and for how long, if they are unsuccessfully decrypted (see <xref target="update-keys"/>). This makes it possible to decrypt such messages after getting updated keying material.</li>
          <li>OPT12: Optionally, specify for the KDC to perform group rekeying (together or instead of renewing individual keying material) when receiving a Key Renewal Request (see <xref target="new-keys"/>).</li>
          <li>OPT13: Optionally, specify how the identifier of a group member's authentication credential is included in requests sent to other group members (see <xref target="update-pub-key"/>).</li>
          <li>OPT14: Optionally, specify additional information to include in rekeying messages for the "Point-to-Point" group rekeying scheme (see <xref target="sec-group-rekeying"/>).</li>
        </ul>
      </section>
    </section>
    <section anchor="sec-future-cose-algs">
      <name>Extensibility for Future COSE Algorithms</name>
      <t>As defined in <xref section="8.1" sectionFormat="of" target="RFC9053"/>, future algorithms can be registered in the "COSE Algorithms" registry <xref target="COSE.Algorithms"/> as specifying none or multiple COSE capabilities.</t>
      <t>To enable the seamless use of such future registered algorithms, this section defines a general, agile format for each 'sign_info_entry' of the 'sign_info' parameter in the Token Transfer Response, see <xref target="sign-info"/>.</t>
      <t>If any of the currently registered COSE algorithms is considered, using this general format yields the same structure of 'sign_info_entry' defined in this document, thus ensuring backward compatibility.</t>
      <section anchor="sec-future-cose-algs-sign-info-entry">
        <name>Format of 'sign_info_entry'</name>
        <t>The format of each 'sign_info_entry' (see <xref target="sign-info"/>) is generalized as follows.</t>
        <ul spacing="normal">
          <li>
            <t>'sign_parameters' includes N &gt;= 0 elements, each of which is a COSE capability of the signature algorithm indicated in 'sign_alg'.  </t>
            <t>
In particular, 'sign_parameters' has the same format and value of the COSE capabilities array for the signature algorithm indicated in 'sign_alg', as specified for that algorithm in the 'Capabilities' column of the "COSE Algorithms" registry <xref target="COSE.Algorithms"/>.</t>
          </li>
          <li>
            <t>'sign_key_parameters' is replaced by N elements 'sign_capab', each of which is a CBOR array.  </t>
            <t>
The i-th 'sign_capab' array (i = 0, ..., N-1) is the array of COSE capabilities for the algorithm capability specified in 'sign_parameters'[i].  </t>
            <t>
In particular, each 'sign_capab' array has the same format and value of the COSE capabilities array for the algorithm capability specified in 'sign_parameters'[i].  </t>
            <t>
Such a COSE capabilities array is currently defined for the algorithm capability COSE key type, in the "Capabilities" column of the "COSE Key Types" registry <xref target="COSE.Key.Types"/>.</t>
          </li>
        </ul>
        <figure anchor="fig-sign-info-entry-general">
          <name>'sign_info_entry' with general format</name>
          <sourcecode type="CDDL"><![CDATA[
sign_info_entry =
[
    id : gname / [ + gname ],
    sign_alg : int / tstr,
    sign_parameters : [ * alg_capab : any ],
  * sign_capab : [ * capab : any ],
    cred_fmt : int / null
]

gname = tstr
]]></sourcecode>
        </figure>
      </section>
    </section>
    <section anchor="sec-document-updates">
      <name>Document Updates</name>
      <t>RFC EDITOR: PLEASE REMOVE THIS SECTION.</t>
      <section anchor="sec-18-19">
        <name>Version -18 to -19</name>
        <ul spacing="normal">
          <li>IANA-related editorial fixes.</li>
        </ul>
      </section>
      <section anchor="sec-17-18">
        <name>Version -17 to -18</name>
        <ul spacing="normal">
          <li>Provided more details when early introducing "backward security" and "forward security".</li>
          <li>Clarified definition and semantics of "group name" and "node name".</li>
          <li>Clarified definition of "individual keying material".</li>
          <li>Clarified definition of "Dispatcher".</li>
          <li>Enforced consistent use of leading slash in URI paths.</li>
          <li>Fixed CDDL definitions and examples in CBOR diagnostic notation.</li>
          <li>RFC 9290 is used instead of the custom format for error responses.</li>
          <li>Clarified which operations are limited to group members and which are allowed also to non group members.</li>
          <li>Improved examples of message exchange.</li>
          <li>Added ASCII-art diagrams with examples of group rekeying.</li>
          <li>Clarified for how long nonces are stored at the KDC.</li>
          <li>Clarified that the KDC might not have to store the 'cnonce' from a Join Request.</li>
          <li>Consistency fix: Clients always support the 'cnonce' parameter.</li>
          <li>Added new parameter 'exi' providing the residual lifetime of the current group keying material.</li>
          <li>Clarified text about the KDC knowledge of compromised nodes.</li>
          <li>Clarified the impact on performance of a one-to-many group rekeying.</li>
          <li>Mentioned explicit exceptions to a group rekeying at each group membership change.</li>
          <li>Explained reasons for delaying a rekeying and halting communications.</li>
          <li>Fixes in current IANA registrations.</li>
          <li>Added integer abbreviation values for registrations in new IANA registries.</li>
          <li>IANA registration of two CoRE if= values: "ace.group" and "ace.groups".</li>
          <li>Editorial fixes and improvements.</li>
        </ul>
      </section>
      <section anchor="sec-16-17">
        <name>Version -16 to -17</name>
        <ul spacing="normal">
          <li>Expanded definition of "Dispatcher".</li>
          <li>Added definition of "Individual keying material" to the terminology.</li>
          <li>Early definition of "backward security" and "forward security".</li>
          <li>Clarified high-level breakdown of the key provisioning process in two phases.</li>
          <li>Fixed the CDDL definition of 'sign_info_entry'.</li>
          <li>Clarified meaning of the 'cred_fmt' and 'exp' parameters.</li>
          <li>Clarified that invariance applies to resources paths, not to resources.</li>
          <li>Relaxed rule about including the 'peer_roles' parameter.</li>
          <li>Ensured that the KDC always has a Client-side challenge for computing a proof-of-possession evidence.</li>
          <li>More guidelines for group members that fail to decrypt messages.</li>
          <li>Fetching the latest keying material can happen before the old, stored one expires.</li>
          <li>Renewing the current keying material can happen before it expires.</li>
          <li>Moved up the discussion on misalignment of group keying material.</li>
          <li>Expanded security considerations on group rekeying for joining nodes.</li>
          <li>Revised size of integer for building AEAD nonces for group rekeying.</li>
          <li>Added reserved value to the "ACE Groupcomm Profiles" IANA registry.</li>
          <li>Revised the future-ready generalization of 'sign_info_entry'.</li>
          <li>Revised and fixed IANA considerations.</li>
          <li>Fixes and editorial improvements.</li>
        </ul>
      </section>
      <section anchor="sec-15-16">
        <name>Version -15 to -16</name>
        <ul spacing="normal">
          <li>Distinction between authentication credentials and public keys.</li>
          <li>Consistent renaming of parameters and URI paths.</li>
          <li>Updated format of scope entries when using AIF.</li>
          <li>Updated signaling of semantics for binary encoded scopes.</li>
          <li>Editorial fixes.</li>
        </ul>
      </section>
      <section anchor="sec-14-15">
        <name>Version -14 to -15</name>
        <ul spacing="normal">
          <li>Fixed nits.</li>
        </ul>
      </section>
      <section anchor="sec-13-14">
        <name>Version -13 to -14</name>
        <ul spacing="normal">
          <li>Clarified scope and goal of the document in abstract and introduction.</li>
          <li>Overall clarifications on semantics of operations and parameters.</li>
          <li>Major restructuring in the presentation of the KDC interface.</li>
          <li>Revised error handling, also removing redundant text.</li>
          <li>Imported parameters and KDC resource about the KDC's public key from draft-ietf-ace-key-groupcomm-oscore.</li>
          <li>New parameters 'group_rekeying_scheme' and 'control_group_uri'.</li>
          <li>Provided example of administrative keying material transported in 'mgt_key_material'.</li>
          <li>Reasoned categorization of parameters, as expected support by ACE Clients.</li>
          <li>Reasoned categorization of KDC functionalities, as minimally/optional to support for ACE Clients.</li>
          <li>Guidelines on enhanced error responses using 'error' and 'error_description'.</li>
          <li>New section on group rekeying, discussing at a high-level a basic one-to-one approach and possible one-to-many approaches.</li>
          <li>Revised and expanded security considerations, also about the KDC.</li>
          <li>Updated list of requirements for application profiles.</li>
          <li>Several further clarifications and editorial improvements.</li>
        </ul>
      </section>
      <section anchor="sec-05-13">
        <name>Version -05 to -13</name>
        <ul spacing="normal">
          <li>Incremental revision of the KDC interface.</li>
          <li>Removed redundancy in parameters about signature algorithm and signature keys.</li>
          <li>Node identifiers always indicated with 'peer_identifiers'.</li>
          <li>Format of public keys changed from raw COSE Keys to be certificates, CWTs or CWT Claims Set (CCS). Adapted parameter 'pub_key_enc'.</li>
          <li>Parameters and functionalities imported from draft-ietf-key-groupcomm-oscore where early defined.</li>
          <li>Possible provisioning of the KDC's Diffie-Hellman public key in response to the Token transferring to /authz-info.</li>
          <li>Generalized proof-of-possession evidence, to be not necessarily a signature.</li>
          <li>Public keys of group members may be retrieved filtering by role and/or node identifier.</li>
          <li>Enhanced error handling with error code and error description.</li>
          <li>Extended "typed" format for the 'scope' claim, optional to use.</li>
          <li>Editorial improvements.</li>
        </ul>
      </section>
      <section anchor="sec-04-05">
        <name>Version -04 to -05</name>
        <ul spacing="normal">
          <li>Updated uppercase/lowercase URI segments for KDC resources.</li>
          <li>Supporting single Access Token for multiple groups/topics.</li>
          <li>Added 'control_uri' parameter in the Join Request.</li>
          <li>Added 'peer_roles' parameter to support legal requesters/responders.</li>
          <li>Clarification on stopping using owned keying material.</li>
          <li>Clarification on different reasons for processing failures, related policies, and requirement OPT11.</li>
          <li>Added a KDC sub-resource for group members to upload a new public key.</li>
          <li>Possible group rekeying following an individual Key Renewal Request.</li>
          <li>Clarified meaning of requirement REQ3; added requirement OPT12.</li>
          <li>Editorial improvements.</li>
        </ul>
      </section>
      <section anchor="sec-03-04">
        <name>Version -03 to -04</name>
        <ul spacing="normal">
          <li>Revised RESTful interface, as to methods and parameters.</li>
          <li>Extended processing of Join Request, as to check/retrieval of public keys.</li>
          <li>Revised and extended profile requirements.</li>
          <li>Clarified specific usage of parameters related to signature algorithms/keys.</li>
          <li>Included general content previously in draft-ietf-ace-key-groupcomm-oscore</li>
          <li>Registration of media type and content format application/ace-group+cbor</li>
          <li>Editorial improvements.</li>
        </ul>
      </section>
      <section anchor="sec-02-03">
        <name>Version -02 to -03</name>
        <ul spacing="normal">
          <li>Exchange of information on the signature algorithm and related parameters, during the Token POST (Section 3.3).</li>
          <li>Restructured KDC interface, with new possible operations (Section 4).</li>
          <li>Client PoP signature for the Join Request upon joining (Section 4.1.2.1).</li>
          <li>Revised text on group member removal (Section 5).</li>
          <li>Added more profile requirements (Appendix A).</li>
        </ul>
      </section>
      <section anchor="sec-01-02">
        <name>Version -01 to -02</name>
        <ul spacing="normal">
          <li>Editorial fixes.</li>
          <li>Distinction between transport profile and application profile (Section 1.1).</li>
          <li>New parameters 'sign_info' and 'pub_key_enc' to negotiate parameter values for signature algorithm and signature keys (Section 3.3).</li>
          <li>New parameter 'type' to distinguish different Key Distribution Request messages (Section 4.1).</li>
          <li>New parameter 'client_cred_verify' in the Key Distribution Request to convey a Client signature (Section 4.1).</li>
          <li>Encoding of 'pub_keys_repos' (Section 4.1).</li>
          <li>Encoding of 'mgt_key_material' (Section 4.1).</li>
          <li>Improved description on retrieval of new or updated keying material (Section 6).</li>
          <li>Encoding of 'get_pub_keys' in Public Key Request (Section 7.1).</li>
          <li>Extended security considerations (Sections 10.1 and 10.2).</li>
          <li>New "ACE Public Key Encoding" IANA registry (Section 11.2).</li>
          <li>New "ACE Groupcomm Parameters" IANA registry (Section 11.3), populated with the entries in Section 8.</li>
          <li>New "Ace Groupcomm Request Type" IANA registry (Section 11.4), populated with the values in Section 9.</li>
          <li>New "ACE Groupcomm Policy" IANA registry (Section 11.7) populated with two entries "Sequence Number Synchronization Method" and "Key Update Check Interval" (Section 4.2).</li>
          <li>Improved list of requirements for application profiles (Appendix A).</li>
        </ul>
      </section>
      <section anchor="sec-00-01">
        <name>Version -00 to -01</name>
        <ul spacing="normal">
          <li>Changed name of 'req_aud' to 'audience' in the Authorization Request (Section 3.1).</li>
          <li>Defined error handling on the KDC (Sections 4.2 and 6.2).</li>
          <li>Updated format of the Key Distribution Response as a whole (Section 4.2).</li>
          <li>Generalized format of 'pub_keys' in the Key Distribution Response (Section 4.2).</li>
          <li>Defined format for the message to request leaving the group (Section 5.2).</li>
          <li>Renewal of individual keying material and methods for group rekeying initiated by the KDC (Section 6).</li>
          <li>CBOR type for node identifiers in 'get_pub_keys' (Section 7.1).</li>
          <li>Added section on parameter identifiers and their CBOR keys (Section 8).</li>
          <li>Added request types for requests to a Join Response (Section 9).</li>
          <li>Extended security considerations (Section 10).</li>
          <li>New IANA registries "ACE Groupcomm Key registry", "ACE Groupcomm Profile registry", "ACE Groupcomm Policy registry" and "Sequence Number Synchronization Method registry" (Section 11).</li>
          <li>Added appendix about requirements for application profiles of ACE on group communication (Appendix A).</li>
        </ul>
      </section>
    </section>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>The following individuals were helpful in shaping this document: <contact fullname="Christian Amsüss"/>, <contact fullname="Carsten Bormann"/>, <contact fullname="Roman Danyliw"/>, <contact fullname="Martin Duke"/>, <contact fullname="Thomas Fossati"/>, <contact fullname="Vidhi Goel"/>, <contact fullname="Rikard Höglund"/>, <contact fullname="Ben Kaduk"/>, <contact fullname="Erik Kline"/>, <contact fullname="Warren Kumari"/>, <contact fullname="Watson Ladd"/>, <contact fullname="John Preuß Mattsson"/>, <contact fullname="Daniel Migault"/>, <contact fullname="Zaheduzzaman Sarker"/>, <contact fullname="Jim Schaad"/>, <contact fullname="Ludwig Seitz"/>, <contact fullname="Göran Selander"/>, <contact fullname="Cigdem Sengul"/>, <contact fullname="Dave Thaler"/>, <contact fullname="Henry Thompson"/>, <contact fullname="Peter van der Stok"/>, and <contact fullname="Paul Wouters"/>.</t>
      <t>The work on this document has been partly supported by VINNOVA and the Celtic-Next project CRITISEC; by the H2020 project SIFIS-Home (Grant agreement 952652); and by the EIT-Digital High Impact Initiative ACTIVE.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
R/A2mmrYMNvFJDEahhbYhBDkugxPWNAtDCPs7h8Z8xq30pmYqcazBMuZcs4G
W4nD0UyMwdp0xrwzgbWzooUou6xyfN7SrKVPhVCzgaY0w3F+WoAKsLnp+MGe
RIicoRo1V4os82nehw8pHPPVjBdrfOnvF1zOSS5R2HAx921V+HXudCKeV6dY
jp0Ki3z69Ob5kwf37yLsga6uibLCt30cjY6CSp0r5yWuG9VGR96DapVg4FHZ
EKB1tBdhCExef5DYrHIhldEJssNFFrniODDd5bQmQxMOBxjt3Wz3ZbXInmNR
K8PORNGgwRCLAPkpiPIpPpYDZucblHF/GQC+UeODagmXmSCy0UGEuVW0oMrh
Vu1JiEZ0qnRXEOdjfcd5TBqGAtgLwYLFLZHVk6CgCxobFxrDBoCXnWHdeNSq
xkCL2JJdl1qBhH2g3Kqxu9vgCsTHAqCbONz35Vm+4OLvDtKE2YENbH1ZeSey
VHhiqn10/wFQLR4JjBcF5ZPioeoFMnLZCt6YINTrKgNP3Q94P9vmLRxgo2hC
cw4SNSAsmUWiI6ZttIrMGbAUNvFo/+efHZ3XTZcTu5soCcyzvWaNAbYToVsf
/VB/PadySJcJ3ESgk2Lq90MD4Ga2chIbgtI3hKnrByzgrKIvBaCHGamka5tG
S5EHBvPLGfvpJIIM1rCa2BZIDKQARuAn5TzY2YZpJsjnVmXDIx0ai4dL8+Ar
WZBM4+t3t9g/Y2DnPIyz26NbhJClZvOiD7IVqGdLV53dD9pHXTY51Lz4WAFf
vC1Wlfarl2xEDucpp2QdxpibakWk9Ipku1oEZC8D6jk7o5vH5P4kxumwlah7
rlkdIaUKsxcU91S5qgSNSEQuTEC3fUFoX6RfCo7TcClN6fs6FlOQk5JX/BR6
Db0OEw4Ib80NjOvQIa4l98x8SYBEmauWI+InWmcKheVyuiyECZSgLBgsBLE5
2qKJQQwpBi9HIcKSltO1xbAUEpFfTMNao0FFxbWNjaEckLQ7dlUvdPrK56AI
KMN/bzQxa4WOw2LhHI2blD8vJPoTdsMce6mj5S9p51AURG1kq1QesWpQha5h
G/C/zYcijZQTjxTPztuI3Q3qiJMlBCQ5JGEmMfh+97QY5EtWBlClhI/kS5EO
NYqXlKf8tByXi8tm4bcCH8tBEY8Wac+VQ7VC57CYYVauYG6Cku2iTSpVGeRS
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
XWllJR+sAwA=

-->

</rfc>
