<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.31 (Ruby 3.2.2) -->


<!DOCTYPE rfc  [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">

]>

<?rfc rfcedstyle="yes"?>
<?rfc tocindent="yes"?>
<?rfc strict="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<?rfc text-list-symbols="-o*+"?>
<?rfc docmapping="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-suit-report-07" category="info" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="Secure Reporting of Update Status">Secure Reporting of Update Status</title>

    <author initials="B." surname="Moran" fullname="Brendan Moran">
      <organization>Arm Limited</organization>
      <address>
        <email>brendan.moran.ietf@gmail.com</email>
      </address>
    </author>
    <author initials="H." surname="Birkholz" fullname="Henk Birkholz">
      <organization>Fraunhofer SIT</organization>
      <address>
        <email>henk.birkholz@sit.fraunhofer.de</email>
      </address>
    </author>

    <date year="2023" month="September" day="11"/>

    <area>Security</area>
    <workgroup>SUIT</workgroup>
    <keyword>Internet-Draft</keyword>

    <abstract>


<t>The Software Update for the Internet of Things (SUIT) manifest provides
a way for many different update and boot
workflows to be described by a common format. However, this does not
provide a feedback mechanism for developers in the event that an update
or boot fails.</t>

<t>This specification describes a lightweight feedback mechanism that
allows a developer in possession of a manifest to reconstruct the
decisions made and actions performed by a manifest processor.</t>



    </abstract>



  </front>

  <middle>


<section anchor="introduction"><name>Introduction</name>

<t>A SUIT manifest processor can fail to install or boot an update for many
reasons. Frequently, the error codes generated by such systems fail to
provide developers with enough information to find root causes and
produce corrective actions, resulting in extra effort to reproduce
failures. Logging the results of each SUIT command can simplify this
process.</t>

<t>While it is possible to report the results of SUIT commands through
existing logging or attestation mechanisms, this comes with several
drawbacks:</t>

<t><list style="symbols">
  <t>data inflation, particularly when designed for text-based logging</t>
  <t>missing information elements</t>
  <t>missing support for multiple components</t>
</list></t>

<t>The CBOR objects defined in this document allow devices to:</t>

<t><list style="symbols">
  <t>report a trace of how an update was performed</t>
  <t>report expected vs. actual values for critical checks</t>
  <t>describe the installation of complex multi-component architectures</t>
  <t>describe the measured properties of a system</t>
  <t>report the exact reason for a parsing failure</t>
</list></t>

<t>This document provides a definition of a SUIT-specific logging container
that may be used in a variety of scenarios.</t>

</section>
<section anchor="terminology"><name>Conventions and Terminology</name>

<t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>

<t>Terms used in this specification include:</t>

<t><list style="symbols">
  <t>Boot: initialization of an executable image. Although this
specification refers to boot, any boot-specific operations described
are equally applicable to starting an executable in an OS context.</t>
</list></t>

</section>
<section anchor="the-suit-record"><name>The SUIT Record</name>

<t>If the developer can be assumed to have a copy of the
manifest, then they need little information to reconstruct what the
manifest processor has done. They simply need any data that influences
the control flow of the manifest. The manifest only supports the
following control flow primitives:</t>

<t><list style="symbols">
  <t>Set Component</t>
  <t>Set/Override Parameters</t>
  <t>Try-Each</t>
  <t>Run Sequence</t>
  <t>Conditions</t>
</list></t>

<t>Of these, only conditions change the behavior of the processor from the
default, and then only when the condition fails.</t>

<t>Then, to reconstruct the flow of a manifest, all a developer needs is
a list of metadata about failed conditions:</t>

<t><list style="symbols">
  <t>the current manifest</t>
  <t>the current section</t>
  <t>the offset into the current section</t>
  <t>the current component index</t>
  <t>the "reason" for failure</t>
</list></t>

<t>Most conditions compare a parameter to an actual value, so the "reason"
is typically simply the actual value.</t>

<t>Since it is possible that a non-condition command (directive) may fail in an
exceptional circumstance, this must be included as well. However, 
a failed directive will terminate processing of the manifest. To accommodate
for a failed command and for explicit "completion," an additional "result"
element is added as well. In the case of a command failure,
the failure reason is typically a numeric error code. However, these error
codes need to be standardised in order to be useful.</t>

