<?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.7.19 (Ruby 2.5.1) -->
<!DOCTYPE rfc SYSTEM "rfc2629-xhtml.ent">
<?rfc rfcedstyle="yes"?>
<?rfc tocindent="yes"?>
<?rfc strict="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<?rfc text-list-symbols="-o*+"?>
<?rfc docmapping="yes"?>
<?rfc toc_levels="4"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-suit-manifest-31" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 2.46.0 -->
  <front>
    <title abbrev="CBOR-based SUIT Manifest">A Concise Binary Object Representation (CBOR)-based Serialization Format for the Software Updates for Internet of Things (SUIT) Manifest</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-suit-manifest-31"/>
    <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="Tschofenig" fullname="Hannes Tschofenig">
      <organization/>
      <address>
        <email>hannes.tschofenig@gmx.net</email>
      </address>
    </author>
    <author initials="H." surname="Birkholz" fullname="Henk Birkholz">
      <organization abbrev="Fraunhofer SIT">Fraunhofer SIT</organization>
      <address>
        <postal>
          <street>Rheinstrasse 75</street>
          <city>Darmstadt</city>
          <code>64295</code>
          <country>Germany</country>
        </postal>
        <email>henk.birkholz@ietf.contact</email>
      </address>
    </author>
    <author initials="K." surname="Zandberg" fullname="Koen Zandberg">
      <organization>Inria</organization>
      <address>
        <email>koen.zandberg@inria.fr</email>
      </address>
    </author>
    <author initials="Ø." surname="Rønningstad" fullname="Øyvind Rønningstad">
      <organization>Nordic Semiconductor</organization>
      <address>
        <email>oyvind.ronningstad@gmail.com</email>
      </address>
    </author>
    <date year="2024" month="December" day="04"/>
    <area>Security</area>
    <workgroup>SUIT</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 97?>
<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>
  <middle>
    <?line 106?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>A firmware update mechanism is an essential security feature for IoT devices to deal with vulnerabilities. The transport of firmware images to the devices themselves is important security aspect. Luckily, there are already various device management solutions available offering the distribution of firmware images to IoT devices. Equally important is the inclusion of metadata about the conveyed firmware image (in the form of a manifest) and the use of a security wrapper to provide end-to-end security protection to detect modifications and (optionally) to make reverse engineering more difficult. Firmware signing allows the author, who builds the firmware image, to be sure that no other party (including potential adversaries) can install firmware updates on IoT devices without adequate privileges. For confidentiality protected firmware images it is additionally required to encrypt the firmware image and to distribute the content encryption key securely. The support for firmware and payload encryption via the SUIT manifest format is described in a companion document <xref target="I-D.ietf-suit-firmware-encryption"/>. Starting security protection at the author is a risk mitigation technique so firmware images and manifests can be stored on untrusted repositories; it also reduces the scope of a compromise of any repository or intermediate system to be no worse than a denial of service.</t>
      <t>A manifest is a bundle of metadata about the firmware for an IoT device, where to
find the firmware, and the devices to which it applies.</t>
      <t>This specification defines the SUIT manifest format.
It is intended to meet several goals:</t>
      <ul spacing="normal">
        <li>Meet the requirements defined in <xref target="RFC9124"/>.</li>
        <li>Simple to parse on a constrained node.</li>
        <li>Simple to process on a constrained node.</li>
        <li>Compact encoding.</li>
        <li>Comprehensible by an intermediate system.</li>
        <li>Expressive enough to enable advanced use cases on advanced nodes.</li>
        <li>Extensible.</li>
      </ul>
      <t>The SUIT manifest can be used for a variety of purposes throughout its lifecycle, such as:</t>
      <ul spacing="normal">
        <li>a Network Operator to reason about compatibility of a firmware, such as timing and acceptance of firmware updates.</li>
        <li>a Device Operator to reason about the impact of a firmware.</li>
        <li>a device to reason about the authority &amp; authenticity of a firmware prior to installation.</li>
        <li>a device to reason about the applicability of a firmware.</li>
        <li>a device to reason about the installation of a firmware.</li>
        <li>a device to reason about the authenticity &amp; encoding of a firmware at boot.</li>
      </ul>
      <t>Each of these uses happens at a different stage of the manifest lifecycle, so each has different requirements.</t>
      <t>It is assumed that the reader is familiar with the high-level firmware update architecture <xref target="RFC9019"/> and the threats, requirements, and user stories in <xref target="RFC9124"/>.</t>
      <t>The design of this specification is based on an observation that the vast majority of operations that a device can perform during an update or Trusted Invocation are composed of a small group of operations:</t>
      <ul spacing="normal">
        <li>Copy some data from one place to another</li>
        <li>Transform some data</li>
        <li>Digest some data and compare to an expected value</li>
        <li>Compare some system parameters to an expected value</li>
        <li>Run some code</li>
      </ul>
      <t>In this document, these operations are called commands. Commands are classed as either conditions or directives. Conditions have no side-effects, while directives do have side-effects. Conceptually, a sequence of commands is like a script but the language is tailored to software updates and Trusted Invocation.</t>
      <t>The available commands support simple steps, such as copying a firmware image from one place to another, checking that a firmware image is correct, verifying that the specified firmware is the correct firmware for the device, or unpacking a firmware. By using these steps in different orders and changing the parameters they use, a broad range of use cases can be supported. The SUIT manifest uses this observation to optimize metadata for consumption by constrained devices.</t>
      <t>While the SUIT manifest is informed by and optimized for firmware update and Trusted Invocation use cases, there is nothing in the SUIT Information Model <xref target="RFC9124"/> that restricts its use to only those use cases. Other use cases include the management of trusted applications (TAs) in a Trusted Execution Environment (TEE), as discussed in <xref target="RFC9397"/>.</t>
    </section>
    <section anchor="conventions-and-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&nbsp;14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <?line -18?>

<t>Additionally, the following terminology is used throughout this document:</t>
      <ul spacing="normal">
        <li>SUIT: Software Update for the Internet of Things, also the IETF working group for this standard.</li>
        <li>Payload: A piece of information to be delivered. Typically Firmware for the purposes of SUIT.</li>
        <li>Resource: A piece of information that is used to construct a payload.</li>
        <li>Manifest: A manifest is a bundle of metadata about the firmware for an IoT device, where to
find the firmware, and the devices to which it applies.</li>
        <li>Envelope: A container with the manifest, an authentication wrapper with cryptographic information protecting the manifest, authorization information, and severable elements. Severable elements can be removed from the manifest without impacting its security, see <xref target="severable-fields"/>.</li>
        <li>Update: One or more manifests that describe one or more payloads.</li>
        <li>Update Authority: The owner of a cryptographic key used to sign updates, trusted by Recipients.</li>
        <li>Recipient: The system, typically an IoT device, that receives and processes a manifest.</li>
        <li>Manifest Processor: A component of the Recipient that consumes Manifests and executes the commands in the Manifest.</li>
        <li>Component: An updatable logical block of the Firmware, Software, configuration, or data of the Recipient.</li>
        <li>Component Set: A group of interdependent Components that must be updated simultaneously.</li>
        <li>Command: A Condition or a Directive.</li>
        <li>Condition: A test for a property of the Recipient or its Components.</li>
        <li>Directive: An action for the Recipient to perform.</li>
        <li>Trusted Invocation: A process by which a system ensures that only trusted code is executed, for example secure boot or launching a Trusted Application.</li>
        <li>A/B images: Dividing a Recipient's storage into two or more bootable images, at different offsets, such that the active image can write to the inactive image(s).</li>
        <li>Record: The result of a Command and any metadata about it.</li>
        <li>Report: A list of Records.</li>
        <li>Procedure: The process of invoking one or more sequences of commands.</li>
        <li>Update Procedure: A procedure that updates a Recipient by fetching dependencies and images, and installing them.</li>
        <li>Invocation Procedure: A procedure in which a Recipient verifies dependencies and images, loading images, and invokes one or more image.</li>
        <li>Software: Instructions and data that allow a Recipient to perform a useful function.</li>
        <li>Firmware: Software that is typically changed infrequently, stored in nonvolatile memory, and small enough to apply to <xref target="RFC7228"/> Class 0-2 devices.</li>
        <li>Image: Information that a Recipient uses to perform its function, typically firmware/software, configuration, or resource data such as text or images. Also, a Payload, once installed is an Image.</li>
        <li>Slot: One of several possible storage locations for a given Component, typically used in A/B image systems</li>
        <li>Abort: An event in which the Manifest Processor immediately halts execution of the current Procedure. It creates a Record of an error condition.</li>
        <li>Pull parser: A parser that traverses the data and extracts information on an as-needed basis.</li>
        <li>Severable element: An element of the manifest that supports elision of hashed data. If a hash of the data is included in the manifest and the data is included in the envelope, then that data may be elided.</li>
      </ul>
    </section>
    <section anchor="how-to-use-this-document">
      <name>How to use this Document</name>
      <t>This specification covers five aspects of firmware update:</t>
      <ul spacing="normal">
        <li>
          <xref target="background"/> describes the device constraints, use cases, and design principles that informed the structure of the manifest.</li>
        <li>
          <xref target="metadata-structure-overview"/> gives a general overview of the metadata structure to inform the following sections</li>
        <li>
          <xref target="interpreter-behavior"/> describes what actions a Manifest processor should take.</li>
        <li>
          <xref target="creating-manifests"/> describes the process of creating a Manifest.</li>
        <li>
          <xref target="metadata-structure"/> specifies the content of the Envelope and the Manifest.</li>
      </ul>
      <t>To implement an updatable device, see <xref target="interpreter-behavior"/> and <xref target="metadata-structure"/>.
To implement a tool that generates updates, see <xref target="creating-manifests"/> and <xref target="metadata-structure"/>.</t>
      <t>The IANA consideration section, see <xref target="iana"/>, provides instructions to IANA to create several registries. This section also provides the CBOR labels for the structures defined in this document.</t>
      <t>The complete CDDL (<xref target="RFC8610"/>) definition is provided in <xref target="full-cddl"/>, examples are given in <xref target="examples"/> and a design rationale is offered in <xref target="design-rationale"/>. Finally, <xref target="implementation-matrix"/> summarizes the mandatory-to-implement features of this specification.</t>
      <t>Additional specifications describe functionality needed to implement all of the requirements of <xref target="RFC9124"/>, such as:</t>
      <ul spacing="normal">
        <li>Firmware encryption <xref target="I-D.ietf-suit-firmware-encryption"/></li>
        <li>Update management <xref target="I-D.ietf-suit-update-management"/></li>
        <li>Dependency manifests <xref target="I-D.ietf-suit-trust-domains"/></li>
        <li>Secure reporting of the update status <xref target="I-D.ietf-suit-report"/></li>
      </ul>
      <t>A technique to compress firmware images may be standardized in the future.</t>
    </section>
    <section anchor="background">
      <name>Background</name>
      <t>Distributing software updates to diverse devices with diverse trust anchors in a coordinated system presents unique challenges. Devices have a broad set of constraints, requiring different metadata to make appropriate decisions. There may be many actors in production IoT systems, each of whom has some authority. Distributing firmware in such a multi-party environment presents additional challenges. Each party requires a different subset of data. Some data may not be accessible to all parties. Multiple signatures may be required from parties with different authorities. This topic is covered in more depth in <xref target="RFC9019"/>. The security aspects are described in <xref target="RFC9124"/>.</t>
      <section anchor="iot-firmware-update-constraints">
        <name>IoT Firmware Update Constraints</name>
        <t>The various constraints of IoT devices and the range of use cases that need to be supported create a broad set of requirements. For example, devices with:</t>
        <ul spacing="normal">
          <li>limited processing power and storage may require a simple representation of metadata.</li>
          <li>bandwidth constraints may require firmware compression or partial update support.</li>
          <li>bootloader complexity constraints may require simple selection between two bootable images.</li>
          <li>small internal storage may require external storage support.</li>
          <li>multiple microcontrollers may require coordinated update of all applications.</li>
          <li>large storage and complex functionality may require parallel update of many software components.</li>
          <li>extra information may need to be conveyed in the manifest in the earlier stages of the device lifecycle before those data items are stripped when the manifest is delivered to a constrained device.</li>
        </ul>
        <t>Supporting the requirements introduced by the constraints on IoT devices requires the flexibility to represent a diverse set of possible metadata, but also requires that the encoding is kept simple.</t>
      </section>
      <section anchor="suit-workflow-model">
        <name>SUIT Workflow Model</name>
        <t>There are several fundamental assumptions that inform the model of Update Procedure workflow:</t>
        <ul spacing="normal">
          <li>Compatibility must be checked before any other operation is performed.</li>
          <li>In some applications, payloads must be fetched and validated prior to installation.</li>
        </ul>
        <t>There are several fundamental assumptions that inform the model of the Invocation Procedure workflow:</t>
        <ul spacing="normal">
          <li>Compatibility must be checked before any other operation is performed.</li>
          <li>All payloads must be validated prior to loading.</li>
          <li>All loaded images must be validated prior to execution.</li>
        </ul>
        <t>Based on these assumptions, the manifest is structured to work with a pull parser, where each section of the manifest is used in sequence. The expected workflow for a Recipient installing an update can be broken down into five steps:</t>
        <ol spacing="normal" type="1">
          <li>Verify the signature of the manifest.</li>
          <li>Verify the applicability of the manifest.</li>
          <li>Fetch payload(s).</li>
          <li>Install payload(s).</li>
          <li>Verify image(s).</li>
        </ol>
        <t>When installation is complete, similar information can be used for validating and invoking images in a further three steps:</t>
        <ol spacing="normal" type="1">
          <li>Verify image(s).</li>
          <li>Load image(s).</li>
          <li>Invoke image(s).</li>
        </ol>
        <t>If verification and invocation is implemented in a bootloader, then the bootloader <bcp14>MUST</bcp14> also verify the signature of the manifest and the applicability of the manifest in order to implement secure boot workflows. Because signature verifications can be costly in constrained applications, the bootloader may add its own authentication, e.g. a Message Authentication Code (MAC), to the manifest in order to prevent further signature verifications and save energy, provided that the bootloader can protect its authentication key.</t>
      </section>
    </section>
    <section anchor="metadata-structure-overview">
      <name>Metadata Structure Overview</name>
      <t>This section provides a high level overview of the manifest structure. The full description of the manifest structure is in <xref target="manifest-structure"/></t>
      <t>The manifest is structured from several key components:</t>
      <ol spacing="normal" type="1">
        <li>The Envelope (see <xref target="ovr-envelope"/>) contains the Authentication Block, the Manifest, any Severable Elements, and any Integrated Payloads.</li>
        <li>The Authentication Block (see <xref target="ovr-auth"/>) contains a list of signatures or MACs of the manifest.</li>
        <li>
          <t>The Manifest (see <xref target="ovr-manifest"/>) contains all critical, non-severable metadata that the Recipient requires. It is further broken down into:  </t>
          <ol spacing="normal" type="1">
            <li>Critical metadata, such as sequence number.</li>
            <li>Common metadata, such as affected components.</li>
            <li>Command sequences, directing the Recipient how to install and use the payload(s).</li>
            <li>Integrity check values for severable elements.</li>
          </ol>
        </li>
        <li>Severable elements (see <xref target="ovr-severable"/>).</li>
        <li>Integrated payloads (see <xref target="ovr-integrated"/>).</li>
      </ol>
      <t>The diagram below illustrates the hierarchy of the Envelope.</t>
      <artwork><![CDATA[
+-------------------------+
| Envelope                |
+-------------------------+
| Authentication Block    |
| Manifest           --------------> +------------------------------+
| Severable Elements      |          | Manifest                     |
| Integrated Payloads     |          +------------------------------+
+-------------------------+          | Structure Version            |
                                     | Sequence Number              |
                                     | Reference to Full Manifest   |
                               +------ Common Structure             |
                               | +---- Command Sequences            |
+-------------------------+    | |   | Digests of Envelope Elements |
| Common Structure        | <--+ |   +------------------------------+
+-------------------------+      |
| Components IDs          |      +-> +-----------------------+
| Common Command Sequence ---------> | Command Sequence      |
+-------------------------+          +-----------------------+
                                     | List of ( pairs of (  |
                                     |   * command code      |
                                     |   * argument /        |
                                     |      reporting policy |
                                     | ))                    |
                                     +-----------------------+
]]></artwork>
      <section anchor="ovr-envelope">
        <name>Envelope</name>
        <t>The SUIT Envelope is a container that encloses the Authentication Block, the Manifest, any Severable Elements, and any integrated payloads. The Envelope is used instead of conventional cryptographic envelopes, such as COSE_Envelope because it allows modular processing, severing of elements, and integrated payloads in a way that avoids substantial complexity that would be needed with existing solutions. See <xref target="design-rationale-envelope"/> for a description of the reasoning for this.</t>
        <t>See <xref target="envelope"/> for more detail.</t>
      </section>
      <section anchor="ovr-auth">
        <name>Authentication Block</name>
        <t>The Authentication Block contains a bstr-wrapped SUIT Digest Container, see <xref target="SUIT_Digest"/>, and one or more <xref target="RFC9052"/> CBOR Object Signing and Encryption (COSE) authentication blocks. These blocks are one of:</t>
        <ul spacing="normal">
          <li>COSE_Sign_Tagged</li>
          <li>COSE_Sign1_Tagged</li>
          <li>COSE_Mac_Tagged</li>
          <li>COSE_Mac0_Tagged</li>
        </ul>
        <t>Each of these objects is used in detached payload mode. The payload is the bstr-wrapped SUIT_Digest.</t>
        <t>See <xref target="authentication-info"/> for more detail.</t>
      </section>
      <section anchor="ovr-manifest">
        <name>Manifest</name>
        <t>The Manifest contains most metadata about one or more images. The Manifest is divided into Critical Metadata, Common Metadata, Command Sequences, and Integrity Check Values.</t>
        <t>See <xref target="manifest-structure"/> for more detail.</t>
        <section anchor="ovr-critical">
          <name>Critical Metadata</name>
          <t>Some metadata needs to be accessed before the manifest is processed. This metadata can be used to determine which manifest is newest and whether the structure version is supported. It also <bcp14>MAY</bcp14> provide a URI for obtaining a canonical copy of the manifest and Envelope.</t>
          <t>See <xref target="manifest-version"/>, <xref target="manifest-seqnr"/>, and <xref target="manifest-reference-uri"/> for more detail.</t>
        </section>
        <section anchor="ovr-common">
          <name>Common</name>
          <t>Some metadata is used repeatedly and in more than one command sequence. In order to reduce the size of the manifest, this metadata is collected into the Common section. Common is composed of two parts: a list of components referenced by the manifest, and a command sequence to execute prior to each other command sequence. The common command sequence is typically used to set commonly used values and perform compatibility checks. The common command sequence <bcp14>MUST NOT</bcp14> have any side-effects outside of setting parameter values.</t>
          <t>See <xref target="manifest-common"/> for more detail.</t>
        </section>
        <section anchor="ovr-commands">
          <name>Command Sequences</name>
          <t>Command sequences provide the instructions that a Recipient requires in order to install or use an image. These sequences tell a device to set parameter values, test system parameters, copy data from one place to another, transform data, digest data, and run code.</t>
          <t>Command sequences are broken up into three groups: Common Command Sequence (see <xref target="ovr-common"/>), update commands, and secure boot commands.</t>
          <t>Update Command Sequences are: Payload Fetch, Payload Installation and, System Validation. An Update Procedure is the complete set of each Update Command Sequence, each preceded by the Common Command Sequence.</t>
          <t>Invocation Command Sequences are: System Validation, Image Loading, and Image Invocation. An Invocation Procedure is the complete set of each Invocation Command Sequence, each preceded by the Common Command Sequence.</t>
          <t>Command Sequences are grouped into these sets to ensure that there is common coordination between dependencies and dependents on when to execute each command (dependencies are not defined in this specification).</t>
          <t>See <xref target="manifest-commands"/> for more detail.</t>
        </section>
        <section anchor="ovr-integrity">
          <name>Integrity Check Values</name>
          <t>To enable severable elements <xref target="ovr-severable"/>, there needs to be a mechanism to verify the integrity of the severed data. While the severed data stays outside the manifest, for efficiency reasons, Integrity Check Values are used to include the digest of the data in the manifest. Note that Integrated Payloads, see <xref target="ovr-integrated"/>, are integrity-checked using Command Sequences.</t>
          <t>See <xref target="integrity-checks"/> for more detail.</t>
        </section>
        <section anchor="ovr-text">
          <name>Human-Readable Text</name>
          <t>Text is typically a Severable Element (<xref target="ovr-severable"/>). It contains all the text that describes the update. Because text is explicitly for human consumption, it is all grouped together so that it can be Severed easily. The text section has space both for describing the manifest as a whole and for describing each individual component.</t>
          <t>See <xref target="manifest-digest-text"/> for more detail.</t>
        </section>
      </section>
      <section anchor="ovr-severable">
        <name>&nbsp;Severable Elements</name>
        <t>Severable Elements are elements of the Envelope (<xref target="ovr-envelope"/>) that have Integrity Check Values (<xref target="ovr-integrity"/>) in the Manifest (<xref target="ovr-manifest"/>). This is a form of elision of hashed data. The elements in the envelope are verified by Integrity Check Values and therefore cannot be replaced with other elements even if they are authenticated elements.</t>
        <t>Because of this organisation, these elements can be discarded or "Severed" from the Envelope without changing the signature of the Manifest. This allows savings based on the size of the Envelope in several scenarios, for example:</t>
        <ul spacing="normal">
          <li>A management system severs the Text sections before sending an Envelope to a constrained Recipient, which saves Recipient bandwidth.</li>
          <li>A Recipient severs the Installation section after installing the Update, which saves storage space.</li>
        </ul>
        <t>See <xref target="severable-fields"/> for more detail.</t>
      </section>
      <section anchor="ovr-integrated">
        <name>Integrated Payloads</name>
        <t>In some cases, it is beneficial to include a payload in the Envelope of a manifest. For example:</t>
        <ul spacing="normal">
          <li>When an update is delivered via a comparatively unconstrained medium, such as a removable mass storage device, it may be beneficial to bundle updates into single files.</li>
          <li>When a manifest transports a small payload, such as an encrypted key, that payload may be placed in the manifest's envelope.</li>
        </ul>
        <t>See <xref target="template-integrated-payload"/> for more detail.</t>
      </section>
    </section>
    <section anchor="interpreter-behavior">
      <name>Manifest Processor Behavior</name>
      <t>This section describes the behavior of the manifest processor and focuses primarily on interpreting commands in the manifest. However, there are several other important behaviors of the manifest processor: encoding version detection, rollback protection, and authenticity verification are chief among these.</t>
      <section anchor="interpreter-setup">
        <name>Manifest Processor Setup</name>
        <t>Prior to executing any command sequence, the manifest processor or its host application <bcp14>MUST</bcp14> inspect the manifest version field and fail when it encounters an unsupported encoding version. Next, the manifest processor or its host application <bcp14>MUST</bcp14> extract the manifest sequence number and perform a rollback check using this sequence number. The exact logic of rollback protection may vary by application, but it has the following properties:</t>
        <ul spacing="normal">
          <li>Whenever the manifest processor can choose between several manifests, it <bcp14>MUST</bcp14> select the latest valid, authentic manifest.</li>
          <li>If the latest valid, authentic manifest fails, it <bcp14>MAY</bcp14> select the next latest valid, authentic manifest, according to application-specific policy.</li>
        </ul>
        <t>Here, valid means that a manifest has a supported encoding version and it has not been excluded for other reasons. Reasons for excluding typically involve first executing the manifest and may include:</t>
        <ul spacing="normal">
          <li>Test failed (e.g. Vendor ID/Class ID).</li>
          <li>Unsupported command encountered.</li>
          <li>Unsupported parameter encountered.</li>
          <li>Unsupported Component Identifier encountered.</li>
          <li>Payload not available.</li>
          <li>Application crashed when executed.</li>
          <li>Watchdog timeout occurred.</li>
          <li>Payload verification failed.</li>
          <li>Missing required component from a Component Set.</li>
          <li>Required parameter not supplied.</li>
        </ul>
        <t>These failure reasons <bcp14>MAY</bcp14> be combined with retry mechanisms prior to marking a manifest as invalid.</t>
        <t>Selecting an older manifest in the event of failure of the latest valid manifest is one possible strategy to provide robustness of the firmware update process. It may not be appropriate for all applications. In particular Trusted Execution Environments <bcp14>MAY</bcp14> require a failure to invoke a new installation, rather than a rollback approach. See <xref section="4.2.1" sectionFormat="comma" target="RFC9124"/> for more discussion on the security considerations that apply to rollback.</t>
        <t>Following these initial tests, the manifest processor clears all parameter storage. This ensures that the manifest processor begins without any leaked data.</t>
      </section>
      <section anchor="required-checks">
        <name>&nbsp;Required Checks</name>
        <t>The <bcp14>RECOMMENDED</bcp14> process is to verify the signature of the manifest prior to parsing/executing any section of the manifest. This guards the parser against arbitrary input by unauthenticated third parties, but it costs extra energy when a Recipient receives an incompatible manifest.</t>
        <t>When validating authenticity of manifests, the manifest processor <bcp14>MAY</bcp14> use an ACL (see <xref target="access-control-lists"/>) to determine the extent of the rights conferred by that authenticity.</t>
        <t>Once a valid, authentic manifest has been selected, the manifest processor <bcp14>MUST</bcp14> examine the component list and
check that the number of components listed in the manifest is not larger than the number in the target system.</t>
        <t>For each listed component, the manifest processor <bcp14>MUST</bcp14> provide storage for the supported parameters. If the manifest processor does not have sufficient temporary storage to process the parameters for all components, it <bcp14>MAY</bcp14> process components serially for each command sequence. See <xref target="serial-processing"/> for more details.</t>
        <t>The manifest processor <bcp14>SHOULD</bcp14> check that the shared sequence contains at least Check Vendor Identifier command and at least one Check Class Identifier command.</t>
        <t>Because the shared sequence contains Check Vendor Identifier and Check Class Identifier command(s), no custom commands are permitted in the shared sequence. This ensures that any custom commands are only executed by devices that understand them.</t>
        <t>If the manifest contains more than one component, each command sequence <bcp14>MUST</bcp14> begin with a Set Component Index <xref target="suit-directive-set-component-index"/>.</t>
        <t>If a Recipient supports groups of interdependent components (a Component Set), then it <bcp14>SHOULD</bcp14> verify that all Components in the Component Set are specified by one update, that is:</t>
        <ol spacing="normal" type="1">
          <li>the manifest Author has sufficient permissions for the requested operations (see <xref target="access-control-lists"/>) and</li>
          <li>the manifest specifies a digest and a payload for every Component in the Component Set.</li>
        </ol>
      </section>
      <section anchor="interpreter-fundamental-properties">
        <name>Interpreter Fundamental Properties</name>
        <t>The interpreter has a small set of design goals:</t>
        <ol spacing="normal" type="1">
          <li>Executing an update <bcp14>MUST</bcp14> either result in an error, or a correct system state that can be checked against known digests.</li>
          <li>Executing a Trusted Invocation <bcp14>MUST</bcp14> either result in an error, or an invoked image.</li>
          <li>Executing the same manifest on multiple Recipients <bcp14>MUST</bcp14> result in the same system state.</li>
        </ol>
        <t>NOTE: when using A/B images, the manifest functions as two (or more) logical manifests, each of which applies to a system in a particular starting state. With that provision, design goal 3 holds.</t>
        <section anchor="resilience-to-disruption">
          <name>Resilience to Disruption</name>
          <t>As required in <xref section="3" sectionFormat="of" target="RFC9019"/> and as an extension of design goal 1, devices must remain operable after a disruption, such as a power failure or network interruption, interrupts the update process.</t>
          <t>The manifest processor must be resilient to these faults. In order to enable this resilience, systems implementing the manifest processor <bcp14>MUST</bcp14> make the following guarantees:</t>
          <t>One of:
