<?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-11" category="std" consensus="true" 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="2025" month="March" day="03"/>

    <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="suit-report"><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>

<t>CDDL
~~~
SUIT_Report = {
  suit-reference              =&gt; SUIT_Reference,
  ? suit-report-nonce         =&gt; bstr,
  suit-report-records         =&gt; [ * SUIT_Record / system-property-claims ],
  suit-report-result          =&gt; true / {
    suit-report-result-code   =&gt; int,
    suit-report-result-record =&gt; SUIT_Record,
    suit-report-result-reason =&gt; SUIT_Report_Reasons,
  },
  ? suit-report-capability-report =&gt; SUIT_Capability_Report,
  $$SUIT_Report_Extensions
}
system-property-claims = {
  system-component-id =&gt; SUIT_Component_Identifier,
  + SUIT_Parameters,
}
~~~</t>

<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>

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

<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>

</section>
<section anchor="suit-report-result"><name>SUIT Report Result</name>

<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>suit-report-result-reason gives a high-level explanation of the failure.
These reasons are intended for interoperable implementations. The reasons
are divided into a small number of groups:</t>

<t><list style="symbols">
  <t>suit-report-reason-cbor-parse: a parsing error was encountered by the
CBOR parser.</t>
  <t>suit-report-reason-cose-unsupported: an unusupported COSE structure or
header was encountered.</t>
  <t>suit-report-reason-alg-unsupported: an unsupported COSE algorithm was
encountered.</t>
  <t>suit-report-reason-unauthorised: Signature/MAC verification failed.</t>
  <t>suit-report-reason-command-unsupported: an unsupported command was
encountered.</t>
  <t>suit-report-reason-component-unsupported: The manifest declared a 
component/prefix that does not exist.</t>
  <t>suit-report-reason-component-unauthorised: The manifest declared a 
component that is not accessible by the signer.</t>
  <t>suit-report-reason-parameter-unsupported: The manifest used a
parameter that does not exist.</t>
  <t>suit-report-severing-unsupported: The manifest uses severable fields
but the Manifest Processor doesn't support them.</t>
  <t>suit-report-reason-condition-failed: A condition failed with soft-
failure off.</t>
  <t>suit-report-reason-operation-failed: A command failed (e.g., 
download/copy/swap/write)</t>
</list></t>

<t>The suit-report-result-code reports an internal error code that is
provided for debugging reasons. This code is not intended for 
interoperability.</t>

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

<t>suit-report-capability-report provides a mechanism to report the capabilities of the Manifest Processor. The SUIT_Capability_Report is described in <xref target="capabilities"/>. The capability report is optional to include in the SUIT_Report, according to an application-specific policy. While the SUIT_Capability_Report is not expected to be very large, applications should ensure that they only report capabilities when necessary in order to conserve bandwidth. A capability report is not necessary except when:</t>

<t><list style="numbers">
  <t>A client explicitly requests the capability report, or</t>
  <t>A manifest attempts to use a capability that the Manifest Processor does not implement.</t>
</list></t>

</section>
</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="capabilities"><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-capabilities           => [+ int],
  ? suit-text-component-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 the following registries to the SUIT category:</t>

<t><list style="symbols">
  <t>SUIT Report Elements</t>
  <t>SUIT Record Elements</t>
  <t>SUIT Report Reasons</t>
  <t>SUIT Capability Report Elements</t>
</list></t>

<section anchor="suit-report-elements"><name>SUIT Report Elements</name>

<t>IANA is requested to create a new registry for SUIT Report Elements.</t>

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>2</c>
      <c>Nonce</c>
      <c><xref target="suit-report"/></c>
      <c>3</c>
      <c>Records</c>
      <c><xref target="suit-report"/></c>
      <c>4</c>
      <c>Result</c>
      <c><xref target="suit-report"/></c>
      <c>5</c>
      <c>Result Code</c>
      <c><xref target="suit-report"/></c>
      <c>6</c>
      <c>Result Record</c>
      <c><xref target="suit-report"/></c>
      <c>7</c>
      <c>Result Reason</c>
      <c><xref target="suit-report"/></c>
      <c>8</c>
      <c>Capability Report</c>
      <c><xref target="suit-report"/></c>
      <c>99</c>
      <c>Reference</c>
      <c><xref target="suit-report"/></c>
</texttable>

</section>
<section anchor="suit-record-elements"><name>SUIT Record Elements</name>