<t>Reconstructing what a device has done in this way is compact,
however it requires some reconstruction effort. This is an issue that
can be solved by tooling.</t>

<figure><artwork><![CDATA[
SUIT_Record = [
    suit-record-manifest-id        : [* uint ],
    suit-record-manifest-section   : int,
    suit-record-section-offset     : uint,
    suit-record-component-index    : uint,
    suit-record-properties         : SUIT_Parameters,
    $$SUIT_Record_Extensions
]
]]></artwork></figure>

<t>suit-record-manifest-id is used to identify which manifest contains the
command that caused the record to be generated. The manifest id is a
list of integers that form a walk of the manifest tree, starting at the
root. An empty list indicates that the command was contained in the
root manifest. If the list is not empty, the command was contained in
one of the root manifest's dependencies, or nested even further below
that.</t>

<t>For example, suppose that the root manifest has 3 dependencies
and each of those dependencies has 2 dependencies of its own:</t>

<t><list style="symbols">
  <t>Root  <list style="symbols">
      <t>Dependency A      <list style="symbols">
          <t>Dependency A0</t>
          <t>Dependency A1</t>
        </list></t>
      <t>Dependency B      <list style="symbols">
          <t>Dependency B0</t>
          <t>Dependency B1</t>
        </list></t>
      <t>Dependency C      <list style="symbols">
          <t>Dependency C0</t>
          <t>Dependency C1</t>
        </list></t>
    </list></t>
</list></t>

<t>A manifest-id of [1,0] would indicate that the current command was
contained within Dependency B0. Similarly, a manifest-id of [2,1]
would indicate Dependency C1</t>

<t>suit-record-manifest-section indicates which section of the manifest was
active. This is used in addition to an offset so that the developer can
index into severable sections in a predictable way. The value of this
element is the value of the key that identified the section in the
manifest.</t>

<t>suit-record-section-offset is the number of bytes into the current
section at which the current command is located.</t>

<t>suit-record-component-index is the index of the component that was
specified at the time that the report was generated. This field is
necessary due to the availability of set-current-component values of
True and a list of components. Both of these values cause the manifest
processor to loop over commands using a series of component-ids, so the
developer needs to know which was selected when the command executed.</t>

<t>suit-record-properties contains any measured properties that led to the
command failure.
For example, this could be the actual value of a SUIT_Digest or
class identifier. This is encoded in a SUIT_Parameters block as defined
in <xref target="I-D.ietf-suit-manifest"/>.</t>

</section>
<section anchor="the-suitreport"><name>The SUIT_Report</name>

<t>Some metadata is common to all records, such as the root manifest:
the manifest that is the entry-point for the manifest processor. This
metadata is aggregated with a list of SUIT_Records. The SUIT_Report
may also contain a list of any system properties that were measured
and reported, and a reason for a failure if one occured.</t>

<figure><artwork><![CDATA[
SUIT_Report = {
  suit-reference              => SUIT_Reference,
  ? suit-report-nonce         => bstr,
  suit-report-records         => [ * SUIT_Record / system-property-claims ],
  suit-report-result          => true / {
    suit-report-result-code   => int, ; could condense to enum later
    suit-report-result-record => SUIT_Record,
  }
  $$SUIT_Report_Extensions
}
system-property-claims = {
  system-component-id => SUIT_Component_Identifier,
  + SUIT_Parameters,
}
]]></artwork></figure>

<t>The suit-reference provides a reference URI and digest for a suit
manifest. The uri <bcp14>SHOULD</bcp14> be the canonical URI that is provided in the
manifest. The digest is the digest of the manifest.</t>

<t>NOTE: The digest is used
in preference to other identifiers in the manifest because it allows
a manifest to be uniquely identified (collision resistance) whereas
other identifiers, such as the sequence number, can collide,
particularly in scenarios with multiple trusted signers.</t>

<t>The following CDDL describes a SUIT_Reference.</t>