1. A fallback/recovery image is provided so that a disrupted system can apply the SUIT Manifest again.
2. Manifest Authors <bcp14>MUST</bcp14> construct Manifests in such a way that repeated partial invocations of any Manifest always results in a correct system state. Typically this is done by using Try-Each and Conditions to bypass operations that have already been completed.
3. A journal of manifest operations is stored in nonvolatile memory. The journal enables the parser to re-create the state just prior to the disruption. This journal can, for example, be a SUIT Report or a journaling file system.</t>
          <artwork><![CDATA[
AND
]]></artwork>
          <ol spacing="normal" type="1">
            <li>Where a command is not repeatable because of the way in which it alters system state (e.g. swapping images or in-place delta) it <bcp14>MUST</bcp14> be resumable or revertible. This applies to commands that modify at least one source component as well as the destination component.</li>
          </ol>
        </section>
      </section>
      <section anchor="command-behavior">
        <name>Abstract Machine Description</name>
        <t>The heart of the manifest is the list of commands, which are processed by a Manifest Processor -- a form of interpreter. This Manifest Processor can be modeled as a simple abstract machine. This machine consists of several data storage locations that are modified by commands.</t>
        <t>There are two types of commands, namely those that modify state (directives) and those that perform tests (conditions). Parameters are used as the inputs to commands. Some directives offer control flow operations. Directives target a specific component. A component is a unit of code or data that can be targeted by an update. Components are identified by Component Identifiers, but referenced in commands by Component Index; Component Identifiers are arrays of binary strings and a Component Index is an index into the array of Component Identifiers.</t>
        <t>Conditions <bcp14>MUST NOT</bcp14> have any side-effects other than informing the interpreter of success or failure. The Interpreter does not Abort if the Soft Failure flag (<xref target="suit-parameter-soft-failure"/>) is set when a Condition reports failure.</t>
        <t>Directives <bcp14>MAY</bcp14> have side-effects in the parameter table, the interpreter state, or the current component. The Interpreter <bcp14>MUST</bcp14> Abort if a Directive reports failure regardless of the Soft Failure flag.</t>
        <t>To simplify the logic describing the command semantics, the object "current" is used. It represents the component identified by the Component Index:</t>
        <artwork><![CDATA[
current := components[component-index]
]]></artwork>
        <t>As a result, Set Component Index is described as current := components[arg].</t>
        <t>The following table describes the semantics of each operation. The pseudo-code semantics are inspired by the Python programming language.</t>
        <table>
          <thead>
            <tr>
              <th align="left">pseudo-code operation</th>
              <th align="left">Semantics</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">assert(test)</td>
              <td align="left">When test is false, causes an error return</td>
            </tr>
            <tr>
              <td align="left">store(dest, source)</td>
              <td align="left">Writes source into dest</td>
            </tr>
            <tr>
              <td align="left">expression0 for-each e in l else expression1</td>
              <td align="left">Performs expression0 once for each element in iterable l; performs expression1 if no break is encountered</td>
            </tr>
            <tr>
              <td align="left">break</td>
              <td align="left">halt a for-each loop</td>
            </tr>
            <tr>
              <td align="left">now()</td>
              <td align="left">return the current UTC time</td>
            </tr>
            <tr>
              <td align="left">expression if test</td>
              <td align="left">performs expression if test is true</td>
            </tr>
          </tbody>
        </table>
        <t>The following table describes the behavior of each command. "params" represents the parameters for the current component. Most commands operate on a component.</t>
        <table>
          <thead>
            <tr>
              <th align="left">Command Name</th>
              <th align="left">Semantic of the Operation</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Check Vendor Identifier</td>
              <td align="left">assert(binary-match(current, current.params[vendor-id]))</td>
            </tr>
            <tr>
              <td align="left">Check Class Identifier</td>
              <td align="left">assert(binary-match(current, current.params[class-id]))</td>
            </tr>
            <tr>
              <td align="left">Verify Image</td>
              <td align="left">assert(binary-match(digest(current), current.params[digest]))</td>
            </tr>
            <tr>
              <td align="left">Check Content</td>
              <td align="left">assert(binary-match(current, current.params[content]))</td>
            </tr>
            <tr>
              <td align="left">Set Component Index</td>
              <td align="left">current := components[arg]</td>
            </tr>
            <tr>
              <td align="left">Override Parameters</td>
              <td align="left">current.params[k] := v for-each k,v in arg</td>
            </tr>
            <tr>
              <td align="left">Invoke</td>
              <td align="left">invoke(current)</td>
            </tr>
            <tr>
              <td align="left">Fetch</td>
              <td align="left">store(current, fetch(current.params[uri]))</td>
            </tr>
            <tr>
              <td align="left">Write</td>
              <td align="left">store(current, current.params[content])</td>
            </tr>
            <tr>
              <td align="left">Use Before</td>
              <td align="left">assert(now() &lt; arg)</td>
            </tr>
            <tr>
              <td align="left">Check Component Slot</td>
              <td align="left">assert(current.slot-index == arg)</td>
            </tr>
            <tr>
              <td align="left">Check Device Identifier</td>
              <td align="left">assert(binary-match(current, current.params[device-id]))</td>
            </tr>
            <tr>
              <td align="left">Abort</td>
              <td align="left">assert(0)</td>
            </tr>
            <tr>
              <td align="left">Try Each</td>
              <td align="left">(break if (exec(seq) is not error)) for-each seq in arg else assert(0)</td>
            </tr>
            <tr>
              <td align="left">Copy</td>
              <td align="left">store(current, current.params[src-component])</td>
            </tr>
            <tr>
              <td align="left">Swap</td>
              <td align="left">swap(current, current.params[src-component])</td>
            </tr>
            <tr>
              <td align="left">Run Sequence</td>
              <td align="left">exec(arg)</td>
            </tr>
            <tr>
              <td align="left">Invoke with Arguments</td>
              <td align="left">invoke(current, arg)</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="index-true">
        <name>Special Cases of Component Index</name>
        <t>Component Index can take on one of three types:</t>
        <ol spacing="normal" type="1">
          <li>Integer</li>
          <li>Array of integers</li>
          <li>True</li>
        </ol>
        <t>Integers <bcp14>MUST</bcp14> always be supported by Set Component Index. Arrays of integers <bcp14>MUST</bcp14> be supported by Set Component Index if the Recipient supports 3 or more components. True <bcp14>MUST</bcp14> be supported by Set Component Index if the Recipient supports 2 or more components. Each of these operates on the list of components declared in the manifest.</t>
        <t>Integer indices are the default case as described in the previous section. An array of integers represents a list of the components (Set Component Index) to which each subsequent command applies. The value True replaces the list of component indices with the full list of components, as defined in the manifest.</t>
        <t>When a command is executed, it</t>
        <ol spacing="normal" type="1">
          <li>operates on the component identified by the component index if that index is an integer, or</li>
          <li>it operates on each component identified by an array of indicies, or</li>
          <li>it operates on every component if the index is the boolean True.</li>
        </ol>
        <t>This is described by the following pseudocode:</t>
        <artwork><![CDATA[
if component-index is True:
    current-list = components
else if component-index is array:
    current-list = [ components[idx] for idx in component-index ]
else:
    current-list = [ components[component-index] ]
for current in current-list:
    cmd(current)
]]></artwork>
        <t>Try Each and Run Sequence are affected in the same way as other commands: they are invoked once for each possible Component. This means that the sequences that are arguments to Try Each and Run Sequence are not invoked with Component Index = True, nor are they invoked with array indices. They are only invoked with integer indices. The interpreter loops over the whole sequence, setting the Component Index to each index in turn.</t>
      </section>
      <section anchor="serial-processing">
        <name>Serialized Processing Interpreter</name>
        <t>In highly constrained devices, where storage for parameters is limited, the manifest processor <bcp14>MAY</bcp14> handle one component at a time, traversing the manifest tree once for each listed component. In this mode, the interpreter ignores any commands executed while the component index is not the current component. This reduces the overall volatile storage required to process the update so that the only limit on number of components is the size of the manifest. However, this approach requires additional processing power.</t>
        <t>In order to operate in this mode, the manifest processor loops on each section for every supported component, simply ignoring commands when the current component is not selected.</t>
        <t>When a serialized Manifest Processor encounters a component index of True, it does not ignore any commands. It applies them to the current component on each iteration.</t>
      </section>
      <section anchor="parallel-processing">
        <name>Parallel Processing Interpreter</name>
        <t>To enable parallel or out-of-order processing of Command Sequences, Recipients <bcp14>MAY</bcp14> make use of the Strict Order parameter. The Strict Order parameter indicates to the Manifest Processor that Commands <bcp14>MUST</bcp14> be executed strictly in order. When the Strict Order parameter is False, this indicates to the Manifest Processor that Commands <bcp14>MAY</bcp14> be executed in parallel and/or out of order.</t>
        <t>To perform parallel processing, once the Strict Order parameter is set to False, the Recipient <bcp14>MAY</bcp14> add each command to an issue queue for parallel processing or an issue pool for out-of-order processing. The Manifest Processor then executes these pending commands in whatever order or parallelism it deems appropriate. Once there are no more commands to add to the issue queue/pool, the Manifest Processor drains the issue queue/pool by issuing all pending commands and waits for every issued command to complete. The Manifest Processor <bcp14>MAY</bcp14> issue commands before it has completed adding all remaining commands to the issue queue/pool.</t>
        <t>While adding commands to the issue queue or pool, if the Manifest Processor encounters any of the following commands, it <bcp14>MUST</bcp14> treat the command as a barrier, draining the issue queue/pool and waiting for all issued commands to complete.</t>
        <ul spacing="normal">
          <li>Override Parameters.</li>
          <li>Set Strict Order = True.</li>
          <li>Set Component Index.</li>
        </ul>
        <t>Extensions <bcp14>MAY</bcp14> alter this list. Once all issued commands have completed, the Manifest Processor issues the barrier command, after which it may resume parallel processing if Strict Order is still False.</t>
        <t>A Component <bcp14>MUST NOT</bcp14> be both a target of an operation and a source of data (for example, in Copy or Swap) in a Command Sequence where Strict Order is False. This would cause a race condition if the Component is written to, then later read from. The Manifest Processor <bcp14>MUST</bcp14> issue an Abort if it detects this exception.</t>
        <t>To perform more useful parallel operations, a manifest author may collect sequences of commands in a Run Sequence command. Then, each of these sequences <bcp14>MAY</bcp14> be run in parallel. There are several invocation options for Run Sequence:</t>
        <ul spacing="normal">
          <li>Component Index is a positive integer, Strict Order is False: Strict Order is set to True before the sequence argument is run. The sequence argument <bcp14>MUST</bcp14> begin with set-component-index.</li>
          <li>Component Index is true or an array of positive integers, Strict Order is False: The sequence argument is run once for each component (or each component in the array); the Manifest Processor presets the component index and Strict Order = True before each iteration of the sequence argument.</li>
          <li>Component Index is a positive integer, Strict Order is True: No special considerations</li>
          <li>Component Index is True or an array of positive integers, Strict Order is True: The sequence argument is run once for each component (or each component in the array); the Manifest Processor presets the component index before each iteration of the sequence argument.</li>
        </ul>
        <t>These rules isolate each sequence from each other sequence, ensuring that they operate as expected. When Strict Order = False, any further Set Component Index directives in the Run Sequence command sequence argument <bcp14>MUST</bcp14> cause an Abort. This allows the interpreter that issues Run Sequence commands to check that the first element is correct, then issue the sequence to a parallel execution context to handle the remainder of the sequence.</t>
      </section>
    </section>
    <section anchor="creating-manifests">
      <name>Creating Manifests</name>
      <t>Manifests are created using tools for constructing COSE structures, calculating cryptographic values and compiling desired system state into a sequence of operations required to achieve that state. The process of constructing COSE structures and the calculation of cryptographic values is covered in <xref target="RFC9052"/>.</t>
      <t>Compiling desired system state into a sequence of operations can be accomplished in many ways. Several templates are provided below to cover common use-cases. These templates can be combined to produce more complex behavior.</t>
      <t>The author <bcp14>MUST</bcp14> ensure that all parameters consumed by a command are set prior to invoking that command. Where Component Index = True, this means that the parameters consumed by each command <bcp14>MUST</bcp14> have been set for each Component.</t>
      <t>This section details a set of templates for creating manifests. These templates explain which parameters, commands, and orders of commands are necessary to achieve a stated goal.</t>
      <t>NOTE: On systems that support only a single component, Set Component Index has no effect and can be omitted.</t>
      <t>NOTE: <strong>A digest <bcp14>MUST</bcp14> always be set using Override Parameters.</strong></t>
      <section anchor="template-compatibility-check">
        <name>Compatibility Check Template</name>
        <t>The goal of the compatibility check template ensure that Recipients only install compatible images.</t>
        <t>In this template all information is contained in the shared sequence and the following sequence of commands is used:</t>
        <ul spacing="normal">
          <li>Set Component Index directive (see <xref target="suit-directive-set-component-index"/>)</li>
          <li>Override Parameters directive (see <xref target="suit-directive-override-parameters"/>) for Vendor ID and Class ID (see <xref target="secparameters"/>)</li>
          <li>Check Vendor Identifier condition (see <xref target="uuid-identifiers"/>)</li>
          <li>Check Class Identifier condition (see <xref target="uuid-identifiers"/>)</li>
        </ul>
      </section>
      <section anchor="template-secure-boot">
        <name>Trusted Invocation Template</name>
        <t>The goal of the Trusted Invocation template is to ensure that only authorized code is invoked; such as in Secure Boot or when a Trusted Application is loaded into a TEE.</t>
        <t>The following commands are placed into the shared sequence:</t>
        <ul spacing="normal">
          <li>Set Component Index directive (see <xref target="suit-directive-set-component-index"/>)</li>
          <li>Override Parameters directive (see <xref target="suit-directive-override-parameters"/>) for Image Digest and Image Size (see <xref target="secparameters"/>)</li>
        </ul>
        <t>The system validation sequence contains the following commands:</t>
        <ul spacing="normal">
          <li>Set Component Index directive (see <xref target="suit-directive-set-component-index"/>)</li>
          <li>Check Image Match condition (see <xref target="suit-condition-image-match"/>)</li>
        </ul>
        <t>Then, the run sequence contains the following commands:</t>
        <ul spacing="normal">
          <li>Set Component Index directive (see <xref target="suit-directive-set-component-index"/>)</li>
          <li>Invoke directive (see <xref target="suit-directive-invoke"/>)</li>
        </ul>
      </section>
      <section anchor="firmware-download-template">
        <name>Component Download Template</name>
        <t>The goal of the Component Download template is to acquire and store an image.</t>
        <t>The following commands are placed into the shared sequence:</t>
        <ul spacing="normal">
          <li>Set Component Index directive (see <xref target="suit-directive-set-component-index"/>)</li>
          <li>Override Parameters directive (see <xref target="suit-directive-override-parameters"/>) for Image Digest and Image Size (see <xref target="secparameters"/>)</li>
        </ul>
        <t>Then, the install sequence contains the following commands:</t>
        <ul spacing="normal">
          <li>Set Component Index directive (see <xref target="suit-directive-set-component-index"/>)</li>
          <li>Override Parameters directive (see <xref target="suit-directive-override-parameters"/>) for URI (see <xref target="suit-parameter-uri"/>)</li>
          <li>Fetch directive (see <xref target="suit-directive-fetch"/>)</li>
          <li>Check Image Match condition (see <xref target="suit-condition-image-match"/>)</li>
        </ul>
        <t>The Fetch directive needs the URI parameter to be set to determine where the image is retrieved from. Additionally, the destination of where the component shall be stored has to be configured. The URI is configured via the Set Parameters directive while the destination is configured via the Set Component Index directive.</t>
      </section>
      <section anchor="template-install">
        <name>Install Template</name>
        <t>The goal of the Install template is to use an image already stored in an identified component to copy into a second component.</t>
        <t>This template is typically used with the Component Download template, however a modification to that template is required: the Component Download operations are moved from the Payload Install sequence to the Payload Fetch sequence.</t>
        <t>Then, the install sequence contains the following commands:</t>
        <ul spacing="normal">
          <li>Set Component Index directive (see <xref target="suit-directive-set-component-index"/>)</li>
          <li>Override Parameters directive (see <xref target="suit-directive-override-parameters"/>) for Source Component (see <xref target="suit-parameter-source-component"/>)</li>
          <li>Copy directive (see <xref target="suit-directive-copy"/>)</li>
          <li>Check Image Match condition (see <xref target="suit-condition-image-match"/>)</li>
        </ul>
      </section>
      <section anchor="template-integrated-payload">
        <name>Integrated Payload Template</name>
        <t>The goal of the Integrated Payload template is to install a payload that is included in the manifest envelope. It is identical to the Component Download template (<xref target="firmware-download-template"/>).</t>
        <t>An Author <bcp14>MAY</bcp14> choose to place a payload in the envelope of a manifest. The payload envelope key <bcp14>MUST</bcp14> be a string. The payload <bcp14>MUST</bcp14> be serialized in a bstr element.</t>
        <t>The URI for a payload enclosed in this way <bcp14>MAY</bcp14> be expressed as a fragment-only reference, as defined in <xref section="4.4" sectionFormat="comma" target="RFC3986"/>, for example: "#device-model-v1.2.3.bin".</t>
        <t>An intermediary, such as a Network Operator, <bcp14>MAY</bcp14> choose to pre-fetch a payload and add it to the manifest envelope, using the URI as the key.</t>
      </section>
      <section anchor="template-load-ext">
        <name>Load from Nonvolatile Storage Template</name>
        <t>The goal of the Load from Nonvolatile Storage template is to load an image from a non-volatile component into a volatile component, for example loading a firmware image from external Flash into RAM.</t>
        <t>The following commands are placed into the load sequence:</t>
        <ul spacing="normal">
          <li>Set Component Index directive (see <xref target="suit-directive-set-component-index"/>)</li>
          <li>Override Parameters directive (see <xref target="suit-directive-override-parameters"/>) for Source Component (see <xref target="secparameters"/>)</li>
          <li>Copy directive (see <xref target="suit-directive-copy"/>)</li>
        </ul>
        <t>As outlined in <xref target="command-behavior"/>, the Copy directive needs a source and a destination to be configured. The source is configured via Component Index (with the Set Parameters directive) and the destination is configured via the Set Component Index directive.</t>
      </section>
      <section anchor="a-b-template">
        <name>A/B Image Template</name>
        <t>The goal of the A/B Image Template is to acquire, validate, and invoke one of two images, based on a test.</t>
        <t>The following commands are placed in the common block:</t>
        <ul spacing="normal">
          <li>Set Component Index directive (see <xref target="suit-directive-set-component-index"/>)</li>
          <li>
            <t>Try Each
            </t>
            <ul spacing="normal">
              <li>
                <t>First Sequence:
                </t>
                <ul spacing="normal">
                  <li>Override Parameters directive (see <xref target="suit-directive-override-parameters"/>, <xref target="secparameters"/>) for Slot A</li>
                  <li>Check Slot Condition (see <xref target="suit-condition-component-slot"/>)</li>
                  <li>Override Parameters directive (see <xref target="suit-directive-override-parameters"/>) for Image Digest A and Image Size A (see <xref target="secparameters"/>)</li>
                </ul>
              </li>
              <li>
                <t>Second Sequence:
                </t>
                <ul spacing="normal">
                  <li>Override Parameters directive (see <xref target="suit-directive-override-parameters"/>, <xref target="secparameters"/>) for Slot B</li>
                  <li>Check Slot Condition (see <xref target="suit-condition-component-slot"/>)</li>
                  <li>Override Parameters directive (see <xref target="suit-directive-override-parameters"/>) for Image Digest B and Image Size B (see <xref target="secparameters"/>)</li>
                </ul>
              </li>
            </ul>
          </li>
        </ul>
        <t>The following commands are placed in the fetch block or install block</t>
        <ul spacing="normal">
          <li>Set Component Index directive (see <xref target="suit-directive-set-component-index"/>)</li>
          <li>
            <t>Try Each
            </t>
            <ul spacing="normal">
              <li>
                <t>First Sequence:
                </t>
                <ul spacing="normal">
                  <li>Override Parameters directive (see <xref target="suit-directive-override-parameters"/>, <xref target="secparameters"/>) for Slot A</li>
                  <li>Check Slot Condition (see <xref target="suit-condition-component-slot"/>)</li>
                  <li>Set Parameters directive (see <xref target="suit-directive-override-parameters"/>) for URI A (see <xref target="secparameters"/>)</li>
                </ul>
              </li>
              <li>
                <t>Second Sequence:
                </t>
                <ul spacing="normal">
                  <li>Override Parameters directive (see <xref target="suit-directive-override-parameters"/>, <xref target="secparameters"/>) for Slot B</li>
                  <li>Check Slot Condition (see <xref target="suit-condition-component-slot"/>)</li>
                  <li>Set Parameters directive (see <xref target="suit-directive-override-parameters"/>) for URI B (see <xref target="secparameters"/>)</li>
                </ul>
              </li>
            </ul>
          </li>
          <li>Fetch</li>
        </ul>
        <t>If Trusted Invocation (<xref target="template-secure-boot"/>) is used, only the run sequence is added to this template, since the shared sequence is populated by this template:</t>
        <ul spacing="normal">
          <li>Set Component Index directive (see <xref target="suit-directive-set-component-index"/>)</li>
          <li>
            <t>Try Each
            </t>
            <ul spacing="normal">
              <li>
                <t>First Sequence:
                </t>
                <ul spacing="normal">
                  <li>Override Parameters directive (see <xref target="suit-directive-override-parameters"/>, <xref target="secparameters"/>) for Slot A</li>
                  <li>Check Slot Condition (see <xref target="suit-condition-component-slot"/>)</li>
                </ul>
              </li>
              <li>
                <t>Second Sequence:
                </t>
                <ul spacing="normal">
                  <li>Override Parameters directive (see <xref target="suit-directive-override-parameters"/>, <xref target="secparameters"/>) for Slot B</li>
                  <li>Check Slot Condition (see <xref target="suit-condition-component-slot"/>)</li>
                </ul>
              </li>
            </ul>
          </li>
          <li>Invoke</li>
        </ul>
        <t>NOTE: Any test can be used to select between images, Check Slot Condition is used in this template because it is a typical test for execute-in-place devices.</t>
      </section>
    </section>
    <section anchor="metadata-structure">
      <name>Metadata Structure</name>
      <t>The metadata for SUIT updates is composed of several primary constituent parts: Authentication Information, Manifest, Severable Elements and Integrated Payloads.</t>
      <t>For a diagram of the metadata structure, see <xref target="metadata-structure-overview"/>.</t>
      <section anchor="encoding">
        <name>Encoding Considerations</name>
        <t>The map indices in the envelope encoding are reset to 1 for each map within the structure. This is to keep the indices as small as possible. The goal is to keep the index objects to single bytes (CBOR positive integers 1-23).</t>
        <t>Wherever enumerations are used, they are started at 1. This allows detection of several common software errors that are caused by uninitialized variables. Positive numbers in enumerations are reserved for IANA registration. Negative numbers are used to identify application-specific values, as described in <xref target="iana"/>.</t>
        <t>All elements of the envelope must be wrapped in a bstr to minimize the complexity of the code that evaluates the cryptographic integrity of the element and to ensure correct serialization for integrity and authenticity checks.</t>
        <t>All CBOR maps in the Manifest and manifest envelope <bcp14>MUST</bcp14> be encoded with the canonical CBOR ordering as defined in <xref target="RFC8949"/>.</t>
      </section>
      <section anchor="envelope">
        <name>Envelope</name>
        <t>The Envelope contains each of the other primary constituent parts of the SUIT metadata. It allows for modular processing of the manifest by ordering components in the expected order of processing.</t>
        <t>The Envelope is encoded as a CBOR Map. Each element of the Envelope is enclosed in a bstr, which allows computation of a message digest against known bounds.</t>
      </section>
      <section anchor="authentication-info">
        <name>Authenticated Manifests</name>
        <t>SUIT_Authentication contains a list of elements, which consist of a SUIT_Digest calculated over the manifest, and zero or more SUIT_Authentication_Block's calculated over the SUIT_Digest.</t>
        <sourcecode type="cddl-snippet">