<t>IANA is requested to create a new registry for SUIT Record Elements.</t>

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0</c>
      <c>Manifest ID</c>
      <c><xref target="suit-record"/></c>
      <c>1</c>
      <c>Manifest Section</c>
      <c><xref target="suit-record"/></c>
      <c>2</c>
      <c>Section Offset</c>
      <c><xref target="suit-record"/></c>
      <c>3</c>
      <c>Component Index</c>
      <c><xref target="suit-record"/></c>
      <c>4</c>
      <c>Dependency Index</c>
      <c><xref target="suit-record"/></c>
      <c>5</c>
      <c>Record Properties</c>
      <c><xref target="suit-record"/></c>
</texttable>

</section>
<section anchor="suit-report-reasons"><name>SUIT Report Reasons</name>

<t>IANA is requested to create a new registry for SUIT Report Reasons.</t>

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0</c>
      <c>Result OK</c>
      <c><xref target="suit-report-result"/></c>
      <c>1</c>
      <c>CBOR Parse Failure</c>
      <c><xref target="suit-report-result"/></c>
      <c>2</c>
      <c>Unsupported COSE Structure or Header</c>
      <c><xref target="suit-report-result"/></c>
      <c>3</c>
      <c>Unsupported COSE Algorithm</c>
      <c><xref target="suit-report-result"/></c>
      <c>4</c>
      <c>Signature / MAC verification failed</c>
      <c><xref target="suit-report-result"/></c>
      <c>5</c>
      <c>Unsupported SUIT Command</c>
      <c><xref target="suit-report-result"/></c>
      <c>6</c>
      <c>Unsupported SUIT Component</c>
      <c><xref target="suit-report-result"/></c>
      <c>7</c>
      <c>Unauthorized SUIT Component</c>
      <c><xref target="suit-report-result"/></c>
      <c>8</c>
      <c>Unsupported SUIT Parameter</c>
      <c><xref target="suit-report-result"/></c>
      <c>9</c>
      <c>Severing Unsupported</c>
      <c><xref target="suit-report-result"/></c>
      <c>10</c>
      <c>Condition Failed</c>
      <c><xref target="suit-report-result"/></c>
      <c>11</c>
      <c>Operation Failed</c>
      <c><xref target="suit-report-result"/></c>
</texttable>

</section>
<section anchor="suit-capability-report-elements"><name> SUIT Capability Report Elements</name>

<t>IANA is requested to create a new registry for SUIT Capability Report Elements.</t>

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>1</c>
      <c>Components</c>
      <c><xref target="capabilities"/></c>
      <c>2</c>
      <c>Commands</c>
      <c><xref target="capabilities"/></c>
      <c>3</c>
      <c>Parameters</c>
      <c><xref target="capabilities"/></c>
      <c>4</c>
      <c>Cryptographic Algorithms</c>
      <c><xref target="capabilities"/></c>
      <c>5</c>
      <c>Envelope Elements</c>
      <c><xref target="capabilities"/></c>
      <c>6</c>
      <c>Manifest Elements</c>
      <c><xref target="capabilities"/></c>
      <c>7</c>
      <c>Common Elements</c>
      <c><xref target="capabilities"/></c>
      <c>8</c>
      <c>Text Elements</c>
      <c><xref target="capabilities"/></c>
      <c>9</c>
      <c>Component Text Elements</c>
      <c><xref target="capabilities"/></c>
</texttable>

</section>
</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. When reporting failures, particularly in the
cryptographic primitives, there is a risk that over-reporting can
provide an attacker with better visibility. Therefore, SUIT_Reports
<bcp14>SHOULD</bcp14> be encrypted wherever possible.</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='24' month='February' year='2025'/>
      <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 Internet of Things (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-33'/>
   
</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='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='21' month='October' year='2024'/>
      <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-08'/>
   
</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>Mediatek USA</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='6' month='September' year='2024'/>
      <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 the type
   and degree of trust placed in 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-31'/>
   
</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='4' month='December' year='2024'/>
      <abstract>
	 <t>   This specification describes extensions to the SUIT Manifest format
   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-09'/>
   
</reference>




    </references>


<section anchor="full-cddl"><name>Full CDDL</name>
<t>In order to create a valid SUIT Report document the structure of the corresponding CBOR message <bcp14>MUST</bcp14> adhere to the following CDDL data definition.</t>

<t>To be valid, the following CDDL <bcp14>MUST</bcp14> have the COSE CDDL appended to it. The COSE CDDL can be obtained by following the directions in <xref section="1.4" sectionFormat="comma" target="RFC9052"/>. It must also have the CDDL from <xref target="I-D.ietf-suit-mti"/> appended to it.</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

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,
    suit-report-result-record => SUIT_Record,
    suit-report-result-reason => SUIT_Report_Reasons,
  },
  ? suit-report-capability-report => SUIT_Capability_Report,
  $$SUIT_Report_Extensions
}