<figure><sourcecode type="CDDL"><![CDATA[
SUIT_Reference = {
    suit-report-manifest-uri  : tstr,
    suit-report-manifest-digest : SUIT_Digest,
}
]]></sourcecode></figure>

<t>suit-report-manifest-digest provides a SUIT_Digest (as defined in
<xref target="I-D.ietf-suit-manifest"/>) that is the characteristic digest of the
Root manifest.</t>

<t>suit-report-manifest-uri provides the reference URI that was provided in
the root manifest.</t>

<t>suit-report-nonce provides a container for freshness or replay
protection information. This field <bcp14>MAY</bcp14> be omitted where the suit-report
is authenticated within a container that provides freshness already.
For example, attestation evidence typically contains a proof of
freshness.</t>

<t>suit-report-records is a list of 0 or more SUIT Records or 
system-property-claims. Because SUIT Records are only generated on failure,
in simple cases this can be an empty list. SUIT_Records and 
suit-system-property-claims are merged into a single list because this
reduces the overhead for a constrained node that generates this report.
The use of a single append-only log allows report generators to use simple
memory management. Because the system-property-claims are encoded as maps
and SUIT_Records are encoded as lists, a recipient need only filter the
CBOR Type-5 entries from suit-report-records to obtain all 
system-property-claims.</t>

<t>System properties can be extracted from suit-report-records by filtering
suit-report-records for maps. System Properties are a list of measured 
or asserted properties
of the system that creates the SUIT_Report. These properties are scoped by
component identifier. Because this list is expected to be constructed on
the fly by a constrained node, component identifiers may appear more than
once. A recipient may convert the result to a more conventional structure:</t>

<figure><sourcecode type="CDDL"><![CDATA[
SUIT_Record_System_Properties = {
  * component-id => {
    + SUIT_Parameters,
  }
}
]]></sourcecode></figure>

<t>suit-report-result provides a mechanism to show that the SUIT procedure
completed successfully (value is true) or why it failed (value is a map
of an error code and a SUIT_Record).</t>

<t>The suit-report-result-code indicates the reason for the failure. Values
are expected to be CBOR parsing failures, Schema validation failures,
COSE validation failures or SUIT processing failures.</t>

<t>The suit-report-result-record indicates the exact point in the manifest
or manifest dependency tree where the error occured.</t>

</section>
<section anchor="attestation"><name>Attestation</name>

<t>This document describes how a well-informed verifier can infer the trustworthiness of a remote device. Remote attestation is done by using the SUIT_Manifest_Envelope along with the SUIT_Report to reconstruct the state of the device at boot time. By embedding data used for remote attestation in the SUIT_Report, a remote device can use an append-only log to collect both measurements and debug/failure information into the same document. This document can then be conveyed to a verifier as a part of the attestation evidence. A remote attestation format to convey attestation evidence, such as an Entity Attestation Token (EAT, see <xref target="I-D.ietf-rats-eat"/>), that contains a SUIT_Report <bcp14>MUST</bcp14> also include an integrity measurement of the Manifest Processor &amp; Report Generator.</t>