SUIT_Authentication = [
    bstr .cbor SUIT_Digest,
    * bstr .cbor SUIT_Authentication_Block
]
SUIT_Authentication_Block /= COSE_Mac_Tagged
SUIT_Authentication_Block /= COSE_Sign_Tagged
SUIT_Authentication_Block /= COSE_Mac0_Tagged
SUIT_Authentication_Block /= COSE_Sign1_Tagged
</sourcecode>
        <t>The SUIT_Digest is computed over the bstr-wrapped SUIT_Manifest that is present in the SUIT_Envelope at the suit-manifest key. The SUIT_Digest <bcp14>MUST</bcp14> always be present. The Manifest Processor requires a SUIT_Authentication_Block to be present. The manifest <bcp14>MUST</bcp14> be protected from tampering between the time of creation and the time of signing/MACing.</t>
        <t>The SUIT_Authentication_Block is computed using detached payloads, as described in RFC 9052 <xref target="RFC9052"/>. The detached payload in each case is the bstr-wrapped SUIT_Digest at the beginning of the list. Signers (or MAC calculators) <bcp14>MUST</bcp14> verify the SUIT_Digest prior to performing the cryptographic computation to avoid "Time-of-check to time-of-use" type of attack. When multiple SUIT_Authentication_Blocks are present, then each  SUIT_Authentication_Block <bcp14>MUST</bcp14> be computed over the same SUIT_Digest but using a different algorithm or signing/MAC authority. This feature also allows to transition to new algorithms, such as post-quantum cryptography (PQC) algorithms.</t>
        <t>The SUIT_Authentication structure <bcp14>MUST</bcp14> come before the suit-manifest element, regardless of canonical encoding of CBOR. The algorithms used in SUIT_Authentication are defined by the profiles declared in <xref target="I-D.ietf-suit-mti"/>.</t>
      </section>
      <section anchor="manifest-structure">
        <name>Manifest</name>
        <t>The manifest contains:</t>
        <ul spacing="normal">
          <li>a version number (see <xref target="manifest-version"/>)</li>
          <li>a sequence number (see <xref target="manifest-seqnr"/>)</li>
          <li>a reference URI (see <xref target="manifest-reference-uri"/>)</li>
          <li>a common structure with information that is shared between command sequences (see <xref target="manifest-common"/>)</li>
          <li>one or more lists of commands that the Recipient should perform (see <xref target="manifest-commands"/>)</li>
          <li>a reference to the full manifest (see <xref target="manifest-reference-uri"/>)</li>
          <li>human-readable text describing the manifest found in the SUIT_Envelope (see <xref target="manifest-digest-text"/>)</li>
        </ul>
        <t>The Text section, or any Command Sequence of the Update Procedure (Image Fetch, Image Installation and, System Validation) can be either a CBOR structure or a SUIT_Digest. In each of these cases, the SUIT_Digest provides for a severable element. Severable elements are <bcp14>RECOMMENDED</bcp14> to implement. In particular, the human-readable text <bcp14>SHOULD</bcp14> be severable, since most useful text elements occupy more space than a SUIT_Digest, but are not needed by the Recipient. Because SUIT_Digest is a CBOR Array and each severable element is a CBOR bstr, it is straight-forward for a Recipient to determine whether an element has been severed. The key used for a severable element is the same in the SUIT_Manifest and in the SUIT_Envelope so that a Recipient can easily identify the correct data in the envelope. See <xref target="integrity-checks"/> for more detail.</t>
        <section anchor="manifest-version">
          <name>suit-manifest-version</name>
          <t>The suit-manifest-version indicates the version of serialization used to encode the manifest. Version 1 is the version described in this document. suit-manifest-version is <bcp14>REQUIRED</bcp14> to implement.</t>
        </section>
        <section anchor="manifest-seqnr">
          <name>suit-manifest-sequence-number</name>
          <t>The suit-manifest-sequence-number is a monotonically increasing anti-rollback counter. Each Recipient <bcp14>MUST</bcp14> reject any manifest that has a sequence number lower than its current sequence number. For convenience, an implementer <bcp14>MAY</bcp14> use a UTC timestamp in seconds as the sequence number. suit-manifest-sequence-number is <bcp14>REQUIRED</bcp14> to implement.</t>
        </section>
        <section anchor="manifest-reference-uri">
          <name>suit-reference-uri</name>
          <t>suit-reference-uri is a URI where a full version of this manifest can be found. This is convenient for allowing management systems to show the severed elements of a manifest when this URI is reported by a Recipient after installation.
This document is only concerned with the transport of a URI which is 
intended for machine readable uses, not human readable uses. The encoding is the same as CBOR
Tag 32, however the tag is omitted because it is implied by context.</t>
        </section>
        <section anchor="manifest-digest-text">
          <name>suit-text</name>
          <t>suit-text <bcp14>SHOULD</bcp14> be a severable element. suit-text is a map of language identifiers (identical to Tag38 of RFC9290, Appendix A) to language-specific text maps. Each language-specific text map is a map containing two different types of pair:</t>
          <ul spacing="normal">
            <li>integer =&gt; text</li>
            <li>SUIT_Component_Identifier =&gt; map</li>
          </ul>
          <t>The SUIT_Text_Map is defined in the following CDDL.</t>
          <sourcecode type="cddl-snippet">
tag38-ltag = text .regexp "[a-zA-Z]{1,8}(-[a-zA-Z0-9]{1,8})*"

SUIT_Text_Map = {
    + tag38-ltag =&gt; SUIT_Text_LMap
}
SUIT_Text_LMap = {
    SUIT_Text_Keys,
    * SUIT_Component_Identifier =&gt; {
        SUIT_Text_Component_Keys
    }
}
</sourcecode>
          <t>Each SUIT_Component_Identifier =&gt; map entry contains a map of integer =&gt; text values. All SUIT_Component_Identifiers present in suit-text <bcp14>MUST</bcp14> also be present in suit-common (<xref target="manifest-common"/>).</t>
          <t>suit-text contains all the human-readable information that describes any and all parts of the manifest, its payload(s) and its resource(s). The text section is typically severable, allowing manifests to be distributed without the text, since end-nodes do not require text. The meaning of each field is described below.</t>
          <t>Each section <bcp14>MAY</bcp14> be present. If present, each section <bcp14>MUST</bcp14> be as described. Negative integer IDs are reserved for application-specific text values.</t>
          <t>The following table describes the text fields available in suit-text:</t>
          <table>
            <thead>
              <tr>
                <th align="left">CDDL Structure</th>
                <th align="left">Description</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">suit-text-manifest-description</td>
                <td align="left">Free text description of the manifest</td>
              </tr>
              <tr>
                <td align="left">suit-text-update-description</td>
                <td align="left">Free text description of the update</td>
              </tr>
              <tr>
                <td align="left">suit-text-manifest-json-source</td>
                <td align="left">The JSON-formatted document that was used to create the manifest</td>
              </tr>
              <tr>
                <td align="left">suit-text-manifest-yaml-source</td>
                <td align="left">The YAML-formatted document <xref target="YAML"/> that was used to create the manifest</td>
              </tr>
            </tbody>
          </table>
          <t>The following table describes the text fields available in each map identified by a SUIT_Component_Identifier.</t>
          <table>
            <thead>
              <tr>
                <th align="left">CDDL Structure</th>
                <th align="left">Description</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">suit-text-vendor-name</td>
                <td align="left">Free text vendor name</td>
              </tr>
              <tr>
                <td align="left">suit-text-model-name</td>
                <td align="left">Free text model name</td>
              </tr>
              <tr>
                <td align="left">suit-text-vendor-domain</td>
                <td align="left">The domain used to create the vendor-id condition (see <xref target="uuid-identifiers"/>)</td>
              </tr>
              <tr>
                <td align="left">suit-text-model-info</td>
                <td align="left">The information used to create the class-id condition (see <xref target="uuid-identifiers"/>)</td>
              </tr>
              <tr>
                <td align="left">suit-text-component-description</td>
                <td align="left">Free text description of each component in the manifest</td>
              </tr>
              <tr>
                <td align="left">suit-text-component-version</td>
                <td align="left">A free text representation of the component version</td>
              </tr>
            </tbody>
          </table>
          <t>suit-text is <bcp14>OPTIONAL</bcp14> to implement.</t>
        </section>
        <section anchor="manifest-common">
          <name>suit-common</name>
          <t>suit-common encodes all the information that is shared between each of the command sequences, including: suit-components, and suit-shared-sequence. suit-common is <bcp14>REQUIRED</bcp14> to implement.</t>
          <t>suit-components is a list of <xref target="suit-component-identifier">SUIT_Component_Identifier</xref> blocks that specify the component identifiers that will be affected by the content of the current manifest. suit-components is <bcp14>REQUIRED</bcp14> to implement.</t>
          <t>suit-shared-sequence is a SUIT_Command_Sequence to execute prior to executing any other command sequence. Typical actions in suit-shared-sequence include setting expected Recipient identity and image digests when they are conditional (see <xref target="suit-directive-try-each"/> and <xref target="a-b-template"/> for more information on conditional sequences). suit-shared-sequence is <bcp14>RECOMMENDED</bcp14> to implement. Whenever a parameter or Try Each command is required by more than one Command Sequence, placing that parameter or command in suit-shared-sequence results in a smaller encoding.</t>
          <section anchor="suit-component-identifier">
            <name>SUIT_Component_Identifier</name>
            <t>A component is a unit of code or data that can be targeted by an update. To facilitate composite devices, components are identified by a list of CBOR byte strings, which allows construction of hierarchical component structures. Components are identified by Component Identifiers, but referenced in commands by Component Index; Component Identifiers are arrays of binary strings and a Component Index is an index into the array of Component Identifiers.</t>
            <t>A Component Identifier can be trivial, such as the simple array [h'00']. It can also represent a filesystem path by encoding each segment of the path as an element in the list. For example, the path "/usr/bin/env" would encode to ['usr','bin','env'].</t>
            <t>This hierarchical construction allows a component identifier to identify any part of a complex, multi-component system.</t>
          </section>
        </section>
        <section anchor="manifest-commands">
          <name>SUIT_Command_Sequence</name>
          <t>A SUIT_Command_Sequence defines a series of actions that the Recipient <bcp14>MUST</bcp14> take to accomplish a particular goal. These goals are defined in the manifest and include:</t>
          <ol spacing="normal" type="1">
            <li>Payload Fetch: suit-payload-fetch is a SUIT_Command_Sequence to execute in order to obtain a payload. Some manifests may include these actions in the suit-install section instead if they operate in a streaming installation mode. This is particularly relevant for constrained devices without any temporary storage for staging the update. suit-payload-fetch is <bcp14>OPTIONAL</bcp14> to implement because it is not relevant in all bootloaders.</li>
            <li>Payload Installation: suit-install is a SUIT_Command_Sequence to execute in order to install a payload. Typical actions include verifying a payload stored in temporary storage, copying a staged payload from temporary storage, and unpacking a payload. suit-install is <bcp14>OPTIONAL</bcp14> to implement.</li>
            <li>Image Validation: suit-validate is a SUIT_Command_Sequence to execute in order to validate that the result of applying the update is correct. Typical actions involve image validation. suit-validate is <bcp14>REQUIRED</bcp14> to implement.</li>
            <li>Image Loading: suit-load is a SUIT_Command_Sequence to execute in order to prepare a payload for execution. Typical actions include copying an image from permanent storage into RAM, optionally including actions such as decryption or decompression. suit-load is <bcp14>OPTIONAL</bcp14> to implement.</li>
            <li>Invoke or Boot: suit-invoke is a SUIT_Command_Sequence to execute in order to invoke an image. suit-invoke typically contains a single instruction: the "invoke" directive, but may also contain an image condition. suit-invoke is <bcp14>OPTIONAL</bcp14> to implement because it not needed for restart-based invocation.</li>
          </ol>
          <t>Goals 1,2,3 form the Update Procedure. Goals 3,4,5 form the Invocation Procedure.</t>
          <t>Each Command Sequence follows exactly the same structure to ensure that the parser is as simple as possible.</t>
          <t>Lists of commands are constructed from two kinds of element:</t>
          <ol spacing="normal" type="1">
            <li>Conditions that <bcp14>MUST</bcp14> be true and any failure is treated as a failure of the update/load/invocation</li>
            <li>Directives that <bcp14>MUST</bcp14> be executed.</li>
          </ol>
          <t>Each condition is composed of:</t>
          <ol spacing="normal" type="1">
            <li>A command code identifier</li>
            <li>A <xref target="reporting-policy">SUIT_Reporting_Policy</xref></li>
          </ol>
          <t>Each directive is composed of:</t>
          <ol spacing="normal" type="1">
            <li>A command code identifier</li>
            <li>An argument block or a <xref target="reporting-policy">SUIT_Reporting_Policy</xref></li>
          </ol>
          <t>Argument blocks are consumed only by flow-control directives:</t>
          <ul spacing="normal">
            <li>Set Component Index</li>
            <li>Set/Override Parameters</li>
            <li>Try Each</li>
            <li>Run Sequence</li>
          </ul>
          <t>Reporting policies provide a hint to the manifest processor of whether to add the success or failure of a command to any report that it generates.</t>
          <t>Many conditions and directives apply to a given component, and these generally grouped together. Therefore, a special command to set the current component index is provided. This index is a numeric index into the Component Identifier table defined at the beginning of the manifest.</t>
          <t>To facilitate optional conditions, a special directive, suit-directive-try-each (<xref target="suit-directive-try-each"/>), is provided. It runs several new lists of conditions/directives, one after another, that are contained as an argument to the directive. By default, it assumes that a failure of a condition should not indicate a failure of the update/invocation, but a parameter is provided to override this behavior. See suit-parameter-soft-failure (<xref target="suit-parameter-soft-failure"/>).</t>
        </section>
        <section anchor="reporting-policy">
          <name>Reporting Policy</name>
          <t>To facilitate construction of Reports that describe the success or failure of a given Procedure, each command is given a Reporting Policy. This is an integer bitfield that follows the command and indicates what the Recipient should do with the Record of executing the command. The options are summarized in the table below.</t>
          <table>
            <thead>
              <tr>
                <th align="left">Policy</th>
                <th align="left">Description</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">suit-send-record-on-success</td>
                <td align="left">Record when the command succeeds</td>
              </tr>
              <tr>
                <td align="left">suit-send-record-on-failure</td>
                <td align="left">Record when the command fails</td>
              </tr>
              <tr>
                <td align="left">suit-send-sysinfo-success</td>
                <td align="left">Add system information when the command succeeds</td>
              </tr>
              <tr>
                <td align="left">suit-send-sysinfo-failure</td>
                <td align="left">Add system information when the command fails</td>
              </tr>
            </tbody>
          </table>
          <t>Any or all of these policies may be enabled at once.</t>
          <t>At the completion of each command, a Manifest Processor <bcp14>MAY</bcp14> forward information about the command to a Reporting Engine, which is responsible for reporting boot or update status to a third party. The Reporting Engine is entirely implementation-defined, the reporting policy simply facilitates the Reporting Engine's interface to the SUIT Manifest Processor.</t>
          <t>The information elements provided to the Reporting Engine are:</t>
          <ul spacing="normal">
            <li>The reporting policy</li>
            <li>The result of the command</li>
            <li>The values of parameters consumed by the command</li>
            <li>The system information consumed by the command</li>
          </ul>
          <t>The Reporting Engine consumes these information elements and decides whether to generate an entry in its report output and which information elements to include based on its internal policy decisions. The Reporting Engine uses the reporting policy provided to it by the SUIT Manifest Processor as a set of hints but <bcp14>MAY</bcp14> choose to ignore these hints and apply its own policy instead.</t>
          <t>If the component index is set to True or an array when a command is executed with a non-zero reporting policy, then the Reporting Engine <bcp14>MUST</bcp14> receive one set of information elements for each Component, in the order expressed in the Components list or the Component Index array.</t>
          <t>This specification does not define a particular format of Records or Reports. This specification only defines hints to the Reporting Engine for which information elements it should aggregate into the Report.</t>
          <t>When used in a Invocation Procedure, the output of the Reporting Engine <bcp14>MAY</bcp14> form the basis of an attestation report. When used in an Update Process, the report <bcp14>MAY</bcp14> form the basis for one or more log entries.</t>
        </section>
        <section anchor="secparameters">
          <name>SUIT_Parameters</name>
          <t>Many conditions and directives require additional information. That information is contained within parameters that can be set in a consistent way. This allows reuse of parameters between commands, thus reducing manifest size.</t>
          <t>Most parameters are scoped to a specific component. This means that setting a parameter for one component has no effect on the parameters of any other component. The only exceptions to this are two Manifest Processor parameters: Strict Order and Soft Failure.</t>
          <t>The defined manifest parameters are described below.</t>
          <table>
            <thead>
              <tr>
                <th align="left">Name</th>
                <th align="left">CDDL Structure</th>
                <th align="left">Reference</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">Vendor ID</td>
                <td align="left">suit-parameter-vendor-identifier</td>
                <td align="left">
                  <xref target="suit-parameter-vendor-identifier"/></td>
              </tr>
              <tr>
                <td align="left">Class ID</td>
                <td align="left">suit-parameter-class-identifier</td>
                <td align="left">
                  <xref target="suit-parameter-class-identifier"/></td>
              </tr>
              <tr>
                <td align="left">Device ID</td>
                <td align="left">suit-parameter-device-identifier</td>
                <td align="left">
                  <xref target="suit-parameter-device-identifier"/></td>
              </tr>
              <tr>
                <td align="left">Image Digest</td>
                <td align="left">suit-parameter-image-digest</td>
                <td align="left">
                  <xref target="suit-parameter-image-digest"/></td>
              </tr>
              <tr>
                <td align="left">Image Size</td>
                <td align="left">suit-parameter-image-size</td>
                <td align="left">
                  <xref target="suit-parameter-image-size"/></td>
              </tr>
              <tr>
                <td align="left">Content</td>
                <td align="left">suit-parameter-content</td>
                <td align="left">
                  <xref target="suit-parameter-content"/></td>
              </tr>
              <tr>
                <td align="left">Component Slot</td>
                <td align="left">suit-parameter-component-slot</td>
                <td align="left">
                  <xref target="suit-parameter-component-slot"/></td>
              </tr>
              <tr>
                <td align="left">URI</td>
                <td align="left">suit-parameter-uri</td>
                <td align="left">
                  <xref target="suit-parameter-uri"/></td>
              </tr>
              <tr>
                <td align="left">Source Component</td>
                <td align="left">suit-parameter-source-component</td>
                <td align="left">
                  <xref target="suit-parameter-source-component"/></td>
              </tr>
              <tr>
                <td align="left">Invoke Args</td>
                <td align="left">suit-parameter-invoke-args</td>
                <td align="left">
                  <xref target="suit-parameter-invoke-args"/></td>
              </tr>
              <tr>
                <td align="left">Fetch Arguments</td>
                <td align="left">suit-parameter-fetch-arguments</td>
                <td align="left">
                  <xref target="suit-parameter-fetch-arguments"/></td>
              </tr>
              <tr>
                <td align="left">Strict Order</td>
                <td align="left">suit-parameter-strict-order</td>
                <td align="left">
                  <xref target="suit-parameter-strict-order"/></td>
              </tr>
              <tr>
                <td align="left">Soft Failure</td>
                <td align="left">suit-parameter-soft-failure</td>
                <td align="left">
                  <xref target="suit-parameter-soft-failure"/></td>
              </tr>
              <tr>
                <td align="left">Custom</td>
                <td align="left">suit-parameter-custom</td>
                <td align="left">
                  <xref target="suit-parameter-custom"/></td>
              </tr>
            </tbody>
          </table>
          <t>CBOR-encoded object parameters are still wrapped in a bstr. This is because it allows a parser that is aggregating parameters to reference the object with a single pointer and traverse it without understanding the contents. This is important for modularization and division of responsibility within a pull parser. The same consideration does not apply to Directives because those elements are invoked with their arguments immediately.</t>
          <section anchor="cbor-pen-uuid-namespace-identifier">
            <name>CBOR PEN UUID Namespace Identifier</name>
            <t>The CBOR PEN UUID Namespace Identifier is constructed as follows:</t>
            <t>It uses the OID Namespace as a starting point, then uses the CBOR absolute OID encoding for the IANA PEN OID (1.3.6.1.4.1):</t>
            <sourcecode type="cbor-pretty">
D8 6F                # tag(111)
   45                # bytes(5)
# Absolute OID encoding of IANA Private Enterprise Number:
#    1.3. 6. 1. 4. 1
      2B 06 01 04 01 # X.690 Clause 8.19
</sourcecode>
            <t>Computing a version 5 UUID from these produces:</t>
            <artwork><![CDATA[
NAMESPACE_CBOR_PEN = UUID5(NAMESPACE_OID, h'D86F452B06010401')
NAMESPACE_CBOR_PEN = 47fbdabb-f2e4-55f0-bb39-3620c2f6df4e
]]></artwork>
          </section>
          <section anchor="uuid-identifiers">
            <name>Constructing UUIDs</name>
            <t>Several conditions use identifiers to determine whether a manifest matches a given Recipient or not. These identifiers are defined to be RFC 4122bis <xref target="RFC4122bis"/> UUIDs. These UUIDs are not human-readable and are therefore used for machine-based processing only.</t>
            <t>A Recipient <bcp14>MAY</bcp14> match any number of UUIDs for vendor or class identifier. This may be relevant to physical or software modules. For example, a Recipient that has an OS and one or more applications might list one Vendor ID for the OS and one or more additional Vendor IDs for the applications. This Recipient might also have a Class ID that must be matched for the OS and one or more Class IDs for the applications.</t>
            <t>Identifiers are used for compatibility checks. They <bcp14>MUST NOT</bcp14> be used as assertions of identity. They are evaluated by identifier conditions (<xref target="identifier-conditions"/>).</t>
            <t>A more complete example: Imagine a device has the following physical components:
1. A host MCU
2. A WiFi module</t>
            <t>This same device has three software modules:
1. An operating system
2. A WiFi module interface driver
3. An application</t>
            <t>Suppose that the WiFi module's firmware has a proprietary update mechanism and doesn't support manifest processing. This device can report four class IDs:</t>
            <ol spacing="normal" type="1">
              <li>Hardware model/revision</li>
              <li>OS</li>
              <li>WiFi module model/revision</li>
              <li>Application</li>
            </ol>
            <t>This allows the OS, WiFi module, and application to be updated independently. To combat possible incompatibilities, the OS class ID can be changed each time the OS has a change to its API.</t>
            <t>This approach allows a vendor to target, for example, all devices with a particular WiFi module with an update, which is a very powerful mechanism, particularly when used for security updates.</t>
            <t>UUIDs <bcp14>MUST</bcp14> be created according to versions 3, 4, or 5 of <xref target="RFC4122bis"/>. Versions 1 and 2 do not provide a tangible benefit over version 4 for this application.</t>
            <t>The <bcp14>RECOMMENDED</bcp14> method to create a vendor ID is:</t>
            <artwork><![CDATA[
Vendor ID = UUID5(DNS_PREFIX, vendor domain name)
]]></artwork>
            <t>In this case, the vendor domain name is a UTF-8 encoded string. Since UUID version 5
applies a digest, internationalization considerations are not applied. The native 
UTF-8 domain name is used.</t>
            <t>If the Vendor ID is a UUID, the <bcp14>RECOMMENDED</bcp14> method to create a Class ID is:</t>
            <artwork><![CDATA[
Class ID = UUID5(Vendor ID, Class-Specific-Information)
]]></artwork>
            <t>If the Vendor ID is a CBOR PEN (see <xref target="suit-parameter-vendor-identifier"/>), the <bcp14>RECOMMENDED</bcp14> method to create a Class ID is:</t>
            <artwork><![CDATA[
Class ID = UUID5(
    UUID5(NAMESPACE_CBOR_PEN, CBOR_PEN),
    Class-Specific-Information)
]]></artwork>
            <t>Class-specific-information is composed of a variety of data, for example:</t>
            <ul spacing="normal">
              <li>Model number.</li>
              <li>Hardware revision.</li>
              <li>Bootloader version (for immutable bootloaders).</li>
            </ul>
          </section>
          <section anchor="suit-parameter-vendor-identifier">
            <name>suit-parameter-vendor-identifier</name>
            <t>suit-parameter-vendor-identifier may be presented in one of two ways:</t>
            <ul spacing="normal">
              <li>A Private Enterprise Number</li>
              <li>A byte string containing a UUID <xref target="RFC4122bis"/></li>
            </ul>
            <t>Private Enterprise Numbers are encoded as a relative OID, according to the definition in <xref target="RFC9090"/>. All PENs are relative to the IANA PEN: 1.3.6.1.4.1.</t>
          </section>
          <section anchor="suit-parameter-class-identifier">
            <name>suit-parameter-class-identifier</name>
            <t>A RFC 4122 UUID representing the class of the device or component. The UUID is encoded as a 16 byte bstr, containing the raw bytes of the UUID. It <bcp14>MUST</bcp14> be constructed as described in <xref target="uuid-identifiers"/></t>
          </section>
          <section anchor="suit-parameter-device-identifier">
            <name>suit-parameter-device-identifier</name>
            <t>A RFC 4122 UUID representing the specific device or component. The UUID is encoded as a 16 byte bstr, containing the raw bytes of the UUID. It <bcp14>MUST</bcp14> be constructed as described in <xref target="uuid-identifiers"/></t>
          </section>
          <section anchor="suit-parameter-image-digest">
            <name>suit-parameter-image-digest</name>
            <t>A fingerprint computed over the component itself, encoded in the SUIT_Digest <xref target="SUIT_Digest"/> structure. The SUIT_Digest is wrapped in a bstr, as required in <xref target="secparameters"/>.</t>
          </section>
          <section anchor="suit-parameter-image-size">
            <name>suit-parameter-image-size</name>
            <t>The size of the firmware image in bytes. This size is encoded as a positive integer.</t>
          </section>
          <section anchor="suit-parameter-component-slot">
            <name>suit-parameter-component-slot</name>
            <t>This parameter sets the slot index of a component. Some components support multiple possible Slots (offsets into a storage area). This parameter describes the intended Slot to use, identified by its index into the component's storage area. This slot <bcp14>MUST</bcp14> be encoded as a positive integer.</t>
          </section>
          <section anchor="suit-parameter-content">
            <name>suit-parameter-content</name>
            <t>A block of raw data for use with <xref target="suit-directive-write"/>. It contains a byte string of data to be written to a specified component ID in the same way as a fetch or a copy.</t>
            <t>If data is encoded this way, it should be small, e.g. 10's of bytes. Large payloads, e.g. 1000's of bytes, written via this method might prevent the manifest from being held in memory during validation. Typical applications include small configuration parameters.</t>
            <t>The size of payload embedded in suit-parameter-content impacts the security requirement defined in <xref target="RFC9124"/>, Section 4.3.21 REQ.SEC.MFST.CONST: Manifest Kept Immutable between Check and Use. Actual limitations on payload size for suit-parameter-content depend on the application, in particular the available memory that satisfies REQ.SEC.MFST.CONST. If the availability of tamper resistant memory is less than the manifest size, then REQ.SEC.MFST.CONST cannot be satisfied.</t>
            <t>If suit-parameter-content is instantiated in a severable command sequence, then this becomes functionally very similar to an integrated payload, which may be a better choice.</t>
          </section>
          <section anchor="suit-parameter-uri">
            <name>suit-parameter-uri</name>
            <t>A URI Reference <xref target="RFC3986"/> from which to fetch a resource. The encoding is the same as CBOR Tag 32, however the tag is omitted because it is implied by the context.