SUIT_Reference = [
    suit-report-manifest-uri : tstr,
    suit-report-manifest-digest : SUIT_Digest
]

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
]

system-property-claims = {
  system-component-id => SUIT_Component_Identifier,
  + $$SUIT_Parameters,
}

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-capabilities           => [+ int],
  ? suit-text-component-capabilities => [+ int],
  ? suit-dependency-capabilities     => [+ int],
  * [+int]                           => [+ int],
  $$SUIT_Capability_Report_Extensions
}

SUIT_Component_Capability = [*bstr,?true]

suit-report-nonce = 2
suit-report-records = 3
suit-report-result = 4
suit-report-result-code = 5
suit-report-result-record = 6
suit-report-result-reason = 7
suit-report-capability-report = 8
suit-reference = 99

suit-system-properties = 13
system-component-id = 0

suit-record-manifest-id = 0
suit-record-manifest-section = 1
suit-record-section-offset = 2
suit-record-component-index = 3
suit-record-dependency-index = 4
suit-record-properties = 5

SUIT_Report_Reasons /= suit-report-reason-ok
SUIT_Report_Reasons /= suit-report-reason-cbor-parse
SUIT_Report_Reasons /= suit-report-reason-cose-unsupported
SUIT_Report_Reasons /= suit-report-reason-alg-unsupported
SUIT_Report_Reasons /= suit-report-reason-unauthorised
SUIT_Report_Reasons /= suit-report-reason-command-unsupported
SUIT_Report_Reasons /= suit-report-reason-component-unsupported
SUIT_Report_Reasons /= suit-report-reason-component-unauthorised
SUIT_Report_Reasons /= suit-report-reason-parameter-unsupported
SUIT_Report_Reasons /= suit-report-severing-unsupported
SUIT_Report_Reasons /= suit-report-reason-condition-failed
SUIT_Report_Reasons /= suit-report-reason-operation-failed

suit-report-reason-ok = 0
suit-report-reason-cbor-parse = 1
suit-report-reason-cose-unsupported = 2
suit-report-reason-alg-unsupported = 3
suit-report-reason-unauthorised = 4
suit-report-reason-command-unsupported = 5
suit-report-reason-component-unsupported = 6
suit-report-reason-component-unauthorised = 7
suit-report-reason-parameter-unsupported = 8
suit-report-severing-unsupported = 9
suit-report-reason-condition-failed = 10
suit-report-reason-operation-failed = 11

suit-component-capabilities        = 1
suit-command-capabilities          = 2
suit-parameters-capabilities       = 3
suit-crypt-algo-capabilities       = 4
suit-envelope-capabilities         = 5
suit-manifest-capabilities         = 6
suit-common-capabilities           = 7
suit-text-capabilities             = 8
suit-text-component-capabilities   = 9
suit-dependency-capabilities       = 10
  
]]></sourcecode></figure>

</section>


  </back>