<t>When a Concise Reference Integrity Manifest (CoRIM, see <xref target="I-D.birkholz-rats-corim"/> is delivered in a SUIT_Manifest_Envelope, this codifies the delivery of verification information to the verifier:</t>

<t><list style="symbols">
  <t>The Firmware Distributor:
  <list style="symbols">
      <t>sends the SUIT_Manifest_Envelope to the Verifier without payload or text, but with CoRIM</t>
      <t>sends the SUIT_Manifest_Envelope to the recipient without CoRIM, or text, but with payload</t>
    </list></t>
  <t>The Recipient:
  <list style="symbols">
      <t>Installs the firmware as described in the SUIT_Manifest and generates a SUIT_report, which is encapsulated in an EAT by the installer and sent to the Firmware Distributor.</t>
      <t>Boots the firmware as described in the SUIT_Manifest and creates a SUIT_report, which is encapsulated in an EAT by the installer and sent to the Firmware Distributor.</t>
    </list></t>
  <t>The Firmware Distributor sends both reports to the verifier (separately or together)</t>
  <t>The Verifier:
  <list style="symbols">
      <t>Reconstructs the state of the device using the manifest</t>
      <t>Compares this state to the CoRIM</t>
      <t>Returns an Attestation Report to the Firmware Distributor</t>
    </list></t>
</list></t>

<t>This approach simplifies the design of the bootloader since it is able to use an append-only log. It allows a verifier to validate this report against a signed CoRIM that is provided by the firmware author, which simplifies the delivery chain of verification information to the verifier.</t>

<t>This information is not intended as Attestation Evidence and while an Attestation Report <bcp14>MAY</bcp14> provide this information for conveying error codes and/or failure reports, it <bcp14>SHOULD</bcp14> be translated into general-purpose claims for use by the Relying Party.</t>

</section>
<section anchor="capability-reporting"><name>Capability Reporting</name>

<t>Because SUIT is extensible, a manifest author must know what capabilities a device has available. To enable this, a capability report is a set of lists that define which commands, parameters, algorithms, and component IDs are supported by a manifest processor.</t>

<t>The CDDL for a SUIT_Capability_Report follows:</t>

<figure><sourcecode type="CDDL"><![CDATA[
SUIT_Capability_Report = {
  suit-component-capabilities        => [+ SUIT_Component_Capability ]
  suit-command-capabilities          => [+ int],
  suit-parameters-capabilities       => [+ int],
  suit-crypt-algo-capabilities       => [+ int],
  ? suit-envelope-capabilities       => [+ int],
  ? suit-manifest-capabilities       => [+ int],
  ? suit-common-capabilities         => [+ int],
  ? suit-text-component-capabilities => [+ int],
  ? suit-text-capabilities           => [+ int],
  ? suit-dependency-capabilities     => [+ int],
  * [+int]                           => [+ int],
  $$SUIT_Capability_Report_Extensions
}

SUIT_Component_Capability = [*bstr,?true]
]]></sourcecode></figure>

<t>A SUIT_Component_Capability is similar to a SUIT_Component_ID, with one difference: it may optionally be terminated by a CBOR 'true' which acts as a wild-card match for any component with a prefix matching the SUIT_Component_Capability leading up to the 'true.' This feature is for use with filesystem storage, key value stores, or any other arbitrary-component-id storage systems.</t>

<t>When reporting capabilities, it is <bcp14>OPTIONAL</bcp14> to report capabilities that are declared mandatory by the SUIT Manifest <xref target="I-D.ietf-suit-manifest"/>. Capabilities defined by extensions <bcp14>MUST</bcp14> be reported.</t>

<t>Additional capability reporting can be added as follows: if a manifest element does not exist in this map, it can be added by specifying the CBOR path to the manifest element in an array and using this as the key. For example SUIT_Dependencies, as described in <xref target="I-D.ietf-suit-trust-domains"/> could have an extension added, which was key 3 in the SUIT_Dependencies map. This capability would be reported as: [3, 3, 1] =&gt; [3], where the key consists of the key for SUIT_Manifest (3), the key for SUIT_Common (3), and the key for SUIT_Dependencies (1). Then the value indicates that this manifest processor supports the extension (3).</t>

</section>
<section anchor="eat"><name>EAT Claim</name>

<t>The SUIT_Report is a form of measurement done by the SUIT Manifest Processor as it attempts to invoke a manifest or install a manifest. As a result, the SUIT_Report can be captured in an EAT measurements type.
The Verifier <bcp14>MAY</bcp14> convert a SUIT_Report into a more consumable version of the EAT claim by, for example, constructing a measres claim that contains the digest of a component, the vendor ID &amp; class ID of a component, etc.</t>

</section>
<section anchor="container"><name>SUIT_Report container</name>

<t>The SUIT_Report <bcp14>MUST</bcp14> be carried in a container or transport that ensures authenticity. The SUIT_Report <bcp14>MUST</bcp14> be transported using one of the following options:</t>

<t><list style="symbols">
  <t>As an element of an existing document that ensures authenticity, such as in a measurements claim in an EAT.</t>
  <t>As the payload of a message delivered over secure transport, such as a CoAP or LwM2M message.</t>
  <t>Contained within a secure container that conforms to the current recommendations of <xref target="I-D.ietf-suit-mti"/>.</t>
</list></t>

<t>In this case, the SUIT_Report is carried as sole payload of a COSE_Encrypt0 or COSE_Sign1 as shown in the CDDL snippet below.</t>

<figure><sourcecode type="CDDL"><![CDATA[
SUIT_Report_Protected /= SUIT_Report_COSE_Sign1 .and SUIT_COSE_Profiles
SUIT_Report_Protected /= SUIT_Report_COSE_Sign1_Tagged .and SUIT_COSE_Profiles
SUIT_Report_Protected /= SUIT_Report_COSE_MAC0 .and SUIT_COSE_Profiles
SUIT_Report_Protected /= SUIT_Report_COSE_MAC0_Tagged .and SUIT_COSE_Profiles

SUIT_Report_COSE_Sign1_Tagged = #6.18(SUIT_Report_COSE_Sign1)
SUIT_Report_COSE_Sign1 = [
    protected : bstr,
    unprotected : {* int => any},
    payload : bstr .cbor SUIT_Report_Unprotected,
    signature : bstr
]
SUIT_Report_COSE_MAC0_Tagged = #6.17(SUIT_Report_COSE_MAC0)
SUIT_Report_COSE_MAC0 = [
    protected : bstr,
    unprotected : {* int => any},
    payload : bstr .cbor SUIT_Report_Unprotected,
    tag : bstr
]
SUIT_Report_Unprotected = SUIT_Report / SUIT_Report_COSE_Encrypt0
SUIT_Report_COSE_Encrypt0 = COSE_Encrypt0
]]></sourcecode></figure>

<t>Note that SUIT_Report_COSE_Sign1 and SUIT_Report_COSE_MAC0 <bcp14>MUST</bcp14> be combined with a SUIT_COSE_Profile from <xref target="I-D.ietf-suit-mti"/> using the CDDL .and directive. The SUIT_Report_COSE_Encrypt0 carries a ciphertext payload that <bcp14>MUST</bcp14> contain just the ciphertext obtained by encrypting the following CDDL:</t>

<figure><sourcecode type="CDDL"><![CDATA[
SUIT_Report_plaintext = bstr .cbor SUIT_Report
]]></sourcecode></figure>

<t>SUIT_COSE_Profiles define only AES-CTR encryption due to its suitability for firmware distribution. Because AES-CTR is not authenticated, SUIT_Report_Protected defines authenticated containers with an encrypted payload.</t>

</section>
<section anchor="iana"><name>IANA Considerations</name>

<t>IANA is requested to allocate a CBOR tag and a coap content-type each for the SUIT_Report, SUIT_Reference, and SUIT_Capability_Report CBOR data structures.</t>

<t>IANA is also requested to add a table to the SUIT page for SUIT_Capability_Report_Extensions.</t>

</section>
<section anchor="security-considerations"><name>Security Considerations</name>

<t>There are two aspects to the security considerations for SUIT reports:
authenticity and confidentiality. SUIT reports must have guaranteed
authenticity for them to be useful. Several options are available to
ensure the authenticity of a SUIT report. The report <bcp14>MAY</bcp14> be bundled
as the payload of a cryptographic container as described in <xref target="container"/>.
communicated over a secure transport. It may also be communicated as
part of an existing authenticated protocol, such as within an EAT 
token. Ideally, the SUIT_Report <bcp14>SHOULD</bcp14> be communicated as part of an
attestation flow, such as within an EAT token, since this proves the
authenticity of the environment (hardware, software, or both) in which
the SUIT_Report was generated.</t>

<t>The SUIT_Report <bcp14>MAY</bcp14> require confidentiality as well. A SUIT_Report
could potentially reveal confidential information about the kinds of
device that a particular user has. It could also reveal confidential
information about intellectual property contained in a device. Where
these concerns are relevant, the SUIT_Report <bcp14>MUST</bcp14> be encrypted, for 
example using a COSE_Encrypt as described in <xref target="container"/>, or by using
secure transport.</t>

<t>There are also operational considerations that intersect with these
security considerations. In situations where the SUIT report is
encrypted as an element of a message within another protocol, care must
be taken to ensure that this does not leak information and that the
principle of least privilege is respected. For example, in an EAT-based
attestation workflow, the Verifier often will not need the full SUIT
Report. Similarly, the Relying Party may also not need the SUIT_Report.
In this case, the SUIT_Report <bcp14>MUST</bcp14> be encrypted even if the EAT token
that contains it is also encrypted.</t>

<t>In contrast, however, there are scenarios where the EAT Verifier
consumes the SUIT report and translates it into one or more other
EAT claims. For example, a SUIT report that shows a particular digest
was matched using an suit-condition-image can be translated into a
EAT measres (Measurement Results) claim. In this scenario, the Verifier
must have access to the full SUIT_Report.</t>

</section>
<section anchor="acknowledgements"><name>Acknowledgements</name>

<t>The authors would like to thank Dave Thaler for his feedback.</t>

</section>


  </middle>

  <back>


    <references title='Normative References'>




<reference anchor='I-D.ietf-suit-manifest'>
   <front>
      <title>A Concise Binary Object Representation (CBOR)-based Serialization Format for the Software Updates for Internet of Things (SUIT) Manifest</title>
      <author fullname='Brendan Moran' initials='B.' surname='Moran'>
         <organization>Arm Limited</organization>
      </author>
      <author fullname='Hannes Tschofenig' initials='H.' surname='Tschofenig'>
         </author>
      <author fullname='Henk Birkholz' initials='H.' surname='Birkholz'>
         <organization>Fraunhofer SIT</organization>
      </author>
      <author fullname='Koen Zandberg' initials='K.' surname='Zandberg'>
         <organization>Inria</organization>
      </author>
      <author fullname='Øyvind Rønningstad' initials='O.' surname='Rønningstad'>
         <organization>Nordic Semiconductor</organization>
      </author>
      <date day='10' month='September' year='2023'/>
      <abstract>
	 <t>   This specification describes the format of a manifest.  A manifest is
   a bundle of metadata about code/data obtained by a recipient (chiefly
   the firmware for an IoT device), where to find the code/data, the
   devices to which it applies, and cryptographic information protecting
   the manifest.  Software updates and Trusted Invocation both tend to
   use sequences of common operations, so the manifest encodes those
   sequences of operations, rather than declaring the metadata.

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-ietf-suit-manifest-23'/>
   
</reference>

<reference anchor='RFC2119'>
  <front>
    <title>Key words for use in RFCs to Indicate Requirement Levels</title>
    <author fullname='S. Bradner' initials='S.' surname='Bradner'/>
    <date month='March' year='1997'/>
    <abstract>
      <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
    </abstract>
  </front>
  <seriesInfo name='BCP' value='14'/>
  <seriesInfo name='RFC' value='2119'/>
  <seriesInfo name='DOI' value='10.17487/RFC2119'/>
</reference>

<reference anchor='RFC8174'>
  <front>
    <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
    <author fullname='B. Leiba' initials='B.' surname='Leiba'/>
    <date month='May' year='2017'/>
    <abstract>
      <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
    </abstract>
  </front>
  <seriesInfo name='BCP' value='14'/>
  <seriesInfo name='RFC' value='8174'/>
  <seriesInfo name='DOI' value='10.17487/RFC8174'/>
</reference>




    </references>

    <references title='Informative References'>




<reference anchor='I-D.ietf-rats-eat'>
   <front>
      <title>The Entity Attestation Token (EAT)</title>
      <author fullname='Laurence Lundblade' initials='L.' surname='Lundblade'>
         <organization>Security Theory LLC</organization>
      </author>
      <author fullname='Giridhar Mandyam' initials='G.' surname='Mandyam'>
         <organization>Qualcomm Technologies Inc.</organization>
      </author>
      <author fullname='Jeremy O&#x27;Donoghue' initials='J.' surname='O&#x27;Donoghue'>
         <organization>Qualcomm Technologies Inc.</organization>
      </author>
      <author fullname='Carl Wallace' initials='C.' surname='Wallace'>
         <organization>Red Hound Software, Inc.</organization>
      </author>
      <date day='30' month='June' year='2023'/>
      <abstract>
	 <t>   An Entity Attestation Token (EAT) provides an attested claims set
   that describes state and characteristics of an entity, a device like
   a smartphone, IoT device, network equipment or such.  This claims set
   is used by a relying party, server or service to determine how much
   it wishes to trust the entity.

   An EAT is either a CBOR Web Token (CWT) or JSON Web Token (JWT) with
   attestation-oriented claims.

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-ietf-rats-eat-21'/>
   
</reference>


<reference anchor='I-D.birkholz-rats-corim'>
   <front>
      <title>Concise Reference Integrity Manifest</title>
      <author fullname='Henk Birkholz' initials='H.' surname='Birkholz'>
         <organization>Fraunhofer SIT</organization>
      </author>
      <author fullname='Thomas Fossati' initials='T.' surname='Fossati'>
         <organization>arm</organization>
      </author>
      <author fullname='Yogesh Deshpande' initials='Y.' surname='Deshpande'>
         <organization>arm</organization>
      </author>
      <author fullname='Ned Smith' initials='N.' surname='Smith'>
         <organization>Intel</organization>
      </author>
      <author fullname='Wei Pan' initials='W.' surname='Pan'>
         <organization>Huawei Technologies</organization>
      </author>
      <date day='11' month='July' year='2022'/>
      <abstract>
	 <t>   Remote Attestation Procedures (RATS) enable Relying Parties to assess
   the trustworthiness of a remote Attester and therefore to decide
   whether to engage in secure interactions with it.  Evidence about
   trustworthiness can be rather complex and it is deemed unrealistic
   that every Relying Party is capable of the appraisal of Evidence.
   Therefore that burden is typically offloaded to a Verifier.  In order
   to conduct Evidence appraisal, a Verifier requires not only fresh
   Evidence from an Attester, but also trusted Endorsements and
   Reference Values from Endorsers and Reference Value Providers, such
   as manufacturers, distributors, or device owners.  This document
   specifies Concise Reference Integrity Manifests (CoRIM) that
   represent Endorsements and Reference Values in CBOR format.
   Composite devices or systems are represented by a collection of
   Concise Module Identifiers (CoMID) and Concise Software Identifiers
   (CoSWID) bundled in a CoRIM document.

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-birkholz-rats-corim-03'/>
   
</reference>


<reference anchor='I-D.ietf-suit-trust-domains'>
   <front>
      <title>SUIT Manifest Extensions for Multiple Trust Domains</title>
      <author fullname='Brendan Moran' initials='B.' surname='Moran'>
         <organization>Arm Limited</organization>
      </author>
      <author fullname='Ken Takayama' initials='K.' surname='Takayama'>
         <organization>SECOM CO., LTD.</organization>
      </author>
      <date day='11' month='September' year='2023'/>
      <abstract>
	 <t>   This specification describes extensions to the SUIT Manifest format
   (as defined in [I-D.ietf-suit-manifest]) for use in deployments with
   multiple trust domains.  A device has more than one trust domain when
   it enables delegation of different rights to mutually distrusting
   entities for use for different purposes or Components in the context
   of firmware or software update.

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-ietf-suit-trust-domains-05'/>
   
</reference>


<reference anchor='I-D.ietf-suit-mti'>
   <front>
      <title>Mandatory-to-Implement Algorithms for Authors and Recipients of Software Update for the Internet of Things manifests</title>
      <author fullname='Brendan Moran' initials='B.' surname='Moran'>
         <organization>Arm Limited</organization>
      </author>
      <author fullname='Øyvind Rønningstad' initials='O.' surname='Rønningstad'>
         <organization>Nordic Semiconductor</organization>
      </author>
      <author fullname='Akira Tsukamoto' initials='A.' surname='Tsukamoto'>
         <organization>ALAXALA Networks Corp.</organization>
      </author>
      <date day='1' month='September' year='2023'/>
      <abstract>
	 <t>   This document specifies algorithm profiles for SUIT manifest parsers
   and authors to ensure better interoperability.  These profiles apply
   specifically to a constrained node software update use case.

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-ietf-suit-mti-02'/>
   
</reference>




    </references>



  </back>

<!-- ##markdown-source:
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
Foe1608AAA==

-->

</rfc>