This document is only concerned with the transport of a URI which is 
intended for machine readable uses, not human readable uses.</t>
          </section>
          <section anchor="suit-parameter-source-component">
            <name>suit-parameter-source-component</name>
            <t>This parameter sets the source component to be used with either suit-directive-copy (<xref target="suit-directive-copy"/>) or with suit-directive-swap (<xref target="suit-directive-swap"/>). The current Component, as set by suit-directive-set-component-index defines the destination, and suit-parameter-source-component defines the source.</t>
          </section>
          <section anchor="suit-parameter-invoke-args">
            <name>suit-parameter-invoke-args</name>
            <t>This parameter contains an encoded set of arguments for suit-directive-invoke (<xref target="suit-directive-invoke"/>). The arguments <bcp14>MUST</bcp14> be provided as an implementation-defined bstr.</t>
          </section>
          <section anchor="suit-parameter-fetch-arguments">
            <name>suit-parameter-fetch-arguments</name>
            <t>An implementation-defined set of arguments to suit-directive-fetch (<xref target="suit-directive-fetch"/>). Arguments are encoded in a bstr.</t>
          </section>
          <section anchor="suit-parameter-strict-order">
            <name>suit-parameter-strict-order</name>
            <t>The Strict Order Parameter allows a manifest to govern when directives can be executed out-of-order. This allows for systems that have a sensitivity to order of updates to choose the order in which they are executed. It also allows for more advanced systems to parallelize their handling of updates. Strict Order defaults to True. It <bcp14>MAY</bcp14> be set to False when the order of operations does not matter. When arriving at the end of a command sequence, ALL commands <bcp14>MUST</bcp14> have completed, regardless of the state of SUIT_Parameter_Strict_Order. If SUIT_Parameter_Strict_Order is returned to True, ALL preceding commands <bcp14>MUST</bcp14> complete before the next command is executed.</t>
            <t>See <xref target="parallel-processing"/> for behavioral description of Strict Order.</t>
          </section>
          <section anchor="suit-parameter-soft-failure">
            <name>suit-parameter-soft-failure</name>
            <t>When executing a command sequence inside suit-directive-try-each (<xref target="suit-directive-try-each"/>) or suit-directive-run-sequence (<xref target="suit-directive-run-sequence"/>) and a condition failure occurs, the manifest processor aborts the sequence. For suit-directive-try-each, if Soft Failure is True, the next sequence in Try Each is invoked, otherwise suit-directive-try-each fails with the condition failure code. In suit-directive-run-sequence, if Soft Failure is True the suit-directive-run-sequence simply halts with no side-effects and the Manifest Processor continues with the following command, otherwise, the suit-directive-run-sequence fails with the condition failure code.</t>
            <t>suit-parameter-soft-failure is scoped to the enclosing SUIT_Command_Sequence. Its value is discarded when the enclosing SUIT_Command_Sequence terminates and suit-parameter-soft-failure reverts to the value it had prior to the invocation of the SUIT_Command_Sequence. Nested SUIT_Command_Sequences do not inherit the enclosing sequence's suit-parameter-soft-failure. It <bcp14>MUST NOT</bcp14> be set outside of suit-directive-try-each or suit-directive-run-sequence, modifying suit-parameter-soft-failure outside of these circumstances causes an Abort.</t>
            <t>When suit-directive-try-each is invoked, Soft Failure defaults to True in every SUIT_Command_Sequence in the suit-directive-try-each argument. An Update Author may choose to set Soft Failure to False if they require a failed condition in a sequence to force an Abort. When the enclosing SUIT_Command_Sequence terminates, suit-parameter-soft-failure reverts to the value it held before the SUIT_Command_Sequence was invoked.</t>
            <t>When suit-directive-run-sequence is invoked, Soft Failure defaults to False. An Update Author may choose to make failures soft within a suit-directive-run-sequence.</t>
          </section>
          <section anchor="suit-parameter-custom">
            <name>suit-parameter-custom</name>
            <t>This parameter is an extension point for any proprietary, application specific conditions and directives. It <bcp14>MUST NOT</bcp14> be used in the shared sequence. This effectively scopes each custom command to a particular Vendor Identifier/Class Identifier pair.</t>
            <t>suit-parameter-custom <bcp14>MAY</bcp14> be consumed by any command, in an application-specific way, however if a suit-parameter-custom is absent, then all standardised suit-commands <bcp14>MUST</bcp14> execute correctly. In this respect, suit-parameter-custom <bcp14>MUST</bcp14> be treated as a hint by any standardised suit-command that consumes it.</t>
          </section>
        </section>
        <section anchor="suitcondition">
          <name>SUIT_Condition</name>
          <t>Conditions are used to define mandatory properties of a system in order for an update to be applied. They can be pre-conditions or post-conditions of any directive or series of directives, depending on where they are placed in the list. All Conditions specify a Reporting Policy as described <xref target="reporting-policy"/>. Conditions include:</t>
          <table>
            <thead>
              <tr>
                <th align="left">Name</th>
                <th align="left">CDDL Structure</th>
                <th align="left">Reference</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">Vendor Identifier</td>
                <td align="left">suit-condition-vendor-identifier</td>
                <td align="left">
                  <xref target="identifier-conditions"/></td>
              </tr>
              <tr>
                <td align="left">Class Identifier</td>
                <td align="left">suit-condition-class-identifier</td>
                <td align="left">
                  <xref target="identifier-conditions"/></td>
              </tr>
              <tr>
                <td align="left">Device Identifier</td>
                <td align="left">suit-condition-device-identifier</td>
                <td align="left">
                  <xref target="identifier-conditions"/></td>
              </tr>
              <tr>
                <td align="left">Image Match</td>
                <td align="left">suit-condition-image-match</td>
                <td align="left">
                  <xref target="suit-condition-image-match"/></td>
              </tr>
              <tr>
                <td align="left">Check Content</td>
                <td align="left">suit-condition-check-content</td>
                <td align="left">
                  <xref target="suit-condition-check-content"/></td>
              </tr>
              <tr>
                <td align="left">Component Slot</td>
                <td align="left">suit-condition-component-slot</td>
                <td align="left">
                  <xref target="suit-condition-component-slot"/></td>
              </tr>
              <tr>
                <td align="left">Abort</td>
                <td align="left">suit-condition-abort</td>
                <td align="left">
                  <xref target="suit-condition-abort"/></td>
              </tr>
              <tr>
                <td align="left">Custom Condition</td>
                <td align="left">suit-command-custom</td>
                <td align="left">
                  <xref target="SUIT_Command_Custom"/></td>
              </tr>
            </tbody>
          </table>
          <t>The abstract description of these conditions is defined in <xref target="command-behavior"/>.</t>
          <t>Conditions compare parameters against properties of the system. These properties may be asserted in many different ways, including: calculation on-demand, volatile definition in memory, static definition within the manifest processor, storage in known location within an image, storage within a key storage system, storage in One-Time-Programmable memory, inclusion in mask ROM, or inclusion as a register in hardware. Some of these assertion methods are global in scope, such as a hardware register, some are scoped to an individual component, such as storage at a known location in an image, and some assertion methods can be either global or component-scope, based on implementation.</t>
          <t>Each condition <bcp14>MUST</bcp14> report a result code on completion. If a condition reports failure, then the current sequence of commands <bcp14>MUST</bcp14> terminate. A subsequent command or command sequence <bcp14>MAY</bcp14> continue executing if suit-parameter-soft-failure (<xref target="suit-parameter-soft-failure"/>) is set. If a condition requires additional information, this <bcp14>MUST</bcp14> be specified in one or more parameters before the condition is executed. If a Recipient attempts to process a condition that expects additional information and that information has not been set, it <bcp14>MUST</bcp14> report a failure. If a Recipient encounters an unknown condition, it <bcp14>MUST</bcp14> report a failure.</t>
          <t>Condition labels in the positive number range are reserved for IANA registration while those in the negative range are custom conditions reserved for proprietary definition by the author of a manifest processor. See <xref target="iana"/> for more details.</t>
          <section anchor="identifier-conditions">
            <name>suit-condition-vendor-identifier, suit-condition-class-identifier, and suit-condition-device-identifier</name>
            <t>There are three identifier-based conditions: suit-condition-vendor-identifier, suit-condition-class-identifier, and suit-condition-device-identifier. Each of these conditions match a UUID <xref target="RFC4122bis"/> that <bcp14>MUST</bcp14> have already been set as a parameter. The installing Recipient <bcp14>MUST</bcp14> match the specified UUID in order to consider the manifest valid. These identifiers are scoped by component in the manifest. Each component <bcp14>MAY</bcp14> match more than one identifier. Care is needed to ensure that manifests correctly identify their targets using these conditions. Using only a generic class ID for a device-specific firmware could result in matching devices that are not compatible.</t>
            <t>The Recipient uses the ID parameter that has already been set using the Set Parameters directive. If no ID has been set, this condition fails. suit-condition-class-identifier and suit-condition-vendor-identifier are <bcp14>REQUIRED</bcp14> to implement. suit-condition-device-identifier is <bcp14>OPTIONAL</bcp14> to implement.</t>
            <t>Each identifier condition compares the corresponding identifier parameter to a parameter asserted to the Manifest Processor by the Recipient. Identifiers <bcp14>MUST</bcp14> be known to the Manifest Processor in order to evaluate compatibility.</t>
          </section>
          <section anchor="suit-condition-image-match">
            <name>suit-condition-image-match</name>
            <t>Verify that the current component matches the suit-parameter-image-digest (<xref target="suit-parameter-image-digest"/>) for the current component. The digest is verified against the digest specified in the Component's parameters list. If no digest is specified, the condition fails. suit-condition-image-match is <bcp14>REQUIRED</bcp14> to implement.</t>
          </section>
          <section anchor="suit-condition-check-content">
            <name>suit-condition-check-content</name>
            <t>This directive compares the specified component identifier to the data indicated by suit-parameter-content. This functions similarly to suit-condition-image-match, however it does a direct, byte-by-byte comparison rather than a digest-based comparison. Because it is possible that an early stop to check-content could reveal information through timing, suit-condition-check-content <bcp14>MUST</bcp14> be constant time: no early exits.</t>
            <t>The following pseudo-code described an example content checking algorithm:</t>
            <artwork><![CDATA[
// content & component must be same length
// returns 0 for match
int check_content(content, component, length) {
    int residual = 0;
    for (i = 0; i < length; i++) {
        residual |= content[i] ^ component[i];
    }
    return residual;
}
]]></artwork>
          </section>
          <section anchor="suit-condition-component-slot">
            <name>suit-condition-component-slot</name>
            <t>Verify that the slot index of the current component matches the slot index set in suit-parameter-component-slot (<xref target="suit-parameter-component-slot"/>). This condition allows a manifest to select between several images to match a target slot.</t>
          </section>
          <section anchor="suit-condition-abort">
            <name>suit-condition-abort</name>
            <t>Unconditionally fail. This operation is typically used in conjunction with suit-directive-try-each (<xref target="suit-directive-try-each"/>).</t>
          </section>
        </section>
        <section anchor="suitdirective">
          <name>SUIT_Directive</name>
          <t>Directives are used to define the behavior of the recipient. Directives include:</t>
          <table>
            <thead>
              <tr>
                <th align="left">Name</th>
                <th align="left">CDDL Structure</th>
                <th align="left">Reference</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">Set Component Index</td>
                <td align="left">suit-directive-set-component-index</td>
                <td align="left">
                  <xref target="suit-directive-set-component-index"/></td>
              </tr>
              <tr>
                <td align="left">Try Each</td>
                <td align="left">suit-directive-try-each</td>
                <td align="left">
                  <xref target="suit-directive-try-each"/></td>
              </tr>
              <tr>
                <td align="left">Override Parameters</td>
                <td align="left">suit-directive-override-parameters</td>
                <td align="left">
                  <xref target="suit-directive-override-parameters"/></td>
              </tr>
              <tr>
                <td align="left">Fetch</td>
                <td align="left">suit-directive-fetch</td>
                <td align="left">
                  <xref target="suit-directive-fetch"/></td>
              </tr>
              <tr>
                <td align="left">Copy</td>
                <td align="left">suit-directive-copy</td>
                <td align="left">
                  <xref target="suit-directive-copy"/></td>
              </tr>
              <tr>
                <td align="left">Write</td>
                <td align="left">suit-directive-write</td>
                <td align="left">
                  <xref target="suit-directive-write"/></td>
              </tr>
              <tr>
                <td align="left">Invoke</td>
                <td align="left">suit-directive-invoke</td>
                <td align="left">
                  <xref target="suit-directive-invoke"/></td>
              </tr>
              <tr>
                <td align="left">Run Sequence</td>
                <td align="left">suit-directive-run-sequence</td>
                <td align="left">
                  <xref target="suit-directive-run-sequence"/></td>
              </tr>
              <tr>
                <td align="left">Swap</td>
                <td align="left">suit-directive-swap</td>
                <td align="left">
                  <xref target="suit-directive-swap"/></td>
              </tr>
              <tr>
                <td align="left">Custom Directive</td>
                <td align="left">suit-command-custom</td>
                <td align="left">
                  <xref target="SUIT_Command_Custom"/></td>
              </tr>
            </tbody>
          </table>
          <t>The abstract description of these commands is defined in <xref target="command-behavior"/>.</t>
          <t>When a Recipient executes a Directive, it <bcp14>MUST</bcp14> report a result code. If the Directive reports failure, then the current Command Sequence <bcp14>MUST</bcp14> be terminated.</t>
          <section anchor="suit-directive-set-component-index">
            <name>suit-directive-set-component-index</name>
            <t>Set Component Index defines the component to which successive directives and conditions will apply. The Set Component Index arguments are described in <xref target="index-true"/>.</t>
            <t>If the following commands apply to ONE component, an unsigned integer index into the component list is used. If the following commands apply to ALL components, then the boolean value "True" is used instead of an index. If the following commands apply to more than one, but not all components, then an array of unsigned integer indices into the component list is used.</t>
            <t>If component index is set to True when a command is invoked, then the command applies to all components, in the order they appear in suit-common-components. When the Manifest Processor invokes a command while the component index is set to True, it must execute the command once for each possible component index, ensuring that the command receives the parameters corresponding to that component index.</t>
          </section>
          <section anchor="suit-directive-try-each">
            <name>suit-directive-try-each</name>
            <t>This command runs several SUIT_Command_Sequence instances, one after another, in a strict order, until one succeeds or the list is exhausted. Use this command to implement a "try/catch-try/catch" sequence. Manifest processors <bcp14>MAY</bcp14> implement this command.</t>
            <t>suit-parameter-soft-failure (<xref target="suit-parameter-soft-failure"/>) is initialized to True at the beginning of each sequence. If one sequence aborts due to a condition failure, the next is started. If no sequence completes without condition failure, then suit-directive-try-each returns an error. If a particular application calls for all sequences to fail and still continue, then an empty sequence (nil) can be added to the Try Each Argument.</t>
            <t>The argument to suit-directive-try-each is a list of SUIT_Command_Sequence. suit-directive-try-each does not specify a reporting policy.</t>
          </section>
          <section anchor="suit-directive-override-parameters">
            <name>suit-directive-override-parameters</name>
            <t>suit-directive-override-parameters replaces any listed parameters that are already set with the values that are provided in its argument. This allows a manifest to prevent replacement of critical parameters.</t>
            <t>Available parameters are defined in <xref target="secparameters"/>.</t>
            <t>suit-directive-override-parameters does not specify a reporting policy.</t>
          </section>
          <section anchor="suit-directive-fetch">
            <name>suit-directive-fetch</name>
            <t>suit-directive-fetch instructs the manifest processor to obtain one or more manifests or payloads, as specified by the manifest index and component index, respectively.</t>
            <t>suit-directive-fetch can target one or more payloads. suit-directive-fetch retrieves each component listed in component-index. If component-index is True, instead of an integer, then all current manifest components are fetched. If component-index is an array, then all listed components are fetched.</t>
            <t>suit-directive-fetch typically takes no arguments unless one is needed to modify fetch behavior. If an argument is needed, it must be wrapped in a bstr and set in suit-parameter-fetch-arguments.</t>
            <t>suit-directive-fetch reads the URI parameter to find the source of the fetch it performs.</t>
            <t>The size and digest of the payload to be fetched are typically set prior to the invokation of suit-directive-fetch. If both suit-parameter-image-digest and suit-parameter-image-size are set for the current component when suit-directive-fetch is invoked, the Manifest Processor <bcp14>MAY</bcp14> choose to optimize the fetch by:</t>
            <ul spacing="normal">
              <li>Checking if the target component matches the digest supplied before fetching.</li>
              <li>Checking if another component matches the digest supplied before fetching.</li>
            </ul>
            <t>The exact mechanisms of these optimizations are implementation defined.</t>
          </section>
          <section anchor="suit-directive-copy">
            <name>suit-directive-copy</name>
            <t>suit-directive-copy instructs the manifest processor to obtain one or more payloads, as specified by the component index. As described in <xref target="index-true"/> component index may be a single integer, a list of integers, or True. suit-directive-copy retrieves each component specified by the current component-index, respectively.</t>
            <t>suit-directive-copy reads its source from suit-parameter-source-component (<xref target="suit-parameter-source-component"/>).</t>
            <t>If either the source component parameter or the source component itself is absent, this command fails.</t>
            <t>The size and digest of the payload to be fetched are typically set prior to the invokation of suit-directive-copy. If both suit-parameter-image-digest and suit-parameter-image-size are set for the current component when suit-directive-copy is invoked, the Manifest Processor <bcp14>MAY</bcp14> choose to optimize the copy by:</t>
            <ul spacing="normal">
              <li>Checking if the target component matches the digest supplied before copying.</li>
              <li>Checking if the source component matches the digest supplied before copying.</li>
            </ul>
            <t>The first optimization avoids a copy operation when the data is the same. The second optimization avoids a copy of a corrupted image. The exact mechanisms of these optimizations are implementation defined.</t>
          </section>
          <section anchor="suit-directive-write">
            <name>suit-directive-write</name>
            <t>This directive writes a small block of data, specified in <xref target="suit-parameter-content"/>, to a component.</t>
            <t>Encoding Considerations: Careful consideration must be taken to determine whether it is more appropriate to use an integrated payload or to use <xref target="suit-parameter-content"/> for a particular application. While the encoding of suit-directive-write is smaller than an integrated payload, a large suit-parameter-content payload may prevent the manifest processor from holding the command sequence in memory while executing it.</t>
          </section>
          <section anchor="suit-directive-invoke">
            <name>suit-directive-invoke</name>
            <t>suit-directive-invoke directs the manifest processor to transfer execution to the current Component Index. When this is invoked, the manifest processor <bcp14>MAY</bcp14> be unloaded and execution continues in the Component Index. Arguments are provided to suit-directive-invoke through suit-parameter-invoke-arguments (<xref target="suit-parameter-invoke-args"/>) and are forwarded to the executable code located in Component Index in an application-specific way. For example, this could form the Linux Kernel Command Line if booting a Linux device.</t>
            <t>If the executable code at Component Index is constructed in such a way that it does not unload the manifest processor, then the manifest processor <bcp14>MAY</bcp14> resume execution after the executable completes. This allows the manifest processor to invoke suitable helpers and to verify them with image conditions.</t>
          </section>
          <section anchor="suit-directive-run-sequence">
            <name>suit-directive-run-sequence</name>
            <t>To enable conditional commands, and to allow several strictly ordered sequences to be executed out-of-order, suit-directive-run-sequence allows the manifest processor to execute its argument as a SUIT_Command_Sequence. The argument must be wrapped in a bstr. This also allows a sequence of instructions to be iterated over, once for each current component index, when component-index = true or component-index = list. See <xref target="index-true"/>.</t>
            <t>When a sequence is executed, any failure of a condition causes immediate termination of the sequence.</t>
            <t>When suit-directive-run-sequence completes, it forwards the last status code that occurred in the sequence. If the Soft Failure parameter is true, then suit-directive-run-sequence only fails when a directive in the argument sequence fails.</t>
            <t>suit-parameter-soft-failure (<xref target="suit-parameter-soft-failure"/>) defaults to False when suit-directive-run-sequence begins. Its value is discarded when suit-directive-run-sequence terminates.</t>
          </section>
          <section anchor="suit-directive-swap">
            <name>suit-directive-swap</name>
            <t>suit-directive-swap instructs the manifest processor to move the source to the destination and the destination to the source simultaneously. Swap has nearly identical semantics to suit-directive-copy except that suit-directive-swap replaces the source with the current contents of the destination in an application-defined way. As with suit-directive-copy, if the source component is missing, this command fails.</t>
          </section>
        </section>
        <section anchor="SUIT_Command_Custom">
          <name>suit-command-custom</name>
          <t>suit-command-custom describes any experimental, proprietary, or application specific condition or directive. This is encoded as a negative integer, chosen by the firmware developer. If additional information must be provided, it should be encoded in a custom parameter (as described in <xref target="secparameters"/>). Any number of custom commands is permitted. SUIT_Command_Custom is <bcp14>OPTIONAL</bcp14> to implement.</t>
        </section>
        <section anchor="integrity-checks">
          <name>Integrity Check Values</name>
          <t>When the Text section or any Command Sequence of the Update Procedure is made severable, it is moved to the Envelope and replaced with a SUIT_Digest. The SUIT_Digest is computed over the entire bstr enclosing the Manifest element that has been moved to the Envelope. Each element that is made severable from the Manifest is placed in the Envelope. The keys for the envelope elements have the same values as the keys for the manifest elements.</t>
          <t>Each Integrity Check Value covers the corresponding Envelope Element as described in <xref target="severable-fields"/>.</t>
        </section>
      </section>
      <section anchor="severable-fields">
        <name>Severable Elements</name>
        <t>Because the manifest can be used by different actors at different times, some parts of the manifest can be removed or "Severed" without affecting later stages of the lifecycle. Severing of information is achieved by separating that information from the signed container so that removing it does not affect the signature. This means that ensuring integrity of severable parts of the manifest is a requirement for the signed portion of the manifest. Severing some parts makes it possible to discard parts of the manifest that are no longer necessary. This is important because it allows the storage used by the manifest to be greatly reduced. For example, no text size limits are needed if text is removed from the manifest prior to delivery to a constrained device.</t>
        <t>At time of manifest creation, the Author <bcp14>MAY</bcp14> chose to make a manifest element severable by removing it from the manifest, encoding it in a bstr, and placing a SUIT_Digest of the bstr in the manifest so that it can still be authenticated. Making an element severable changes the digest of the manifest, so the signature <bcp14>MUST</bcp14> be computed after manifest elements are made severable. Only Manifest Elements with corresponding elements in the SUIT_Envelope can be made severable (see <xref target="iana-envelope"/> for SUIT_Envelope elements). The SUIT_Digest typically consumes 4 bytes more than the size of the raw digest, therefore elements smaller than (Digest Bits)/8 + 4 <bcp14>SHOULD NOT</bcp14> be severable. Elements larger than (Digest Bits)/8 + 4 <bcp14>MAY</bcp14> be severable, while elements that are much larger than (Digest Bits)/8 + 4 <bcp14>SHOULD</bcp14> be severable.</t>
        <t>Because of this, all command sequences in the manifest are encoded in a bstr so that there is a single code path needed for all command sequences.</t>
      </section>
    </section>
    <section anchor="access-control-lists">
      <name>Access Control Lists</name>
      <t>SUIT Manifest Processors are <bcp14>RECOMMENDED</bcp14> to use one of the following models for managing permissions in the manifest.</t>
      <t>First, the simplest model requires that all manifests are authenticated by a single trusted key. This mode has the advantage that only a root manifest needs to be authenticated, since all of its dependencies have digests included in the root manifest.</t>
      <t>This simplest model can be extended by adding key delegation without much increase in complexity.</t>
      <t>A second model requires an ACL to be presented to the Recipient, authenticated by a trusted party or stored on the Recipient. This ACL grants access rights for specific component IDs or Component Identifier prefixes to the listed identities or identity groups. Any identity can verify an image digest, but fetching into or fetching from a Component Identifier requires approval from the ACL.</t>
      <t>A third model allows a Recipient to provide even more fine-grained controls: The ACL lists the Component Identifier or Component Identifier prefix that an identity can use, and also lists the commands and parameters that the identity can use in combination with that Component Identifier.</t>
    </section>
    <section anchor="SUIT_Digest">
      <name>SUIT Digest Container</name>
      <t>The SUIT digest is a CBOR array containing two elements: an algorithm identifier and a bstr containing the bytes of the digest. Some forms of digest may require additional parameters. These can be added following the digest.</t>
      <t>The values of the algorithm identifier are found in the IANA "COSE Algorithms" registry <xref target="COSE_Alg"/>, which was created by <xref target="RFC9054"/>. SHA-256 (-16) <bcp14>MUST</bcp14> be implemented by all Manifest Processors.</t>
      <t>Any other algorithm defined in the IANA "COSE Algorithms" registry, such as SHA-512 (-44), <bcp14>MAY</bcp14> be implemented in a Manifest Processor.</t>
    </section>
    <section anchor="iana">
      <name>IANA Considerations</name>
      <t>IANA is requested to:</t>
      <ul spacing="normal">
        <li>allocate CBOR tag 107 (suggested) in the "CBOR Tags" registry for the SUIT Envelope. The CBOR Tag's Data Item is a SUIT_Envelope as defined in <xref target="full-cddl"/></li>
        <li>allocate CBOR tag 1070 (suggested) in the "CBOR Tags" registry for the SUIT Manifest. The CBOR Tag's Data Item is a SUIT_Manifest as defined in <xref target="full-cddl"/></li>
        <li>allocate media type application/suit-envelope in the "Media Types" registry, see below.</li>
        <li>setup several registries as described below.</li>
      </ul>
      <t>IANA is requested to create a new category for Software Update for the Internet of Things (SUIT)