<!-- ##markdown-source:
H4sIAAAAAAAAA+086XLbyJn/8RS9dipjOyRt2XNZtU4iS/KOau2xV5aTStku
VxNokohAgAOAkjkazbPkWfJk+119ASBlT7LZrdqZymREoI+vv/tCj8fjpM3b
wuyr1yZd10admlVVt3k5V9VMvVllujXqdavbdZPo6bQ2F58yMqvSUi9h0azW
s3acm3Y2btZ5O65pznhvL0lh+LyqN/uqabMkyVf1vmrrddM+fPDg8YOHia6N
lq3ydpNcVvX5vK7WK3j25uQsOTcbeJTtq5OyNXVp2vERbpUkTavL7IMuqhK2
35gmWeX7iVL1LDVZ024KeapUW6XBn3mZmbK1DxoAsjazxv3eLKOfbZ2nbnBa
LZcw173NyyIv/TbmYzsu8qYdwyLTqoBh4+re7+ANIGmpVytAII/V63ZR1QDs
GF7SP3kJo59O1Iuq1qV9yIh9Wpsy02X8qqrnusx/1G1elfvqoF6q5/kyb01m
B5ilzot9NeXJkyVOniB1/jjHNxM4Cmyvov2/m6ineX2+qIofYxC+M+V571UM
wrNar8tFNTO1eg1Ei6FYwPzJVOb/scnbycwNn2QGeKKcVfUSlrowSMKT8RHB
Oq5124yNBgIcH5zJC7sOv0yrOl/uq8Pq9ORFOJN4kLhsnFUABZwvScrBTWjo
Es4yM02Lb06fHT5+8NXDfaB3Y/ojW2CzJBmPx0pPgT90Crx4tgCJqGbtJTCz
lRA4kmrhueVbFJ6zBTBBo+4gZ99VdlO1qquLPEPOUJd6QzPh3UZl+QxQBCyn
1rwmcLyaVlVLUjIrqssGWFpNjYLJaZ1PDbzeKE2cWpWKsTpR31WX5sLUI4An
b4AdTaNKWES2hfEzY7KpTs/V0qQLgKpZEhAZzCqqlakb4BA6DDwAaNqFbgEW
gSqBkQiUmgG1mwliA3ZpVibNZ3lKDOLga2CzIp8v2kuD/z+0MS6e6IIOpz0I
CMGqahrTNLggIFN7BAISapNWJdBjnSJ8JslgexzZwKiMMQekogewGmLGIisk
QwrLV/WE6bvMs6wA9ryNNKyrbE3zk+SANNPAPJUCUhALCBDwXAvHUBY7Dl+O
vglovgYAmoD4mB/WgNliM2I01zWuVgHa1NyUBnidoW3W6QKUVNOaZWN3cnQM
yHWZtwtlymo9XygnXYA2gGsGGlDVCFGq1w1SpMxwCTiegS1rQCTKiMXWCDDb
rAtS/0ACUHK1VmYGSwraZWqC0IC1gNM8r+ZzHI4n4ckN0stogJ0wh+yJBEF0
NflyVeSzDfFmIqgEAvx5kRdG5a0CXkK651P4yRvS1vHa4bIgE4saT56Yj6CO
EZJCIAKk6rYFmjE2HNM1IhqwghHkNSgxukjAsF0ih6ICuaeAfhoRWtACI7XS
YBjTdaHrYqMuQdEhp+fzEqhF8o82Yaob+CkgwBrLHE5D2PR0MYUh0xK8btYr
OilxCxJgVSB9lisweDiSlM7h05enqpr+FWgGgm2AtrAVySoJerrGVRVJE7JH
DsgFJNJRBJFaoQ4ziMQFDPJceqkDSfHjzUcQbOTGC6A08MhaF+pCF2tYGCEF
KQeEwLN0YQBpiDIRfSKZCAUfGrbE8xTmIx9w7E6ndJ0uwJ7B8kDk7iJLEBt4
nqHgAYRtbhrWBywYHlYSpY8ApGJJIwg1Eo0wLBwrCsthy2pj0j6A0bx1CgfZ
bGw1m+MqUDwtmBhTJ6QYl6DCAdJ1w6TQgJ4a7McGl2hSU8KvCjn8tgK7VaJC
Ja2EAnFm6mVeVrDwRl3dbv2vayY3OEMKvaFG3Xrx5vXZrRH/V33/kv4+Pf6v
Nyenx0f49+vvDp4/d38kMuL1dy/fPD/yf/mZhy9fvDj+/ognw1MVPUpuvTj4
C7xBIG+9fHV28vL7g+e3BjitNmKRcjR7q9ogq2hwFJ2BgjlPD1/9/W97X6qr
q38DY/twb+/x9bX8+Hbvmy/hB4oS71aVIlmkGTcJOFJGkzVA5ZrqVQ4MBfIL
3NoAA5fgbdQGsHvvLWLm/b7692m62vvy9/IADxw9tDiLHhLO+k96kxmJA48G
tnHYjJ53MB3De/CX6LfFe/AQ2AKYpHHM1vZNb16mxTozJPNPQe3vK2JpXYjz
RpyNih088Fajls2Xem4m6qAANxUNCGlm1VkW3GQ0NEhsWBRptaG/vHigbGrm
bUd9WAZZBKwdUA+M7wp0f6pFtYNq4DCjA06JD16+JjkDhUqiQx4XKv1TsPs1
xBUnMxJ37y+gcQE+1E2zRlMP6y80mjVYZkWyiF6CteHEXOTibFRpUF3nbUt7
R7YzdDIuUdbDNQI/YKFRJkpA4hmuSDZOFia/Dq0I6Qo0JWD4YVqC0OMJ66pQ
6NoJiM7NoLW800FyITaiIThmFap5q5DcMqsaQwOw6GjBxhBotaB2RM/y7/sv
wdTV6EG80jV4/CC4Dbw5qzfjY7DZ8OfpuoSBPxCk8BPUVkZaEazQS4KyMSOG
KHWvFNrWOWvsqQHc54AYOZPH1KyuluKvzTQYARZ6IoaTfCWo4YUDN5OUQs/1
c9jzrt2IlEXoTSItwKtFlxtjNhwOB9dEGT2t1uzNAr38gQh9BMq6Jqfcrt55
3Bj2E/lpNZs1BgkNgG4fZZ96C4hx6kd5e4vN1y2yX85qvaiaNsI3zEXhIgPH
ZETsgBiEZnoEMW+0aAIao92s0GgXjlVxQDgL0P0aFEnfIaNIAKKJcuwJZN27
O1kuzuRdMorkr5I0g2eWmhUORk8hr8F6YDifGvHDlhC4sREh3YUWRF2aoghC
GSCcUMjtAo4bUJmtJnowwmWSuOjIEiAmpTCJQhh2DBzJGX78F1+AywNaCk5+
i90Vcv1uEWIzPjKc4hZ7o7cSceUQTfA6hP1EOBn8QWZPu5GQdEQ6QH5YlyWi
DmAalFkNytVHCFF4B4LIrxIOHkjlsEGmfImus1xMBWhNZhD2VWbrAoh86kUJ
0XbJ5GXP0Wk1Z2gwWM2F8dJ2lCwYEGQSDGiALmCMwKUOJZS8XQofUKHlDeEJ
j9msmZ0SUdxNVVxw0NNWVQHQAHg///xzglr/A2t99US9pVyDpJzwmQvlx3km
aQi1r97eU2sQQfV+tH28SCSNh7H9kTJgLCLNK68Hhzo5HpMc7xoaOLEeXjqk
18Y86ze/Cc7+4fhja0qKcJP3hJhkGxZy8Q8wKMXkF0Zbl4scojFnTcSFZUNi
2ZKEm4LETOItQjqzjAtLO3aJ99OJ1aroB87JU8DV0JoqzHIU512ZhDjEoHZy
TgBbV4xUwRcBplmuwIemZQGn6IYYWZTNA8OMUYv1x8Uj4jUC2RdXgZeiVAgv
Ptq5UoKcLzBHC36B/s3KYF4xBSqOMMos4TnMwnSJmq1rmFMD0sAuUYgAnPyM
9IpGdTJiM94Yf5pofZK7R9EeCQJI8TQBhHPD1zTjYfwISYGx8mVJnuApZpGI
q+6pIztuow4Sm7vrPH+w5fnewCJPtyzydMsiT4cWOdyyyOGWRQ73MDETsj2c
+N3bvdGDd+8hZloXmWObgGu82bU0TzzNMQ8AHBSdYKJegztF8f4ocDDcfg9H
e+/eJ539OmDu1D6et1lE7fOutCComsye16Mu5BSzJOZf9BXZfTl45CYnrKPI
ReG0B5p22bjhGBYiOYCLHXJQ+yz05BowZOBJBYavjV9y4MoOLyugXFSKP3Xk
Sk9iJHUUr2wApnBqyKWcbhBfXRcrsYvrVnA5RHJYrKhSUmTxpl0VLrvyDzmW
d9focEgTCX/Q7jOq23wZSjZnJlC5RBoUVodJyDRNUhp0W3QNgcKaAiPyxi7A
L9DTHAITziSYdixnCfImkompZslZvZasp3NwffJoApFgK8oDXQaZRro+YrPE
e+oAR1FVK1WhhXeptjW5VxrAqUXLBHjLGuttJl3PG1Y7L8FNZ8IgOhrgH0os
BS4/k4hjwR6BAsPpzBdGV0PpIcJ/wTYwNHHibE1ifSy5QJRhSTmFvrBPBX04
yucUi4G7VUCg6bm79kIJYl9lNhXUsetqCrx3jh6i5O5AFNXV1XBt4vo6inw/
cFlOXd0OCm7X4Kejw+ViGXbPlqILwD1m5CFhMJWsm7692U9is0xiy+PgdBAU
rip0pWx9YyB9TmdPQhj0fF6bOWWxKbvqmTJwaZpJ93AJhg26AB4SCgcTkdSc
8OsR+tLUPktItpKxY7KRiESUD7Qedz5TZONTrHoitx0eHT0PfU7C9xN1lTgP
jsoz4BpH/zz5vT2DvEb37Q8qrItCwBTMgglYShr5dWmQkCoc9u4tWL3QA74v
OLDSsBkDJ+bLRr17318OA5QIzBaVxH060NDYMXIuj+y6ruEo8Qv9sfHnjtGE
ej8aX8J/qBSCs6776Er1SlSfPHHTD90bWQknO0eZlg4c5etkC7aEqPwy1GB+
I/vww4kTctzrd31f/ZrdceTlDpsEqWX/8M3pCXFlxsqEeRInJsso9bOucyXZ
RdFKYLurkrLtuIYVVNkk6xlVWkV2EYGWX93wOMF88fF+ZwK6F6igVh52UCoV
Obde87laoVMMU8OGJZdKBCZdwtIdBqBl/sPaQIQb+Ad30qooqIaHlZ6cEwR3
0TwgCyW9fWOV1ki6StyEEeUDacUM5DGq2wC8Li/P6snVW6iEDLBQTaeWrJPy
mTbUEFFxMxZ8DllJjcQvhOFiAXG+IFIagsBWdMKWUUKY/dAUOebbNSPgwtCK
3dFhCSnZbobuRjYhXWgsgoP9bwClMUclp1HktQUsPK6DiZ2kUDasaxUydtKz
Wp3FWcEGJ3VFGk6iAUctIEhrMFiDKYXeoKvTOnfUpX0j5+zFwV+QW6tl3oqn
UrMkBltjPg07PJAvU2fxyHR5GOhMDjoPjS6At7NNxx8Ja5YGp5DouayQ935w
ScA8uH9uSfQZboepcu8w4K/rGG3W5ORNYGkfIJKWVR1l3AlzW9QpuJci8tEE
TE5SUteXtCWdS8mvXIrBnCFrxAuTLH4Y/08ip4F0Jx9ii3LX5A3Uc+IcdIMU
Oq2FZACsdqIYBuz+OhUuREd3AdQQjcwZLI4MS7SLREN7FAGX0TghLbG2aT7Z
DStXZTYmDBTVXHShjQhkoYprKjiXkQFuFKB+g3yu5xRgeewS520/s/U8NfZA
rDhpEGMuHoTowEoa+oj5Ksd4gvKHBPEsLyihDEJNReezzcqMvyKPMCcWrpaD
zgtaiCm7buB9bmMYcFt7rpyQnjoOKDDYusfUgocF9qEB3HGxAsaUbV75bThl
7osAEjxgVwu49Aa9xgCqREyleJ6cIgOZbYVpAseD7G1jwiPhXk0KPzGvmQTJ
/iBueBrwo8tRuao7m0uXTSXqcNoYaCS9PzGfjtTQPg1l5KWYSrINR8EcV4qV
v4ADcFiKZeqo6YKiCZ6Xuho2+CEMFSBwnyxfZPooa8n4/xDgny3hPdX1utg+
DrhX4CGylfs5VG0kRKcMXBQSid/ZU3Q0MjAQQQdSRaVkH7TTFhTeZFh5kSoA
ugXrFEOe2RrV8B2ODtEsglt9F/Xj5WKDXo/UFfwA9H9WiRReXSZfYpMAXXcn
Q1BbF3qORT2YsMjni3GBATaVKkBRhBkjF+IyN0rPEbEi5mbLTHpVqGBPNVuu
Aa84ncMVXPYdZS62bIKdt7aYNeoSxdunZKiFk3tm4gPgCuN0WtVjbMMw+0E/
BmMCLT0qpTXCIwUAq3RoSj3ZsmjVmPG6lJqoyfapmaVcuwfq8OXrY8+iGLaj
fje9PbdsoIv5wPqd5WFQVYPBX1I26OZF1yW3g2JZBlw58DM1Anf/xcGhAqHz
BXdmoq1np3zGTvDCJOfNcHlxjNaMcv2ZAfWNNNLKK7P7GB7kH1l6bK+holas
T9gqRMbNezlHFLfQJItUlmSeEa99y66uSLrjgJRQ1UlQT735UJRBBXbevWwT
ZFrJt2yS6Zq1zQs77JXLveGO5Ret6wmDYcutyJQy7JgZZh+0eVw7tzmYppq1
Y9u2h0niLSu6Po5oRZ8/Q81mJvPJSCVZdVkWlc7uY4/F/eZSr+5fgjCYu1E0
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

-->

</rfc>