and a page within this category for SUIT manifests.</t>
      <t>IANA is also requested to create several registries defined in the subsections below.</t>
      <t>For each registry, values 0-255 are Standards Action and 256 or greater are Specification Required. Negative values -255 to 0 are Standards Action, and -256 and lower are Private Use.</t>
      <t>New entries to those registries need to provide a label, a name and a reference to a specification that describes the functionality. More guidance on the expert review can be found below.</t>
      <section anchor="iana-envelope">
        <name>SUIT Envelope Elements</name>
        <t>IANA is requested to create a new registry for SUIT envelope elements.</t>
        <table>
          <thead>
            <tr>
              <th align="left">Label</th>
              <th align="left">Name</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0</td>
              <td align="left">Unset Detection</td>
              <td align="left">
                <xref target="encoding"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">1</td>
              <td align="left">Reserved (Delegation)</td>
              <td align="left">
                <xref target="design-rationale-envelope"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">2</td>
              <td align="left">Authentication Wrapper</td>
              <td align="left">
                <xref target="authentication-info"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">3</td>
              <td align="left">Manifest</td>
              <td align="left">
                <xref target="manifest-structure"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">16</td>
              <td align="left">Payload Fetch</td>
              <td align="left">
                <xref target="manifest-commands"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">20</td>
              <td align="left">Payload Installation</td>
              <td align="left">
                <xref target="manifest-commands"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">23</td>
              <td align="left">Text Description</td>
              <td align="left">
                <xref target="manifest-digest-text"/> of [TBD: this document]</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="suit-manifest-elements">
        <name>SUIT Manifest Elements</name>
        <t>IANA is requested to create a new registry for SUIT manifest elements.</t>
        <table>
          <thead>
            <tr>
              <th align="left">Label</th>
              <th align="left">Name</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0</td>
              <td align="left">Unset Detection</td>
              <td align="left">
                <xref target="encoding"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">1</td>
              <td align="left">Encoding Version</td>
              <td align="left">
                <xref target="manifest-version"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">2</td>
              <td align="left">Sequence Number</td>
              <td align="left">
                <xref target="manifest-seqnr"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">3</td>
              <td align="left">Common Data</td>
              <td align="left">
                <xref target="manifest-common"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">4</td>
              <td align="left">Reference URI</td>
              <td align="left">
                <xref target="manifest-reference-uri"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">7</td>
              <td align="left">Image Validation</td>
              <td align="left">
                <xref target="manifest-commands"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">8</td>
              <td align="left">Image Loading</td>
              <td align="left">
                <xref target="manifest-commands"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">9</td>
              <td align="left">Image Invocation</td>
              <td align="left">
                <xref target="manifest-commands"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">16</td>
              <td align="left">Payload Fetch</td>
              <td align="left">
                <xref target="manifest-commands"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">20</td>
              <td align="left">Payload Installation</td>
              <td align="left">
                <xref target="manifest-commands"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">23</td>
              <td align="left">Text Description</td>
              <td align="left">
                <xref target="manifest-digest-text"/> of [TBD: this document]</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="suit-common-elements">
        <name>SUIT Common Elements</name>
        <t>IANA is requested to create a new registry for SUIT common elements.</t>
        <table>
          <thead>
            <tr>
              <th align="left">Label</th>
              <th align="left">Name</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0</td>
              <td align="left">Unset Detection</td>
              <td align="left">
                <xref target="encoding"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">2</td>
              <td align="left">Component Identifiers</td>
              <td align="left">
                <xref target="manifest-common"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">4</td>
              <td align="left">Common Command Sequence</td>
              <td align="left">
                <xref target="manifest-common"/> of [TBD: this document]</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="suit-commands">
        <name>SUIT Commands</name>
        <t>IANA is requested to create a new registry for SUIT commands.</t>
        <table>
          <thead>
            <tr>
              <th align="left">Label</th>
              <th align="left">Name</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0</td>
              <td align="left">Unset Detection</td>
              <td align="left">
                <xref target="encoding"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">1</td>
              <td align="left">Vendor Identifier</td>
              <td align="left">
                <xref target="identifier-conditions"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">2</td>
              <td align="left">Class Identifier</td>
              <td align="left">
                <xref target="identifier-conditions"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">3</td>
              <td align="left">Image Match</td>
              <td align="left">
                <xref target="suit-condition-image-match"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">5</td>
              <td align="left">Component Slot</td>
              <td align="left">
                <xref target="suit-condition-component-slot"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">6</td>
              <td align="left">Check Content</td>
              <td align="left">
                <xref target="suit-condition-check-content"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">12</td>
              <td align="left">Set Component Index</td>
              <td align="left">
                <xref target="suit-directive-set-component-index"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">14</td>
              <td align="left">Abort</td>
              <td align="left">&nbsp;</td>
            </tr>
            <tr>
              <td align="left">15</td>
              <td align="left">Try Each</td>
              <td align="left">
                <xref target="suit-directive-try-each"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">18</td>
              <td align="left">Write Content</td>
              <td align="left">
                <xref target="suit-directive-write"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">20</td>
              <td align="left">Override Parameters</td>
              <td align="left">
                <xref target="suit-directive-override-parameters"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">21</td>
              <td align="left">Fetch</td>
              <td align="left">
                <xref target="suit-directive-fetch"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">22</td>
              <td align="left">Copy</td>
              <td align="left">
                <xref target="suit-directive-copy"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">23</td>
              <td align="left">Invoke</td>
              <td align="left">
                <xref target="suit-directive-invoke"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">24</td>
              <td align="left">Device Identifier</td>
              <td align="left">
                <xref target="identifier-conditions"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">31</td>
              <td align="left">Swap</td>
              <td align="left">
                <xref target="suit-directive-swap"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">32</td>
              <td align="left">Run Sequence</td>
              <td align="left">
                <xref target="suit-directive-run-sequence"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">&lt; -255</td>
              <td align="left">Custom Command</td>
              <td align="left">
                <xref target="SUIT_Command_Custom"/> of [TBD: this document]</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="suit-parameters">
        <name>SUIT Parameters</name>
        <t>IANA is requested to create a new registry for SUIT parameters.</t>
        <table>
          <thead>
            <tr>
              <th align="left">Label</th>
              <th align="left">Name</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0</td>
              <td align="left">Unset Detection</td>
              <td align="left">
                <xref target="encoding"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">1</td>
              <td align="left">Vendor ID</td>
              <td align="left">
                <xref target="suit-parameter-vendor-identifier"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">2</td>
              <td align="left">Class ID</td>
              <td align="left">
                <xref target="suit-parameter-class-identifier"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">3</td>
              <td align="left">Image Digest</td>
              <td align="left">
                <xref target="suit-parameter-image-digest"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">5</td>
              <td align="left">Component Slot</td>
              <td align="left">
                <xref target="suit-parameter-component-slot"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">12</td>
              <td align="left">Strict Order</td>
              <td align="left">
                <xref target="suit-parameter-strict-order"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">13</td>
              <td align="left">Soft Failure</td>
              <td align="left">
                <xref target="suit-parameter-soft-failure"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">14</td>
              <td align="left">Image Size</td>
              <td align="left">
                <xref target="suit-parameter-image-size"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">18</td>
              <td align="left">Content</td>
              <td align="left">
                <xref target="suit-parameter-content"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">21</td>
              <td align="left">URI</td>
              <td align="left">
                <xref target="suit-parameter-uri"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">22</td>
              <td align="left">Source Component</td>
              <td align="left">
                <xref target="suit-parameter-source-component"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">23</td>
              <td align="left">Invoke Args</td>
              <td align="left">
                <xref target="suit-parameter-invoke-args"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">24</td>
              <td align="left">Device ID</td>
              <td align="left">
                <xref target="suit-parameter-device-identifier"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">&lt; -255</td>
              <td align="left">Custom</td>
              <td align="left">
                <xref target="suit-parameter-custom"/> of [TBD: this document]</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="suit-text-values">
        <name>SUIT Text Values</name>
        <t>IANA is requested to create a new registry for SUIT text values.</t>
        <table>
          <thead>
            <tr>
              <th align="left">Label</th>
              <th align="left">Name</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0</td>
              <td align="left">Unset Detection</td>
              <td align="left">
                <xref target="encoding"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">1</td>
              <td align="left">Manifest Description</td>
              <td align="left">
                <xref target="manifest-digest-text"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">2</td>
              <td align="left">Update Description</td>
              <td align="left">
                <xref target="manifest-digest-text"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">3</td>
              <td align="left">Manifest JSON Source</td>
              <td align="left">
                <xref target="manifest-digest-text"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">4</td>
              <td align="left">Manifest YAML Source</td>
              <td align="left">
                <xref target="manifest-digest-text"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">&lt; -255</td>
              <td align="left">Custom</td>
              <td align="left">
                <xref target="manifest-digest-text"/> of [TBD: this document]</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="suit-component-text-values">
        <name>&nbsp;SUIT Component Text Values</name>
        <t>IANA is requested to create a new registry for SUIT component text values.</t>
        <table>
          <thead>
            <tr>
              <th align="left">Label</th>
              <th align="left">Name</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0</td>
              <td align="left">Unset Detection</td>
              <td align="left">
                <xref target="encoding"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">1</td>
              <td align="left">Vendor Name</td>
              <td align="left">
                <xref target="manifest-digest-text"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">2</td>
              <td align="left">Model Name</td>
              <td align="left">
                <xref target="manifest-digest-text"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">3</td>
              <td align="left">Vendor Domain</td>
              <td align="left">
                <xref target="manifest-digest-text"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">4</td>
              <td align="left">Model Info</td>
              <td align="left">
                <xref target="manifest-digest-text"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">5</td>
              <td align="left">Component Description</td>
              <td align="left">
                <xref target="manifest-digest-text"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">6</td>
              <td align="left">Component Version</td>
              <td align="left">
                <xref target="manifest-digest-text"/> of [TBD: this document]</td>
            </tr>
            <tr>
              <td align="left">&lt; -255</td>
              <td align="left">Custom</td>
              <td align="left">
                <xref target="manifest-digest-text"/> of [TBD: this document]</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="expert-review-instructions">
        <name>Expert Review Instructions</name>
        <t>The IANA registries established in this document allow values to be added
based on 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  all other 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 assignment.  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>
          <li>Key assignments in the SUIT Parameters table, particularly those
   that encode to 1 CBOR byte (-24 to 23) should be reserved for
   SUIT Directives that match the same key value.</li>
        </ul>
      </section>
      <section anchor="media-type-registration">
        <name>Media Type Registration</name>
        <t>This section registers the 'application/suit-envelope+cose' media type in the
"Media Types" registry.  This media type are used to indicate that
the content is a SUIT envelope.</t>
        <artwork><![CDATA[
      Type name: application

      Subtype name: suit-envelope+cose

      Required parameters: N/A

      Optional parameters: N/A

      Encoding considerations: binary

      Security considerations: See the Security Considerations section
      of [[This RFC]].

      Interoperability considerations: N/A

      Published specification: [[This RFC]]

      Applications that use this media type: Primarily used for
        Firmware and software updates although the content may
        also contain configuration data and other information
        related to software and firmware.

      Fragment identifier considerations: N/A

      Additional information:

      *  Deprecated alias names for this type: N/A

      *  Magic number(s): N/A

      *  File extension(s): cbor, suit

      *  Macintosh file type code(s): N/A

      Person & email address to contact for further information:
      iesg@ietf.org

      Intended usage: COMMON

      Restrictions on usage: N/A

      Author: Brendan Moran, <brendan.moran.ietf@gmail.com>

      Change Controller: IESG

      Provisional registration?  No
]]></artwork>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>This document is about a manifest format protecting and describing how to retrieve, install, and invoke firmware images and as such it is part of a larger solution for delivering firmware updates to IoT devices. A detailed security treatment can be found in the architecture <xref target="RFC9019"/> and in the information model <xref target="RFC9124"/> documents.</t>
      <t>The security requirements outlined in <xref target="RFC9124"/> are addressed by this draft and its extensions.
The specific mapping of requirements and information elements in <xref target="RFC9124"/> to manifest data structures is
outlined in the table below:</t>
      <table>
        <thead>
          <tr>
            <th align="left">Security Requirement</th>
            <th align="left">Information Element</th>
            <th align="left">Implementation</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">REQ.SEC.SEQUENCE</td>
            <td align="left">Monotonic Sequence Number</td>
            <td align="left">
              <xref target="manifest-seqnr"/></td>
          </tr>
          <tr>
            <td align="left">REQ.SEC.COMPATIBLE</td>
            <td align="left">Vendor ID Condition, Class ID Condition</td>
            <td align="left">
              <xref target="identifier-conditions"/></td>
          </tr>
          <tr>
            <td align="left">REQ.SEC.EXP</td>
            <td align="left">Expiration Time</td>
            <td align="left">
              <xref target="I-D.ietf-suit-update-management"/></td>
          </tr>
          <tr>
            <td align="left">REQ.SEC.AUTHENTIC</td>
            <td align="left">Signature, Payload Digests</td>
            <td align="left">
              <xref target="authentication-info"/>, <xref target="suit-condition-image-match"/></td>
          </tr>
          <tr>
            <td align="left">REQ.SEC.AUTH.IMG_TYPE</td>
            <td align="left">Payload Format</td>
            <td align="left">
              <xref target="I-D.ietf-suit-update-management"/></td>
          </tr>
          <tr>
            <td align="left">REQ.SEC.AUTH.IMG_LOC</td>
            <td align="left">Storage Location</td>
            <td align="left">
              <xref target="suit-component-identifier"/></td>
          </tr>
          <tr>
            <td align="left">REQ.SEC.AUTH.REMOTE_LOC</td>
            <td align="left">Payload Indicator</td>
            <td align="left">
              <xref target="suit-parameter-uri"/></td>
          </tr>
          <tr>
            <td align="left">REQ.SEC.AUTH.EXEC</td>
            <td align="left">Payload Digests, Size</td>
            <td align="left">
              <xref target="suit-parameter-image-digest"/>, <xref target="suit-parameter-image-size"/></td>
          </tr>
          <tr>
            <td align="left">REQ.SEC.AUTH.PRECURSOR</td>
            <td align="left">Precursor Image Digest</td>
            <td align="left">
              <xref target="suit-parameter-image-digest"/></td>
          </tr>
          <tr>
            <td align="left">REQ.SEC.AUTH.COMPATIBILITY</td>
            <td align="left">Authenticated Vendor and Class IDs</td>
            <td align="left">
              <xref target="suit-parameter-vendor-identifier"/>, <xref target="suit-parameter-class-identifier"/></td>
          </tr>
          <tr>
            <td align="left">REQ.SEC.RIGHTS</td>
            <td align="left">Signature</td>
            <td align="left">
              <xref target="authentication-info"/>, <xref target="access-control-lists"/></td>
          </tr>
          <tr>
            <td align="left">REQ.SEC.IMG.CONFIDENTIALITY</td>
            <td align="left">Encryption Wrapper</td>
            <td align="left">
              <xref target="I-D.ietf-suit-firmware-encryption"/></td>
          </tr>
          <tr>
            <td align="left">REQ.SEC.ACCESS_CONTROL: Access Control</td>
            <td align="left">None</td>
            <td align="left">
              <xref target="access-control-lists"/></td>
          </tr>
          <tr>
            <td align="left">REQ.SEC.MFST.CONFIDENTIALITY</td>
            <td align="left">Manifest Encryption Wrapper / Transport Security</td>
            <td align="left">
              <xref target="I-D.ietf-suit-firmware-encryption"/></td>
          </tr>
          <tr>
            <td align="left">REQ.SEC.IMG.COMPLETE_DIGEST</td>
            <td align="left">Payload Digests</td>
            <td align="left">Implementation Consideration</td>
          </tr>
          <tr>
            <td align="left">REQ.SEC.REPORTING</td>
            <td align="left">None</td>
            <td align="left">
              <xref target="I-D.ietf-suit-report"/>, <xref target="RFC9334"/></td>
          </tr>
          <tr>
            <td align="left">REQ.SEC.KEY.PROTECTION</td>
            <td align="left">None</td>
            <td align="left">Implementation Consideration</td>
          </tr>
          <tr>
            <td align="left">REQ.SEC.KEY.ROTATION</td>
            <td align="left">None</td>
            <td align="left">
              <xref target="I-D.tschofenig-cose-cwt-chain"/>, Implementation Consideration</td>
          </tr>
          <tr>
            <td align="left">REQ.SEC.MFST.CHECK</td>
            <td align="left">None</td>
            <td align="left">Deployment Consideration</td>
          </tr>
          <tr>
            <td align="left">REQ.SEC.MFST.TRUSTED</td>
            <td align="left">None</td>
            <td align="left">Deployment Consideration</td>
          </tr>
          <tr>
            <td align="left">REQ.SEC.MFST.CONST</td>
            <td align="left">None</td>
            <td align="left">Implementation Consideration</td>
          </tr>
          <tr>
            <td align="left">REQ.USE.MFST.PRE_CHECK</td>
            <td align="left">Additional Installation Instructions</td>
            <td align="left">
              <xref target="I-D.ietf-suit-update-management"/></td>
          </tr>
          <tr>
            <td align="left">REQ.USE.MFST.TEXT</td>
            <td align="left">Manifest Text Information</td>
            <td align="left">
              <xref target="manifest-digest-text"/></td>
          </tr>
          <tr>
            <td align="left">REQ.USE.MFST.OVERRIDE_REMOTE</td>
            <td align="left">Aliases</td>
            <td align="left">
              <xref target="RFC3986"/> Relative URIs, <xref target="I-D.ietf-suit-trust-domains"/></td>
          </tr>
          <tr>
            <td align="left">REQ.USE.MFST.COMPONENT</td>
            <td align="left">Dependencies, StorageIdentifier, ComponentIdentifier</td>
            <td align="left">
              <xref target="suit-component-identifier">SUIT_Component_Identifier</xref>, <xref target="I-D.ietf-suit-trust-domains"/></td>
          </tr>
          <tr>
            <td align="left">REQ.USE.MFST.MULTI_AUTH</td>
            <td align="left">Signature</td>
            <td align="left">
              <xref target="authentication-info"/></td>
          </tr>
          <tr>
            <td align="left">REQ.USE.IMG.FORMAT</td>
            <td align="left">Payload Format</td>
            <td align="left">
              <xref target="I-D.ietf-suit-update-management"/></td>
          </tr>
          <tr>
            <td align="left">REQ.USE.IMG.NESTED</td>
            <td align="left">Processing Steps</td>
            <td align="left">
              <xref target="I-D.ietf-suit-firmware-encryption"/> (Encryption Wrapper), <xref target="I-D.ietf-suit-update-management"/> (Payload Format)</td>
          </tr>
          <tr>
            <td align="left">REQ.USE.IMG.VERSIONS</td>
            <td align="left">Required Image Version List</td>
            <td align="left">
              <xref target="I-D.ietf-suit-update-management"/></td>
          </tr>
          <tr>
            <td align="left">REQ.USE.IMG.SELECT</td>
            <td align="left">XIP Address</td>
            <td align="left">
              <xref target="suit-condition-component-slot"/></td>
          </tr>
          <tr>
            <td align="left">REQ.USE.EXEC</td>
            <td align="left">Runtime Metadata</td>
            <td align="left">
              <xref target="manifest-commands"/> (suit-invoke)</td>
          </tr>
          <tr>
            <td align="left">REQ.USE.LOAD</td>
            <td align="left">Load-Time Metadata</td>
            <td align="left">
              <xref target="manifest-commands"/> (suit-load)</td>
          </tr>
          <tr>
            <td align="left">REQ.USE.PAYLOAD</td>
            <td align="left">Payload</td>
            <td align="left">
              <xref target="template-integrated-payload"/></td>
          </tr>
          <tr>
            <td align="left">REQ.USE.PARSE</td>
            <td align="left">Simple Parsing</td>
            <td align="left">
              <xref target="command-behavior"/></td>
          </tr>
          <tr>
            <td align="left">REQ.USE.DELEGATION</td>
            <td align="left">Delegation Chain</td>
            <td align="left">
              <xref target="I-D.tschofenig-cose-cwt-chain"/></td>
          </tr>
        </tbody>
      </table>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>We would like to thank the following persons for their support in designing this mechanism:</t>
      <ul spacing="normal">
        <li>
          <dl>
            <dt>&nbsp;</dt>
            <dd>
              <t><contact fullname="Milosch Meriac"/></t>
            </dd>
          </dl>
        </li>
        <li>
          <dl>
            <dt>&nbsp;</dt>
            <dd>
              <t><contact fullname="Geraint Luff"/></t>
            </dd>
          </dl>
        </li>
        <li>
          <dl>
            <dt>&nbsp;</dt>
            <dd>
              <t><contact fullname="Dan Ros"/></t>
            </dd>
          </dl>
        </li>
        <li>
          <dl>
            <dt>&nbsp;</dt>
            <dd>
              <t><contact fullname="John-Paul Stanford"/></t>
            </dd>
          </dl>
        </li>
        <li>
          <dl>
            <dt>&nbsp;</dt>
            <dd>
              <t><contact fullname="Hugo Vincent"/></t>
            </dd>
          </dl>
        </li>
        <li>
          <dl>
            <dt>&nbsp;</dt>
            <dd>
              <t><contact fullname="Carsten Bormann"/></t>
            </dd>
          </dl>
        </li>
        <li>
          <dl>
            <dt>&nbsp;</dt>
            <dd>
              <t><contact fullname="Frank Audun Kvamtrø"/></t>
            </dd>
          </dl>
        </li>
        <li>
          <dl>
            <dt>&nbsp;</dt>
            <dd>
              <t><contact fullname="Krzysztof Chruściński"/></t>
            </dd>
          </dl>
        </li>
        <li>
          <dl>
            <dt>&nbsp;</dt>
            <dd>
              <t><contact fullname="Andrzej Puzdrowski"/></t>
            </dd>
          </dl>
        </li>
        <li>
          <dl>
            <dt>&nbsp;</dt>
            <dd>
              <t><contact fullname="Michael Richardson"/></t>
            </dd>
          </dl>
        </li>
        <li>
          <dl>
            <dt>&nbsp;</dt>
            <dd>
              <t><contact fullname="David Brown"/></t>
            </dd>
          </dl>
        </li>
        <li>
          <dl>
            <dt>&nbsp;</dt>
            <dd>
              <t><contact fullname="Emmanuel Baccelli"/></t>
            </dd>
          </dl>
        </li>
      </ul>
      <t>We would like to thank our responsible area director, Roman Danyliw, for his detailed review.
Finally, we would like to thank our SUIT working group chairs (Dave Thaler, David Waltermire, Russ Housley)
for their feedback and support.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC4122bis">
          <front>
            <title>A Universally Unique IDentifier (UUID) URN Namespace</title>
            <seriesInfo name="DOI" value="10.17487/RFC4122"/>
            <seriesInfo name="RFC" value="4122"/>
            <author fullname="P. Leach" initials="P." surname="Leach"/>
            <author fullname="M. Mealling" initials="M." surname="Mealling"/>
            <author fullname="R. Salz" initials="R." surname="Salz"/>
            <date month="July" year="2005"/>
            <abstract>
              <t>This specification defines a Uniform Resource Name namespace for UUIDs (Universally Unique IDentifier), also known as GUIDs (Globally Unique IDentifier). A UUID is 128 bits long, and can guarantee uniqueness across space and time. UUIDs were originally used in the Apollo Network Computing System and later in the Open Software Foundation\'s (OSF) Distributed Computing Environment (DCE), and then in Microsoft Windows platforms.</t>
              <t>This specification is derived from the DCE specification with the kind permission of the OSF (now known as The Open Group). Information from earlier versions of the DCE specification have been incorporated into this document. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC9052">
          <front>
            <title>CBOR Object Signing and Encryption (COSE): Structures and Process</title>
            <seriesInfo name="DOI" value="10.17487/RFC9052"/>
            <seriesInfo name="RFC" value="9052"/>
            <seriesInfo name="STD" value="96"/>
            <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>
        </reference>
        <reference anchor="RFC3986">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <seriesInfo name="DOI" value="10.17487/RFC3986"/>
            <seriesInfo name="RFC" value="3986"/>
            <seriesInfo name="STD" value="66"/>
            <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>
        </reference>
        <reference anchor="RFC8949">
          <front>
            <title>Concise Binary Object Representation (CBOR)</title>
            <seriesInfo name="DOI" value="10.17487/RFC8949"/>
            <seriesInfo name="RFC" value="8949"/>
            <seriesInfo name="STD" value="94"/>
            <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>
        </reference>
        <reference anchor="RFC9019">
          <front>
            <title>A Firmware Update Architecture for Internet of Things</title>
            <seriesInfo name="DOI" value="10.17487/RFC9019"/>
            <seriesInfo name="RFC" value="9019"/>
            <author fullname="B. Moran" initials="B." surname="Moran"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <author fullname="D. Brown" initials="D." surname="Brown"/>
            <author fullname="M. Meriac" initials="M." surname="Meriac"/>
            <date month="April" year="2021"/>
            <abstract>
              <t>Vulnerabilities in Internet of Things (IoT) devices have raised the need for a reliable and secure firmware update mechanism suitable for devices with resource constraints. Incorporating such an update mechanism is a fundamental requirement for fixing vulnerabilities, but it also enables other important capabilities such as updating configuration settings and adding new functionality.</t>
              <t>In addition to the definition of terminology and an architecture, this document provides the motivation for the standardization of a manifest format as a transport-agnostic means for describing and protecting firmware updates.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC9124">
          <front>
            <title>A Manifest Information Model for Firmware Updates in Internet of Things (IoT) Devices</title>
            <seriesInfo name="DOI" value="10.17487/RFC9124"/>
            <seriesInfo name="RFC" value="9124"/>
            <author fullname="B. Moran" initials="B." surname="Moran"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <author fullname="H. Birkholz" initials="H." surname="Birkholz"/>
            <date month="January" year="2022"/>
            <abstract>
              <t>Vulnerabilities with Internet of Things (IoT) devices have raised the need for a reliable and secure firmware update mechanism that is also suitable for constrained devices. Ensuring that devices function and remain secure over their service lifetime requires such an update mechanism to fix vulnerabilities, update configuration settings, and add new functionality.</t>
              <t>One component of such a firmware update is a concise and machine-processable metadata document, or manifest, that describes the firmware image(s) and offers appropriate protection. This document describes the information that must be present in the manifest.</t>
            </abstract>
          </front>
        </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>
            <seriesInfo name="Internet-Draft" value="draft-ietf-suit-mti-08"/>
            <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>
        </reference>
        <reference anchor="RFC9090">
          <front>
            <title>Concise Binary Object Representation (CBOR) Tags for Object Identifiers</title>
            <seriesInfo name="DOI" value="10.17487/RFC9090"/>
            <seriesInfo name="RFC" value="9090"/>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <date month="July" year="2021"/>
            <abstract>
              <t>The Concise Binary Object Representation (CBOR), defined in RFC 8949, 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.</t>
              <t>This document defines CBOR tags for object identifiers (OIDs) and is the reference document for the IANA registration of the CBOR tags so defined.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC9054">
          <front>
            <title>CBOR Object Signing and Encryption (COSE): Hash Algorithms</title>
            <seriesInfo name="DOI" value="10.17487/RFC9054"/>
            <seriesInfo name="RFC" value="9054"/>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>The CBOR Object Signing and Encryption (COSE) syntax (see RFC 9052) does not define any direct methods for using hash algorithms. There are, however, circumstances where hash algorithms are used, such as indirect signatures, where the hash of one or more contents are signed, and identification of an X.509 certificate or other object by the use of a fingerprint. This document defines hash algorithms that are identified by COSE algorithm identifiers.</t>
            </abstract>
          </front>
        </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>
            <seriesInfo name="DOI" value="10.17487/RFC8610"/>
            <seriesInfo name="RFC" value="8610"/>
            <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>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <seriesInfo name="DOI" value="10.17487/RFC2119"/>
            <seriesInfo name="RFC" value="2119"/>
            <seriesInfo name="BCP" value="14"/>
            <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>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <seriesInfo name="DOI" value="10.17487/RFC8174"/>
            <seriesInfo name="RFC" value="8174"/>
            <seriesInfo name="BCP" value="14"/>
            <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>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC9397">
          <front>
            <title>Trusted Execution Environment Provisioning (TEEP) Architecture</title>
            <seriesInfo name="DOI" value="10.17487/RFC9397"/>
            <seriesInfo name="RFC" value="9397"/>
            <author fullname="M. Pei" initials="M." surname="Pei"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <author fullname="D. Thaler" initials="D." surname="Thaler"/>
            <author fullname="D. Wheeler" initials="D." surname="Wheeler"/>
            <date month="July" year="2023"/>
            <abstract>
              <t>A Trusted Execution Environment (TEE) is an environment that enforces the following: any code within the environment cannot be tampered with, and any data used by such code cannot be read or tampered with by any code outside the environment. This architecture document discusses the motivation for designing and standardizing a protocol for managing the lifecycle of Trusted Applications running inside such a TEE.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC9334">
          <front>
            <title>Remote ATtestation procedureS (RATS) Architecture</title>
            <seriesInfo name="DOI" value="10.17487/RFC9334"/>
            <seriesInfo name="RFC" value="9334"/>
            <author fullname="H. Birkholz" initials="H." surname="Birkholz"/>
            <author fullname="D. Thaler" initials="D." surname="Thaler"/>
            <author fullname="M. Richardson" initials="M." surname="Richardson"/>
            <author fullname="N. Smith" initials="N." surname="Smith"/>
            <author fullname="W. Pan" initials="W." surname="Pan"/>
            <date month="January" year="2023"/>
            <abstract>
              <t>In network protocol exchanges, it is often useful for one end of a communication to know whether the other end is in an intended operating state. This document provides an architectural overview of the entities involved that make such tests possible through the process of generating, conveying, and evaluating evidentiary Claims. It provides a model that is neutral toward processor architectures, the content of Claims, and protocols.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="I-D.ietf-suit-firmware-encryption">
          <front>
            <title>Encrypted Payloads in SUIT Manifests</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-suit-firmware-encryption-21"/>
            <author fullname="Hannes Tschofenig" initials="H." surname="Tschofenig">
              <organization>University of Applied Sciences Bonn-Rhein-Sieg</organization>
            </author>
            <author fullname="Russ Housley" initials="R." surname="Housley">
              <organization>Vigil Security, LLC</organization>
            </author>
            <author fullname="Brendan Moran" initials="B." surname="Moran">
              <organization>Arm Limited</organization>
            </author>
            <author fullname="David Brown" initials="D." surname="Brown">
              <organization>Linaro</organization>
            </author>
            <author fullname="Ken Takayama" initials="K." surname="Takayama">
              <organization>SECOM CO., LTD.</organization>
            </author>
            <date day="21" month="October" year="2024"/>
            <abstract>
              <t>   This document specifies techniques for encrypting software, firmware,
   machine learning models, and personalization data by utilizing the
   IETF SUIT manifest.  Key agreement is provided by ephemeral-static
   (ES) Diffie-Hellman (DH) and AES Key Wrap (AES-KW).  ES-DH uses
   public key cryptography while AES-KW uses a pre-shared key.
   Encryption of the plaintext is accomplished with conventional
   symmetric key cryptography.

              </t>
            </abstract>
          </front>
        </reference>
        <reference anchor="I-D.ietf-suit-update-management">
          <front>
            <title>Update Management Extensions for Software Updates for Internet of Things (SUIT) Manifests</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-suit-update-management-07"/>
            <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="8" month="July" year="2024"/>
            <abstract>
              <t>   This specification describes extensions to the SUIT manifest format
   defined in [I-D.ietf-suit-manifest].  These extensions allow an
   update author, update distributor or device operator to more
   precisely control the distribution and installation of updates to
   devices.  These extensions also provide a mechanism to inform a
   management system of Software Identifier and Software Bill Of
   Materials information about an updated device.

              </t>
            </abstract>
          </front>
        </reference>
        <reference anchor="I-D.ietf-suit-trust-domains">
          <front>
            <title>SUIT Manifest Extensions for Multiple Trust Domains</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-suit-trust-domains-09"/>
            <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>
        </reference>
        <reference anchor="I-D.ietf-suit-report">
          <front>
            <title>Secure Reporting of Update Status</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-suit-report-10"/>
            <author fullname="Brendan Moran" initials="B." surname="Moran">
              <organization>Arm Limited</organization>
            </author>
            <author fullname="Henk Birkholz" initials="H." surname="Birkholz">
              <organization>Fraunhofer SIT</organization>
            </author>
            <date day="21" month="October" year="2024"/>
            <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.

   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>
        </reference>
        <reference anchor="I-D.tschofenig-cose-cwt-chain">
          <front>
            <title>CBOR Object Signing and Encryption (COSE): Header Parameters for Carrying and Referencing Chains of CBOR Web Tokens (CWTs)</title>
            <seriesInfo name="Internet-Draft" value="draft-tschofenig-cose-cwt-chain-01"/>
            <author fullname="Hannes Tschofenig" initials="H." surname="Tschofenig">
         </author>
            <author fullname="Brendan Moran" initials="B." surname="Moran">
              <organization>Arm Limited</organization>
            </author>
            <date day="8" month="July" year="2024"/>
            <abstract>
              <t>   The CBOR Object Signing and Encryption (COSE) message structure uses
   references to keys and defines header parameters to carry chains of
   X.509 certificates.

   This specification extends this functionality to CBOR Web Tokens
   (CWTs).

              </t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC7228">
          <front>
            <title>Terminology for Constrained-Node Networks</title>
            <seriesInfo name="DOI" value="10.17487/RFC7228"/>
            <seriesInfo name="RFC" value="7228"/>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <author fullname="M. Ersue" initials="M." surname="Ersue"/>
            <author fullname="A. Keranen" initials="A." surname="Keranen"/>
            <date month="May" year="2014"/>
            <abstract>
              <t>The Internet Protocol Suite is increasingly used on small devices with severe constraints on power, memory, and processing resources, creating constrained-node networks. This document provides a number of basic terms that have been useful in the standardization work for constrained-node networks.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="YAML" target="https://yaml.org/spec/1.2.2/">
          <front>
            <title>YAML Ain't Markup Language (YAML[TM]) version 1.2</title>
            <author>
              <organization/>
            </author>
            <date year="2021"/>
          </front>
        </reference>
        <reference anchor="COSE_Alg" target="https://www.iana.org/assignments/cose/cose.xhtml#algorithms">
          <front>
            <title>COSE Algorithms</title>
            <author>
              <organization/>
            </author>
            <date year="2023"/>
          </front>
        </reference>
      </references>
    </references>
    <?line 1662?>

<section anchor="full-cddl">
      <name>Full CDDL</name>
      <t>In order to create a valid SUIT Manifest document the structure of the corresponding CBOR message <bcp14>MUST</bcp14> adhere to the following CDDL (<xref target="RFC8610"/>) 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"/>.</t>
      <sourcecode type="cddl" name="draft-ietf-suit-manifest.cddl">
SUIT_Envelope_Tagged = #6.107(SUIT_Envelope)
SUIT_Envelope = {
  suit-authentication-wrapper =&gt; bstr .cbor SUIT_Authentication,
  suit-manifest  =&gt; bstr .cbor SUIT_Manifest,
  SUIT_Severable_Manifest_Members,
  * SUIT_Integrated_Payload,
  * $$SUIT_Envelope_Extensions,
}

SUIT_Authentication = [
    bstr .cbor SUIT_Digest,
    * bstr .cbor SUIT_Authentication_Block
]

SUIT_Digest = [
  suit-digest-algorithm-id : suit-cose-hash-algs,
  suit-digest-bytes : bstr,
  * $$SUIT_Digest-extensions
]

SUIT_Authentication_Block /= COSE_Mac_Tagged
SUIT_Authentication_Block /= COSE_Sign_Tagged
SUIT_Authentication_Block /= COSE_Mac0_Tagged
SUIT_Authentication_Block /= COSE_Sign1_Tagged

SUIT_Severable_Manifest_Members = (
  ? suit-payload-fetch =&gt; bstr .cbor SUIT_Command_Sequence,
  ? suit-install =&gt; bstr .cbor SUIT_Command_Sequence,
  ? suit-text =&gt; bstr .cbor SUIT_Text_Map,
  * $$SUIT_severable-members-extensions,
)

SUIT_Integrated_Payload = (suit-integrated-payload-key =&gt; bstr)
suit-integrated-payload-key = tstr

SUIT_Manifest_Tagged = #6.1070(SUIT_Manifest)

SUIT_Manifest = {
    suit-manifest-version         =&gt; 1,
    suit-manifest-sequence-number =&gt; uint,
    suit-common                   =&gt; bstr .cbor SUIT_Common,
    ? suit-reference-uri          =&gt; tstr,
    SUIT_Unseverable_Members,
    SUIT_Severable_Members_Choice,
    * $$SUIT_Manifest_Extensions,
}

SUIT_Unseverable_Members = (
  ? suit-validate =&gt; bstr .cbor SUIT_Command_Sequence,
  ? suit-load =&gt; bstr .cbor SUIT_Command_Sequence,
  ? suit-invoke =&gt; bstr .cbor SUIT_Command_Sequence,
  * $$unseverable-manifest-member-extensions,
)

SUIT_Severable_Members_Choice = (
  ? suit-payload-fetch =&gt; SUIT_Digest / 
      bstr .cbor SUIT_Command_Sequence,
  ? suit-install =&gt; SUIT_Digest / bstr .cbor SUIT_Command_Sequence,
  ? suit-text =&gt; SUIT_Digest / bstr .cbor SUIT_Text_Map,
  * $$severable-manifest-members-choice-extensions
)

SUIT_Common = {
    ? suit-components             =&gt; SUIT_Components,
    ? suit-shared-sequence        =&gt; bstr .cbor SUIT_Shared_Sequence,
    * $$SUIT_Common-extensions,
}

SUIT_Components           = [ + SUIT_Component_Identifier ]

;REQUIRED to implement:
suit-cose-hash-algs /= cose-alg-sha-256

;OPTIONAL to implement:
suit-cose-hash-algs /= cose-alg-shake128
suit-cose-hash-algs /= cose-alg-sha-384
suit-cose-hash-algs /= cose-alg-sha-512
suit-cose-hash-algs /= cose-alg-shake256

SUIT_Component_Identifier =  [* bstr]

SUIT_Shared_Sequence = [
    + ( SUIT_Condition // SUIT_Shared_Commands )
]

SUIT_Shared_Commands //= (suit-directive-set-component-index,  IndexArg)
SUIT_Shared_Commands //= (suit-directive-run-sequence,
    bstr .cbor SUIT_Shared_Sequence)
SUIT_Shared_Commands //= (suit-directive-try-each,
    SUIT_Directive_Try_Each_Argument_Shared)
SUIT_Shared_Commands //= (suit-directive-override-parameters,
    {+ $$SUIT_Parameters})

IndexArg /= uint
IndexArg /= true
IndexArg /= [+uint]


SUIT_Directive_Try_Each_Argument_Shared = [
    2* bstr .cbor SUIT_Shared_Sequence,
    ?nil
]

SUIT_Command_Sequence = [ + (
    SUIT_Condition // SUIT_Directive // SUIT_Command_Custom
) ]

SUIT_Command_Custom = (suit-command-custom, bstr/tstr/int/nil)
SUIT_Condition //= (suit-condition-vendor-identifier, SUIT_Rep_Policy)
SUIT_Condition //= (suit-condition-class-identifier,  SUIT_Rep_Policy)
SUIT_Condition //= (suit-condition-device-identifier, SUIT_Rep_Policy)
SUIT_Condition //= (suit-condition-image-match,       SUIT_Rep_Policy)
SUIT_Condition //= (suit-condition-component-slot,    SUIT_Rep_Policy)
SUIT_Condition //= (suit-condition-check-content,     SUIT_Rep_Policy)
SUIT_Condition //= (suit-condition-abort,             SUIT_Rep_Policy)

SUIT_Directive //= (suit-directive-write,             SUIT_Rep_Policy)
SUIT_Directive //= (suit-directive-set-component-index,  IndexArg)
SUIT_Directive //= (suit-directive-run-sequence,
    bstr .cbor SUIT_Command_Sequence)
SUIT_Directive //= (suit-directive-try-each,
    SUIT_Directive_Try_Each_Argument)
SUIT_Directive //= (suit-directive-override-parameters,
    {+ $$SUIT_Parameters})
SUIT_Directive //= (suit-directive-fetch,             SUIT_Rep_Policy)
SUIT_Directive //= (suit-directive-copy,              SUIT_Rep_Policy)
SUIT_Directive //= (suit-directive-swap,              SUIT_Rep_Policy)
SUIT_Directive //= (suit-directive-invoke,            SUIT_Rep_Policy)

SUIT_Directive_Try_Each_Argument = [
    2* bstr .cbor SUIT_Command_Sequence,
    ?nil
]

SUIT_Rep_Policy = uint .bits suit-reporting-bits

suit-reporting-bits = &amp;(
    suit-send-record-success : 0,
    suit-send-record-failure : 1,
    suit-send-sysinfo-success : 2,
    suit-send-sysinfo-failure : 3
)

$$SUIT_Parameters //= (suit-parameter-vendor-identifier =&gt;
    (RFC4122_UUID / cbor-pen))

cbor-pen = #6.112(bstr)

$$SUIT_Parameters //= (suit-parameter-class-identifier =&gt; RFC4122_UUID)
$$SUIT_Parameters //= (suit-parameter-image-digest
    =&gt; bstr .cbor SUIT_Digest)
$$SUIT_Parameters //= (suit-parameter-image-size =&gt; uint)
$$SUIT_Parameters //= (suit-parameter-component-slot =&gt; uint)

$$SUIT_Parameters //= (suit-parameter-uri =&gt; tstr)
$$SUIT_Parameters //= (suit-parameter-fetch-arguments =&gt; bstr)
$$SUIT_Parameters //= (suit-parameter-source-component =&gt; uint)
$$SUIT_Parameters //= (suit-parameter-invoke-args =&gt; bstr)

$$SUIT_Parameters //= (suit-parameter-device-identifier =&gt; RFC4122_UUID)

$$SUIT_Parameters //= (suit-parameter-custom =&gt; int/bool/tstr/bstr)

$$SUIT_Parameters //= (suit-parameter-content =&gt; bstr)
$$SUIT_Parameters //= (suit-parameter-strict-order =&gt; bool)
$$SUIT_Parameters //= (suit-parameter-soft-failure =&gt; bool)

RFC4122_UUID = bstr .size 16

tag38-ltag = text .regexp "[a-zA-Z]{1,8}(-[a-zA-Z0-9]{1,8})*"
SUIT_Text_Map = {
    + tag38-ltag =&gt; SUIT_Text_LMap
}
SUIT_Text_LMap = {
    SUIT_Text_Keys,
    * SUIT_Component_Identifier =&gt; {
        SUIT_Text_Component_Keys
    }
}

SUIT_Text_Component_Keys = (
    ? suit-text-vendor-name           =&gt; tstr,
    ? suit-text-model-name            =&gt; tstr,
    ? suit-text-vendor-domain         =&gt; tstr,
    ? suit-text-model-info            =&gt; tstr,
    ? suit-text-component-description =&gt; tstr,
    ? suit-text-component-version     =&gt; tstr,
    * $$suit-text-component-key-extensions
)

SUIT_Text_Keys = (
    ? suit-text-manifest-description =&gt; tstr,
    ? suit-text-update-description   =&gt; tstr,
    ? suit-text-manifest-json-source =&gt; tstr,
    ? suit-text-manifest-yaml-source =&gt; tstr,
    * $$suit-text-key-extensions
)

suit-authentication-wrapper = 2
suit-manifest = 3

;REQUIRED to implement:
cose-alg-sha-256 = -16

;OPTIONAL to implement:
cose-alg-shake128 = -18
cose-alg-sha-384 = -43
cose-alg-sha-512 = -44
cose-alg-shake256 = -45

;Unseverable, recipient-necessary
suit-manifest-version = 1
suit-manifest-sequence-number = 2
suit-common = 3
suit-reference-uri = 4
suit-validate = 7
suit-load = 8
suit-invoke = 9
;Severable, recipient-necessary
suit-payload-fetch = 16
suit-install = 20
;Severable, recipient-unnecessary
suit-text = 23

suit-components = 2
suit-shared-sequence = 4

suit-command-custom = nint

suit-condition-vendor-identifier = 1
suit-condition-class-identifier  = 2
suit-condition-image-match       = 3
suit-condition-component-slot    = 5
suit-condition-check-content     = 6

suit-condition-abort                    = 14
suit-condition-device-identifier        = 24

suit-directive-set-component-index      = 12
suit-directive-try-each                 = 15
suit-directive-write                    = 18
suit-directive-override-parameters      = 20
suit-directive-fetch                    = 21
suit-directive-copy                     = 22
suit-directive-invoke                   = 23

suit-directive-swap                     = 31
suit-directive-run-sequence             = 32

suit-parameter-vendor-identifier = 1
suit-parameter-class-identifier  = 2
suit-parameter-image-digest      = 3
suit-parameter-component-slot    = 5

suit-parameter-strict-order      = 12
suit-parameter-soft-failure      = 13
suit-parameter-image-size        = 14
suit-parameter-content           = 18

suit-parameter-uri               = 21
suit-parameter-source-component  = 22
suit-parameter-invoke-args       = 23

suit-parameter-device-identifier = 24
suit-parameter-fetch-arguments   = 25

suit-parameter-custom = nint

suit-text-manifest-description  = 1
suit-text-update-description    = 2
suit-text-manifest-json-source  = 3
suit-text-manifest-yaml-source  = 4

suit-text-vendor-name           = 1
suit-text-model-name            = 2
suit-text-vendor-domain         = 3
suit-text-model-info            = 4
suit-text-component-description = 5
suit-text-component-version     = 6
</sourcecode>
    </section>
    <section anchor="examples">
      <name>Examples</name>
      <t>The following examples demonstrate a small subset of the functionality of the manifest. Even a simple manifest processor can execute most of these manifests.</t>
      <t>The examples are signed using the following ECDSA secp256r1 key:</t>
      <artwork><![CDATA[
-----BEGIN PRIVATE KEY-----
MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgApZYjZCUGLM50VBC
CjYStX+09jGmnyJPrpDLTz/hiXOhRANCAASEloEarguqq9JhVxie7NomvqqL8Rtv
P+bitWWchdvArTsfKktsCYExwKNtrNHXi9OB3N+wnAUtszmR23M4tKiW
-----END PRIVATE KEY-----
]]></artwork>
      <t>The corresponding public key can be used to verify these examples:</t>
      <artwork><![CDATA[
-----BEGIN PUBLIC KEY-----
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEhJaBGq4LqqvSYVcYnuzaJr6qi/Eb
bz/m4rVlnIXbwK07HypLbAmBMcCjbazR14vTgdzfsJwFLbM5kdtzOLSolg==
-----END PUBLIC KEY-----
]]></artwork>
      <t>Each example uses SHA256 as the digest function.</t>
      <t>Note that reporting policies are declared for each non-flow-control command in these examples. The reporting policies used in the examples are described in the following tables.</t>
      <table>
        <thead>
          <tr>
            <th align="left">Policy</th>
            <th align="left">Label</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">suit-send-record-on-success</td>
            <td align="left">Rec-Pass</td>
          </tr>
          <tr>
            <td align="left">suit-send-record-on-failure</td>
            <td align="left">Rec-Fail</td>
          </tr>
          <tr>
            <td align="left">suit-send-sysinfo-success</td>
            <td align="left">Sys-Pass</td>
          </tr>
          <tr>
            <td align="left">suit-send-sysinfo-failure</td>
            <td align="left">Sys-Fail</td>
          </tr>
        </tbody>
      </table>
      <table>
        <thead>
          <tr>
            <th align="left">Command</th>
            <th align="left">Sys-Fail</th>
            <th align="left">Sys-Pass</th>
            <th align="left">Rec-Fail</th>
            <th align="left">Rec-Pass</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">suit-condition-vendor-identifier</td>
            <td align="left">1</td>
            <td align="left">1</td>
            <td align="left">1</td>
            <td align="left">1</td>
          </tr>
          <tr>
            <td align="left">suit-condition-class-identifier</td>
            <td align="left">1</td>
            <td align="left">1</td>
            <td align="left">1</td>
            <td align="left">1</td>
          </tr>
          <tr>
            <td align="left">suit-condition-image-match</td>
            <td align="left">1</td>
            <td align="left">1</td>
            <td align="left">1</td>
            <td align="left">1</td>
          </tr>
          <tr>
            <td align="left">suit-condition-component-slot</td>
            <td align="left">0</td>
            <td align="left">1</td>
            <td align="left">0</td>
            <td align="left">1</td>
          </tr>
          <tr>
            <td align="left">suit-directive-fetch</td>
            <td align="left">0</td>
            <td align="left">0</td>
            <td align="left">1</td>
            <td align="left">0</td>
          </tr>
          <tr>
            <td align="left">suit-directive-copy</td>
            <td align="left">0</td>
            <td align="left">0</td>
            <td align="left">1</td>
            <td align="left">0</td>
          </tr>
          <tr>
            <td align="left">suit-directive-invoke</td>
            <td align="left">0</td>
            <td align="left">0</td>
            <td align="left">1</td>
            <td align="left">0</td>
          </tr>
        </tbody>
      </table>
      <section anchor="example-0-secure-boot">
        <name>Example 0: Secure Boot</name>
        <t>This example covers the following templates:</t>
        <ul spacing="normal">
          <li>Compatibility Check (<xref target="template-compatibility-check"/>)</li>
          <li>Secure Boot (<xref target="template-secure-boot"/>)</li>
        </ul>
        <t>It also serves as the minimum example.</t>
        <sourcecode type="cbor-diag">
107({
        / authentication-wrapper / 2:&lt;&lt; [
            / digest: / &lt;&lt; [
                / algorithm-id / -16 / "sha256" /,
                / digest-bytes /
h'6658ea560262696dd1f13b782239a064da7c6c5cbaf52fded428a6fc83c7e5af'
            ] &gt;&gt;,
            / signature: / &lt;&lt; 18([
                / protected / &lt;&lt; {
                    / alg / 1:-7 / "ES256" /
                } &gt;&gt;,
                / unprotected / {
                },
                / payload / null / nil /,
                / signature / h'1554ee9e9c467bc036bde0c534e021bdeb9a6a
206aa4c088cf916181bc30a05e313d34927f66fd4f5e788b8cb3fc9621f1322a142c1f
3cdab20a64a862ff115f'
            ]) &gt;&gt;
        ] &gt;&gt;,
        / manifest / 3:&lt;&lt; {
            / manifest-version / 1:1,
            / manifest-sequence-number / 2:0,
            / common / 3:&lt;&lt; {
                / components / 2:[
                    [h'00']
                ],
                / shared-sequence / 4:&lt;&lt; [
                    / directive-override-parameters / 20,{
                        / vendor-id /
1:h'fa6b4a53d5ad5fdfbe9de663e4d41ffe' / fa6b4a53-d5ad-5fdf-
be9d-e663e4d41ffe /,
                        / class-id /
2:h'1492af1425695e48bf429b2d51f2ab45' /
1492af14-2569-5e48-bf42-9b2d51f2ab45 /,
                        / image-digest / 3:&lt;&lt; [
                            / algorithm-id / -16 / "sha256" /,
                            / digest-bytes /
h'00112233445566778899aabbccddeeff0123456789abcdeffedcba9876543210'
                        ] &gt;&gt;,
                        / image-size / 14:34768
                    },
                    / condition-vendor-identifier / 1,15,
                    / condition-class-identifier / 2,15
                ] &gt;&gt;
            } &gt;&gt;,
            / validate / 7:&lt;&lt; [
                / condition-image-match / 3,15
            ] &gt;&gt;,
            / run / 9:&lt;&lt; [
                / directive-run / 23,2
            ] &gt;&gt;
        } &gt;&gt;
    })
</sourcecode>
        <t>Total size of Envelope without COSE authentication object:  161</t>
        <t>Envelope:</t>
        <artwork><![CDATA[
d86ba2025827815824822f58206658ea560262696dd1f13b782239a064da
7c6c5cbaf52fded428a6fc83c7e5af035871a50101020003585fa2028181
41000458568614a40150fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492
af1425695e48bf429b2d51f2ab45035824822f5820001122334455667788
99aabbccddeeff0123456789abcdeffedcba98765432100e1987d0010f02
0f074382030f0943821702
]]></artwork>
        <t>Total size of Envelope with COSE authentication object:  237</t>
        <t>Envelope with COSE authentication object:</t>
        <artwork><![CDATA[
d86ba2025873825824822f58206658ea560262696dd1f13b782239a064da
7c6c5cbaf52fded428a6fc83c7e5af584ad28443a10126a0f658401554ee
9e9c467bc036bde0c534e021bdeb9a6a206aa4c088cf916181bc30a05e31
3d34927f66fd4f5e788b8cb3fc9621f1322a142c1f3cdab20a64a862ff11
5f035871a50101020003585fa202818141000458568614a40150fa6b4a53
d5ad5fdfbe9de663e4d41ffe02501492af1425695e48bf429b2d51f2ab45
035824822f582000112233445566778899aabbccddeeff0123456789abcd
effedcba98765432100e1987d0010f020f074382030f0943821702
]]></artwork>
      </section>
      <section anchor="example-1-simultaneous-download-and-installation-of-payload">
        <name>Example 1: Simultaneous Download and Installation of Payload</name>
        <t>This example covers the following templates:</t>
        <ul spacing="normal">
          <li>Compatibility Check (<xref target="template-compatibility-check"/>)</li>
          <li>Firmware Download (<xref target="firmware-download-template"/>)</li>
        </ul>
        <t>Simultaneous download and installation of payload. No secure boot is present in this example to demonstrate a download-only manifest.</t>
        <sourcecode type="cbor-diag">
107({
        / authentication-wrapper / 2:&lt;&lt; [
            / digest: / &lt;&lt; [
                / algorithm-id / -16 / "sha256" /,
                / digest-bytes /
h'1f2e7acca0dc2786f2fe4eb947f50873a6a3cfaa98866c5b02e621f42074daf2'
            ] &gt;&gt;,
            / signature: / &lt;&lt; 18([
                / protected / &lt;&lt; {
                    / alg / 1:-7 / "ES256" /
                } &gt;&gt;,
                / unprotected / {
                },
                / payload / null / nil /,
                / signature / h'4f3881a2258e17ac55342aba9d7134bb2ee1ee
e2a7d99191b1c99b5d73364416b8f452d17cc6bd74a66cd168b9176150d737c8eda2b3
a277664fde7671cb60f0'
            ]) &gt;&gt;
        ] &gt;&gt;,
        / manifest / 3:&lt;&lt; {
            / manifest-version / 1:1,
            / manifest-sequence-number / 2:1,
            / common / 3:&lt;&lt; {
                / components / 2:[
                    [h'00']
                ],
                / shared-sequence / 4:&lt;&lt; [
                    / directive-override-parameters / 20,{
                        / vendor-id /
1:h'fa6b4a53d5ad5fdfbe9de663e4d41ffe' / fa6b4a53-d5ad-5fdf-
be9d-e663e4d41ffe /,
                        / class-id /
2:h'1492af1425695e48bf429b2d51f2ab45' /
1492af14-2569-5e48-bf42-9b2d51f2ab45 /,
                        / image-digest / 3:&lt;&lt; [
                            / algorithm-id / -16 / "sha256" /,
                            / digest-bytes /
h'00112233445566778899aabbccddeeff0123456789abcdeffedcba9876543210'
                        ] &gt;&gt;,
                        / image-size / 14:34768
                    },
                    / condition-vendor-identifier / 1,15,
                    / condition-class-identifier / 2,15
                ] &gt;&gt;
            } &gt;&gt;,
            / validate / 7:&lt;&lt; [
                / condition-image-match / 3,15
            ] &gt;&gt;,
            / install / 20:&lt;&lt; [
                / directive-override-parameters / 20,{
                    / uri / 21:'http://example.com/file.bin'
                },
                / directive-fetch / 21,2,
                / condition-image-match / 3,15
            ] &gt;&gt;
        } &gt;&gt;
    })
</sourcecode>
        <t>Total size of Envelope without COSE authentication object:  196</t>
        <t>Envelope:</t>
        <artwork><![CDATA[
d86ba2025827815824822f58201f2e7acca0dc2786f2fe4eb947f50873a6
a3cfaa98866c5b02e621f42074daf2035894a50101020103585fa2028181
41000458568614a40150fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492
af1425695e48bf429b2d51f2ab45035824822f5820001122334455667788
99aabbccddeeff0123456789abcdeffedcba98765432100e1987d0010f02
0f074382030f1458258614a115781b687474703a2f2f6578616d706c652e
636f6d2f66696c652e62696e1502030f
]]></artwork>
        <t>Total size of Envelope with COSE authentication object:  272</t>
        <t>Envelope with COSE authentication object:</t>
        <artwork><![CDATA[
d86ba2025873825824822f58201f2e7acca0dc2786f2fe4eb947f50873a6
a3cfaa98866c5b02e621f42074daf2584ad28443a10126a0f658404f3881
a2258e17ac55342aba9d7134bb2ee1eee2a7d99191b1c99b5d73364416b8
f452d17cc6bd74a66cd168b9176150d737c8eda2b3a277664fde7671cb60
f0035894a50101020103585fa202818141000458568614a40150fa6b4a53
d5ad5fdfbe9de663e4d41ffe02501492af1425695e48bf429b2d51f2ab45
035824822f582000112233445566778899aabbccddeeff0123456789abcd
effedcba98765432100e1987d0010f020f074382030f1458258614a11578
1b687474703a2f2f6578616d706c652e636f6d2f66696c652e62696e1502
030f
]]></artwork>
      </section>
      <section anchor="example-2-simultaneous-download-installation-secure-boot-severed-fields">
        <name>Example 2: Simultaneous Download, Installation, Secure Boot, Severed Fields</name>
        <t>This example covers the following templates:</t>
        <ul spacing="normal">
          <li>Compatibility Check (<xref target="template-compatibility-check"/>)</li>
          <li>Secure Boot (<xref target="template-secure-boot"/>)</li>
          <li>Firmware Download (<xref target="firmware-download-template"/>)</li>
        </ul>
        <t>This example also demonstrates severable elements (<xref target="ovr-severable"/>), and text (<xref target="manifest-digest-text"/>).</t>
        <sourcecode type="cbor-diag">
107({
        / authentication-wrapper / 2:&lt;&lt; [
            / digest: / &lt;&lt; [
                / algorithm-id / -16 / "sha256" /,
                / digest-bytes /
h'6a5197ed8f9dccf733d1c89a359441708e070b4c6dcb9a1c2c82c6165f609b90'
            ] &gt;&gt;,
            / signature: / &lt;&lt; 18([
                / protected / &lt;&lt; {
                    / alg / 1:-7 / "ES256" /
                } &gt;&gt;,
                / unprotected / {
                },
                / payload / null / nil /,
                / signature / h'8f481019e5f4e3085322006a5d7cb54dc8cd8c
7e3247ba04c0cc88bda5b3f48b0a55116b3a6b59a1e28840f86b27a14920c5d650fae9
c269337e939589761cae'
            ]) &gt;&gt;
        ] &gt;&gt;,
        / manifest / 3:&lt;&lt; {
            / manifest-version / 1:1,
            / manifest-sequence-number / 2:2,
            / common / 3:&lt;&lt; {
                / components / 2:[
                    [h'00']
                ],
                / shared-sequence / 4:&lt;&lt; [
                    / directive-override-parameters / 20,{
                        / vendor-id /
1:h'fa6b4a53d5ad5fdfbe9de663e4d41ffe' / fa6b4a53-d5ad-5fdf-
be9d-e663e4d41ffe /,
                        / class-id /
2:h'1492af1425695e48bf429b2d51f2ab45' /
1492af14-2569-5e48-bf42-9b2d51f2ab45 /,
                        / image-digest / 3:&lt;&lt; [
                            / algorithm-id / -16 / "sha256" /,
                            / digest-bytes /
h'00112233445566778899aabbccddeeff0123456789abcdeffedcba9876543210'
                        ] &gt;&gt;,
                        / image-size / 14:34768
                    },
                    / condition-vendor-identifier / 1,15,
                    / condition-class-identifier / 2,15
                ] &gt;&gt;
            } &gt;&gt;,
            / reference-uri / 4:'https://git.io/JJYoj',
            / validate / 7:&lt;&lt; [
                / condition-image-match / 3,15
            ] &gt;&gt;,
            / run / 9:&lt;&lt; [
                / directive-run / 23,2
            ] &gt;&gt;,
            / install / 20:[
                / algorithm-id / -16 / "sha256" /,
                / digest-bytes /
h'cfa90c5c58595e7f5119a72f803fd0370b3e6abbec6315cd38f63135281bc498'
            ],
            / text / 23:[
                / algorithm-id / -16 / "sha256" /,
                / digest-bytes /
h'302196d452bce5e8bfeaf71e395645ede6d365e63507a081379721eeecf00007'
            ]
        } &gt;&gt;
    })
</sourcecode>
        <t>Total size of the Envelope without COSE authentication object or Severable Elements:  257</t>
        <t>Envelope:</t>
        <artwork><![CDATA[
d86ba2025827815824822f58206a5197ed8f9dccf733d1c89a359441708e
070b4c6dcb9a1c2c82c6165f609b900358d1a80101020203585fa2028181
41000458568614a40150fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492
af1425695e48bf429b2d51f2ab45035824822f5820001122334455667788
99aabbccddeeff0123456789abcdeffedcba98765432100e1987d0010f02
0f047468747470733a2f2f6769742e696f2f4a4a596f6a074382030f0943
82170214822f5820cfa90c5c58595e7f5119a72f803fd0370b3e6abbec63
15cd38f63135281bc49817822f5820302196d452bce5e8bfeaf71e395645
ede6d365e63507a081379721eeecf00007
]]></artwork>
        <t>Total size of the Envelope with COSE authentication object but without Severable Elements:  333</t>
        <t>Envelope:</t>
        <artwork><![CDATA[
d86ba2025873825824822f58206a5197ed8f9dccf733d1c89a359441708e
070b4c6dcb9a1c2c82c6165f609b90584ad28443a10126a0f658408f4810
19e5f4e3085322006a5d7cb54dc8cd8c7e3247ba04c0cc88bda5b3f48b0a
55116b3a6b59a1e28840f86b27a14920c5d650fae9c269337e939589761c
ae0358d1a80101020203585fa202818141000458568614a40150fa6b4a53
d5ad5fdfbe9de663e4d41ffe02501492af1425695e48bf429b2d51f2ab45
035824822f582000112233445566778899aabbccddeeff0123456789abcd
effedcba98765432100e1987d0010f020f047468747470733a2f2f676974
2e696f2f4a4a596f6a074382030f094382170214822f5820cfa90c5c5859
5e7f5119a72f803fd0370b3e6abbec6315cd38f63135281bc49817822f58
20302196d452bce5e8bfeaf71e395645ede6d365e63507a081379721eeec
f00007
]]></artwork>
        <t>Total size of Envelope with COSE authentication object and Severable Elements:  923</t>
        <t>Envelope with COSE authentication object:</t>
        <artwork><![CDATA[
d86ba4025873825824822f58206a5197ed8f9dccf733d1c89a359441708e
070b4c6dcb9a1c2c82c6165f609b90584ad28443a10126a0f658408f4810
19e5f4e3085322006a5d7cb54dc8cd8c7e3247ba04c0cc88bda5b3f48b0a
55116b3a6b59a1e28840f86b27a14920c5d650fae9c269337e939589761c
ae0358d1a80101020203585fa202818141000458568614a40150fa6b4a53
d5ad5fdfbe9de663e4d41ffe02501492af1425695e48bf429b2d51f2ab45
035824822f582000112233445566778899aabbccddeeff0123456789abcd
effedcba98765432100e1987d0010f020f047468747470733a2f2f676974
2e696f2f4a4a596f6a074382030f094382170214822f5820cfa90c5c5859
5e7f5119a72f803fd0370b3e6abbec6315cd38f63135281bc49817822f58
20302196d452bce5e8bfeaf71e395645ede6d365e63507a081379721eeec
f0000714583c8614a1157832687474703a2f2f6578616d706c652e636f6d
2f766572792f6c6f6e672f706174682f746f2f66696c652f66696c652e62
696e1502030f1759020ba165656e2d5553a20179019d2323204578616d70
6c6520323a2053696d756c74616e656f757320446f776e6c6f61642c2049
6e7374616c6c6174696f6e2c2053656375726520426f6f742c2053657665
726564204669656c64730a0a2020202054686973206578616d706c652063
6f766572732074686520666f6c6c6f77696e672074656d706c617465733a
0a202020200a202020202a20436f6d7061746962696c6974792043686563
6b20287b7b74656d706c6174652d636f6d7061746962696c6974792d6368
65636b7d7d290a202020202a2053656375726520426f6f7420287b7b7465
6d706c6174652d7365637572652d626f6f747d7d290a202020202a204669
726d7761726520446f776e6c6f616420287b7b6669726d776172652d646f
776e6c6f61642d74656d706c6174657d7d290a202020200a202020205468
6973206578616d706c6520616c736f2064656d6f6e737472617465732073
6576657261626c6520656c656d656e747320287b7b6f76722d7365766572
61626c657d7d292c20616e64207465787420287b7b6d616e69666573742d
6469676573742d746578747d7d292e814100a2036761726d2e636f6d0578
525468697320636f6d706f6e656e7420697320612064656d6f6e73747261
74696f6e2e205468652064696765737420697320612073616d706c652070
61747465726e2c206e6f742061207265616c206f6e652e
]]></artwork>
      </section>
      <section anchor="example-3-ab-images">
        <name>Example 3: A/B images</name>
        <t>This example covers the following templates:</t>
        <ul spacing="normal">
          <li>Compatibility Check (<xref target="template-compatibility-check"/>)</li>
          <li>Secure Boot (<xref target="template-secure-boot"/>)</li>
          <li>Firmware Download (<xref target="firmware-download-template"/>)</li>
          <li>A/B Image Template (<xref target="a-b-template"/>)</li>
        </ul>
        <sourcecode type="cbor-diag">
107({
        / authentication-wrapper / 2:&lt;&lt; [
            / digest: / &lt;&lt; [
                / algorithm-id / -16 / "sha256" /,
                / digest-bytes /
h'f6d44a62ec906b392500c242e78e908e9cc5057f3f04104a06a8566200da2ee0'
            ] &gt;&gt;,
            / signature: / &lt;&lt; 18([
                / protected / &lt;&lt; {
                    / alg / 1:-7 / "ES256" /
                } &gt;&gt;,
                / unprotected / {
                },
                / payload / null / nil /,
                / signature / h'260b7dc147840f848228486060d6c492f12baf
5d90b0d49a052305fae97c5eb70f69dacd9d8bca2fd82646aafb0f86d0d1157d287c14
c03ff6c9820b7f132c6f'
            ]) &gt;&gt;
        ] &gt;&gt;,
        / manifest / 3:&lt;&lt; {
            / manifest-version / 1:1,
            / manifest-sequence-number / 2:3,
            / common / 3:&lt;&lt; {
                / components / 2:[
                    [h'00']
                ],
                / shared-sequence / 4:&lt;&lt; [
                    / directive-override-parameters / 20,{
                        / vendor-id /
1:h'fa6b4a53d5ad5fdfbe9de663e4d41ffe' / fa6b4a53-d5ad-5fdf-
be9d-e663e4d41ffe /,
                        / class-id /
2:h'1492af1425695e48bf429b2d51f2ab45' /
1492af14-2569-5e48-bf42-9b2d51f2ab45 /
                    },
                    / directive-try-each / 15,[
                        &lt;&lt; [
                            / directive-override-parameters / 20,{
                                / slot / 5:0
                            },
                            / condition-component-slot / 5,5,
                            / directive-override-parameters / 20,{
                                / image-digest / 3:&lt;&lt; [
                                    / algorithm-id / -16 / "sha256" /,
                                    / digest-bytes /
h'00112233445566778899aabbccddeeff0123456789abcdeffedcba9876543210'
                                ] &gt;&gt;,
                                / image-size / 14:34768
                            }
                        ] &gt;&gt;,
                        &lt;&lt; [
                            / directive-override-parameters / 20,{
                                / slot / 5:1
                            },
                            / condition-component-slot / 5,5,
                            / directive-override-parameters / 20,{
                                / image-digest / 3:&lt;&lt; [
                                    / algorithm-id / -16 / "sha256" /,
                                    / digest-bytes /
h'0123456789abcdeffedcba987654321000112233445566778899aabbccddeeff'
                                ] &gt;&gt;,
                                / image-size / 14:76834
                            }
                        ] &gt;&gt;
                    ],
                    / condition-vendor-identifier / 1,15,
                    / condition-class-identifier / 2,15
                ] &gt;&gt;
            } &gt;&gt;,
            / validate / 7:&lt;&lt; [
                / condition-image-match / 3,15
            ] &gt;&gt;,
            / install / 20:&lt;&lt; [
                / directive-try-each / 15,[
                    &lt;&lt; [
                        / directive-override-parameters / 20,{
                            / slot / 5:0
                        },
                        / condition-component-slot / 5,5,
                        / directive-override-parameters / 20,{
                            / uri / 21:'http://example.com/file1.bin'
                        }
                    ] &gt;&gt;,
                    &lt;&lt; [
                        / directive-override-parameters / 20,{
                            / slot / 5:1
                        },
                        / condition-component-slot / 5,5,
                        / directive-override-parameters / 20,{
                            / uri / 21:'http://example.com/file2.bin'
                        }
                    ] &gt;&gt;
                ],
                / directive-fetch / 21,2,
                / condition-image-match / 3,15
            ] &gt;&gt;
        } &gt;&gt;
    })
</sourcecode>
        <t>Total size of Envelope without COSE authentication object:  320</t>
        <t>Envelope:</t>
        <artwork><![CDATA[
d86ba2025827815824822f5820f6d44a62ec906b392500c242e78e908e9c
c5057f3f04104a06a8566200da2ee00359010fa5010102030358a4a20281
81410004589b8814a20150fa6b4a53d5ad5fdfbe9de663e4d41ffe025014
92af1425695e48bf429b2d51f2ab450f8258348614a10500050514a20358
24822f582000112233445566778899aabbccddeeff0123456789abcdeffe
dcba98765432100e1987d058368614a10501050514a2035824822f582001
23456789abcdeffedcba987654321000112233445566778899aabbccddee
ff0e1a00012c22010f020f074382030f14585b860f8258288614a1050005
0514a115781c687474703a2f2f6578616d706c652e636f6d2f66696c6531
2e62696e58288614a10501050514a115781c687474703a2f2f6578616d70
6c652e636f6d2f66696c65322e62696e1502030f
]]></artwork>
        <t>Total size of Envelope with COSE authentication object:  396</t>
        <t>Envelope with COSE authentication object:</t>
        <artwork><![CDATA[
d86ba2025873825824822f5820f6d44a62ec906b392500c242e78e908e9c
c5057f3f04104a06a8566200da2ee0584ad28443a10126a0f65840260b7d
c147840f848228486060d6c492f12baf5d90b0d49a052305fae97c5eb70f
69dacd9d8bca2fd82646aafb0f86d0d1157d287c14c03ff6c9820b7f132c
6f0359010fa5010102030358a4a2028181410004589b8814a20150fa6b4a
53d5ad5fdfbe9de663e4d41ffe02501492af1425695e48bf429b2d51f2ab
450f8258348614a10500050514a2035824822f5820001122334455667788
99aabbccddeeff0123456789abcdeffedcba98765432100e1987d0583686
14a10501050514a2035824822f58200123456789abcdeffedcba98765432
1000112233445566778899aabbccddeeff0e1a00012c22010f020f074382
030f14585b860f8258288614a10500050514a115781c687474703a2f2f65
78616d706c652e636f6d2f66696c65312e62696e58288614a10501050514
a115781c687474703a2f2f6578616d706c652e636f6d2f66696c65322e62
696e1502030f
]]></artwork>
      </section>
      <section anchor="example-4-load-from-external-storage">
        <name>Example 4: Load from External Storage</name>
        <t>This example covers the following templates:</t>
        <ul spacing="normal">
          <li>Compatibility Check (<xref target="template-compatibility-check"/>)</li>
          <li>Secure Boot (<xref target="template-secure-boot"/>)</li>
          <li>Firmware Download (<xref target="firmware-download-template"/>)</li>
          <li>Install (<xref target="template-install"/>)</li>
          <li>Load (<xref target="template-load-ext"/>)</li>
        </ul>
        <sourcecode type="cbor-diag">
107({
        / authentication-wrapper / 2:&lt;&lt; [
            / digest: / &lt;&lt; [
                / algorithm-id / -16 / "sha256" /,
                / digest-bytes /
h'5b5f6586b1e6cdf19ee479a5adabf206581000bd584b0832a9bdaf4f72cdbdd6'
            ] &gt;&gt;,
            / signature: / &lt;&lt; 18([
                / protected / &lt;&lt; {
                    / alg / 1:-7 / "ES256" /
                } &gt;&gt;,
                / unprotected / {
                },
                / payload / null / nil /,
                / signature / h'7d15aaf4f91848dc98d89433cbb4512f3bed0a
043c68c2f9bbef5f48028ae714f8f837e7262717806894f5b1027e5e938c772b75071c
7819a064b8e0f961a448'
            ]) &gt;&gt;
        ] &gt;&gt;,
        / manifest / 3:&lt;&lt; {
            / manifest-version / 1:1,
            / manifest-sequence-number / 2:4,
            / common / 3:&lt;&lt; {
                / components / 2:[
                    [h'00'],
                    [h'02'],
                    [h'01']
                ],
                / shared-sequence / 4:&lt;&lt; [
                    / directive-set-component-index / 12,0,
                    / directive-override-parameters / 20,{
                        / vendor-id /
1:h'fa6b4a53d5ad5fdfbe9de663e4d41ffe' / fa6b4a53-d5ad-5fdf-
be9d-e663e4d41ffe /,
                        / class-id /
2:h'1492af1425695e48bf429b2d51f2ab45' /
1492af14-2569-5e48-bf42-9b2d51f2ab45 /,
                        / image-digest / 3:&lt;&lt; [
                            / algorithm-id / -16 / "sha256" /,
                            / digest-bytes /
h'00112233445566778899aabbccddeeff0123456789abcdeffedcba9876543210'
                        ] &gt;&gt;,
                        / image-size / 14:34768
                    },
                    / condition-vendor-identifier / 1,15,
                    / condition-class-identifier / 2,15
                ] &gt;&gt;
            } &gt;&gt;,
            / validate / 7:&lt;&lt; [
                / directive-set-component-index / 12,0,
                / condition-image-match / 3,15
            ] &gt;&gt;,
            / load / 8:&lt;&lt; [
                / directive-set-component-index / 12,2,
                / directive-override-parameters / 20,{
                    / image-digest / 3:&lt;&lt; [
                        / algorithm-id / -16 / "sha256" /,
                        / digest-bytes /
h'0123456789abcdeffedcba987654321000112233445566778899aabbccddeeff'
                    ] &gt;&gt;,
                    / image-size / 14:76834,
                    / source-component / 22:0 / [h'00'] /
                },
                / directive-copy / 22,2,
                / condition-image-match / 3,15
            ] &gt;&gt;,
            / run / 9:&lt;&lt; [
                / directive-set-component-index / 12,2,
                / directive-run / 23,2
            ] &gt;&gt;,
            / payload-fetch / 16:&lt;&lt; [
                / directive-set-component-index / 12,1,
                / directive-override-parameters / 20,{
                    / image-digest / 3:&lt;&lt; [
                        / algorithm-id / -16 / "sha256" /,
                        / digest-bytes /
h'00112233445566778899aabbccddeeff0123456789abcdeffedcba9876543210'
                    ] &gt;&gt;,
                    / uri / 21:'http://example.com/file.bin'
                },
                / directive-fetch / 21,2,
                / condition-image-match / 3,15
            ] &gt;&gt;,
            / install / 20:&lt;&lt; [
                / directive-set-component-index / 12,0,
                / directive-override-parameters / 20,{
                    / source-component / 22:1 / [h'02'] /
                },
                / directive-copy / 22,2,
                / condition-image-match / 3,15
            ] &gt;&gt;
        } &gt;&gt;
    })
</sourcecode>
        <t>Total size of Envelope without COSE authentication object:  327</t>
        <t>Envelope:</t>
        <artwork><![CDATA[
d86ba2025827815824822f58205b5f6586b1e6cdf19ee479a5adabf20658
1000bd584b0832a9bdaf4f72cdbdd603590116a801010204035867a20283
814100814102814101045858880c0014a40150fa6b4a53d5ad5fdfbe9de6
63e4d41ffe02501492af1425695e48bf429b2d51f2ab45035824822f5820
00112233445566778899aabbccddeeff0123456789abcdeffedcba987654
32100e1987d0010f020f0745840c00030f085838880c0214a3035824822f
58200123456789abcdeffedcba987654321000112233445566778899aabb
ccddeeff0e1a00012c2216001602030f0945840c02170210584e880c0114
a2035824822f582000112233445566778899aabbccddeeff0123456789ab
cdeffedcba987654321015781b687474703a2f2f6578616d706c652e636f
6d2f66696c652e62696e1502030f144b880c0014a116011602030f
]]></artwork>
        <t>Total size of Envelope with COSE authentication object:  403</t>
        <t>Envelope with COSE authentication object:</t>
        <artwork><![CDATA[
d86ba2025873825824822f58205b5f6586b1e6cdf19ee479a5adabf20658
1000bd584b0832a9bdaf4f72cdbdd6584ad28443a10126a0f658407d15aa
f4f91848dc98d89433cbb4512f3bed0a043c68c2f9bbef5f48028ae714f8
f837e7262717806894f5b1027e5e938c772b75071c7819a064b8e0f961a4
4803590116a801010204035867a20283814100814102814101045858880c
0014a40150fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492af1425695e
48bf429b2d51f2ab45035824822f582000112233445566778899aabbccdd
eeff0123456789abcdeffedcba98765432100e1987d0010f020f0745840c
00030f085838880c0214a3035824822f58200123456789abcdeffedcba98
7654321000112233445566778899aabbccddeeff0e1a00012c2216001602
030f0945840c02170210584e880c0114a2035824822f5820001122334455
66778899aabbccddeeff0123456789abcdeffedcba987654321015781b68
7474703a2f2f6578616d706c652e636f6d2f66696c652e62696e1502030f
144b880c0014a116011602030f
]]></artwork>
      </section>
      <section anchor="example-5-two-images">
        <name>Example 5: Two Images</name>
        <t>This example covers the following templates:</t>
        <ul spacing="normal">
          <li>Compatibility Check (<xref target="template-compatibility-check"/>)</li>
          <li>Secure Boot (<xref target="template-secure-boot"/>)</li>
          <li>Firmware Download (<xref target="firmware-download-template"/>)</li>
        </ul>
        <t>Furthermore, it shows using these templates with two images.</t>
        <artwork><![CDATA[
~~~ cbor-diag
107({
        / authentication-wrapper / 2:<< [
            / digest: / << [
                / algorithm-id / -16 / "sha256" /,
                / digest-bytes /
h'15ce60f77657e4531dc329155f8b0ed78f94bdc6d165b2665473693dcc34f470'
            ] >>,
            / signature: / << 18([
                / protected / << {
                    / alg / 1:-7 / "ES256" /
                } >>,
                / unprotected / {
                },
                / payload / null / nil /,
                / signature / h'b8a0683079e9ebb496655313cbc7ce67f2b1f8
f9b6572727b6930ae7c061917c077cc784018fecebfa6a7a23f598039fee37fe5866c9
842b391a112f795ded60'
            ]) >>
        ] >>,
        / manifest / 3:<< {
            / manifest-version / 1:1,
            / manifest-sequence-number / 2:5,
            / common / 3:<< {
                / components / 2:[
                    [h'00'],
                    [h'01']
                ],
                / shared-sequence / 4:<< [
                    / directive-set-component-index / 12,0,
                    / directive-override-parameters / 20,{
                        / vendor-id /
1:h'fa6b4a53d5ad5fdfbe9de663e4d41ffe' / fa6b4a53-d5ad-5fdf-
be9d-e663e4d41ffe /,
                        / class-id /
2:h'1492af1425695e48bf429b2d51f2ab45' /
1492af14-2569-5e48-bf42-9b2d51f2ab45 /,
                        / image-digest / 3:<< [
                            / algorithm-id / -16 / "sha256" /,
                            / digest-bytes /
h'00112233445566778899aabbccddeeff0123456789abcdeffedcba9876543210'
                        ] >>,
                        / image-size / 14:34768
                    },
                    / condition-vendor-identifier / 1,15,
                    / condition-class-identifier / 2,15,
                    / directive-set-component-index / 12,1,
                    / directive-override-parameters / 20,{
                        / image-digest / 3:<< [
                            / algorithm-id / -16 / "sha256" /,
                            / digest-bytes /
h'0123456789abcdeffedcba987654321000112233445566778899aabbccddeeff'
                        ] >>,
                        / image-size / 14:76834
                    }
                ] >>
            } >>,
            / validate / 7:<< [
                / directive-set-component-index / 12,0,
                / condition-image-match / 3,15,
                / directive-set-component-index / 12,1,
                / condition-image-match / 3,15
            ] >>,
            / run / 9:<< [
                / directive-set-component-index / 12,0,
                / directive-run / 23,2
            ] >>,
            / install / 20:<< [
                / directive-set-component-index / 12,0,
                / directive-override-parameters / 20,{
                    / uri / 21:'http://example.com/file1.bin'
                },
                / directive-fetch / 21,2,
                / condition-image-match / 3,15,
                / directive-set-component-index / 12,1,
                / directive-override-parameters / 20,{
                    / uri / 21:'http://example.com/file2.bin'
                },
                / directive-fetch / 21,2,
                / condition-image-match / 3,15
            ] >>
        } >>
    })
]]></artwork>
        <t>Total size of Envelope without COSE authentication object:  306</t>
        <t>Envelope:</t>
        <artwork><![CDATA[
d86ba2025827815824822f582015ce60f77657e4531dc329155f8b0ed78f
94bdc6d165b2665473693dcc34f47003590101a601010205035895a20282
8141008141010458898c0c0014a40150fa6b4a53d5ad5fdfbe9de663e4d4
1ffe02501492af1425695e48bf429b2d51f2ab45035824822f5820001122
33445566778899aabbccddeeff0123456789abcdeffedcba98765432100e
1987d0010f020f0c0114a2035824822f58200123456789abcdeffedcba98
7654321000112233445566778899aabbccddeeff0e1a00012c220749880c
00030f0c01030f0945840c00170214584f900c0014a115781c687474703a
2f2f6578616d706c652e636f6d2f66696c65312e62696e1502030f0c0114
a115781c687474703a2f2f6578616d706c652e636f6d2f66696c65322e62
696e1502030f
]]></artwork>
        <t>Total size of Envelope with COSE authentication object:  382</t>
        <t>Envelope with COSE authentication object:</t>
        <artwork><![CDATA[
d86ba2025873825824822f582015ce60f77657e4531dc329155f8b0ed78f
94bdc6d165b2665473693dcc34f470584ad28443a10126a0f65840b8a068
3079e9ebb496655313cbc7ce67f2b1f8f9b6572727b6930ae7c061917c07
7cc784018fecebfa6a7a23f598039fee37fe5866c9842b391a112f795ded
6003590101a601010205035895a202828141008141010458898c0c0014a4
0150fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492af1425695e48bf42
9b2d51f2ab45035824822f582000112233445566778899aabbccddeeff01
23456789abcdeffedcba98765432100e1987d0010f020f0c0114a2035824
822f58200123456789abcdeffedcba987654321000112233445566778899
aabbccddeeff0e1a00012c220749880c00030f0c01030f0945840c001702
14584f900c0014a115781c687474703a2f2f6578616d706c652e636f6d2f
66696c65312e62696e1502030f0c0114a115781c687474703a2f2f657861
6d706c652e636f6d2f66696c65322e62696e1502030f
]]></artwork>
        <t>~~~</t>
      </section>
    </section>
    <section anchor="design-rationale">
      <name>Design Rationale</name>
      <t>In order to provide flexible behavior to constrained devices, while still allowing more powerful devices to use their full capabilities, the SUIT manifest encodes the required behavior of a Recipient device. Behavior is encoded as a specialized byte code, contained in a CBOR list. This promotes a flat encoding, which simplifies the parser. The information encoded by this byte code closely matches the operations that a device will perform, which promotes ease of processing. The core operations used by most update and trusted invocation operations are represented in the byte code. The byte code can be extended by registering new operations.</t>
      <t>The specialized byte code approach gives benefits equivalent to those provided by a scripting language or conventional byte code, with two substantial differences. First, the language is extremely high level, consisting of only the operations that a device may perform during update and trusted invocation of a firmware image. Second, the language specifies linear behavior, without reverse branches. Conditional processing is supported, and parallel and out-of-order processing may be performed by sufficiently capable devices.</t>
      <t>By structuring the data in this way, the manifest processor becomes a very simple engine that uses a pull parser to interpret the manifest. This pull parser invokes a series of command handlers that evaluate a Condition or execute a Directive. Most data is structured in a highly regular pattern, which simplifies the parser.</t>
      <t>The results of this allow a Recipient to implement a very small parser for constrained applications. If needed, such a parser also allows the Recipient to perform complex updates with reduced overhead. Conditional execution of commands allows a simple device to perform important decisions at validation-time.</t>
      <t>Dependency handling is vastly simplified as well. Dependencies function like subroutines of the language. When a manifest has a dependency, it can invoke that dependency's commands and modify their behavior by setting parameters. Because some parameters come with security implications, the dependencies also have a mechanism to reject modifications to parameters on a fine-grained level. Dependency handling is covered in <xref target="I-D.ietf-suit-trust-domains"/>.</t>
      <t>Developing a robust permissions system works in this model too. The Recipient can use a simple ACL that is a table of Identities and Component Identifier permissions to ensure that operations on components fail unless they are permitted by the ACL. This table can be further refined with individual parameters and commands.</t>
      <t>Capability reporting is similarly simplified. A Recipient can report the Commands, Parameters, Algorithms, and Component Identifiers that it supports. This is sufficiently precise for a manifest author to create a manifest that the Recipient can accept.</t>
      <t>The simplicity of design in the Recipient due to all of these benefits allows even a highly constrained platform to use advanced update capabilities.</t>
      <section anchor="design-rationale-envelope">
        <name>C.1 Design Rationale: Envelope</name>
        <t>The Envelope is used instead of a COSE structure for several reasons:</t>
        <ol spacing="normal" type="1">
          <li>This enables the use of Severable Elements (<xref target="severable-fields"/>)</li>
          <li>This enables modular processing of manifests, particularly with large signatures.</li>
          <li>This enables multiple authentication schemes.</li>
          <li>This allows integrity verification by a dependent to be unaffected by adding or removing authentication structures.</li>
        </ol>
        <t>Modular processing is important because it allows a Manifest Processor to iterate forward over an Envelope, processing Delegation Chains and Authentication Blocks, retaining only intermediate values, without any need to seek forward and backwards in a stream until it gets to the Manifest itself. This allows the use of large, Post-Quantum signatures without requiring retention of the signature itself, or seeking forward and back.</t>
        <t>Four authentication objects are supported by the Envelope:</t>
        <ul spacing="normal">
          <li>COSE_Sign_Tagged</li>
          <li>COSE_Sign1_Tagged</li>
          <li>COSE_Mac_Tagged</li>
          <li>COSE_Mac0_Tagged</li>
        </ul>
        <t>The SUIT Envelope allows an Update Authority or intermediary to mix and match any number of different authentication blocks it wants without any concern for modifying the integrity of another authentication block. This also allows the addition or removal of an authentication blocks without changing the integrity check of the Manifest, which is important for dependency handling. See <xref target="required-checks"/></t>
      </section>
      <section anchor="c2-byte-string-wrappers">
        <name>C.2 Byte String Wrappers</name>
        <t>Byte string wrappers are used in several places in the suit manifest. The primary reason for wrappers it to limit the parser extent when invoked at different times, with a possible loss of context.</t>
        <t>The elements of the suit envelope are wrapped both to set the extents used by the parser and to simplify integrity checks by clearly defining the length of each element.</t>
        <t>The common block is re-parsed in order to find components identifiers from their indices, to find dependency prefixes and digests from their identifiers, and to find the shared sequence. The shared sequence is wrapped so that it matches other sequences, simplifying the code path.</t>
        <t>A severed SUIT command sequence will appear in the envelope, so it must be wrapped as with all envelope elements. For consistency, command sequences are also wrapped in the manifest. This also allows the parser to discern the difference between a command sequence and a SUIT_Digest.</t>
        <t>Parameters that are structured types (arrays and maps) are also wrapped in a bstr. This is so that parser extents can be set correctly using only a reference to the beginning of the parameter. This enables a parser to store a simple list of references to parameters that can be retrieved when needed.</t>
      </section>
    </section>
    <section anchor="implementation-matrix">
      <name>D. Implementation Conformance Matrix</name>
      <t>This section summarizes the functionality a minimal manifest processor
implementation needs
to offer to claim conformance to this specification, in the absence of
an application profile standard specifying otherwise.</t>
      <t>The subsequent table shows the conditions.</t>
      <table>
        <thead>
          <tr>
            <th align="left">Name</th>
            <th align="left">Reference</th>
            <th align="left">Implementation</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">Vendor Identifier</td>
            <td align="left">
              <xref target="uuid-identifiers"/></td>
            <td align="left">
              <bcp14>REQUIRED</bcp14></td>
          </tr>
          <tr>
            <td align="left">Class Identifier</td>
            <td align="left">
              <xref target="uuid-identifiers"/></td>
            <td align="left">
              <bcp14>REQUIRED</bcp14></td>
          </tr>
          <tr>
            <td align="left">Device Identifier</td>
            <td align="left">
              <xref target="uuid-identifiers"/></td>
            <td align="left">
              <bcp14>OPTIONAL</bcp14></td>
          </tr>
          <tr>
            <td align="left">Image Match</td>
            <td align="left">
              <xref target="suit-condition-image-match"/></td>
            <td align="left">
              <bcp14>REQUIRED</bcp14></td>
          </tr>
          <tr>
            <td align="left">Check Content</td>
            <td align="left">
              <xref target="suit-condition-check-content"/></td>
            <td align="left">
              <bcp14>OPTIONAL</bcp14></td>
          </tr>
          <tr>
            <td align="left">Component Slot</td>
            <td align="left">
              <xref target="suit-condition-component-slot"/></td>
            <td align="left">
              <bcp14>OPTIONAL</bcp14></td>
          </tr>
          <tr>
            <td align="left">Abort</td>
            <td align="left">
              <xref target="suit-condition-abort"/></td>
            <td align="left">
              <bcp14>OPTIONAL</bcp14></td>
          </tr>
          <tr>
            <td align="left">Custom Condition</td>
            <td align="left">
              <xref target="SUIT_Command_Custom"/></td>
            <td align="left">
              <bcp14>OPTIONAL</bcp14></td>
          </tr>
        </tbody>
      </table>
      <t>The subsequent table shows the directives.</t>
      <table>
        <thead>
          <tr>
            <th align="left">Name</th>
            <th align="left">Reference</th>
            <th align="left">Implementation</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">Set Component Index</td>
            <td align="left">
              <xref target="suit-directive-set-component-index"/></td>
            <td align="left">
              <bcp14>REQUIRED</bcp14> if more than one component</td>
          </tr>
          <tr>
            <td align="left">Write Content</td>
            <td align="left">
              <xref target="suit-directive-write"/></td>
            <td align="left">
              <bcp14>OPTIONAL</bcp14></td>
          </tr>
          <tr>
            <td align="left">Try Each</td>
            <td align="left">
              <xref target="suit-directive-try-each"/></td>
            <td align="left">
              <bcp14>OPTIONAL</bcp14></td>
          </tr>
          <tr>
            <td align="left">Override Parameters</td>
            <td align="left">
              <xref target="suit-directive-override-parameters"/></td>
            <td align="left">
              <bcp14>REQUIRED</bcp14></td>
          </tr>
          <tr>
            <td align="left">Fetch</td>
            <td align="left">
              <xref target="suit-directive-fetch"/></td>
            <td align="left">
              <bcp14>REQUIRED</bcp14> for Updater</td>
          </tr>
          <tr>
            <td align="left">Copy</td>
            <td align="left">
              <xref target="suit-directive-copy"/></td>
            <td align="left">
              <bcp14>OPTIONAL</bcp14></td>
          </tr>
          <tr>
            <td align="left">Invoke</td>
            <td align="left">
              <xref target="suit-directive-invoke"/></td>
            <td align="left">
              <bcp14>REQUIRED</bcp14> for Bootloader</td>
          </tr>
          <tr>
            <td align="left">Run Sequence</td>
            <td align="left">
              <xref target="suit-directive-run-sequence"/></td>
            <td align="left">
              <bcp14>OPTIONAL</bcp14></td>
          </tr>
          <tr>
            <td align="left">Swap</td>
            <td align="left">
              <xref target="suit-directive-swap"/></td>
            <td align="left">
              <bcp14>OPTIONAL</bcp14></td>
          </tr>
        </tbody>
      </table>
      <t>The subsequent table shows the parameters.</t>
      <table>
        <thead>
          <tr>
            <th align="left">Name</th>
            <th align="left">Reference</th>
            <th align="left">Implementation</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">Vendor ID</td>
            <td align="left">
              <xref target="suit-parameter-vendor-identifier"/></td>
            <td align="left">
              <bcp14>REQUIRED</bcp14></td>
          </tr>
          <tr>
            <td align="left">Class ID</td>
            <td align="left">
              <xref target="suit-parameter-class-identifier"/></td>
            <td align="left">
              <bcp14>REQUIRED</bcp14></td>
          </tr>
          <tr>
            <td align="left">Image Digest</td>
            <td align="left">
              <xref target="suit-parameter-image-digest"/></td>
            <td align="left">
              <bcp14>REQUIRED</bcp14></td>
          </tr>
          <tr>
            <td align="left">Image Size</td>
            <td align="left">
              <xref target="suit-parameter-image-size"/></td>
            <td align="left">
              <bcp14>REQUIRED</bcp14></td>
          </tr>
          <tr>
            <td align="left">Component Slot</td>
            <td align="left">
              <xref target="suit-parameter-component-slot"/></td>
            <td align="left">
              <bcp14>OPTIONAL</bcp14></td>
          </tr>
          <tr>
            <td align="left">Content</td>
            <td align="left">
              <xref target="suit-parameter-content"/></td>
            <td align="left">
              <bcp14>OPTIONAL</bcp14></td>
          </tr>
          <tr>
            <td align="left">URI</td>
            <td align="left">
              <xref target="suit-parameter-uri"/></td>
            <td align="left">
              <bcp14>REQUIRED</bcp14> for Updater</td>
          </tr>
          <tr>
            <td align="left">Source Component</td>
            <td align="left">
              <xref target="suit-parameter-source-component"/></td>
            <td align="left">
              <bcp14>OPTIONAL</bcp14></td>
          </tr>
          <tr>
            <td align="left">Invoke Args</td>
            <td align="left">
              <xref target="suit-parameter-invoke-args"/></td>
            <td align="left">
              <bcp14>OPTIONAL</bcp14></td>
          </tr>
          <tr>
            <td align="left">Device ID</td>
            <td align="left">
              <xref target="suit-parameter-device-identifier"/></td>
            <td align="left">
              <bcp14>OPTIONAL</bcp14></td>
          </tr>
          <tr>
            <td align="left">Strict Order</td>
            <td align="left">
              <xref target="suit-parameter-strict-order"/></td>
            <td align="left">
              <bcp14>OPTIONAL</bcp14></td>
          </tr>
          <tr>
            <td align="left">Soft Failure</td>
            <td align="left">
              <xref target="suit-parameter-soft-failure"/></td>
            <td align="left">
              <bcp14>OPTIONAL</bcp14></td>
          </tr>
          <tr>
            <td align="left">Custom</td>
            <td align="left">
              <xref target="suit-parameter-custom"/></td>
            <td align="left">
              <bcp14>OPTIONAL</bcp14></td>
          </tr>
        </tbody>
      </table>
    </section>
  </back>
  <!-- ##markdown-source:
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
EgKQOozdXFb+VCJHanG2wbBeenFxAZ0vZa8KHRXyStBLvaGeUVmhuBq4qxRn
MY6WCq/odVtkoxjDVtKWmxtWwU4sO6tluyglYf+RY54vfoJ2eelrMhq2lq52
vNndznUPXYQKRmW41F4cD6kHPqB03+wIfzTiHKxCoNXDGvjYsbV6FIM9drRG
0II9d6FZJWKJyU3FVbj94rb9at8K3nmgm7U3jTCvbpXZXVgNW1o/arj2gS4i
MmVkVPc1JeipBzLAzeOZeqj9+8kKKNfijqgGq+FD3TIWQJqPa7B4uFC37DJh
jQySFd2sx+awY63pbR7oYwwoyHcLHeOSxovdXl0lc4s3KnWIpP0iX5MXchuF
VE9SQPIamDNHUW/5gQ449cLNCbwobDnN7E5Np68AbdULSz+sDQ+3XpgnrGxH
Olglwb1E2mhP+90K2TJbEwYvKNzooBCB1sJ2e2asdtB2A49Kgq5aYauRY6yD
Vzts9ZJXF+T2lQ02ILXyaiPxmWpUyaFsNFgxn2SpRouKNV+yhdPEqxQMhXnq
xSqrUjVO6LCqFRZot50bY99pJqN4LfEDGLAmYdv01uIpvmSFxRN7yQmLp/OS
ERZP4oqS7TLnKggtsOEqCC0w3KoItVtrcjrrMtGkou2yy0DP4imh99siCRse
q2JYP/iGHUDpl1v2inQGuMnjm4+4k2bAM9jgvbcimU0ubm0vd5DIF3pCRzwZ
DdtYw9MgszuNi5wrlet5m0l/Bm94Zke+/62wg8r0e7iTRSbDHE2KXC45rVzF
fMpONAukWCZvfiJ4XuTmKpEf7O2fsMQKl2DMTE08hrrNj2z28Wd38Ojgqf78
+ODnndOB/mTwkj3Vjg4ePd45H+wc7R492r1+/ejkyAnh+6O9PfH5avB495Fx
Ra4Odnd++ul85/IfL//4x96LR4dHrvHz7p6298fLk9mv3xvhH49G4+sfn08v
9w9P321dZL8+uzjeebq3s3MyGE4GKFKvX4c/Xvz8NqP+08nozevXh8Hx7I32
/Psom/3yS3yRvNmZnubpk1ezfO/l4O3Vk6ez6dPHv2bhs1376fdX450Xs/zd
6Niyj5zZk+wX3q3B0/1mp9hhstPGBqdLPHwZs/O5av6sSpbWvCR4C/Ve7B4e
7CnEe/jqanD18vGTyT8O3v1h7O389PJAfN7f+SneB3INLn4ku49eO4evX785
eflz/HI8f0d+nHqvs61BpEXvtkbO9Ofh+ODX6OqJ4T++vjyMdka7R/HeHxF5
d2w6b07Pk3dp/uPVw8PoyH2VzN49OzyZDM8fPFD6X0OLdZ+nX+Nd0Vm60JPH
O+yq60oKIcnHeM/1RBwE1otonH6JUbxMMF9CYQKTlyAws2IMyikF/pNnFoqk
L/wIlkJMvpOrBbC4M0Ic3ldYvZJGrcrq7GQXyocIMn7Q2UU68pyW1ogJog4V
MT/c/Rv3n8NE3FosLW4Xw2J415hSrB4//KCfXOd1WPUIIi/EIGnlnXnymQJD
aVPFUjl89qHSwS5D+YNuqv+WGs1Lyqv28zLQVcvkg26IkkZZum4Z8pdFwVaL
cEmZTN7VWC3F78bhQmBs8xMwVN+dTGbiRKmUECXDn8JnYrtzzvb4YvAEHF1x
yJvfFrqh7ImO1ffcUfj48T5UVFqtVGBHL2kfE2l/ZCusM37imt06UOQtHGXj
bDQfSUzl7kWMGicZOddwo2IZDdrSFzjlW7q1/R//IcL6ZWmuBrbhU+OlAKdu
yNtCzxz+fgOuHeiSb/StXkuVysa8Le3inue5ASWuZ1ie5YVekpipaUd+YFl2
SAzPSYgfe7EbRyR1rTShiWMFxEvjwI596pL0XqWR3/UffujVulFkPBM9MYON
ts6Is8E04aXeN4oUfYa/5nbfx74OTnhXG4U/NhDh1edjtZ1mIx/bKgnnHD6N
cc8v/AdqoJW8ZXa3Lf3inum6DqUhDWPH86PYsL0ooUbs2g41LBM+RyHxiGYZ
HiFObARBnIamZwZmFNsGMVxqm3ZiO6Hlp56XJk7qUj8IoiCO7DQOPQuHyrKI
6VixmWp2nJDIMojnkMCz0tQ03fro3AeqFE+qY7VVWkJbur3dGIHyfWH54TCY
9dFeGGFBJjfqpUW0pbXFooQMXiCEJufgz28X9wzj3u+Nd7+3jlEt9LGlO03p
K4t3+9WAk9Fr51VevdD/wKTm9sW9lHiRQ1w7cUnipkka0TChnmdTJ3HMNKX3
oI4s08dCfSzV17BcXy3YxoAK2cQsAq1a0KoJTERSYBTXC13qBFHqWGFkJa6Z
WiRy3HuInSiDcb6wj6X6WKyvlututOIeizFtJ2tZZ20dVh+dmj4zDNME3WU7
jut6ng/yEoaERFEM7galaWqYlu24nh+EJIoTeEAT0G1h4HuuY1umcW9hg03d
1tZ75oWDZDjbtuN7QWv5FiXDQXSZDQCzZ7rLazbsB2BRqNiUDVUXMKxadHcR
5tzS/fbRVJtWTREY/nqrbZPDdI7SHy6CXQn5YE/sntWAWTz4KL/AjL3IHZV2
7Jb4YGzO3rIcYZMZ5kEX1ycVJwlk0jx2zqE6feuT6A9AblvXQWeDUS+qCNck
CbyIWIblBpYfmPDXgSk1hf+N5TOu1j3lGrYb+CZxDRN+LcPA726KjQUwd2iO
CY8ceOQFnukQxzBdY5nWATwNlH+tS0lgO2U3moKmrSdpBjXhSwJwjNSwNPjj
OzYAtuFTiJ9MHx5zf3Hx4HSPjGX75cgsLV8fOR+Q+KQj5wYOSazAcWwCY2d5
xEgBJI4QGgraMkuhy1DQVrcUmoaC5i5hqi6e0pYxVRdPacuYqountGVM1cVT
qvthbuNxyPlwRsZ0Ms/1/cnVmFl86BBWTloD+4kDD3+ik1JcFVXgBdWKI7qJ
eNiXgJjDUulPovYnq/VHWLeb+tMJv3GG4io9v06H5/ksriGVnWX5odUwXIED
S46qZCz96vwh4EvqkzgmRhKD5vZSK6UOiJ/jp64BGgHE0I5TAiwXeCDqkWFR
FC/HAk5LSGrd+UOtfWX+kJPaQWASC5QqNYHILug30AIkTHzTdqLIotQENUgt
4idhaIZmZMZhGLmJb9ue45heFKSOayWmH8egIH2HwBAkphdEoel7oJKgoB8H
NCFWZGvE8n3Pc0AN+55vxpEHOuAL84cape/8oTt/6M4fKkD87/OH5H4PlKPl
TtGaEgjqfpphAXP73sVsdrm9Jb0gvCxwC29F3IyycXPIW2eBeqQY4fastpJr
UeRW3pz5Kby50FvDm1tuL2jdBgMawKFTGN7mX8+bMwF9oByib5ou0C/yAt+B
X8MmFtDLg2ee6SW+4cWea1HNs73US+CFB14We8T8LQpdZwBv6xT61id0Cm/N
AIucQm4tacvMpS5rSVvdXGpaS1pqdPPmX8AprLOmtow3u1hTK3lTdS6tBc5l
r+JZ9tSlKPzyht0J/5DdkP7lLYjdzCmt9IKtpyluZK4XezvLa0YB5uTNtF+8
ATDi7nLc5Lix6Fay+1+j6+kR1wx9mgRpmMRxCmKcmDEwte2GIM6+EVDDNyIn
9oC7Q2LGVhxYMTCnm3pGGIV15+bO9VRcT3AcA1BiIXVTh9pG4NoWKBageOLH
keskcRAnQaz51LYcPyKGExtxHARRQtzIhrqRQVzXBJ0K+jxygfrUCkBHpzAt
WD5BhWbEbuKhAqShFoNOsG2fhnYIChR0bUzoF+Z6Wneu553rWa1z53oqIL44
17N6EAElhflwOThx59lsM5ts/fjjy8kf977KJbxON/hzzbdglIegtWOwYEES
wVw3zZD4VhoYdpoYNsy1NvWAX2ns2aYbJ3aQwgfbtXDdxQmDmkav94FZKNjf
z9YB27DAWU3Axo9i6lJQJZSkvklh1vEcl4IyS2zPBZvVNXxiBKbth76FLkMM
pr1h+LUO3Mrztlo9bzRR1/C+dTzNWhiBMi86umyuv84K61JDSuu2pND/SEwS
CL/H+sv45ODZSP8GqMI9HN8LfQf8mBBdV+gNceETeKGVlTONL52ZBXLrCI/W
Jj2mL0F1s7G2nI8ZOyxhvC6uwyxekjlb2c+27Q72aywT35b9FkUEuBGrLbNi
u4xYbXUrtmnEaoR2S8bXGxFYKBjaMsnoEgztJtOKFAxtmWR0CYamSMYNI2XM
zW4Vh9CybxZAc+7E5U5cvmBxwXCgHZfhQNtaJRqoWanvwSvLD6FIDI+oBx2A
QiaSCT45SJEiZFgJHmpqYNv03RA+RQSYG34pjKjrQtOG6WMuocSy4Rc4RmKh
MSgGPIUyro17knzXi6E9E3BwvdR3fawA7fs+PEHcTM+xYngWah71bVY0hl9E
FYeL4ksA5Xo2VLYQvGPBc+iEfIOd1fAVQDIc7Au06Tk+bkVC1ma/LvQcGAJa
rxHNAHvAkwSzMQgOBfGx56UME0Q1ZCTEd66oiPi5yGta2Ub5yYJPDhsMQfWQ
hWVjZEkYFXwXYJc0kFyQPT+C3xpsK/EWA8B3gYYQvMhP/MQKq20vIJjSlFZt
y1crJJ6o0AYaCYzUToAspoBfH0/RDvJVpWTiQUmtUjRp0LTWZnUItQVjCEwD
XUjhEwOHjIPMBK2KgYLBA2q7fJyhuCUqIqtgBeBuKG4XqANH+BanC6+jyUoc
QWQ+xtUOZws/KOkL4PBN6GFFwMJKNA9H0JdfZQUBinLVCx21PU6qRMqygYsA
rqVwr2SKlEkUxVbFG7Ot91ohR1QIgcuKldgo1aG3ClFRnk1UN4xkTBChTcZH
rDBKHNDdErhYtLnWYG/rO1u7Ij/aX2TV4DvWJZ4O4lQ8x1qkH1VXF766gD8w
luMQz6JxaICREcLMbsQW+GJ+QEOwe8I4doEhUxsmXNNwCJguYCt4IKMJsSi9
C/i395UF/C3PAE0dm47PLDa0N+CPZ3hG4oHZYKWmFZFUc5PQiIzECYnhWrbh
oiXnxy6NfDAiw4TESZgEUQyzfxJYIMaEpBEagImRoIUAZqcPbWgxGCswe4Vg
0EQ+7rUFdfuFBfztu4D/1x7wXy+C3XLVCHCN21u8DLDCGsGtRqQEw86fbunu
ttFZeEHfSjgLz7YC7N6CCP0n78z6ay1l3Vutuag9+dPWXuRP9xpMnTqrrMXI
n483XPf5F7Cvece+n4d9l0W2l7D352NfYF7buQX7tr5smSt561/cKuQXtgF2
lZmtk50/gRStNJt1qIKbq4FPgvzSLcFm+57gomftHL1QvP7E4Visnb/i4bBu
OhyrWehf4q5u+xPs6rYtY40V5OWeudbtmhu2G2K0vNg7a2NInjg89K+Vsf8w
CuALhnhXXUPWut0J8E6hQ7bDo9gGIA7/XNaEjVHyG64K4Bysta8KQGte0Zqp
tqY0Zmq3mdE1QIeaBEtZsWW1b+R1I/DvWe+tQO29xhDiW8/j9bb32qYmd/hW
oMpeLgGqLYBqfeId7bZ6ZOHWO9pvzfyLFuR4TEZbFpTpisloqwdlmjEZzUu7
5bJLLLXlezsWi6W2TC4/w64PLpbaMrnsAqYtt7QXi6W2TC67JEhbJpddYqnd
UNitxoKciLCrIXZnm2Xw1dPpZKRjVrUppuMWiaf/MiF3cTShAlmY5rzAoQBU
vGVA+Ob7rzAU70Yu6igvMqkXJ6kZUur4IQGBJxGucrkBikKUgBqLjMC2SBgl
JHVS34qTKEm8u1B8a19ZKN5PTJcgsUITtH0CGjkJQse24wjMFdNK7YgmBtEM
xwaBja00jCKauqkTgEom1DedNEgD26e+5Vm+6QeGB9VTNwL17VOXhnYQ+74V
+a7hmzEoDpNdxhEF1EhDzySOU9+p+a8OxTufNxTf7qHgS6vrpfnZg/ht92MD
9ayesTyGfbcAcLfjf2nv/1o7/leJtd1MuG4ZoxOzQHALpFojCrc42L4e99+C
8/+0YPVijl8QlF5UuHFVOxDS2jbgPzFftNkN3cPDbn1FMJ8gMnTj4yQ35a01
jqFUs3IAcO8WaJl/JZb/LIq+i+W/gpsrbreUsZ7+vgXftOsDU+gD61+tD24V
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

-->

</rfc>
