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


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

]>

<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc subcompact="no"?>

<rfc ipr="trust200902" docName="draft-ietf-teep-protocol-12" category="std" consensus="true" submissionType="IETF" tocDepth="4" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="TEEP Protocol">Trusted Execution Environment Provisioning (TEEP) Protocol</title>

    <author initials="H." surname="Tschofenig" fullname="Hannes Tschofenig">
      <organization></organization>
      <address>
        <postal>
          <street></street>
          <city></city>
          <region></region>
          <code></code>
          <country>Austria</country>
        </postal>
        <email>hannes.tschofenig@gmx.net</email>
      </address>
    </author>
    <author initials="M." surname="Pei" fullname="Mingliang Pei">
      <organization>Broadcom</organization>
      <address>
        <postal>
          <street></street>
          <city></city>
          <region></region>
          <code></code>
          <country>US</country>
        </postal>
        <email>mingliang.pei@broadcom.com</email>
      </address>
    </author>
    <author initials="D." surname="Wheeler" fullname="David Wheeler">
      <organization>Amazon</organization>
      <address>
        <postal>
          <street></street>
          <city></city>
          <region></region>
          <code></code>
          <country>US</country>
        </postal>
        <email>davewhee@amazon.com</email>
      </address>
    </author>
    <author initials="D." surname="Thaler" fullname="Dave Thaler">
      <organization>Microsoft</organization>
      <address>
        <postal>
          <street></street>
          <city></city>
          <region></region>
          <code></code>
          <country>US</country>
        </postal>
        <email>dthaler@microsoft.com</email>
      </address>
    </author>
    <author initials="A." surname="Tsukamoto" fullname="Akira Tsukamoto">
      <organization></organization>
      <address>
        <postal>
          <street></street>
          <city></city>
          <region></region>
          <code></code>
          <country>JP</country>
        </postal>
        <email>akira.tsukamoto@gmail.com</email>
      </address>
    </author>

    <date year="2023"/>

    <area>Security</area>
    <workgroup>TEEP</workgroup>
    <keyword>Trusted Execution Environment</keyword>

    <abstract>


<t>This document specifies a protocol that installs, updates, and deletes
Trusted Components in a device with a Trusted Execution
Environment (TEE).  This specification defines an interoperable
protocol for managing the lifecycle of Trusted Components.</t>



    </abstract>



  </front>

  <middle>


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

<t>The Trusted Execution Environment (TEE) concept has been designed to
separate a regular operating system, also referred as a Rich Execution
Environment (REE), from security-sensitive applications. In a TEE
ecosystem, device vendors may use different operating systems in the
REE and may use different types of TEEs. When Trusted Component Developers or
Device Administrators use Trusted Application Managers (TAMs) to
install, update, and delete Trusted Applications and their dependencies on a wide range
of devices with potentially different TEEs then an interoperability
need arises.</t>

<t>This document specifies the protocol for communicating between a TAM
and a TEEP Agent.</t>

<t>The Trusted Execution Environment Provisioning (TEEP) architecture
document <xref target="I-D.ietf-teep-architecture"/> provides design
guidance and introduces the
necessary terminology.</t>

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

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

<t>This specification re-uses the terminology defined in <xref target="I-D.ietf-teep-architecture"/>.</t>

<t>As explained in Section 4.4 of that document, the TEEP protocol treats
each Trusted Application (TA), any dependencies the TA has, and personalization data as separate
components that are expressed in SUIT manifests, and a SUIT manifest
might contain or reference multiple binaries (see <xref target="I-D.ietf-suit-manifest"/>
for more details).</t>

<t>As such, the term Trusted Component (TC) in this document refers to a
set of binaries expressed in a SUIT manifest, to be installed in
a TEE.  Note that a Trusted Component may include one or more TAs
and/or configuration data and keys needed by a TA to operate correctly.</t>

<t>Each Trusted Component is uniquely identified by a SUIT Component Identifier
(see <xref target="I-D.ietf-suit-manifest"/> Section 8.7.2.2).</t>

<t>Attestation related terms, such as Evidence and Attestation Results,
are as defined in <xref target="RFC9334"/>.</t>

</section>
<section anchor="messages"><name>Message Overview</name>

<t>The TEEP protocol consists of messages exchanged between a TAM
and a TEEP Agent.
The messages are encoded in CBOR and designed to provide end-to-end security.
TEEP protocol messages are signed by the endpoints, i.e., the TAM and the
TEEP Agent, but Trusted
Applications may also be encrypted and signed by a Trusted Component Developer or
Device Administrator.
The TEEP protocol not only uses
CBOR but also the respective security wrapper, namely COSE <xref target="RFC9052"/>. Furthermore, for software updates the SUIT
manifest format <xref target="I-D.ietf-suit-manifest"/> is used, and
for attestation the Entity Attestation Token (EAT) <xref target="I-D.ietf-rats-eat"/>
format is supported although other attestation formats are also permitted.</t>

<t>This specification defines five messages: QueryRequest, QueryResponse,
Update, Success, and Error.</t>

<t>A TAM queries a device's current state with a QueryRequest message.
A TEEP Agent will, after authenticating and authorizing the request, report
attestation information, list all Trusted Components, and provide information about supported
algorithms and extensions in a QueryResponse message. An error message is
returned if the request
could not be processed. A TAM will process the QueryResponse message and
determine
whether to initiate subsequent message exchanges to install, update, or delete Trusted
Applications.</t>

<figure><artwork><![CDATA[
  +------------+           +-------------+
  | TAM        |           |TEEP Agent   |
  +------------+           +-------------+

    QueryRequest ------->

                           QueryResponse

                 <-------     or

                             Error
]]></artwork></figure>

<t>With the Update message a TAM can instruct a TEEP Agent to install and/or
delete one or more Trusted Components.
The TEEP Agent will process the message, determine whether the TAM is authorized
and whether the
Trusted Component has been signed by an authorized Trusted Component Signer.
A Success message is returned when the operation has been completed successfully,
or an Error message
otherwise.</t>

<figure><artwork><![CDATA[
 +------------+           +-------------+
 | TAM        |           |TEEP Agent   |
 +------------+           +-------------+

             Update  ---->

                            Success

                    <----    or

                            Error
]]></artwork></figure>

</section>
<section anchor="detailmsg"><name>Detailed Messages Specification</name>

<t>TEEP messages are protected by the COSE_Sign1 or COSE_Sign structure as described in <xref target="teep-ciphersuite"/>.
The TEEP protocol messages are described in CDDL format <xref target="RFC8610"/> below.</t>

<figure><artwork><![CDATA[
teep-message = $teep-message-type .within teep-message-framework

teep-message-framework = [
  type: $teep-type / $teep-type-extension,
  options: { * teep-option },
  * any; further elements, e.g., for data-item-requested
]

teep-option = (uint => any)

; messages defined below:
$teep-message-type /= query-request
$teep-message-type /= query-response
$teep-message-type /= update
$teep-message-type /= teep-success
$teep-message-type /= teep-error

; message type numbers, uint .size 1 which takes a number from 0 to 23
$teep-type = uint .size 1
TEEP-TYPE-query-request = 1
TEEP-TYPE-query-response = 2
TEEP-TYPE-update = 3
TEEP-TYPE-teep-success = 5
TEEP-TYPE-teep-error = 6
]]></artwork></figure>

<section anchor="creating-and-validating-teep-messages"><name>Creating and Validating TEEP Messages</name>

<section anchor="creating-a-teep-message"><name>Creating a TEEP message</name>

<t>To create a TEEP message, the following steps are performed.</t>

<t><list style="numbers">
  <t>Create a TEEP message according to the description below and populate
  it with the respective content.  TEEP messages sent by TAMs (QueryRequest
  and Update) can include a "token".
  The TAM can decide, in any implementation-specific way, whether to include a token
  in a message.  The first usage of a token
  generated by a TAM MUST be randomly created.
  Subsequent token values MUST be different for each subsequent message
  created by a TAM.</t>
  <t>Create a COSE Header containing the desired set of Header
  Parameters.  The COSE Header MUST be valid per the <xref target="RFC9052"/> specification.</t>
  <t>Create a COSE_Sign1 or COSE_Sign object
  using the TEEP message as the COSE_Sign1 or COSE_Sign Payload; all
  steps specified in <xref target="RFC9052"/> for creating a
  COSE_Sign1 or COSE_Sign object MUST be followed.</t>
</list></t>

</section>
<section anchor="validation"><name>Validating a TEEP Message</name>

<t>When TEEP message is received (see the ProcessTeepMessage conceptual API
defined in <xref target="I-D.ietf-teep-architecture"/> section 6.2.1),
the following validation steps are performed. If any of
the listed steps fail, then the TEEP message MUST be rejected.</t>

<t><list style="numbers">
  <t>Verify that the received message is a valid CBOR object.</t>
  <t>Verify that the message contains a COSE_Sign1 or COSE_Sign structure.</t>
  <t>Verify that the resulting COSE Header includes only parameters
  and values whose syntax and semantics are both understood and
  supported or that are specified as being ignored when not
  understood.</t>
  <t>Follow the steps specified in <xref section="4" sectionFormat="of" target="RFC9052"/> ("Signing Objects") for
  validating a COSE_Sign1 or COSE_Sign object. The COSE_Sign1 or COSE_Sign payload is the content
  of the TEEP message.</t>
  <t>Verify that the TEEP message is a valid CBOR map and verify the fields of
  the
  TEEP message according to this specification.</t>
</list></t>

</section>
</section>
<section anchor="queryrequest-message"><name>QueryRequest Message</name>

<t>A QueryRequest message is used by the TAM to learn
information from the TEEP Agent, such as
the features supported by the TEEP Agent, including
cipher suites and protocol versions. Additionally,
the TAM can selectively request data items from the
TEEP Agent via the request parameter. Currently,
the following features are supported:</t>

<t><list style="symbols">
  <t>Request for attestation information,</t>
  <t>Listing supported extensions,</t>
  <t>Querying installed Trusted Components, and</t>
  <t>Listing supported SUIT commands.</t>
</list></t>

<t>Like other TEEP messages, the QueryRequest message is
signed, and the relevant CDDL snippet is shown below.
The complete CDDL structure is shown in Appendix C.</t>

<figure><artwork><![CDATA[
query-request = [
  type: TEEP-TYPE-query-request,
  options: {
    ? token => bstr .size (8..64),
    ? supported-freshness-mechanisms => [ + $freshness-mechanism ],
    ? challenge => bstr .size (8..512),
    ? versions => [ + version ],
    * $$query-request-extensions,
    * $$teep-option-extensions
  },
  supported-teep-cipher-suites: [ + $teep-cipher-suite ],
  supported-suit-cose-profiles: [ + $suit-cose-profile ],
  data-item-requested: uint .bits data-item-requested
]
]]></artwork></figure>

<t>The message has the following fields:</t>

<dl newline="true">
  <dt>type</dt>
  <dd>
    <t>The value of (1) corresponds to a QueryRequest message sent from the TAM to
the TEEP Agent.</t>
  </dd>
  <dt>token</dt>
  <dd>
    <t>The value in the token parameter is used to match responses to requests,
such as to look up any implementation-specific state it might have saved about
that request, or to ignore responses to older QueryRequest messages before
some configuration changes were made that affected their content.
This is particularly useful when a TAM issues multiple concurrent requests
to a TEEP Agent. The token MUST be present if and only if the attestation bit is clear in
the data-item-requested value. The size of the token is at least 8 bytes
(64 bits) and maximum of 64 bytes, which is the same as in an EAT Nonce
Claim (see <xref target="I-D.ietf-rats-eat"/> Section 3.3). The first usage of a token
generated by a TAM MUST be randomly created.
Subsequent token values MUST be different for each request message
to distinguish the correct response from multiple requests.
The token value MUST NOT be used for other purposes, such as a TAM to
identify the devices and/or a device to identify TAMs or Trusted Components.
The TAM SHOULD set an expiration time for each token and MUST ignore any messages with expired tokens.
The TAM MUST expire the token value after receiving the first response
containing the token value and ignore any subsequent messages that have the same token
value.</t>
  </dd>
  <dt>supported-teep-cipher-suites</dt>
  <dd>
    <t>The supported-teep-cipher-suites parameter lists the TEEP cipher suites
supported by the TAM. Details
about the cipher suite encoding can be found in <xref target="teep-ciphersuite"/>.</t>
  </dd>
  <dt>supported-suit-cose-profiles</dt>
  <dd>
    <t>The supported-suit-cose-profiles parameter lists the SUIT profiles
supported by the TAM. Details
about the cipher suite encoding can be found in <xref target="eat-suit-ciphersuite"/>.</t>
  </dd>
  <dt>data-item-requested</dt>
  <dd>
    <t>The data-item-requested parameter indicates what information the TAM requests from the TEEP
Agent in the form of a bitmap.
</t>

    <dl>
      <dt>attestation (1)</dt>
      <dd>
        <t>With this value the TAM requests the TEEP Agent to return an attestation payload,
whether Evidence (e.g., an EAT) or an Attestation Result, in the response.</t>
      </dd>
      <dt>trusted-components (2)</dt>
      <dd>
        <t>With this value the TAM queries the TEEP Agent for all installed Trusted Components.</t>
      </dd>
      <dt>extensions (4)</dt>
      <dd>
        <t>With this value the TAM queries the TEEP Agent for supported capabilities
and extensions, which allows a TAM to discover the capabilities of a TEEP
Agent implementation.</t>
      </dd>
      <dt>suit-reports (8)</dt>
      <dd>
        <t>With this value the TAM requests the TEEP Agent to return SUIT Reports
in the response.</t>
      </dd>
    </dl>

    <t>Further values may be added in the future.</t>
  </dd>
  <dt>supported-freshness-mechanisms</dt>
  <dd>
    <t>The supported-freshness-mechanisms parameter lists the freshness mechanism(s) supported by the TAM.
Details about the encoding can be found in <xref target="freshness-mechanisms"/>.
If this parameter is absent, it means only the nonce mechanism is supported.
It MUST be absent if the attestation bit is clear.</t>
  </dd>
  <dt>challenge</dt>
  <dd>
    <t>The challenge field is an optional parameter used for ensuring the freshness of the
attestation payload returned with a QueryResponse message. It MUST be absent if
the attestation bit is clear (since the token is used instead in that case).
When a challenge is
provided in the QueryRequest and an EAT is returned with a QueryResponse message
then the challenge contained in this request MUST be used to generate the EAT,
such as by copying the challenge into the eat_nonce in the EAT profile <xref target="eat"/> if
using the Nonce freshness mechanism.  For more details see <xref target="freshness-mechanisms"/>.
</t>

    <t>If any format other than EAT is used, it is up to that
format to define the use of the challenge field.</t>
  </dd>
  <dt>versions</dt>
  <dd>
    <t>The versions parameter enumerates the TEEP protocol version(s) supported by the TAM.
A value of 0 refers to the current version of the TEEP protocol.
If this field is not present, it is to be treated the same as if
it contained only version 0.</t>
  </dd>
</dl>

</section>
<section anchor="query-response"><name>QueryResponse Message</name>

<t>The QueryResponse message is the successful response by the TEEP Agent after
receiving a QueryRequest message.  As discussed in <xref target="agent"/>, it can also be sent
unsolicited if the contents of the QueryRequest are already known and do not vary
per message.</t>

<t>Like other TEEP messages, the QueryResponse message is
signed, and the relevant CDDL snippet is shown below.
The complete CDDL structure is shown in Appendix C.</t>

<figure><artwork><![CDATA[
query-response = [
  type: TEEP-TYPE-query-response,
  options: {
    ? token => bstr .size (8..64),
    ? selected-teep-cipher-suite => $teep-cipher-suite,
    ? selected-version => version,
    ? attestation-payload-format => text,
    ? attestation-payload => bstr,
    ? suit-reports => [ + bstr ],
    ? tc-list => [ + system-property-claims ],
    ? requested-tc-list => [ + requested-tc-info ],
    ? unneeded-manifest-list => [ + SUIT_Component_Identifier ],
    ? ext-list => [ + ext-info ],
    * $$query-response-extensions,
    * $$teep-option-extensions
  }
]

requested-tc-info = {
  component-id => SUIT_Component_Identifier,
  ? tc-manifest-sequence-number => uint .size 8,
  ? have-binary => bool
}
]]></artwork></figure>

<t>The QueryResponse message has the following fields:</t>

<dl newline="true">
  <dt>type</dt>
  <dd>
    <t>The value of (2) corresponds to a QueryResponse message sent from the TEEP Agent
to the TAM.</t>
  </dd>
  <dt>token</dt>
  <dd>
    <t>The value in the token parameter is used to match responses to requests. The
value MUST correspond to the value received with the QueryRequest message
if one was present, and MUST be absent if no token was present in the
QueryRequest.</t>
  </dd>
  <dt>selected-teep-cipher-suite</dt>
  <dd>
    <t>The selected-teep-cipher-suite parameter indicates the selected TEEP cipher suite. If this
parameter is not present, it is to be treated as if the TEEP Agent accepts
any TEEP cipher suites listed in the QueryRequest, so the TAM can select one.
Details about the TEEP cipher suite encoding can be found in <xref target="teep-ciphersuite"/>.</t>
  </dd>
  <dt>selected-version</dt>
  <dd>
    <t>The selected-version parameter indicates the TEEP protocol version selected by the
TEEP Agent. The absence of this parameter indicates the same as if it
was present with a value of 0.</t>
  </dd>
  <dt>attestation-payload-format</dt>
  <dd>
    <t>The attestation-payload-format parameter indicates the IANA Media Type of the
attestation-payload parameter, where media type parameters are permitted after
the media type.  For protocol version 0, the absence of this parameter indicates that
the format is "application/eat+cwt; eat_profile=https://datatracker.ietf.org/doc/html/draft-ietf-teep-protocol-12" (see <xref target="I-D.ietf-rats-eat-media-type"/>
for further discussion).
(RFC-editor: upon RFC publication, replace URI above with
"https://www.rfc-editor.org/info/rfcXXXX" where XXXX is the RFC number
of this document.)
It MUST be present if the attestation-payload parameter
is present and the format is not an EAT in CWT format with the profile
defined below in <xref target="eat"/>.</t>
  </dd>
  <dt>attestation-payload</dt>
  <dd>
    <t>The attestation-payload parameter contains Evidence or an Attestation Result.  This parameter
MUST be present if the QueryResponse is sent in response to a QueryRequest
with the attestation bit set.  If the attestation-payload-format parameter is absent,
the attestation payload contained in this parameter MUST be
an Entity Attestation Token following the encoding
defined in <xref target="I-D.ietf-rats-eat"/>.  See <xref target="attestation"/> for further discussion.</t>
  </dd>
  <dt>suit-reports</dt>
  <dd>
    <t>If present, the suit-reports parameter contains a set of "boot" (including
starting an executable in an OS context) time SUIT Reports
as defined by SUIT_Report in Section 4 of <xref target="I-D.ietf-suit-report"/>,
encoded using COSE as discussed in <xref target="eat-suit-ciphersuite"/>.
If a token parameter was present in the QueryRequest
message the QueryResponse message is in response to,
the suit-report-nonce field MUST be present in the SUIT Report with a
value matching the token parameter in the QueryRequest
message.  SUIT Reports can be useful in QueryResponse messages to
pass information to the TAM without depending on a Verifier including
the relevant information in Attestation Results.</t>
  </dd>
  <dt>tc-list</dt>
  <dd>
    <t>The tc-list parameter enumerates the Trusted Components installed on the device
in the form of system-property-claims objects, as defined in Section 4 of <xref target="I-D.ietf-suit-report"/>. The system-property-claims can
be used to learn device identifying information and TEE identifying information
for distinguishing which Trusted Components to install in the TEE.
This parameter MUST be present if the
QueryResponse is sent in response to a QueryRequest with the
trusted-components bit set.</t>
  </dd>
  <dt>requested-tc-list</dt>
  <dd>
    <t>The requested-tc-list parameter enumerates the Trusted Components that are
not currently installed in the TEE, but which are requested to be installed,
for example by an installer of an Untrusted Application that has a TA
as a dependency, or by a Trusted Application that has another Trusted
Component as a dependency.  Requested Trusted Components are expressed in
the form of requested-tc-info objects.
A TEEP Agent can get this information from the RequestTA conceptual API
defined in <xref target="I-D.ietf-teep-architecture"/> section 6.2.1.</t>
  </dd>
  <dt>unneeded-manifest-list</dt>
  <dd>
    <t>The unneeded-manifest-list parameter enumerates the SUIT manifests whose components are
currently installed in the TEE, but which are no longer needed by any
other application.  The TAM can use this information in determining
whether a SUIT manifest can be unlinked.  Each unneeded SUIT manifest is identified
by its SUIT Manifest Component ID (note that this is the Component ID for the manifest
itself, which is different from the Component ID of a component installed by the manifest,
see <xref target="I-D.ietf-suit-trust-domains"/> for more discussion).
A TEEP Agent can get this information from the UnrequestTA conceptual API
defined in <xref target="I-D.ietf-teep-architecture"/> section 6.2.1.</t>
  </dd>
  <dt>ext-list</dt>
  <dd>
    <t>The ext-list parameter lists the supported extensions. This document does not
define any extensions.  This parameter MUST be present if the
QueryResponse is sent in response to a QueryRequest with the
extensions bit set.</t>
  </dd>
</dl>

<t>The requested-tc-info message has the following fields:</t>

<dl newline="true">
  <dt>component-id</dt>
  <dd>
    <t>A SUIT Component Identifier.</t>
  </dd>
  <dt>tc-manifest-sequence-number</dt>
  <dd>
    <t>The minimum suit-manifest-sequence-number value from a SUIT manifest for
the Trusted Component.  If not present, indicates that any sequence number will do.</t>
  </dd>
  <dt>have-binary</dt>
  <dd>
    <t>If present with a value of true, indicates that the TEEP agent already has
the Trusted Component binary and only needs an Update message with a SUIT manifest
that authorizes installing it.  If have-binary is true, the
tc-manifest-sequence-number field MUST be present.</t>
  </dd>
</dl>

<section anchor="attestation"><name>Evidence and Attestation Results</name>

<t>Section 7 of <xref target="I-D.ietf-teep-architecture"/> lists information that may appear
in Evidence depending on the circumstance.  However, the Evidence is
opaque to the TEEP protocol and there are no formal requirements on the contents
of Evidence.</t>

<t>TAMs however consume Attestation Results and do need enough information therein to
make decisions on how to remediate a TEE that is out of compliance, or update a TEE
that is requesting an authorized change.  To do so, the information in
Section 7 of <xref target="I-D.ietf-teep-architecture"/> is often required depending on the policy.</t>

<t>Attestation Results SHOULD use Entity Attestation Tokens (EATs).  Use of any other
format, such as a widely implemented format for a specific processor vendor, is
permitted but increases the complexity of the TAM by requiring it to understand
the format for each such format rather than only the common EAT format so is not
recommended.</t>

<t>When an EAT is used, the following claims can be used to meet those
requirements, whether these claims appear in Attestation Results, or in Evidence
for the Verifier to use when generating Attestation Results of some form:</t>

<texttable>
      <ttcol align='left'>Requirement</ttcol>
      <ttcol align='left'>Claim</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>Freshness proof</c>
      <c>nonce</c>
      <c><xref section="4.1" sectionFormat="of" target="I-D.ietf-rats-eat"/></c>
      <c>Device unique identifier</c>
      <c>ueid</c>
      <c><xref section="4.2.1" sectionFormat="of" target="I-D.ietf-rats-eat"/></c>
      <c>Vendor of the device</c>
      <c>oemid</c>
      <c><xref section="4.2.3" sectionFormat="of" target="I-D.ietf-rats-eat"/></c>
      <c>Class of the device</c>
      <c>hwmodel</c>
      <c><xref section="4.2.4" sectionFormat="of" target="I-D.ietf-rats-eat"/></c>
      <c>TEE hardware type</c>
      <c>hwversion</c>
      <c><xref section="4.2.5" sectionFormat="of" target="I-D.ietf-rats-eat"/></c>
      <c>TEE hardware version</c>
      <c>hwversion</c>
      <c><xref section="4.2.5" sectionFormat="of" target="I-D.ietf-rats-eat"/></c>
      <c>TEE firmware type</c>
      <c>manifests</c>
      <c><xref section="4.2.15" sectionFormat="of" target="I-D.ietf-rats-eat"/></c>
      <c>TEE firmware version</c>
      <c>manifests</c>
      <c><xref section="4.2.15" sectionFormat="of" target="I-D.ietf-rats-eat"/></c>
</texttable>

<t>The "manifests" claim should include information about the TEEP Agent as well
as any of its dependencies such as firmware.</t>

</section>
</section>
<section anchor="update-msg-def"><name>Update Message</name>

<t>The Update message is used by the TAM to install and/or delete one or more Trusted
Components via the TEEP Agent.  It can also be used to pass a successful
Attestation Report back to the TEEP Agent when the TAM is configured as
an intermediary between the TEEP Agent and a Verifier, as shown in the figure
below, where the Attestation Result passed back to the Attester can be used
as a so-called "passport" (see section 5.1 of <xref target="RFC9334"/>)
that can be presented to other Relying Parties.</t>

<figure><artwork><![CDATA[
         +---------------+
         |   Verifier    |
         +---------------+
               ^    | Attestation
      Evidence |    v   Result
         +---------------+
         |     TAM /     |
         | Relying Party |
         +---------------+
 QueryResponse ^    |    Update
   (Evidence)  |    | (Attestation
               |    v    Result)
         +---------------+             +---------------+
         |  TEEP Agent   |------------>|     Other     |
         |  / Attester   | Attestation | Relying Party |
         +---------------+    Result   +---------------+

    Figure 1: Example use of TEEP and attestation
]]></artwork></figure>

<t>Like other TEEP messages, the Update message is
signed, and the relevant CDDL snippet is shown below.
The complete CDDL structure is shown in Appendix C.</t>

<figure><artwork><![CDATA[
update = [
  type: TEEP-TYPE-update,
  options: {
    ? token => bstr .size (8..64),
    ? unneeded-manifest-list => [ + SUIT_Component_Identifier ],
    ? manifest-list => [ + bstr .cbor SUIT_Envelope ],
    ? attestation-payload-format => text,
    ? attestation-payload => bstr,
    ? err-code => uint .size 1,
    ? err-msg => text .size (1..128),
    * $$update-extensions,
    * $$teep-option-extensions
  }
]
]]></artwork></figure>

<t>The Update message has the following fields:</t>

<dl newline="true">
  <dt>type</dt>
  <dd>
    <t>The value of (3) corresponds to an Update message sent from the TAM to
the TEEP Agent. In case of successful processing, a Success
message is returned by the TEEP Agent. In case of an error, an Error message
is returned. Note that the Update message
is used for initial Trusted Component installation as well as for updates
and deletes.</t>
  </dd>
  <dt>token</dt>
  <dd>
    <t>The value in the token field is used to match responses to requests.</t>
  </dd>
  <dt>unneeded-manifest-list</dt>
  <dd>
    <t>The unneeded-manifest-list parameter enumerates the SUIT manifests to be unlinked.
Each unneeded SUIT manifest is identified by its SUIT Manifest Component ID.</t>
  </dd>
  <dt>manifest-list</dt>
  <dd>
    <t>The manifest-list field is used to convey one or multiple SUIT manifests
to install.  A manifest is
a bundle of metadata about a Trusted Component, such as where to
find the code, the devices to which it applies, and cryptographic
information protecting the manifest. The manifest may also convey personalization
data. Trusted Component binaries and personalization data can be signed and encrypted
by the same Trusted Component Signer. Other combinations are, however, possible as well. For example,
it is also possible for the TAM to sign and encrypt the personalization data
and to let the Trusted Component Developer sign and/or encrypt the Trusted Component binary.</t>
  </dd>
  <dt>attestation-payload-format</dt>
  <dd>
    <t>The attestation-payload-format parameter indicates the IANA Media Type of the
attestation-payload parameter, where media type parameters are permitted after
the media type.  The absence of this parameter indicates that
the format is "application/eat+cwt; eat_profile=https://datatracker.ietf.org/doc/html/draft-ietf-teep-protocol-12" (see <xref target="I-D.ietf-rats-eat-media-type"/>
for further discussion).
(RFC-editor: upon RFC publication, replace URI above with
"https://www.rfc-editor.org/info/rfcXXXX" where XXXX is the RFC number
of this document.)
It MUST be present if the attestation-payload parameter
is present and the format is not an EAT in CWT format with the profile
defined below in <xref target="eat"/>.</t>
  </dd>
  <dt>attestation-payload</dt>
  <dd>
    <t>The attestation-payload parameter contains an Attestation Result.  This parameter
If the attestation-payload-format parameter is absent,
the attestation payload contained in this parameter MUST be
an Entity Attestation Token following the encoding
defined in <xref target="I-D.ietf-rats-eat"/>.  See <xref target="attestation"/> for further discussion.</t>
  </dd>
  <dt>err-code</dt>
  <dd>
    <t>The err-code parameter contains one of the error codes listed in the
<xref target="error-message-def"/>, which describes the reasons for the error when
performing QueryResponse in the TAM.</t>
  </dd>
  <dt>err-msg</dt>
  <dd>
    <t>The err-msg parameter is human-readable diagnostic text that MUST be encoded
using UTF-8 <xref target="RFC3629"/> in Net-Unicode format <xref target="RFC5198"/> with a maximum of 128 bytes.</t>
  </dd>
</dl>

<t>Note that an Update message carrying one or more SUIT manifests will inherently
involve multiple signatures, one by the TAM in the TEEP message and one from
a Trusted Component Signer inside each manifest.  This is intentional as they
are for different purposes.</t>

<t>The TAM is what authorizes
apps to be installed, updated, and deleted on a given TEE and so the TEEP
signature is checked by the TEEP Agent at protocol message processing time.
(This same TEEP security wrapper is also used on messages like QueryRequest
so that Agents only send potentially sensitive data such as Evidence to
trusted TAMs.)</t>

<t>The Trusted Component signer on the other hand is what authorizes the
Trusted Component to actually run, so the manifest signature could be
checked at install time or load (or run) time or both, and this checking is
done by the TEE independent of whether TEEP is used or some other update
mechanism.
See section 5 of <xref target="I-D.ietf-teep-architecture"/> for further discussion.</t>

<t>The Update Message has a SUIT_Envelope containing SUIT manifests. Following are some example scenarios using SUIT manifests in the Update Message.</t>

<section anchor="directtam"><name>Scenario 1: Having one SUIT Manifest pointing to a URI of a Trusted Component Binary</name>

<t>In this scenario, a SUIT Manifest has a URI pointing to a Trusted Component Binary.</t>

<t>A Trusted Component Developer creates a new Trusted Component Binary and hosts it at a Trusted Component Developer's URI.  Then the Trusted Component Developer generates an associated SUIT manifest with the filename "tc-uuid.suit" that contains the URI. The filename "tc-uuid.suit" is used in Scenario 3 later.</t>

<t>The TAM receives the latest SUIT manifest from the Trusted Component Developer, and
the URI it contains will not be changeable by the TAM since the SUIT manifest is signed by the Trusted Component Developer.</t>

<t>Pros:</t>

<t><list style="symbols">
  <t>The Trusted Component Developer can ensure that the intact Trusted Component Binary is downloaded by devices</t>
  <t>The TAM does not have to send large Update messages containing the Trusted Component Binary</t>
</list></t>

<t>Cons:</t>

<t><list style="symbols">
  <t>The Trusted Component Developer must host the Trusted Component Binary server</t>
  <t>The device must fetch the Trusted Component Binary in another connection after receiving an Update message</t>
  <t>A device's IP address and therefore location may be revealed to the Trusted Component Binary server</t>
</list></t>

<figure><artwork><![CDATA[
    +------------+           +-------------+
    | TAM        |           | TEEP Agent  |
    +------------+           +-------------+

             Update  ---->

    +=================== teep-protocol(TAM) ==================+
    | TEEP_Message([                                          |
    |   TEEP-TYPE-update,                                     |
    |   options: {                                            |
    |     manifest-list: [                                    |
    |       += suit-manifest "tc-uuid.suit" (TC Developer) =+ |
    |       | SUIT_Envelope({                               | |
    |       |   manifest: {                                 | |
    |       |     install: {                                | |
    |       |       override-parameters: {                  | |
    |       |         uri: "https://example.org/tc-uuid.ta" | |
    |       |       },                                      | |
    |       |       fetch                                   | |
    |       |     }                                         | |
    |       |   }                                           | |
    |       | })                                            | |
    |       +===============================================+ |
    |     ]                                                   |
    |   }                                                     |
    | ])                                                      |
    +=========================================================+

    and then,

    +-------------+          +--------------+
    | TEEP Agent  |          | TC Developer |
    +-------------+          +--------------+

                     <----

      fetch "https://example.org/tc-uuid.ta"

          +======= tc-uuid.ta =======+
          | 48 65 6C 6C 6F 2C 20 ... |
          +==========================+

    Figure 2: URI of the Trusted Component Binary
]]></artwork></figure>

<t>For the full SUIT Manifest example binary, see <xref target="suit-uri"/>.</t>

</section>
<section anchor="scenario-2-having-a-suit-manifest-include-the-trusted-component-binary"><name>Scenario 2: Having a SUIT Manifest include the Trusted Component Binary</name>

<t>In this scenario, the SUIT manifest contains the entire Trusted Component Binary as an integrated payload (see <xref target="I-D.ietf-suit-manifest"/> Section 7.5).</t>

<t>A Trusted Component Developer delegates the task of delivering the Trusted Component Binary to the TAM inside the SUIT manifest. The Trusted Component Developer creates a SUIT manifest and embeds the Trusted Component Binary, which is referenced in the suit-integrated-payload element containing the fragment-only reference "#tc", in the envelope. The Trusted Component Developer transmits the entire bundle to the TAM.</t>

<t>The TAM serves the SUIT manifest containing the Trusted Component Binary to the device in an Update message.</t>

<t>Pros:</t>

<t><list style="symbols">
  <t>The device can obtain the Trusted Component Binary and the SUIT manifest in one Update message.</t>
  <t>The Trusted Component Developer does not have to host a server to deliver the Trusted Component Binary to devices.</t>
</list></t>

<t>Cons:</t>

<t><list style="symbols">
  <t>The TAM must host the Trusted Component Binary rather than delegating storage to the Trusted Component Developer.</t>
  <t>The TAM must deliver Trusted Component Binaries in Update messages, which increases the size of the Update message.</t>
</list></t>

<figure><artwork><![CDATA[
    +------------+           +-------------+
    | TAM        |           | TEEP Agent  |
    +------------+           +-------------+

             Update  ---->

      +=========== teep-protocol(TAM) ============+
      | TEEP_Message([                            |
      |   TEEP-TYPE-update,                       |
      |   options: {                              |
      |     manifest-list: [                      |
      |       +== suit-manifest(TC Developer) ==+ |
      |       | SUIT_Envelope({                 | |
      |       |   manifest: {                   | |
      |       |     install: {                  | |
      |       |       override-parameters: {    | |
      |       |         uri: "#tc"              | |
      |       |       },                        | |
      |       |       fetch                     | |
      |       |     }                           | |
      |       |   },                            | |
      |       |   "#tc": h'48 65 6C 6C ...'     | |
      |       | })                              | |
      |       +=================================+ |
      |     ]                                     |
      |   }                                       |
      | ])                                        |
      +===========================================+

    Figure 3: Integrated Payload with Trusted Component Binary
]]></artwork></figure>

<t>For the full SUIT Manifest example binary, see <xref target="suit-integrated"/>.</t>

</section>
<section anchor="scenario-3-supplying-personalization-data-for-the-trusted-component-binary"><name>Scenario 3: Supplying Personalization Data for the Trusted Component Binary</name>

<t>In this scenario, Personalization Data is associated with the Trusted Component Binary "tc-uuid.suit" from Scenario 1.</t>

<t>The Trusted Component Developer places Personalization Data in a file named "config.json" and hosts it on an HTTPS server.  The Trusted Component Developer then creates a SUIT manifest with the URI, specifying which Trusted Component Binary it correlates to in the parameter 'dependency-resolution', and signs the SUIT manifest.</t>

<t>The TAM delivers the SUIT manifest of the Personalization Data which depends on the Trusted Component Binary from Scenario 1.</t>

<figure><artwork><![CDATA[
    +------------+           +-------------+
    | TAM        |           | TEEP Agent  |
    +------------+           +-------------+

             Update  ---->

      +================= teep-protocol(TAM) ======================+
      | TEEP_Message([                                            |
      |   TEEP-TYPE-update,                                       |
      |   options: {                                              |
      |     manifest-list: [                                      |
      |       +======== suit-manifest(TC Developer) ============+ |
      |       | SUIT_Envelope({                                 | |
      |       |   manifest: {                                   | |
      |       |     common: {                                   | |
      |       |       dependencies: [                           | |
      |       |         {{digest-of-tc.suit}}                   | |
      |       |       ]                                         | |
      |       |     }                                           | |
      |       |     dependency-resolution: {                    | |
      |       |       override-parameters: {                    | |
      |       |         uri: "https://example.org/tc-uuid.suit" | |
      |       |       }                                         | |
      |       |       fetch                                     | |
      |       |     }                                           | |
      |       |     install: {                                  | |
      |       |       override-parameters: {                    | |
      |       |         uri: "https://example.org/config.json"  | |
      |       |       },                                        | |
      |       |       fetch                                     | |
      |       |       set-dependency-index                      | |
      |       |       process-dependency                        | |
      |       |     }                                           | |
      |       |   }                                             | |
      |       | })                                              | |
      |       +=================================================+ |
      |     ]                                                     |
      |   }                                                       |
      | ])                                                        |
      +===========================================================+

    and then,

    +-------------+          +--------------+
    | TEEP Agent  |          | TC Developer |
    +-------------+          +--------------+

                     <----
      fetch "https://example.org/config.json"

          +=======config.json========+
          | 7B 22 75 73 65 72 22 ... |
          +==========================+

    Figure 4: Personalization Data
]]></artwork></figure>

<t>For the full SUIT Manifest example binary, see <xref target="suit-personalization"/>.</t>

</section>
<section anchor="unlinking"><name>Scenario 4: Unlinking a Trusted Component</name>

<t>A Trusted Component Developer can also generate a SUIT Manifest that unlinks the installed Trusted Component. The TAM delivers it when the TAM wants to uninstall the component.</t>

<t>The suit-directive-unlink (see <xref target="I-D.ietf-suit-trust-domains"/> Section-6.5.4) is located in the manifest to unlink the Trusted Component, meaning that the reference count
is decremented and the component is deleted when the reference count becomes zero.
(If other Trusted Components depend on it, the reference count will not be zero.)</t>

<figure><artwork><![CDATA[
    +------------+           +-------------+
    | TAM        |           | TEEP Agent  |
    +------------+           +-------------+

             Update  ---->

      +=========== teep-protocol(TAM) ============+
      | TEEP_Message([                            |
      |   TEEP-TYPE-update,                       |
      |   options: {                              |
      |     manifest-list: [                      |
      |       +== suit-manifest(TC Developer) ==+ |
      |       | SUIT_Envelope({                 | |
      |       |   manifest: {                   | |
      |       |     install: [                  | |
      |       |       unlink                    | |
      |       |     ]                           | |
      |       |   }                             | |
      |       | })                              | |
      |       +=================================+ |
      |     ]                                     |
      |   }                                       |
      | ])                                        |
      +===========================================+

    Figure 5: Unlink Trusted Component example (summary)
]]></artwork></figure>

<t>For the full SUIT Manifest example binary, see <xref target="suit-unlink">Appendix E. SUIT Example 4</xref></t>

</section>
</section>
<section anchor="success-message"><name>Success Message</name>

<t>The Success message is used by the TEEP Agent to return a success in
response to an Update message.</t>

<t>Like other TEEP messages, the Success message is
signed, and the relevant CDDL snippet is shown below.
The complete CDDL structure is shown in Appendix C.</t>

<figure><artwork><![CDATA[
teep-success = [
  type: TEEP-TYPE-teep-success,
  options: {
    ? token => bstr .size (8..64),
    ? msg => text .size (1..128),
    ? suit-reports => [ + SUIT_Report ],
    * $$teep-success-extensions,
    * $$teep-option-extensions
  }
]
]]></artwork></figure>

<t>The Success message has the following fields:</t>

<dl newline="true">
  <dt>type</dt>
  <dd>
    <t>The value of (5) corresponds to corresponds to a Success message sent from the TEEP Agent to the
TAM.</t>
  </dd>
  <dt>token</dt>
  <dd>
    <t>The value in the token parameter is used to match responses to requests.
It MUST match the value of the token parameter in the Update
message the Success is in response to, if one was present.  If none was
present, the token MUST be absent in the Success message.</t>
  </dd>
  <dt>msg</dt>
  <dd>
    <t>The msg parameter contains optional diagnostics information encoded in
UTF-8 <xref target="RFC3629"/> using Net-Unicode form <xref target="RFC5198"/> with max 128 bytes
returned by the TEEP Agent.</t>
  </dd>
  <dt>suit-reports</dt>
  <dd>
    <t>If present, the suit-reports parameter contains a set of SUIT Reports
as defined in Section 4 of <xref target="I-D.ietf-suit-report"/>.
If a token parameter was present in the Update
message the Success message is in response to,
the suit-report-nonce field MUST be present in the SUIT Report with a
value matching the token parameter in the Update
message.</t>
  </dd>
</dl>

</section>
<section anchor="error-message-def"><name>Error Message</name>

<t>The Error message is used by the TEEP Agent to return an error in
response to a message from the TAM.</t>

<t>Like other TEEP messages, the Error message is
signed, and the relevant CDDL snippet is shown below.
The complete CDDL structure is shown in Appendix C.</t>

<figure><artwork><![CDATA[
teep-error = [
  type: TEEP-TYPE-teep-error,
  options: {
     ? token => bstr .size (8..64),
     ? err-msg => text .size (1..128),
     ? supported-teep-cipher-suites => [ + $teep-cipher-suite ],
     ? supported-freshness-mechanisms => [ + $freshness-mechanism ],
     ? versions => [ + version ],
     ? suit-reports => [ + SUIT_Report ],
     * $$teep-error-extensions,
     * $$teep-option-extensions
  },
  err-code: uint .size 1
]
]]></artwork></figure>

<t>The Error message has the following fields:</t>

<dl newline="true">
  <dt>type</dt>
  <dd>
    <t>The value of (6) corresponds to an Error message sent from the TEEP Agent to the TAM.</t>
  </dd>
  <dt>token</dt>
  <dd>
    <t>The value in the token parameter is used to match responses to requests.
It MUST match the value of the token parameter in the
message the Success is in response to, if one was present.  If none was
present, the token MUST be absent in the Error message.</t>
  </dd>
  <dt>err-msg</dt>
  <dd>
    <t>The err-msg parameter is human-readable diagnostic text that MUST be encoded
using UTF-8 <xref target="RFC3629"/> using Net-Unicode form <xref target="RFC5198"/> with max 128 bytes.</t>
  </dd>
  <dt>supported-teep-cipher-suites</dt>
  <dd>
    <t>The supported-teep-cipher-suites parameter lists the TEEP cipher suite(s) supported by the TEEP Agent.
Details about the cipher suite encoding can be found in <xref target="teep-ciphersuite"/>.
This otherwise optional parameter MUST be returned if err-code is ERR_UNSUPPORTED_CIPHER_SUITES.</t>
  </dd>
  <dt>supported-freshness-mechanisms</dt>
  <dd>
    <t>The supported-freshness-mechanisms parameter lists the freshness mechanism(s) supported by the TEEP Agent.
Details about the encoding can be found in <xref target="freshness-mechanisms"/>.
This otherwise optional parameter MUST be returned if err-code is ERR_UNSUPPORTED_FRESHNESS_MECHANISMS.</t>
  </dd>
  <dt>versions</dt>
  <dd>
    <t>The versions parameter enumerates the TEEP protocol version(s) supported by the TEEP
Agent. This otherwise optional parameter MUST be returned if err-code is ERR_UNSUPPORTED_MSG_VERSION.</t>
  </dd>
  <dt>suit-reports</dt>
  <dd>
    <t>If present, the suit-reports parameter contains a set of SUIT Reports
as defined in Section 4 of <xref target="I-D.ietf-suit-report"/>.  If
a token parameter was present in the Update message the Error message is in response to,
the suit-report-nonce field MUST be present in the SUIT Report with a
value matching the token parameter in the Update
message.</t>
  </dd>
  <dt>err-code</dt>
  <dd>
    <t>The err-code parameter contains one of the
error codes listed below). Only selected values are applicable
to each message.</t>
  </dd>
</dl>

<t>This specification defines the following initial error messages:</t>

<dl newline="true">
  <dt>ERR_PERMANENT_ERROR (1)</dt>
  <dd>
    <t>The TEEP
request contained incorrect fields or fields that are inconsistent with
other fields.
For diagnosis purposes it is RECOMMMENDED to identify the failure reason
in the error message.
A TAM receiving this error might refuse to communicate further with
the TEEP Agent for some period of time until it has reason to believe
it is worth trying again, but it should take care not to give up on
communication.  In contrast, ERR_TEMPORARY_ERROR is an indication
that a more aggressive retry is warranted.</t>
  </dd>
  <dt>ERR_UNSUPPORTED_EXTENSION (2)</dt>
  <dd>
    <t>The TEEP Agent does not support an extension included in the request
message.
For diagnosis purposes it is RECOMMMENDED to identify the unsupported
extension in the error message.
A TAM receiving this error might retry the request without using extensions.</t>
  </dd>
  <dt>ERR_UNSUPPORTED_FRESHNESS_MECHANISMS (3)</dt>
  <dd>
    <t>The TEEP Agent does not
support any freshness algorithm mechanisms in the request message.
A TAM receiving this error might retry the request using a different
set of supported freshness mechanisms in the request message.</t>
  </dd>
  <dt>ERR_UNSUPPORTED_MSG_VERSION (4)</dt>
  <dd>
    <t>The TEEP Agent does not
support the TEEP protocol version indicated in the request message.
A TAM receiving this error might retry the request using a different
TEEP protocol version.</t>
  </dd>
  <dt>ERR_UNSUPPORTED_CIPHER_SUITES (5)</dt>
  <dd>
    <t>The TEEP Agent does not
support any cipher suites indicated in the request message.
A TAM receiving this error might retry the request using a different
set of supported cipher suites in the request message.</t>
  </dd>
  <dt>ERR_BAD_CERTIFICATE (6)</dt>
  <dd>
    <t>Processing of a certificate failed. For diagnosis purposes it is
RECOMMMENDED to include information about the failing certificate
in the error message.  For example, the certificate was of an
unsupported type, or the certificate was revoked by its signer.
A TAM receiving this error might attempt to use an alternate certificate.</t>
  </dd>
  <dt>ERR_CERTIFICATE_EXPIRED (9)</dt>
  <dd>
    <t>A certificate has expired or is not currently
valid.
A TAM receiving this error might attempt to renew its certificate
before using it again.</t>
  </dd>
  <dt>ERR_TEMPORARY_ERROR (10)</dt>
  <dd>
    <t>A miscellaneous
temporary error, such as a memory allocation failure, occurred while processing the request message.
A TAM receiving this error might retry the same request at a later point
in time.</t>
  </dd>
  <dt>ERR_MANIFEST_PROCESSING_FAILED (17)</dt>
  <dd>
    <t>The TEEP Agent encountered one or more manifest processing failures.
If the suit-reports parameter is present, it contains the failure details.
A TAM receiving this error might still attempt to install or update
other components that do not depend on the failed manifest.</t>
  </dd>
</dl>

<t>New error codes should be added sparingly, not for every implementation
error.  That is the intent of the err-msg field, which can be used to
provide details meaningful to humans.  New error codes should only be
added if the TAM is expected to do something behaviorally different upon
receipt of the error message, rather than just logging the event.
Hence, each error code is responsible for saying what the
behavioral difference is expected to be.</t>

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

<t>The TEEP protocol operates between a TEEP Agent and a TAM.  While
the TEEP protocol does not require use of EAT, use of EAT is encouraged and
<xref target="query-response"/> explicitly defines a way to carry an Entity Attestation Token
in a QueryResponse.</t>

<t>As discussed in <xref target="attestation"/>, the content of Evidence is opaque to the TEEP
architecture, but the content of Attestation Results is not, where Attestation
Results flow between a Verifier and a TAM (as the Relying Party).
Although Attestation Results required by a TAM are separable from the TEEP protocol
per se, this section is included as part of the requirements for building
a compliant TAM that uses EATs for Attestation Results.</t>

<t>Section 7 of <xref target="I-D.ietf-rats-eat"/> defines the requirement for
Entity Attestation Token profiles.  This section defines an EAT profile
for use with TEEP.</t>

<t><list style="symbols">
  <t>profile-label: The profile-label for this specification is the URI</t>
</list></t>
<t><eref target="https://datatracker.ietf.org/doc/html/draft-ietf-teep-protocol-12">https://datatracker.ietf.org/doc/html/draft-ietf-teep-protocol-12</eref>.
(RFC-editor: upon RFC publication, replace string with
"https://www.rfc-editor.org/info/rfcXXXX" where XXXX is the RFC number
of this document.)</t>

<t><list style="symbols">
  <t>Use of JSON, CBOR, or both: CBOR only.</t>
  <t>CBOR Map and Array Encoding: Only definite length arrays and maps.</t>
  <t>CBOR String Encoding: Only definite-length strings are allowed.</t>
  <t>CBOR Preferred Serialization: Encoders must use preferred serialization,
and decoders need not accept non-preferred serialization.</t>
  <t>CBOR Tags: CBOR Tags are not used.</t>
  <t>COSE/JOSE Protection: See <xref target="eat-suit-ciphersuite"/>.</t>
  <t>COSE/JOSE Algorithms: See <xref target="eat-suit-ciphersuite"/>.</t>
  <t>Detached EAT Bundle Support: DEB use is permitted.</t>
  <t>Key Identification: COSE Key ID (kid) is used, where
the key ID is the hash of a public key (where the public key may be
used as a raw public key, or in a certificate).  See <xref target="attestation-result"/>
discussion on the choice of hash algorithm.</t>
  <t>Endorsement Identification: Optional, but semantics are the same
as in Verification Key Identification.</t>
  <t>Freshness: See <xref target="freshness-mechanisms"/>.</t>
  <t>Claims Requirements:
  <list style="symbols">
      <t>The following claims are required: ueid, oemid,
hwmodel, hwversion, manifests, and cnf.  See <xref target="attestation"/> for discussion.  Other claims are optional.</t>
      <t>See <xref target="freshness-mechanisms"/> for discussion affecting whether the
eat_nonce claim is used.</t>
      <t>The sw-name claim for a Trusted
Component holds the URI of the SUIT manifest for that component.</t>
      <t>The manifests claim uses a SUIT manifest, where the manifest
body contains a SUIT_Reference as defined in Section 4 of
<xref target="I-D.ietf-suit-report"/>, and the content type is as defined
in <xref target="I-D.ietf-suit-report"/>.</t>
    </list></t>
</list></t>

<t>A TAM implementation might simply accept a TEEP Agent as trustworthy based on a
successful Attestation Result, and if not then attempt to update the TEEP Agent
and all of its dependencies.  This logic is simple but it might result in updating
some components that do not need to be updated.</t>

<t>An alternate TAM implementation might use any Additional Claims to determine whether
the TEEP Agent or any of its dependencies are trustworthy, and only update the
specific components that are out of date.</t>

<section anchor="relationship-to-ar4si"><name>Relationship to AR4SI</name>

<t><xref target="I-D.ietf-rats-ar4si"/> defines an EAT profile for arbitrary Relying Parties
to use with Attestation Results.  However the TAM as a Relying Party needs specific
claims that are not required in the AR4SI profile, and so needs its own more
specific profile.</t>

<t>In some deployments, a TAM can be used as an intermediary between Verifier and a
TEEP Agent acting as an Attester in the Passport model or acting as a Relying
Party in the Background Check Model of <xref target="RFC9334"/>.  This is depicted in the
example in Figure 1.  In such a case, both profiles need to be obtained from the
Verifier: one for use by the TAM itself, and the other to pass on to the TEEP
Agent.</t>

<t>When the TAM and Verifier are combined into the same implementation, obtaining
both profiles can be straightforward, but when they are on different machines,
the situation is more complex, especially if Nonces are used to ensure freshness
of Evidence. There are thus several such cases:</t>

<t><list style="numbers">
  <t>The protocol between the TAM and the Verifier (which is outside
the scope of TEEP itself) allows requesting multiple Attestation Results from
the same Evidence.  In this case, the TAM can request both EAT profiles be
returned.</t>
  <t>The protocol between the TAM and the Verifier only allows requesting one
Attestation Result format, but the Evidence freshness mechanism does not use
Nonces.  In this case, the TAM can send the same Evidence in two separate
requests, each requesting a different EAT profile for the Attestation Results.</t>
  <t>The protocol between the TAM and the Verifier only allows requesting one
Attestation Result format, and the Evidence freshness mechanism uses Nonces.
In this case, it is simpler to not have the TAM be an intermediary, since
the Verifier will require a separate Nonce for each Attestation Result, but
have the Attester or Relying Party contact the Verifier directly to get
Attestation Results in the AR4SI profile.</t>
</list></t>

</section>
</section>
<section anchor="tags"><name>Mapping of TEEP Message Parameters to CBOR Labels</name>

<t>In COSE, arrays and maps use strings, negative integers, and unsigned
integers as their keys. Integers are used for compactness of
encoding. Since the word "key" is mainly used in its other meaning, as a
cryptographic key, this specification uses the term "label" for this usage
as a map key.</t>

<t>This specification uses the following mapping:</t>

<texttable>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Label</ttcol>
      <c>supported-teep-cipher-suites</c>
      <c>1</c>
      <c>challenge</c>
      <c>2</c>
      <c>versions</c>
      <c>3</c>
      <c>supported-suit-cose-profiles</c>
      <c>4</c>
      <c>selected-teep-cipher-suite</c>
      <c>5</c>
      <c>selected-version</c>
      <c>6</c>
      <c>attestation-payload</c>
      <c>7</c>
      <c>tc-list</c>
      <c>8</c>
      <c>ext-list</c>
      <c>9</c>
      <c>manifest-list</c>
      <c>10</c>
      <c>msg</c>
      <c>11</c>
      <c>err-msg</c>
      <c>12</c>
      <c>attestation-payload-format</c>
      <c>13</c>
      <c>requested-tc-list</c>
      <c>14</c>
      <c>unneeded-manifest-list</c>
      <c>15</c>
      <c>component-id</c>
      <c>16</c>
      <c>tc-manifest-sequence-number</c>
      <c>17</c>
      <c>have-binary</c>
      <c>18</c>
      <c>suit-reports</c>
      <c>19</c>
      <c>token</c>
      <c>20</c>
      <c>supported-freshness-mechanisms</c>
      <c>21</c>
      <c>err-code</c>
      <c>23</c>
</texttable>

</section>
<section anchor="behavior-specification"><name>Behavior Specification</name>

<t>Behavior is specified in terms of the conceptual APIs defined in
section 6.2.1 of <xref target="I-D.ietf-teep-architecture"/>.</t>

<section anchor="tam"><name>TAM Behavior</name>

<t>When the ProcessConnect API is invoked, the TAM sends a QueryRequest message.</t>

<t>When the ProcessTeepMessage API is invoked, the TAM first does validation
as specified in <xref target="validation"/>, and drops the message if it is not valid.
It may also do additional implementation specific actions such as logging the results
or attempting to update the TEEP Agent to a version that does not send invalid messages.
Otherwise, it proceeds as follows.</t>

<t>If the message includes a token, it can be used to
match the response to a request previously sent by the TAM.
The TAM MUST expire the token value after receiving the first response
from the device that has a valid signature and ignore any subsequent messages that have the same token
value.  The token value MUST NOT be used for other purposes, such as a TAM to
identify the devices and/or a device to identify TAMs or Trusted Components.</t>

<section anchor="handling-a-queryresponse-message"><name>Handling a QueryResponse Message</name>

<t>If a QueryResponse message is received, the TAM verifies the presence of any parameters
required based on the data-items-requested in the QueryRequest, and also validates that
the nonce in any SUIT Report matches the token sent in the QueryRequest message if a token
was present.  If these requirements are not met, the TAM drops the message.  It may also do
additional implementation specific actions such as logging the results.  If the requirements
are met, processing continues as follows.</t>

<t>If a QueryResponse message is received that contains an attestation-payload, the TAM
checks whether it contains Evidence or an Attestation Result by inspecting the attestation-payload-format
parameter.  The media type defined in <xref target="eat"/> indicates an Attestation Result, though future
extensions might also indicate other Attestation Result formats in the future. Any other unrecognized
value indicates Evidence.  If it contains an Attestation Result, processing continues as in
<xref target="attestation-result"/>.</t>

<t>If the QueryResponse is instead determined to contain Evidence, the TAM passes
the Evidence (via some mechanism out of scope of this document) to an attestation Verifier
(see <xref target="RFC9334"/>)
to determine whether the Agent is in a trustworthy state.  Once the TAM receives an Attestation
Result from the Verifier, processing continues as in <xref target="attestation-result"/>.</t>

<section anchor="attestation-result"><name>Handling an Attestation Result</name>

<t>The Attestation Result must first be validated as follows:</t>

<t><list style="numbers">
  <t>Verify that the Attestation Result was signed by a Verifier that the TAM trusts.</t>
  <t>Verify that the Attestation Result contains a "cnf" claim (as defined in <xref section="3.1" sectionFormat="of" target="RFC8747"/>) where
the key ID is the hash of the TEEP Agent public key used to verify the signature on the TEEP message,
and the hash is computed using the Digest Algorithm specified by one of the SUIT profiles
supported by the TAM (SHA-256 for the ones mandated in this document).  <vspace blankLines='1'/>
See Sections 3.4 and 6 of <xref target="RFC8747"/> for more discussion.</t>
</list></t>

<t>Based on the results of attestation (if any), any SUIT Reports,
and the lists of installed, requested,
and unneeded Trusted Components reported in the QueryResponse, the TAM
determines, in any implementation specific manner, which Trusted Components
need to be installed, updated, or deleted, if any.  There are in typically three cases:</t>

<t><list style="numbers">
  <t>Attestation failed. This indicates that the rest of the information in the QueryResponse
cannot necessarily be trusted, as the TEEP Agent may not be healthy (or at least up to date).
In this case, the TAM can attempt to use TEEP to update any Trusted Components (e.g., firmware,
the TEEP Agent itself, etc.) needed to get the TEEP Agent back into an up-to-date state that
would allow attestation to succeed.</t>
  <t>Attestation succeeded (so the QueryResponse information can be accepted as valid), but the set
of Trusted Components needs to be updated based on TAM policy changes or requests from the TEEP Agent.</t>
  <t>Attestation succeeded, and no changes are needed.</t>
</list></t>

<t>If any Trusted Components need to be installed, updated, or deleted,
the TAM sends an Update message containing SUIT Manifests with command
sequences to do the relevant installs, updates, or deletes.
It is important to note that the TEEP Agent's
Update Procedure requires resolving and installing any dependencies
indicated in the manifest, which may take some time, and the resulting Success
or Error message is generated only after completing the Update Procedure.
Hence, depending on the freshness mechanism in use, the TAM may need to
store data (e.g., a nonce) for some time.  For example, if a mobile device
needs an unmetered connection to download a dependency, it may take
hours or longer before the device has sufficient access.  A different
freshness mechanism, such as timestamps, might be more appropriate in such
cases.</t>

<t>If no Trusted Components need to be installed, updated, or deleted, but the QueryRequest included
Evidence, the TAM MAY (e.g., based on attestation-payload-format parameters received from the TEEP Agent
in the QueryResponse) still send an Update message with no SUIT Manifests, to pass the Attestation
Result back to the TEEP Agent.</t>

</section>
</section>
<section anchor="handling-a-success-or-error-message"><name>Handling a Success or Error Message</name>

<t>If a Success or Error message is received containing one or more SUIT Reports, the TAM also validates that
the nonce in any SUIT Report matches the token sent in the Update message,
and drops the message if it does not match.  Otherwise, the TAM handles
the update in any implementation specific way, such as updating any locally
cached information about the state of the TEEP Agent, or logging the results.</t>

<t>If any other Error message is received, the TAM can handle it in any implementation
specific way, but <xref target="error-message-def"/> provides recommendations for such handling.</t>

</section>
</section>
<section anchor="agent"><name>TEEP Agent Behavior</name>

<t>When the RequestTA API is invoked, the TEEP Agent first checks whether the
requested TA is already installed.  If it is already installed, the
TEEP Agent passes no data back to the caller.  Otherwise,
if the TEEP Agent chooses to initiate the process of requesting the indicated
TA, it determines (in any implementation specific way) the TAM URI based on
any TAM URI provided by the RequestTA caller and any local configuration,
and passes back the TAM URI to connect to.  It MAY also pass back a
QueryResponse message if all of the following conditions are true:</t>

<t><list style="symbols">
  <t>The last QueryRequest message received from that TAM contained no token or challenge,</t>
  <t>The ProcessError API was not invoked for that TAM since the last QueryResponse
message was received from it, and</t>
  <t>The public key or certificate of the TAM is cached and not expired.</t>
</list></t>

<t>When the RequestPolicyCheck API is invoked, the TEEP Agent decides
whether to initiate communication with any trusted TAMs (e.g., it might
choose to do so for a given TAM unless it detects that it has already
communicated with that TAM recently). If so, it passes back a TAM URI
to connect to.  If the TEEP Agent has multiple TAMs it needs to connect
with, it just passes back one, with the expectation that
RequestPolicyCheck API will be invoked to retrieve each one successively
until there are no more and it can pass back no data at that time.
Thus, once a TAM URI is returned, the TEEP Agent can remember that it has
already initiated communication with that TAM.</t>

<t>When the ProcessError API is invoked, the TEEP Agent can handle it in
any implementation specific way, such as logging the error or
using the information in future choices of TAM URI.</t>

<t>When the ProcessTeepMessage API is invoked, the Agent first does validation
as specified in <xref target="validation"/>, and if it is not valid then the Agent
responds with an Error message.
Otherwise, processing continues as follows based on the type of message.</t>

<t>When a QueryRequest message is received, the Agent responds with a
QueryResponse message if all fields were understood, or an Error message
if any error was encountered.</t>

<t>When an Update message is received, the Agent attempts to unlink any
SUIT manifests listed in the unneeded-manifest-list field of the message,
and responds with an Error message if any error was encountered.
If the unneeded-manifest-list was empty, or no error was encountered processing it,
the Agent attempts to update
the Trusted Components specified in the SUIT manifests
by following the Update Procedure specified
in <xref target="I-D.ietf-suit-manifest"/>, and responds with a Success message if
all SUIT manifests were successfully installed, or an Error message
if any error was encountered.
It is important to note that the
Update Procedure requires resolving and installing any dependencies
indicated in the manifest, which may take some time, and the Success
or Error message is generated only after completing the Update Procedure.</t>

</section>
</section>
<section anchor="ciphersuite"><name>Cipher Suites</name>

<t>TEEP requires algorithms for various purposes:</t>

<t><list style="symbols">
  <t>Algorithms for signing TEEP messages exchanged between the TEEP Agent and the TAM.</t>
  <t>Algorithms for signing EAT-based Evidence sent by the Attester via the TEEP Agent and the TAM to the Verifier. (If evidence is not encrypted by the TEEP Agent then it will be opaque to the TEEP Agent and to the TAM.)</t>
  <t>Algorithms for encrypting EAT-based Evidence sent by the TEEP Agent to the TAM. (The TAM will decrypt the encrypted Evidence and will forward it to the Verifier.)</t>
  <t>Algorithms for signing and optionally encrypting SUIT reports sent by the TEEP Agent to the TAM.</t>
  <t>Algorithms for signing and optionally encrypting SUIT manifests sent by the Trusted Component Signer to the TEEP Agent.</t>
</list></t>

<t>Further details are provided for the protection of TEEP messages, SUIT Reports, and EATs.</t>

<section anchor="teep-ciphersuite"><name>TEEP Messages</name>

<t>The TEEP protocol uses COSE for protection of TEEP messages in both directions.
To negotiate cryptographic mechanisms and algorithms, the TEEP protocol defines the following cipher suite structure,
which is used to specify an ordered set of operations (e.g., sign) done as part of composing a TEEP message.
Although this specification only specifies the use of signing and relies on payload encryption to protect sensitive
information, future extensions might specify support for encryption and/or MAC operations if needed.</t>

<figure><artwork><![CDATA[
; teep-cipher-suites

$teep-cipher-suite /= teep-cipher-suite-sign1-eddsa
$teep-cipher-suite /= teep-cipher-suite-sign1-es256

;The following two cipher suites have only a single operation each.
;Other cipher suites may be defined to have multiple operations.
;MANDATORY for TAM to support them, and OPTIONAL
;to support any additional ones that use COSE_Sign_Tagged, or other
;signing, encryption, or MAC algorithms.

teep-operation-sign1-eddsa = [ cose-sign1, cose-alg-eddsa ]
teep-operation-sign1-es256 = [ cose-sign1, cose-alg-es256 ]

teep-cipher-suite-sign1-eddsa = [ teep-operation-sign1-eddsa ]
teep-cipher-suite-sign1-es256 = [ teep-operation-sign1-es256 ]

;MANDATORY for TAM and TEEP Agent to support the following COSE
;operations, and OPTIONAL to support additional ones such as
;COSE_Sign_Tagged, COSE_Encrypt0_Tagged, etc.

cose-sign1 = 18      ; CoAP Content-Format value

;MANDATORY for TAM to support the following, and OPTIONAL to implement
;any additional algorithms from the IANA COSE Algorithms registry.

cose-alg-es256 = -7  ; ECDSA w/ SHA-256
cose-alg-eddsa = -8  ; EdDSA
]]></artwork></figure>

<t>Each operation in a given cipher suite has two elements:</t>

<t><list style="symbols">
  <t>a COSE-type defined in <xref section="2" sectionFormat="of" target="RFC9052"/> that identifies the type of operation, and</t>
  <t>a specific cryptographic algorithm as defined in the COSE Algorithms registry <xref target="COSE.Algorithm"/> to be used to perform that operation.</t>
</list></t>

<t>A TAM MUST support both of the cipher suites defined above.  A TEEP Agent MUST support at least
one of the two but can choose which one.  For example, a TEEP Agent might
choose a given cipher suite if it has hardware support for it.
A TAM or TEEP Agent MAY also support any other algorithms in the COSE Algorithms
registry in addition to the mandatory ones listed above.  It MAY also support use
with COSE_Sign or other COSE types in additional cipher suites.</t>

<t>Any cipher suites without confidentiality protection can only be added if the
associated specification includes a discussion of security considerations and
applicability, since manifests may carry sensitive information. For example,
Section 6 of <xref target="I-D.ietf-teep-architecture"/> permits implementations that
terminate transport security inside the TEE and if the transport security
provides confidentiality then additional encryption might not be needed in
the manifest for some use cases. For most use cases, however, manifest
confidentiality will be needed to protect sensitive fields from the TAM as
discussed in Section 9.8 of <xref target="I-D.ietf-teep-architecture"/>.</t>

<t>The cipher suites defined above do not do encryption at the TEEP layer, but
permit encryption of the SUIT payload using <xref target="I-D.ietf-suit-firmware-encryption"/>.
See <xref target="security"/> and <xref target="eat-suit-ciphersuite"/> for more discussion of specific payloads.</t>

<t>For the initial QueryRequest message, unless the TAM has more specific knowledge about the TEEP Agent
(e.g., if the QueryRequest is sent in response to some underlying transport message that contains a hint),
the message does not use COSE_Sign1 with one of the above cipher suites, but instead uses COSE_Sign with multiple signatures,
one for each algorithm used in any of the cipher suites listed in the supported-teep-cipher-suites
parameter of the QueryRequest, so that a TEEP Agent supporting any one of them can verify a signature.
If the TAM does have specific knowledge about which cipher suite the TEEP Agent supports,
it MAY instead use that cipher suite with the QueryRequest.</t>

<t>For an Error message with code ERR_UNSUPPORTED_CIPHER_SUITES, the TEEP Agent MUST
protect it with any of the cipher suites mandatory for the TAM.</t>

<t>For all other TEEP messages between the TAM and TEEP Agent,
the selected TEEP cipher suite MUST be used in both directions.</t>

</section>
<section anchor="eat-suit-ciphersuite"><name>EATs and SUIT Reports</name>

<t>TEEP uses COSE for confidentiality of EATs and SUIT Reports sent by a TEEP Agent.
The TEEP Agent obtains a signed EAT and then SHOULD encrypt it using the TAM
as the recipient. A SUIT Report is created by a SUIT processor, which
is part of the TEEP Agent itself. The TEEP Agent is therefore in control of signing
the SUIT Report and SHOULD encrypt it. Again, the TAM is the recipient of the encrypted
content. For content-key distribution Hybrid Public Key Encryption (HPKE) is used
in this specification. See COSE-HPKE <xref target="I-D.ietf-cose-hpke"/> for more details.
This specification uses the COSE-HPKE variant for a single recipient, i.e., the TAM,
which uses COSE_Encrypt0. This variant is described in <xref section="3.1.1" sectionFormat="of" target="I-D.ietf-cose-hpke"/>.</t>

<t>To perform encryption with HPKE the TEEP Agent needs to be in possession of the public
key of the recipient, i.e., the TAM. See Section 5 of <xref target="I-D.ietf-teep-architecture"/>
for more discussion of TAM keys used by the TEEP Agent.</t>

<t>This specification defines cipher suites for confidentiality protection of EATs and
SUIT Reports. The TAM MUST support each cipher suite defined below, based on definitions in
<xref target="I-D.moran-suit-mti"/>.  A TEEP Agent MUST support at least one of the cipher
suites below but can choose which one.  For example, a TEEP Agent might
choose a given cipher suite if it has hardware support for it.
A TAM or TEEP Agent MAY also support other algorithms in the COSE Algorithms registry.
It MAY also support use with COSE_Encrypt or other COSE types in additional cipher suites.</t>

<figure><artwork><![CDATA[
$suit-cose-profile /= suit-sha256-es256-hpke-a128gcm
$suit-cose-profile /= suit-sha256-eddsa-hpke-a128gcm
]]></artwork></figure>

</section>
</section>
<section anchor="freshness-mechanisms"><name>Freshness Mechanisms</name>

<t>A freshness mechanism determines how a TAM can tell whether an attestation payload provided
in a QueryResponse is fresh.  There are multiple ways this can be done
as discussed in Section 10 of <xref target="RFC9334"/>.</t>

<t>Each freshness mechanism is identified with an integer value, which corresponds to
an IANA registered freshness mechanism (see the IANA Considerations section of
<xref target="I-D.ietf-rats-reference-interaction-models"/>).
This document uses the following freshness mechanisms which may be added to in the
future by TEEP extensions:</t>

<figure><artwork><![CDATA[
; freshness-mechanisms

FRESHNESS_NONCE = 0
FRESHNESS_TIMESTAMP = 1

$freshness-mechanism /= FRESHNESS_NONCE
$freshness-mechanism /= FRESHNESS_TIMESTAMP
]]></artwork></figure>

<t>An implementation MUST support the Nonce mechanism and MAY support additional
mechanisms.</t>

<t>In the Nonce mechanism, the attestation payload MUST include a nonce provided
in the QueryRequest challenge.  The timestamp mechanism uses a timestamp
determined via mechanisms outside the TEEP protocol,
and the challenge is only needed in the QueryRequest message
if a challenge is needed in generating the attestation payload for reasons other
than freshness.</t>

<t>If a TAM supports multiple freshness mechanisms that require different challenge
formats, the QueryRequest message can currently only send one such challenge.
This situation is expected to be rare, but should it occur, the TAM can
choose to prioritize one of them and exclude the other from the
supported-freshness-mechanisms in the QueryRequest, and resend the QueryRequest
with the other mechanism if an ERR_UNSUPPORTED_FRESHNESS_MECHANISMS Error
is received that indicates the TEEP Agent supports the other mechanism.</t>

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

<t>This section summarizes the security considerations discussed in this
specification:</t>

<dl newline="true">
  <dt>Cryptographic Algorithms</dt>
  <dd>
    <t>TEEP protocol messages exchanged between the TAM and the TEEP Agent
are protected using COSE. This specification relies on the
cryptographic algorithms provided by COSE.  Public key based
authentication is used by the TEEP Agent to authenticate the TAM
and vice versa.</t>
  </dd>
  <dt>Attestation</dt>
  <dd>
    <t>A TAM relies on signed Attestation Results provided by a Verifier,
either obtained directly using a mechanism outside the TEEP protocol
(by using some mechanism to pass Evidence obtained in the attestation payload of
a QueryResponse, and getting back the Attestation Results), or indirectly
via the TEEP Agent forwarding the Attestation Results in the attestation
payload of a QueryResponse. See the security considerations of the
specific mechanism in use (e.g., EAT) for more discussion.
</t>

    <t>An impersonation attack, where one TEEP Agent attempts to use the attestation
payload of another TEEP Agent, can be prevented using a proof-of-possession
approach.  The "cnf" claim is mandatory in the EAT profile for EAT for this
purpose.  See <xref section="6" sectionFormat="of" target="RFC8747"/> and <xref target="attestation-result"/> of this document
for more discussion.</t>
  </dd>
  <dt>Trusted Component Binaries</dt>
  <dd>
    <t>Each Trusted Component binary is signed by a Trusted Component Signer. It is the responsibility of the
TAM to relay only verified Trusted Components from authorized Trusted Component Signers.  Delivery of
a Trusted Component to the TEEP Agent is then the responsibility of the TAM,
using the security mechanisms provided by the TEEP
protocol.  To protect the Trusted Component binary, the SUIT manifest format is used and
it offers a variety of security features, including digital
signatures and content encryption, if a SUIT mechanism such as <xref target="I-D.ietf-suit-firmware-encryption"/>
is used.</t>
  </dd>
  <dt>Personalization Data</dt>
  <dd>
    <t>A Trusted Component Signer or TAM can supply personalization data along with a Trusted Component.
This data is also protected by a SUIT manifest. Personalization data is signed and encrypted
by a Trusted Component Signer, if a SUIT mechanism such as <xref target="I-D.ietf-suit-firmware-encryption"/>
is used.</t>
  </dd>
  <dt>TEEP Broker</dt>
  <dd>
    <t>As discussed in section 6 of <xref target="I-D.ietf-teep-architecture"/>,
the TEEP protocol typically relies on a TEEP Broker to relay messages
between the TAM and the TEEP Agent.  When the TEEP Broker is
compromised it can drop messages, delay the delivery of messages,
and replay messages but it cannot modify those messages. (A replay
would be, however, detected by the TEEP Agent.) A compromised TEEP
Broker could reorder messages in an attempt to install an old
version of a Trusted Component. Information in the manifest ensures that TEEP
Agents are protected against such downgrade attacks based on
features offered by the manifest itself.</t>
  </dd>
  <dt>Trusted Component Signer Compromise</dt>
  <dd>
    <t>A TAM is responsible for vetting a Trusted Component and
before distributing them to TEEP Agents.<br />
It is RECOMMENDED to provide a way to
update the trust anchor store used by the TEE, for example using
a firmware update mechanism such as <xref target="I-D.ietf-rats-concise-ta-stores"/>.  Thus, if a Trusted Component
Signer is later compromised, the TAM can update the trust anchor
store used by the TEE, for example using a firmware update mechanism.</t>
  </dd>
  <dt>CA Compromise</dt>
  <dd>
    <t>The CA issuing certificates to a TEE or a Trusted Component Signer might get compromised.
It is RECOMMENDED to provide a way to update the trust anchor store used by the TEE, for example
by using a firmware update mechanism, Concise TA Stores <xref target="I-D.ietf-rats-concise-ta-stores"/>, Trust
Anchor Management Protocol (TAMP) <xref target="RFC5934"/> or a similar mechanism. If the CA issuing 
certificates to devices gets compromised then these devices will be rejected by a
TAM, if revocation is available to the TAM.</t>
  </dd>
  <dt>TAM Certificate Expiry</dt>
  <dd>
    <t>The integrity and the accuracy of the
clock within the TEE determines the ability to determine an expired
TAM certificate, if certificates are used.</t>
  </dd>
  <dt>Compromised Time Source</dt>
  <dd>
    <t>As discussed above, certificate validity checks rely on comparing
validity dates to the current time, which relies on having a trusted
source of time, such as <xref target="RFC8915"/>.  A compromised time source could
thus be used to subvert such validity checks.</t>
  </dd>
</dl>

</section>
<section anchor="privacy"><name>Privacy Considerations</name>

<t>Depending on
the properties of the attestation mechanism, it is possible to
uniquely identify a device based on information in the
attestation payload or in the certificate used to sign the
attestation payload.  This uniqueness may raise privacy concerns. To lower the
privacy implications the TEEP Agent MUST present its
attestation payload only to an authenticated and authorized TAM and when using
an EAT, it SHOULD use encryption as discussed in <xref target="I-D.ietf-rats-eat"/>, since
confidentiality is not provided by the TEEP protocol itself and
the transport protocol under the TEEP protocol might be implemented
outside of any TEE. If any mechanism other than EAT is used, it is
up to that mechanism to specify how privacy is provided.</t>

<t>Since SUIT Reports can also contain sensitive information, a TEEP Agent
SHOULD also encrypt SUIT Reports as discussed in <xref target="eat-suit-ciphersuite"/>.</t>

<t>In addition, in the usage scenario discussed in <xref target="directtam"/>, a device
reveals its IP address to the Trusted Component Binary server.  This
can reveal to that server at least a clue as to its location, which
might be sensitive information in some cases.</t>

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

<section anchor="media-type-registration"><name>Media Type Registration</name>

<t>IANA is requested to assign a media type for
application/teep+cbor.</t>

<dl>
  <dt>Type name:</dt>
  <dd>
    <t>application</t>
  </dd>
  <dt>Subtype name:</dt>
  <dd>
    <t>teep+cbor</t>
  </dd>
  <dt>Required parameters:</dt>
  <dd>
    <t>none</t>
  </dd>
  <dt>Optional parameters:</dt>
  <dd>
    <t>none</t>
  </dd>
  <dt>Encoding considerations:</dt>
  <dd>
    <t>Same as encoding considerations of
application/cbor.</t>
  </dd>
  <dt>Security considerations:</dt>
  <dd>
    <t>See Security Considerations Section of this document.</t>
  </dd>
  <dt>Interoperability considerations:</dt>
  <dd>
    <t>Same as interoperability
considerations of application/cbor as specified in <xref target="RFC8949"/>.</t>
  </dd>
  <dt>Published specification:</dt>
  <dd>
    <t>This document.</t>
  </dd>
  <dt>Applications that use this media type:</dt>
  <dd>
    <t>TEEP protocol implementations</t>
  </dd>
  <dt>Fragment identifier considerations:</dt>
  <dd>
    <t>N/A</t>
  </dd>
  <dt>Additional information:</dt>
  <dd>
    <dl>
      <dt>Deprecated alias names for this type:</dt>
      <dd>
        <t>N/A</t>
      </dd>
      <dt>Magic number(s):</dt>
      <dd>
        <t>N/A</t>
      </dd>
      <dt>File extension(s):</dt>
      <dd>
        <t>N/A</t>
      </dd>
      <dt>Macintosh file type code(s):</dt>
      <dd>
        <t>N/A</t>
      </dd>
    </dl>
  </dd>
  <dt>Person to contact for further information:</dt>
  <dd>
    <t>teep@ietf.org</t>
  </dd>
  <dt>Intended usage:</dt>
  <dd>
    <t>COMMON</t>
  </dd>
  <dt>Restrictions on usage:</dt>
  <dd>
    <t>none</t>
  </dd>
  <dt>Author:</dt>
  <dd>
    <t>See the "Authors' Addresses" section of this document</t>
  </dd>
  <dt>Change controller:</dt>
  <dd>
    <t>IETF</t>
  </dd>
</dl>

</section>
</section>


  </middle>

  <back>


    <references title='Normative References'>





<reference anchor='RFC9052'>
<front>
<title>CBOR Object Signing and Encryption (COSE): Structures and Process</title>
<author fullname='J. Schaad' initials='J.' surname='Schaad'><organization/></author>
<date month='August' year='2022'/>
<abstract><t>Concise Binary Object Representation (CBOR) is a data format designed for small code size and small message size.  There is a need to be able to define basic security services for this data format.  This document defines the CBOR Object Signing and Encryption (COSE) protocol.  This specification describes how to create and process signatures, message authentication codes, and encryption using CBOR for serialization.  This specification additionally describes how to represent cryptographic keys using CBOR.  </t><t>This document, along with RFC 9053, obsoletes RFC 8152.</t></abstract>
</front>
<seriesInfo name='STD' value='96'/>
<seriesInfo name='RFC' value='9052'/>
<seriesInfo name='DOI' value='10.17487/RFC9052'/>
</reference>



<reference anchor='RFC3629'>
<front>
<title>UTF-8, a transformation format of ISO 10646</title>
<author fullname='F. Yergeau' initials='F.' surname='Yergeau'><organization/></author>
<date month='November' year='2003'/>
<abstract><t>ISO/IEC 10646-1 defines a large character set called the Universal Character Set (UCS) which encompasses most of the world's writing systems.  The originally proposed encodings of the UCS, however, were not compatible with many current applications and protocols, and this has led to the development of UTF-8, the object of this memo.  UTF-8 has the characteristic of preserving the full US-ASCII range, providing compatibility with file systems, parsers and other software that rely on US-ASCII values but are transparent to other values.  This memo obsoletes and replaces RFC 2279.</t></abstract>
</front>
<seriesInfo name='STD' value='63'/>
<seriesInfo name='RFC' value='3629'/>
<seriesInfo name='DOI' value='10.17487/RFC3629'/>
</reference>



<reference anchor='RFC5198'>
<front>
<title>Unicode Format for Network Interchange</title>
<author fullname='J. Klensin' initials='J.' surname='Klensin'><organization/></author>
<author fullname='M. Padlipsky' initials='M.' surname='Padlipsky'><organization/></author>
<date month='March' year='2008'/>
<abstract><t>The Internet today is in need of a standardized form for the transmission of internationalized &quot;text&quot; information, paralleling the specifications for the use of ASCII that date from the early days of the ARPANET.  This document specifies that format, using UTF-8 with normalization and specific line-ending sequences.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='5198'/>
<seriesInfo name='DOI' value='10.17487/RFC5198'/>
</reference>



<reference anchor='RFC8747'>
<front>
<title>Proof-of-Possession Key Semantics for CBOR Web Tokens (CWTs)</title>
<author fullname='M. Jones' initials='M.' surname='Jones'><organization/></author>
<author fullname='L. Seitz' initials='L.' surname='Seitz'><organization/></author>
<author fullname='G. Selander' initials='G.' surname='Selander'><organization/></author>
<author fullname='S. Erdtman' initials='S.' surname='Erdtman'><organization/></author>
<author fullname='H. Tschofenig' initials='H.' surname='Tschofenig'><organization/></author>
<date month='March' year='2020'/>
<abstract><t>This specification describes how to declare in a CBOR Web Token (CWT) (which is defined by RFC 8392) that the presenter of the CWT possesses a particular proof-of-possession key. Being able to prove possession of a key is also sometimes described as being the holder-of-key. This specification provides equivalent functionality to &quot;Proof-of-Possession Key Semantics for JSON Web Tokens (JWTs)&quot; (RFC 7800) but using Concise Binary Object Representation (CBOR) and CWTs rather than JavaScript Object Notation (JSON) and JSON Web Tokens (JWTs).</t></abstract>
</front>
<seriesInfo name='RFC' value='8747'/>
<seriesInfo name='DOI' value='10.17487/RFC8747'/>
</reference>



<reference anchor='RFC8949'>
<front>
<title>Concise Binary Object Representation (CBOR)</title>
<author fullname='C. Bormann' initials='C.' surname='Bormann'><organization/></author>
<author fullname='P. Hoffman' initials='P.' surname='Hoffman'><organization/></author>
<date month='December' year='2020'/>
<abstract><t>The Concise Binary Object Representation (CBOR) is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation. These design goals make it different from earlier binary serializations such as ASN.1 and MessagePack.</t><t>This document obsoletes RFC 7049, providing editorial improvements, new details, and errata fixes while keeping full compatibility with the interchange format of RFC 7049.  It does not create a new version of the format.</t></abstract>
</front>
<seriesInfo name='STD' value='94'/>
<seriesInfo name='RFC' value='8949'/>
<seriesInfo name='DOI' value='10.17487/RFC8949'/>
</reference>



<reference anchor='RFC9334'>
<front>
<title>Remote ATtestation procedureS (RATS) Architecture</title>
<author fullname='H. Birkholz' initials='H.' surname='Birkholz'><organization/></author>
<author fullname='D. Thaler' initials='D.' surname='Thaler'><organization/></author>
<author fullname='M. Richardson' initials='M.' surname='Richardson'><organization/></author>
<author fullname='N. Smith' initials='N.' surname='Smith'><organization/></author>
<author fullname='W. Pan' initials='W.' surname='Pan'><organization/></author>
<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>
<seriesInfo name='RFC' value='9334'/>
<seriesInfo name='DOI' value='10.17487/RFC9334'/>
</reference>


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

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

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


<reference anchor='I-D.ietf-rats-reference-interaction-models'>
   <front>
      <title>Reference Interaction Models for Remote Attestation Procedures</title>
      <author fullname='Henk Birkholz' initials='H.' surname='Birkholz'>
         <organization>Fraunhofer SIT</organization>
      </author>
      <author fullname='Michael Eckel' initials='M.' surname='Eckel'>
         <organization>Fraunhofer SIT</organization>
      </author>
      <author fullname='Wei Pan' initials='W.' surname='Pan'>
         <organization>Huawei Technologies</organization>
      </author>
      <author fullname='Eric Voit' initials='E.' surname='Voit'>
         <organization>Cisco Systems</organization>
      </author>
      <date day='10' month='March' year='2023'/>
      <abstract>
	 <t>   This document describes interaction models for remote attestation
   procedures (RATS).  Three conveying mechanisms -- Challenge/Response,
   Uni-Directional, and Streaming Remote Attestation -- are illustrated
   and defined.  Analogously, a general overview about the information
   elements typically used by corresponding conveyance protocols are
   highlighted.

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-ietf-rats-reference-interaction-models-07'/>
   
</reference>


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

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


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

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


<reference anchor='I-D.ietf-suit-report'>
   <front>
      <title>Secure Reporting of Update Status</title>
      <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='24' month='October' year='2022'/>
      <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>
   <seriesInfo name='Internet-Draft' value='draft-ietf-suit-report-04'/>
   
</reference>


<reference anchor='I-D.ietf-suit-firmware-encryption'>
   <front>
      <title>Encrypted Payloads in SUIT Manifests</title>
      <author fullname='Hannes Tschofenig' initials='H.' surname='Tschofenig'>
         <organization>Arm Limited</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='24' month='October' year='2022'/>
      <abstract>
	 <t>   This document specifies techniques for encrypting software, firmware
   and personalization data by utilizing the IETF SUIT manifest.  Key
   establishment is provided by hybrid public-key encryption (HPKE) and
   AES Key Wrap (AES-KW).  HPKE uses public key cryptography while AES-
   KW uses a pre-shared key-encryption key.  Encryption of the plaintext
   is accomplished with conventional symmetric key cryptography.

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-ietf-suit-firmware-encryption-09'/>
   
</reference>


<reference anchor='I-D.ietf-cose-hpke'>
   <front>
      <title>Use of Hybrid Public-Key Encryption (HPKE) with CBOR Object Signing and Encryption (COSE)</title>
      <author fullname='Hannes Tschofenig' initials='H.' surname='Tschofenig'>
         </author>
      <author fullname='Brendan Moran' initials='B.' surname='Moran'>
         <organization>Arm Limited</organization>
      </author>
      <date day='27' month='February' year='2023'/>
      <abstract>
	 <t>   This specification defines hybrid public-key encryption (HPKE) for
   use with CBOR Object Signing and Encryption (COSE).  HPKE offers a
   variant of public-key encryption of arbitrary-sized plaintexts for a
   recipient public key.

   HPKE works for any combination of an asymmetric key encapsulation
   mechanism (KEM), key derivation function (KDF), and authenticated
   encryption with additional data (AEAD) function.  Authentication for
   HPKE in COSE is provided by COSE-native security mechanisms.

   This document defines the use of the HPKE base mode with COSE.  Other
   modes are supported by HPKE but not by this specification.

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-ietf-cose-hpke-03'/>
   
</reference>


<reference anchor="COSE.Algorithm" target="https://www.iana.org/assignments/cose/cose.xhtml#algorithms">
  <front>
    <title>COSE Algorithms</title>
    <author >
      <organization>IANA</organization>
    </author>
    <date year="n.d."/>
  </front>
</reference>




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



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




    </references>

    <references title='Informative References'>




<reference anchor='I-D.ietf-rats-ar4si'>
   <front>
      <title>Attestation Results for Secure Interactions</title>
      <author fullname='Eric Voit' initials='E.' surname='Voit'>
         <organization>Cisco Systems</organization>
      </author>
      <author fullname='Henk Birkholz' initials='H.' surname='Birkholz'>
         <organization>Fraunhofer SIT</organization>
      </author>
      <author fullname='Thomas Hardjono' initials='T.' surname='Hardjono'>
         <organization>MIT</organization>
      </author>
      <author fullname='Thomas Fossati' initials='T.' surname='Fossati'>
         <organization>Arm Limited</organization>
      </author>
      <author fullname='Vincent Scarlata' initials='V.' surname='Scarlata'>
         <organization>Intel</organization>
      </author>
      <date day='2' month='March' year='2023'/>
      <abstract>
	 <t>   This document defines reusable Attestation Result information
   elements.  When these elements are offered to Relying Parties as
   Evidence, different aspects of Attester trustworthiness can be
   evaluated.  Additionally, where the Relying Party is interfacing with
   a heterogeneous mix of Attesting Environment and Verifier types,
   consistent policies can be applied to subsequent information exchange
   between each Attester and the Relying Party.

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


<reference anchor='I-D.ietf-teep-architecture'>
   <front>
      <title>Trusted Execution Environment Provisioning (TEEP) Architecture</title>
      <author fullname='Mingliang Pei' initials='M.' surname='Pei'>
         <organization>Broadcom</organization>
      </author>
      <author fullname='Hannes Tschofenig' initials='H.' surname='Tschofenig'>
         <organization>Arm Limited</organization>
      </author>
      <author fullname='Dave Thaler' initials='D.' surname='Thaler'>
         <organization>Microsoft</organization>
      </author>
      <author fullname='Dave Wheeler' initials='D. M.' surname='Wheeler'>
         <organization>Amazon</organization>
      </author>
      <date day='24' month='October' year='2022'/>
      <abstract>
	 <t>   A Trusted Execution Environment (TEE) is an environment that enforces
   that any code within that environment cannot be tampered with, and
   that any data used by such code cannot be read or tampered with by
   any code outside that environment.  This architecture document
   motivates the design and standardization of a protocol for managing
   the lifecycle of trusted applications running inside such a TEE.

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-ietf-teep-architecture-19'/>
   
</reference>


<reference anchor='I-D.ietf-rats-eat-media-type'>
   <front>
      <title>EAT Media Types</title>
      <author fullname='Laurence Lundblade' initials='L.' surname='Lundblade'>
         <organization>Security Theory LLC</organization>
      </author>
      <author fullname='Henk Birkholz' initials='H.' surname='Birkholz'>
         <organization>Fraunhofer Institute for Secure Information Technology</organization>
      </author>
      <author fullname='Thomas Fossati' initials='T.' surname='Fossati'>
         <organization>arm</organization>
      </author>
      <date day='10' month='March' year='2023'/>
      <abstract>
	 <t>   Payloads used in Remote Attestation Procedures may require an
   associated media type for their conveyance, for example when used in
   RESTful APIs.

   This memo defines media types to be used for Entity Attestation
   Tokens (EAT).

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


<reference anchor='I-D.ietf-rats-concise-ta-stores'>
   <front>
      <title>Concise TA Stores (CoTS)</title>
      <author fullname='Carl Wallace' initials='C.' surname='Wallace'>
         <organization>Red Hound Software</organization>
      </author>
      <author fullname='Russ Housley' initials='R.' surname='Housley'>
         <organization>Vigil Security, LLC</organization>
      </author>
      <author fullname='Thomas Fossati' initials='T.' surname='Fossati'>
         <organization>arm</organization>
      </author>
      <author fullname='Yogesh Deshpande' initials='Y.' surname='Deshpande'>
         <organization>arm</organization>
      </author>
      <date day='6' month='December' year='2022'/>
      <abstract>
	 <t>   Trust anchor (TA) stores may be used for several purposes in the
   Remote Attestation Procedures (RATS) architecture including verifying
   endorsements, reference values, digital letters of approval,
   attestations, or public key certificates.  This document describes a
   Concise Reference Integrity Manifest (CoRIM) extension that may be
   used to convey optionally constrained trust anchor stores containing
   optionally constrained trust anchors in support of these purposes.

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-ietf-rats-concise-ta-stores-00'/>
   
</reference>


<reference anchor='I-D.moran-suit-mti'>
   <front>
      <title>Mandatory-to-Implement Algorithms for Creators and Consumers of Software Update for the Internet of Things manifests</title>
      <author fullname='Brendan Moran' initials='B.' surname='Moran'>
         <organization>Arm Limited</organization>
      </author>
      <date day='24' month='October' year='2022'/>
      <abstract>
	 <t>   This document specifies algorithm profiles for SUIT manifest parsers
   and authors to ensure better interoperability.  These profiles apply
   specifically to a constrained node software update use case.

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



<reference anchor='RFC8610'>
<front>
<title>Concise Data Definition Language (CDDL): A Notational Convention to Express Concise Binary Object Representation (CBOR) and JSON Data Structures</title>
<author fullname='H. Birkholz' initials='H.' surname='Birkholz'><organization/></author>
<author fullname='C. Vigano' initials='C.' surname='Vigano'><organization/></author>
<author fullname='C. Bormann' initials='C.' surname='Bormann'><organization/></author>
<date month='June' year='2019'/>
<abstract><t>This document proposes a notational convention to express Concise Binary Object Representation (CBOR) data structures (RFC 7049).  Its main goal is to provide an easy and unambiguous way to express structures for protocol messages and data formats that use CBOR or JSON.</t></abstract>
</front>
<seriesInfo name='RFC' value='8610'/>
<seriesInfo name='DOI' value='10.17487/RFC8610'/>
</reference>



<reference anchor='RFC8915'>
<front>
<title>Network Time Security for the Network Time Protocol</title>
<author fullname='D. Franke' initials='D.' surname='Franke'><organization/></author>
<author fullname='D. Sibold' initials='D.' surname='Sibold'><organization/></author>
<author fullname='K. Teichel' initials='K.' surname='Teichel'><organization/></author>
<author fullname='M. Dansarie' initials='M.' surname='Dansarie'><organization/></author>
<author fullname='R. Sundblad' initials='R.' surname='Sundblad'><organization/></author>
<date month='September' year='2020'/>
<abstract><t>This memo specifies Network Time Security (NTS), a mechanism for using Transport Layer Security (TLS) and Authenticated Encryption with Associated Data (AEAD) to provide cryptographic security for the client-server mode of the Network Time Protocol (NTP). </t><t>NTS is structured as a suite of two loosely coupled sub-protocols. The first (NTS Key Establishment (NTS-KE)) handles initial authentication and key establishment over TLS. The second (NTS Extension Fields for NTPv4) handles encryption and authentication during NTP time synchronization via extension fields in the NTP packets, and holds all required state only on the client via opaque cookies.</t></abstract>
</front>
<seriesInfo name='RFC' value='8915'/>
<seriesInfo name='DOI' value='10.17487/RFC8915'/>
</reference>



<reference anchor='RFC5934'>
<front>
<title>Trust Anchor Management Protocol (TAMP)</title>
<author fullname='R. Housley' initials='R.' surname='Housley'><organization/></author>
<author fullname='S. Ashmore' initials='S.' surname='Ashmore'><organization/></author>
<author fullname='C. Wallace' initials='C.' surname='Wallace'><organization/></author>
<date month='August' year='2010'/>
<abstract><t>This document describes a transport independent protocol for the management of trust anchors (TAs) and community identifiers stored in a trust anchor store.  The protocol makes use of the Cryptographic Message Syntax (CMS), and a digital signature is used to provide integrity protection and data origin authentication.  The protocol can be used to manage trust anchor stores containing trust anchors represented as Certificate, TBSCertificate, or TrustAnchorInfo objects.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='5934'/>
<seriesInfo name='DOI' value='10.17487/RFC5934'/>
</reference>




    </references>


<section numbered="no" anchor="a-contributors"><name>A. Contributors</name>

<t>We would like to thank Brian Witten (Symantec), Tyler Kim (Solacia), Nick Cook (Arm), and  Minho Yoo (IoTrust) for their contributions
to the Open Trust Protocol (OTrP), which influenced the design of this specification.</t>

</section>
<section numbered="no" anchor="b-acknowledgements"><name>B. Acknowledgements</name>

<t>We would like to thank Eve Schooler for the suggestion of the protocol name.</t>

<t>We would like to thank Kohei Isobe (TRASIO/SECOM), Ken Takayama (SECOM)
Kuniyasu Suzaki (TRASIO/AIST), Tsukasa Oi (TRASIO), and Yuichi Takita (SECOM)
for their valuable implementation feedback.</t>

<t>We would also like to thank Carsten Bormann and Henk Birkholz for their help with the CDDL.</t>

</section>
<section numbered="no" anchor="c-complete-cddl"><name>C. Complete CDDL</name>

<t>Valid TEEP messages adhere to the following CDDL data definitions,
except that <spanx style="verb">SUIT_Envelope</spanx> and <spanx style="verb">SUIT_Component_Identifier</spanx> are
specified in <xref target="I-D.ietf-suit-manifest"/>.</t>

<t>This section is informative and merely summarizes the normative CDDL
snippets in the body of this document.</t>

<figure><sourcecode type="CDDL"><![CDATA[
teep-message = $teep-message-type .within teep-message-framework

teep-message-framework = [
  type: $teep-type / $teep-type-extension,
  options: { * teep-option },
  * any; further elements, e.g., for data-item-requested
]

teep-option = (uint => any)

; messages defined below:
$teep-message-type /= query-request
$teep-message-type /= query-response
$teep-message-type /= update
$teep-message-type /= teep-success
$teep-message-type /= teep-error

; message type numbers, uint .size 1 which takes a number from 0 to 23
$teep-type = uint .size 1
TEEP-TYPE-query-request = 1
TEEP-TYPE-query-response = 2
TEEP-TYPE-update = 3
TEEP-TYPE-teep-success = 5
TEEP-TYPE-teep-error = 6

version = uint .size 4
ext-info = uint .size 4

; data items as bitmaps
data-item-requested = &(
  attestation: 0,
  trusted-components: 1,
  extensions: 2,
  suit-reports: 3,
)

query-request = [
  type: TEEP-TYPE-query-request,
  options: {
    ? token => bstr .size (8..64),
    ? supported-freshness-mechanisms => [ + $freshness-mechanism ],
    ? challenge => bstr .size (8..512),
    ? versions => [ + version ],
    * $$query-request-extensions,
    * $$teep-option-extensions
  },
  supported-teep-cipher-suites: [ + $teep-cipher-suite ],
  supported-eat-suit-cipher-suites: [ + $eat-suit-cipher-suite ],
  data-item-requested: uint .bits data-item-requested
]

; teep-cipher-suites

$teep-cipher-suite /= teep-cipher-suite-sign1-eddsa
$teep-cipher-suite /= teep-cipher-suite-sign1-es256

;The following two cipher suites have only a single operation each.
;Other cipher suites may be defined to have multiple operations.
;MANDATORY for TAM to support them, and OPTIONAL
;to support any additional ones that use COSE_Sign_Tagged, or other
;signing, encryption, or MAC algorithms.

teep-operation-sign1-eddsa = [ cose-sign1, cose-alg-eddsa ]
teep-operation-sign1-es256 = [ cose-sign1, cose-alg-es256 ]

teep-cipher-suite-sign1-eddsa = [ teep-operation-sign1-eddsa ]
teep-cipher-suite-sign1-es256 = [ teep-operation-sign1-es256 ]

;MANDATORY for TAM and TEEP Agent to support the following COSE
;operations, and OPTIONAL to support additional ones such as
;COSE_Sign_Tagged, COSE_Encrypt0_Tagged, etc.

cose-sign1 = 18      ; CoAP Content-Format value

;MANDATORY for TAM to support the following, and OPTIONAL to implement
;any additional algorithms from the IANA COSE Algorithms registry.

cose-alg-es256 = -7  ; ECDSA w/ SHA-256
cose-alg-eddsa = -8  ; EdDSA

; eat-suit-cipher-suites

$eat-suit-cipher-suite /= eat-suit-cipher-suite-hpke-v1-base

eat-suit-cipher-suite-hpke-v1-base = [ teep-operation-hpke-v1-base ]

eat-suit-operation-hpke-v1-base = [ cose-encrypt0, HPKE-v1-BASE ]

cose-encrypt0 = 16 ; CoAP Content-Format value

HPKE-v1-BASE = -1  ; TBD

; freshness-mechanisms

FRESHNESS_NONCE = 0
FRESHNESS_TIMESTAMP = 1

$freshness-mechanism /= FRESHNESS_NONCE
$freshness-mechanism /= FRESHNESS_TIMESTAMP

query-response = [
  type: TEEP-TYPE-query-response,
  options: {
    ? token => bstr .size (8..64),
    ? selected-teep-cipher-suite => $teep-cipher-suite,
    ? selected-version => version,
    ? attestation-payload-format => text,
    ? attestation-payload => bstr,
    ? suit-reports => [ + bstr ],
    ? tc-list => [ + system-property-claims ],
    ? requested-tc-list => [ + requested-tc-info ],
    ? unneeded-manifest-list => [ + SUIT_Component_Identifier ],
    ? ext-list => [ + ext-info ],
    * $$query-response-extensions,
    * $$teep-option-extensions
  }
]

requested-tc-info = {
  component-id => SUIT_Component_Identifier,
  ? tc-manifest-sequence-number => uint .size 8,
  ? have-binary => bool
}

update = [
  type: TEEP-TYPE-update,
  options: {
    ? token => bstr .size (8..64),
    ? unneeded-manifest-list => [ + SUIT_Component_Identifier ],
    ? manifest-list => [ + bstr .cbor SUIT_Envelope ],
    ? attestation-payload-format => text,
    ? attestation-payload => bstr,
    * $$update-extensions,
    * $$teep-option-extensions
  }
]

teep-success = [
  type: TEEP-TYPE-teep-success,
  options: {
    ? token => bstr .size (8..64),
    ? msg => text .size (1..128),
    ? suit-reports => [ + SUIT_Report ],
    * $$teep-success-extensions,
    * $$teep-option-extensions
  }
]

teep-error = [
  type: TEEP-TYPE-teep-error,
  options: {
     ? token => bstr .size (8..64),
     ? err-msg => text .size (1..128),
     ? supported-teep-cipher-suites => [ + $teep-cipher-suite ],
     ? supported-freshness-mechanisms => [ + $freshness-mechanism ],
     ? versions => [ + version ],
     ? suit-reports => [ + SUIT_Report ],
     * $$teep-error-extensions,
     * $$teep-option-extensions
  },
  err-code: uint .size 1
]

; The err-code parameter, uint .size 1 which takes a number from 0 to 23
ERR_PERMANENT_ERROR = 1
ERR_UNSUPPORTED_EXTENSION = 2
ERR_UNSUPPORTED_FRESHNESS_MECHANISMS = 3
ERR_UNSUPPORTED_MSG_VERSION = 4
ERR_UNSUPPORTED_CIPHER_SUITES = 5
ERR_BAD_CERTIFICATE = 6
ERR_CERTIFICATE_EXPIRED = 9
ERR_TEMPORARY_ERROR = 10
ERR_MANIFEST_PROCESSING_FAILED = 17

; labels of mapkey for teep message parameters in
; uint .size 1 which takes a number from 0 to 23
supported-teep-cipher-suites = 1
challenge = 2
versions = 3
supported-eat-suit-cipher-suites = 4
selected-teep-cipher-suite = 5
selected-version = 6
attestation-payload = 7
tc-list = 8
ext-list = 9
manifest-list = 10
msg = 11
err-msg = 12
attestation-payload-format = 13
requested-tc-list = 14
unneeded-manifest-list = 15
component-id = 16
tc-manifest-sequence-number = 17
have-binary = 18
suit-reports = 19
token = 20
supported-freshness-mechanisms = 21
]]></sourcecode></figure>

</section>
<section numbered="no" anchor="d-examples-of-diagnostic-notation-and-binary-representation"><name>D. Examples of Diagnostic Notation and Binary Representation</name>

<t>This section includes some examples with the following assumptions:</t>

<t><list style="symbols">
  <t>The device will have two TCs with the following SUIT Component Identifiers:
  <list style="symbols">
      <t>[ 0x000102030405060708090a0b0c0d0e0f ]</t>
      <t>[ 0x100102030405060708090a0b0c0d0e0f ]</t>
    </list></t>
  <t>SUIT manifest-list is set empty only for example purposes (see Appendix E
for actual manifest examples)</t>
</list></t>

<section numbered="no" anchor="d1-queryrequest-message"><name>D.1. QueryRequest Message</name>

<section numbered="no" anchor="d11-cbor-diagnostic-notation"><name>D.1.1. CBOR Diagnostic Notation</name>

<figure><artwork><![CDATA[
/ query-request = /
[
  / type: / 1 / TEEP-TYPE-query-request /,
  / options: /
  {
    / token / 20 : h'A0A1A2A3A4A5A6A7A8A9AAABACADAEAF',
    / versions / 3 : [ 0 ]  / 0 is current TEEP Protocol /
  },
  / supported-teep-cipher-suites: / [ [ [ 18, -7 ] ], / Sign1 using ES256 /
                                      [ [ 18, -8 ] ]  / Sign1 using EdDSA /
                                    ],
  / data-item-requested: / 3 / attestation | trusted-components /
]
]]></artwork></figure>

</section>
<section numbered="no" anchor="d12-cbor-binary-representation"><name>D.1.2. CBOR Binary Representation</name>

<figure><artwork><![CDATA[
85                  # array(5)
   01               # unsigned(1) / TEEP-TYPE-query-request /
   A2               # map(2)
      14            # unsigned(20) / token: /
      50            # bytes(16)
         A0A1A2A3A4A5A6A7A8A9AAABACADAEAF
      03            # unsigned(3) / versions: /
      81            # array(1) / [ 0 ] /
         00         # unsigned(0)
   82               # array(2) / supported-teep-cipher-suites /
      81            # array(1)
         82         # array(2)
            12      # unsigned(18) / cose-sign1 /
            26      # negative(6) / -7 = cose-alg-es256 /
      81            # array(1)
         82         # array(2)
            12      # unsigned(18) / cose-sign1 /
            27      # negative(7) / -8 = cose-alg-eddsa /
   82               # array(2) / supported-suit-cose-profiles /
      82            # array(2) / suit-sha256-es256-hpke-a128gcm /
         26         # negative(6) / -7 = cose-alg-es256 /
         01         # unsigned(1) / 1 = A128GCM */
      82            # array(2) / suit-sha256-eddsa-hpke-a128gcm /
         27         # negative(7) / -8 = cose-alg-eddsa /
         01         # unsigned(1) / 1 = A128GCM */
   03               # unsigned(3) / attestation | trusted-components /
]]></artwork></figure>

</section>
</section>
<section numbered="no" anchor="d2-entity-attestation-token"><name>D.2. Entity Attestation Token</name>

<t>This is shown below in CBOR diagnostic form.  Only the payload signed by
COSE is shown.</t>

<section numbered="no" anchor="d21-cbor-diagnostic-notation"><name>D.2.1. CBOR Diagnostic Notation</name>

<figure><artwork><![CDATA[
/ eat-claim-set = /
{
    / cnf /          8: {
                         / kid / 3 : h'ba7816bf8f01cfea414140de5dae2223'
                                     h'b00361a396177a9cb410ff61f20015ad'
                        },
    / eat_nonce /   10: h'948f8860d13a463e8e',
    / ueid /       256: h'0198f50a4ff6c05861c8860d13a638ea',
    / oemid /      258: h'894823', / IEEE OUI format OEM ID /
    / hwmodel /    259: h'549dcecc8b987c737b44e40f7c635ce8'
                          / Hash of chip model name /,
    / hwversion /  260: ["1.3.4", 1], / Multipartnumeric  /
    / manifests /  273: [
                          [ 60, / application/cbor, TO BE REPLACED /
                                / with the format value for a /
                                / SUIT_Reference once one is allocated /
                            {   / SUIT_Reference /
                              / suit-report-manifest-uri / 1: "https://example.com/manifest.cbor",
                              / suit-report-manifest-digest / 0:[
                                / algorithm-id / -16 / "sha256" /,
                                / digest-bytes / h'a7fd6593eac32eb4be578278e6540c5c'
                                                 h'09cfd7d4d234973054833b2b93030609'
                                ]
                            }
                          ]
                        ]
}
]]></artwork></figure>

</section>
</section>
<section numbered="no" anchor="d3-queryresponse-message"><name>D.3. QueryResponse Message</name>

<section numbered="no" anchor="d31-cbor-diagnostic-notation"><name>D.3.1. CBOR Diagnostic Notation</name>

<figure><artwork><![CDATA[
/ query-response = /
[
  / type: / 2 / TEEP-TYPE-query-response /,
  / options: /
  {
    / token / 20 : h'A0A1A2A3A4A5A6A7A8A9AAABACADAEAF',
    / selected-teep-cipher-suite / 5 : [ [ 18, -7 ] ] / only use ES256 /,
    / selected-version / 6 : 0,
    / attestation-payload / 7 : h'' / empty only for example purpose /,
    / tc-list / 8 : [
      {
        / system-component-id / 0 : [ h'0102030405060708090A0B0C0D0E0F' ],
        / suit-parameter-image-digest / 3: << [
          / suit-digest-algorithm-id / -16 / SHA256 /,
          / suit-digest-bytes / h'a7fd6593eac32eb4be578278e6540c5c09cfd7d4d234973054833b2b93030609'
            / SHA256 digest of tc binary /
        ] >>
      },
      {
        / system-component-id / 0 : [ h'1102030405060708090A0B0C0D0E0F' ],
        / suit-parameter-version / 28 : [1, 0, 0] / ver 1.0.0 /
      }
    ]
  }
]
]]></artwork></figure>

</section>
<section numbered="no" anchor="d32-cbor-binary-representation"><name>D.3.2. CBOR Binary Representation</name>

<figure><artwork><![CDATA[
82                  # array(2)
   02               # unsigned(2) / TEEP-TYPE-query-response /
   A5               # map(5)
      14            # unsigned(20) / token: /
      50            # bytes(16)
         A0A1A2A3A4A5A6A7A8A9AAABACADAEAF
      05            # unsigned(5) / selected-teep-cipher-suite: /
      81            # array(1)
         82         # array(2)
            12      # unsigned(18) / cose-sign1 /
            26      # negative(6) / -7 = cose-alg-es256 /
      06            # unsigned(6) / selected-version: /
      00            # unsigned(0)
      07            # unsigned(7) / attestation-payload: /
      40            # bytes(0)
                    # ""
      08            # unsigned(8) / tc-list: /
      82            # array(2)
         A2         # map(2)
            00      # unsigned(0) / system-component-id: /
            81      # array(1)
               4F   # bytes(15)
                  0102030405060708090A0B0C0D0E0F
            03      # unsigned(3) / suit-parameter-image-digest: /
            58 24   # bytes(36)
               822F5820A7FD6593EAC32EB4BE578278E6540C5C09CFD7D4D234973054833B2B93030609
         A2         # map(2)
            00      # unsigned(0) / system-component-id: /
            81      # array(1)
               4F   # bytes(15)
                  1102030405060708090A0B0C0D0E0F
            18 1C   # unsigned(28) / suit-parameter-version: /
            83      # array(3)
               01   # unsigned(1)
               00   # unsigned(0)
               00   # unsigned(0)
]]></artwork></figure>

</section>
</section>
<section numbered="no" anchor="d4-update-message"><name>D.4. Update Message</name>

<section numbered="no" anchor="d41-cbor-diagnostic-notation"><name>D.4.1. CBOR Diagnostic Notation</name>

<figure><artwork><![CDATA[
/ update = /
[
  / type: / 3 / TEEP-TYPE-update /,
  / options: /
  {
    / token / 20 : h'A0A1A2A3A4A5A6A7A8A9AAABACADAEAF',
    / manifest-list / 10 : [
      <<
        / SUIT_Envelope / {
          / suit-authentication-wrapper / 2: << [
            << [
              / suit-digest-algorithm-id: / -16 / suit-cose-alg-sha256 /,
              / suit-digest-bytes: / h'DB601ADE73092B58532CA03FBB663DE49532435336F1558B49BB622726A2FEDD'
            ] >>,
            << / COSE_Sign1_Tagged / 18( [
              / protected: / << {
                / algorithm-id / 1: -7 / ES256 /
              } >>,
              / unprotected: / {},
              / payload: / null,
              / signature: / h'5B2D535A2B6D5E3C585C1074F414DA9E10BD285C99A33916DADE3ED38812504817AC48B62B8E984EC622785BD1C411888BE531B1B594507816B201F6F28579A4'
            ] ) >>
          ] >>,
          / suit-manifest / 3: << {
            / suit-manifest-version / 1: 1,
            / suit-manifest-sequence-number / 2: 3,
            / suit-common / 3: << {
              / suit-components / 2: [
                [
                  h'544545502D446576696365',           / "TEEP-Device" /
                  h'5365637572654653',                 / "SecureFS" /
                  h'8D82573A926D4754935332DC29997F74', / tc-uuid /
                  h'7461'                              / "ta" /
                ]
              ],
              / suit-common-sequence / 4: << [
                / suit-directive-override-parameters / 20, {
                  / suit-parameter-vendor-identifier / 1: h'C0DDD5F15243566087DB4F5B0AA26C2F',
                  / suit-parameter-class-identifier / 2: h'DB42F7093D8C55BAA8C5265FC5820F4E',
                  / suit-parameter-image-digest / 3: << [
                    / suit-digest-algorithm-id: / -16 / suit-cose-alg-sha256 /,
                    / suit-digest-bytes: / h'8CF71AC86AF31BE184EC7A05A411A8C3A14FD9B77A30D046397481469468ECE8'
                  ] >>,
                  / suit-parameter-image-size / 14: 20
                },
                / suit-condition-vendor-identifier / 1, 15,
                / suit-condition-class-identifier / 2, 15
              ] >>
            } >>,
            / suit-install / 9: << [
              / suit-directive-override-parameters / 20, {
                / suit-parameter-uri / 21: "https://example.org/8d82573a-926d-4754-9353-32dc29997f74.ta"
              },
              / suit-directive-fetch / 21, 15,
              / suit-condition-image-match / 3, 15
            ] >>
          } >>
        }
      >>
    ] / array of bstr wrapped SUIT_Envelope /
  }
]
]]></artwork></figure>

</section>
<section numbered="no" anchor="d42-cbor-binary-representation"><name>D.4.2. CBOR Binary Representation</name>

<figure><artwork><![CDATA[
82                  # array(2)
   03               # unsigned(3) / TEEP-TYPE-update /
   A2               # map(2)
      14            # unsigned(20) / token: /
      50            # bytes(16)
         A0A1A2A3A4A5A6A7A8A9AAABACADAEAF
      0A            # unsigned(10) / manifest-list: /
      81            # array(1)
         59 014E    # bytes(336)
            A2025873825824822F5820DB601ADE73092B58532CA03FBB663DE495
            32435336F1558B49BB622726A2FEDD584AD28443A10126A0F658405B2D53
            5A2B6D5E3C585C1074F414DA9E10BD285C99A33916DADE3ED38812504817
            AC48B62B8E984EC622785BD1C411888BE531B1B594507816B201F6F28579
            A40358D4A401010203035884A20281844B544545502D4465766963654853
            65637572654653508D82573A926D4754935332DC29997F74427461045854
            8614A40150C0DDD5F15243566087DB4F5B0AA26C2F0250DB42F7093D8C55
            BAA8C5265FC5820F4E035824822F58208CF71AC86AF31BE184EC7A05A411
            A8C3A14FD9B77A30D046397481469468ECE80E14010F020F0958458614A1
            15783B68747470733A2F2F6578616D706C652E6F72672F38643832353733
            612D393236642D343735342D393335332D3332646332393939376637342E
            7461150F030F
]]></artwork></figure>

</section>
</section>
<section numbered="no" anchor="d5-success-message"><name>D.5. Success Message</name>

<section numbered="no" anchor="d51-cbor-diagnostic-notation"><name>D.5.1. CBOR Diagnostic Notation</name>

<figure><artwork><![CDATA[
/ teep-success = /
[
  / type: / 5 / TEEP-TYPE-teep-success /,
  / options: /
  {
    / token / 20 : h'A0A1A2A3A4A5A6A7A8A9AAABACADAEAF'
  }
]
]]></artwork></figure>

</section>
<section numbered="no" anchor="d52-cbor-binary-representation"><name>D.5.2. CBOR Binary Representation</name>

<figure><artwork><![CDATA[
82                  # array(2)
   05               # unsigned(5) / TEEP-TYPE-teep-success /
   A1               # map(1)
      14            # unsigned(20) / token: /
      50            # bytes(16)
         A0A1A2A3A4A5A6A7A8A9AAABACADAEAF
]]></artwork></figure>

</section>
</section>
<section numbered="no" anchor="d6-error-message"><name>D.6. Error Message</name>

<section numbered="no" anchor="d61-cbor-diagnostic-notation"><name>D.6.1. CBOR Diagnostic Notation</name>

<figure><artwork><![CDATA[
/ teep-error = /
[
  / type: / 6 / TEEP-TYPE-teep-error /,
  / options: /
  {
    / token / 20 : h'A0A1A2A3A4A5A6A7A8A9AAABACADAEAF',
    / err-msg / 12 : "disk-full"
  },
  / err-code: / 17 / ERR_MANIFEST_PROCESSING_FAILED /
]
]]></artwork></figure>

</section>
<section numbered="no" anchor="d62-cbor-binary-representation"><name>D.6.2. CBOR binary Representation</name>

<figure><artwork><![CDATA[
83                  # array(3)
   06               # unsigned(6) / TEEP-TYPE-teep-error /
   A2               # map(2)
      14            # unsigned(20) / token: /
      50            # bytes(16)
         A0A1A2A3A4A5A6A7A8A9AAABACADAEAF
      0C            # unsigned(12) / err-msg: /
      69            # text(9)
         6469736B2D66756C6C # "disk-full"
   11               # unsigned(17) / ERR_MANIFEST_PROCESSING_FAILED /
]]></artwork></figure>

</section>
</section>
</section>
<section numbered="no" anchor="suit-examples"><name>E. Examples of SUIT Manifests</name>

<t>This section shows some examples of SUIT manifests described in <xref target="update-msg-def"/>.</t>

<t>The examples are signed using the following ECDSA secp256r1 key with SHA256 as the digest function.</t>

<t>COSE_Sign1 Cryptographic Key:</t>

<figure><artwork><![CDATA[
-----BEGIN PRIVATE KEY-----
MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgApZYjZCUGLM50VBC
CjYStX+09jGmnyJPrpDLTz/hiXOhRANCAASEloEarguqq9JhVxie7NomvqqL8Rtv
P+bitWWchdvArTsfKktsCYExwKNtrNHXi9OB3N+wnAUtszmR23M4tKiW
-----END PRIVATE KEY-----
]]></artwork></figure>

<t>The corresponding public key can be used to verify these examples:</t>

<figure><artwork><![CDATA[
-----BEGIN PUBLIC KEY-----
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEhJaBGq4LqqvSYVcYnuzaJr6qi/Eb
bz/m4rVlnIXbwK07HypLbAmBMcCjbazR14vTgdzfsJwFLbM5kdtzOLSolg==
-----END PUBLIC KEY-----
]]></artwork></figure>

<section numbered="no" anchor="suit-uri"><name>Example 1: SUIT Manifest pointing to URI of the Trusted Component Binary</name>

<section numbered="no" anchor="cbor-diagnostic-notation-of-suit-manifest"><name>CBOR Diagnostic Notation of SUIT Manifest</name>

<figure><artwork><![CDATA[
/ SUIT_Envelope / {
  / authentication-wrapper / 2: << [
    << [
      / digest-algorithm-id: / -16 / cose-alg-sha256 /,
      / digest-bytes: / h'B892B75B262B728EC2C16C2774A730DC804BC87252DAFC57A0098284C3E73587'
    ] >>,
    << / COSE_Sign1_Tagged / 18([
      / protected: / << {
        / algorithm-id / 1: -7 / ES256 /
      } >>,
      / unprotected: / {},
      / payload: / null,
      / signature: / h'B888EE88553CF894A4921F5FF8B3289C354AFAC504E2526D0DB0EE576069D9599BDF68C7EE6E41B8C1BE78524F082FF62E760F3814F57B18BDB96249CBD8B3E1'
    ]) >>
  ] >>,
  / manifest / 3: << {
    / manifest-version / 1: 1,
    / manifest-sequence-number / 2: 3,
    / common / 3: << {
      / components / 2: [
        [
          h'544545502D446576696365',           / "TEEP-Device" /
          h'5365637572654653',                 / "SecureFS" /
          h'8D82573A926D4754935332DC29997F74', / tc-uuid /
          h'7461'                              / "ta" /
        ]
      ],
      / shared-sequence / 4: << [
        / directive-override-parameters / 20, {
          / parameter-vendor-identifier / 1: h'C0DDD5F15243566087DB4F5B0AA26C2F',
          / parameter-class-identifier / 2: h'DB42F7093D8C55BAA8C5265FC5820F4E',
          / parameter-image-digest / 3: << [
            / digest-algorithm-id: / -16 / cose-alg-sha256 /,
            / digest-bytes: / h'8CF71AC86AF31BE184EC7A05A411A8C3A14FD9B77A30D046397481469468ECE8'
          ] >>,
          / parameter-image-size / 14: 20
        },
        / condition-vendor-identifier / 1, 15,
        / condition-class-identifier / 2, 15
      ] >>
    } >>,
    / manifest-component-id / 5: [
      h'544545502D446576696365',              / "TEEP-Device" /
      h'5365637572654653',                    / "SecureFS" /
      h'8D82573A926D4754935332DC29997F74',    / tc-uuid /
      h'73756974'                             / "suit" /
    ],
    / install / 17: << [
      / directive-override-parameters / 20, {
        / parameter-uri / 21: "https://example.org/8d82573a-926d-4754-9353-32dc29997f74.ta"
      },
      / directive-fetch / 21, 15,
      / condition-image-match / 3, 15
    ] >>
  } >>
}
]]></artwork></figure>

</section>
<section numbered="no" anchor="cbor-binary-in-hex"><name>CBOR Binary in Hex</name>

<figure><artwork><![CDATA[
A2025873825824822F5820B892B75B262B728EC2C16C2774A730DC804BC8
7252DAFC57A0098284C3E73587584AD28443A10126A0F65840B888EE8855
3CF894A4921F5FF8B3289C354AFAC504E2526D0DB0EE576069D9599BDF68
C7EE6E41B8C1BE78524F082FF62E760F3814F57B18BDB96249CBD8B3E103
590101A501010203035884A20281844B544545502D446576696365485365
637572654653508D82573A926D4754935332DC29997F7442746104585486
14A40150C0DDD5F15243566087DB4F5B0AA26C2F0250DB42F7093D8C55BA
A8C5265FC5820F4E035824822F58208CF71AC86AF31BE184EC7A05A411A8
C3A14FD9B77A30D046397481469468ECE80E14010F020F05844B54454550
2D446576696365485365637572654653508D82573A926D4754935332DC29
997F7444737569741158458614A115783B68747470733A2F2F6578616D70
6C652E6F72672F38643832353733612D393236642D343735342D39333533
2D3332646332393939376637342E7461150F030F
]]></artwork></figure>

</section>
</section>
<section numbered="no" anchor="suit-integrated"><name>Example 2: SUIT Manifest including the Trusted Component Binary</name>

<section numbered="no" anchor="cbor-diagnostic-notation-of-suit-manifest-1"><name>CBOR Diagnostic Notation of SUIT Manifest</name>

<figure><artwork><![CDATA[
/ SUIT_Envelope / {
  / authentication-wrapper / 2: << [
    << [
      / digest-algorithm-id: / -16 / cose-alg-sha256 /,
      / digest-bytes: / h'C20DE9B1378EC787D9A9F7C3B0F196E4C51FB519E3FFD45A6B985CE3E9222993'
    ] >>,
    << / COSE_Sign1_Tagged / 18([
      / protected: / << {
        / algorithm-id / 1: -7 / ES256 /
      } >>,
      / unprotected: / {},
      / payload: / null,
      / signature: / h'3A95608085653743E582395417CC381DCD77370D353D938A71B72411289EF406D5A7783AB6DE6901FAD0D4EF85B777A3C3F46C5631D24EADE7A4AD2E76D2AF4A'
    ]) >>
  ] >>,
  / manifest / 3: << {
    / manifest-version / 1: 1,
    / manifest-sequence-number / 2: 3,
    / common / 3: << {
      / components / 2: [
        [
          h'544545502D446576696365',            / "TEEP-Device" /
          h'5365637572654653',                  / "SecureFS" /
          h'8D82573A926D4754935332DC29997F74',  / tc-uuid /
          h'7461'                               / "ta" /
        ]
      ],
      / shared-sequence / 4: << [
        / directive-override-parameters / 20, {
          / vendor-id / 1: h'C0DDD5F15243566087DB4F5B0AA26C2F' / c0ddd5f1-5243-5660-87db-4f5b0aa26c2f /,
          / class-id / 2: h'DB42F7093D8C55BAA8C5265FC5820F4E' / db42f709-3d8c-55ba-a8c5-265fc5820f4e /,
          / image-digest / 3: << [
            / algorithm-id: / -16 / SHA-256 /,
            / digest-bytes: / h'8CF71AC86AF31BE184EC7A05A411A8C3A14FD9B77A30D046397481469468ECE8'
          ] >>,
          / image-size / 14: 20
        },
        / condition-vendor-identifier / 1, 15,
        / condition-class-identifier / 2, 15
      ] >>
    } >>,
    / manifest-component-id / 5: [
      h'544545502D446576696365',              / "TEEP-Device" /
      h'5365637572654653',                    / "SecureFS" /
      h'8D82573A926D4754935332DC29997F74',    / tc-uuid /
      h'73756974'                             / "suit" /
    ],
    / install / 17: << [
      / directive-override-parameters / 20, {
        / uri / 21: "#tc"
      },
      / directive-fetch / 21, 15,
      / condition-image-match / 3, 15
    ] >>
  } >>,
  "#tc" : h'48656C6C6F2C2053656375726520576F726C6421' / "Hello, Secure World!" /
}
]]></artwork></figure>

</section>
<section numbered="no" anchor="cbor-binary-in-hex-1"><name>CBOR Binary in Hex</name>

<figure><artwork><![CDATA[
A3025873825824822F5820C20DE9B1378EC787D9A9F7C3B0F196E4C51FB5
19E3FFD45A6B985CE3E9222993584AD28443A10126A0F658403A95608085
653743E582395417CC381DCD77370D353D938A71B72411289EF406D5A778
3AB6DE6901FAD0D4EF85B777A3C3F46C5631D24EADE7A4AD2E76D2AF4A03
58C7A501010203035884A20281844B544545502D44657669636548536563
7572654653508D82573A926D4754935332DC29997F744274610458548614
A40150C0DDD5F15243566087DB4F5B0AA26C2F0250DB42F7093D8C55BAA8
C5265FC5820F4E035824822F58208CF71AC86AF31BE184EC7A05A411A8C3
A14FD9B77A30D046397481469468ECE80E14010F020F05844B544545502D
446576696365485365637572654653508D82573A926D4754935332DC2999
7F744473756974114C8614A11563237463150F030F632374635448656C6C
6F2C2053656375726520576F726C6421
]]></artwork></figure>

</section>
</section>
<section numbered="no" anchor="suit-personalization"><name>Example 3: Supplying Personalization Data for Trusted Component Binary</name>

<section numbered="no" anchor="cbor-diagnostic-notation-of-suit-manifest-2"><name>CBOR Diagnostic Notation of SUIT Manifest</name>

<figure><artwork><![CDATA[
/ SUIT_Envelope / {
  / authentication-wrapper / 2: << [
    << [
      / digest-algorithm-id: / -16 / cose-alg-sha256 /,
      / digest-bytes: / h'99D1AD5D2C44320B247BB37B8CDB418CADA53590DF4EF928E30240F5717088FA'
    ] >>,
    << / COSE_Sign1_Tagged / 18([
      / protected: / << {
        / algorithm-id / 1: -7 / ES256 /
      } >>,
      / unprotected: / {},
      / payload: / null,
      / signature: / h'447D94B8249CB15AA544EF2315BCBBC8DC1F8A790DC863D6CC83F799DF3576AFAEDC2E63512E5C0699F62B20A555CF4176E1D7018FE748D9BFEF47A4E1C8889E'
    ]) >>
  ] >>,
  / manifest / 3: << {
    / manifest-version / 1: 1,
    / manifest-sequence-number / 2: 3,
    / common / 3: << {
      / dependencies / 1: {
        / component-index / 1: {
          / dependency-prefix / 1: [
            h'544545502D446576696365',           / "TEEP-Device" /
            h'5365637572654653',                 / "SecureFS" /
            h'8D82573A926D4754935332DC29997F74', / tc-uuid /
            h'73756974'                          / "suit" /
          ]
        }
      },
      / components / 2: [
        [
          h'544545502D446576696365',  / "TEEP-Device" /
          h'5365637572654653',        / "SecureFS" /
          h'636F6E6669672E6A736F6E'   / "config.json" /
        ]
      ],
      / shared-sequence / 4: << [
        / directive-set-component-index / 12, 0,
        / directive-override-parameters / 20, {
          / vendor-id / 1: h'C0DDD5F15243566087DB4F5B0AA26C2F' / c0ddd5f1-5243-5660-87db-4f5b0aa26c2f /,
          / class-id / 2: h'DB42F7093D8C55BAA8C5265FC5820F4E' / db42f709-3d8c-55ba-a8c5-265fc5820f4e /,
          / image-digest / 3: << [
            / algorithm-id: / -16 / SHA-256 /,
            / digest-bytes: / h'AAABCCCDEEEF00012223444566678889ABBBCDDDEFFF01112333455567778999'
          ] >>,
          / image-size / 14: 64
        },
        / condition-vendor-identifier / 1, 15,
        / condition-class-identifier / 2, 15
      ] >>
    } >>,
    / manifest-component-id / 5: [
      h'544545502D446576696365',  / "TEEP-Device" /
      h'5365637572654653',        / "SecureFS" /
      h'636F6E6669672E73756974'   / "config.suit" /
    ],
    / validate / 7: << [
      / directive-set-component-index / 12, 0,
      / condition-image-match / 3, 15
    ] >>,
    / dependency-resolution / 15: << [
      / directive-set-component-index / 12, 1,
      / directive-override-parameters / 20, {
        / uri / 21: "https://example.org/8d82573a-926d-4754-9353-32dc29997f74.suit"
      },
      / directive-fetch / 21, 2,
      / condition-image-match / 3, 15
    ] >>,
    / install / 17: << [
      / directive-set-component-index / 12, 1,
      / directive-process-dependency / 11, 0,
      / directive-set-component-index / 12, 0,
      / directive-override-parameters / 20, {
        / uri / 21: "https://example.org/config.json"
      },
      / directive-fetch / 21, 2,
      / condition-image-match / 3, 15
    ] >>
  } >>
}
]]></artwork></figure>

</section>
<section numbered="no" anchor="cbor-binary-in-hex-2"><name>CBOR Binary in Hex</name>

<figure><artwork><![CDATA[
A2025873825824822F582099D1AD5D2C44320B247BB37B8CDB418CADA535
90DF4EF928E30240F5717088FA584AD28443A10126A0F65840447D94B824
9CB15AA544EF2315BCBBC8DC1F8A790DC863D6CC83F799DF3576AFAEDC2E
63512E5C0699F62B20A555CF4176E1D7018FE748D9BFEF47A4E1C8889E03
590160A7010102030358B0A301A101A101844B544545502D446576696365
485365637572654653508D82573A926D4754935332DC29997F7444737569
740281834B544545502D4465766963654853656375726546534B636F6E66
69672E6A736F6E045857880C0014A40150C0DDD5F15243566087DB4F5B0A
A26C2F0250DB42F7093D8C55BAA8C5265FC5820F4E035824822F5820AAAB
CCCDEEEF00012223444566678889ABBBCDDDEFFF01112333455567778999
0E1840010F020F05834B544545502D446576696365485365637572654653
4B636F6E6669672E737569740745840C00030F0F5849880C0114A115783D
68747470733A2F2F6578616D706C652E6F72672F38643832353733612D39
3236642D343735342D393335332D3332646332393939376637342E737569
741502030F11582F8C0C010B000C0014A115781F68747470733A2F2F6578
616D706C652E6F72672F636F6E6669672E6A736F6E1502030F
]]></artwork></figure>

</section>
</section>
<section numbered="no" anchor="suit-unlink"><name>E.4. Example 4: Unlink a Trusted Component</name>

<section numbered="no" anchor="cbor-diagnostic-notation-of-suit-manifest-3"><name>CBOR Diagnostic Notation of SUIT Manifest</name>

<figure><artwork><![CDATA[
/ SUIT_Envelope / {
  / authentication-wrapper / 2: << [
    << [
      / digest-algorithm-id: / -16 / cose-alg-sha256 /,
      / digest-bytes: / h'F9D837B7118A8972360022D51AC5319023D245A76F7504079B9ED01C0B4934F2'
    ] >>,
    << / COSE_Sign1_Tagged / 18([
      / protected: / << {
        / algorithm-id / 1: -7 / ES256 /
      } >>,
      / unprotected: / {},
      / payload: / null,
      / signature: / h'332BE0CC2D109F23ADF1D220CECA17EA38047814A6CE0389AC370A32AB2008B44C67789CEFEEEC9208FEBC55EA60AC2E88365498D70689C190BBDAD2E60072B9'
    ]) >>
  ] >>,
  / manifest / 3: << {
    / manifest-version / 1: 1,
    / manifest-sequence-number / 2: 18446744073709551615 / UINT64_MAX /,
    / common / 3: << {
      / components / 2: [
        [
          h'544545502D446576696365',            / "TEEP-Device" /
          h'5365637572654653',                  / "SecureFS" /
          h'8D82573A926D4754935332DC29997F74',  / tc-uuid /
          h'7461'                               / "ta" /
        ]
      ],
      / common-sequence / 4: << [
        / directive-override-parameters / 20, {
          / vendor-id / 1: h'C0DDD5F15243566087DB4F5B0AA26C2F' / c0ddd5f1-5243-5660-87db-4f5b0aa26c2f /,
          / class-id / 2: h'DB42F7093D8C55BAA8C5265FC5820F4E' / db42f709-3d8c-55ba-a8c5-265fc5820f4e /
        },
        / condition-vendor-identifier / 1, 15,
        / condition-class-identifier / 2, 15
      ] >>
    } >>,
    / manifest-component-id / 5: [
      h'544545502D446576696365',              / "TEEP-Device" /
      h'5365637572654653',                    / "SecureFS" /
      h'8D82573A926D4754935332DC29997F74',    / tc-uuid /
      h'73756974'                             / "suit" /
    ],
    / install / 17: << [
      / directive-set-component-index / 12, 0,
      / directive-unlink / 33, 0
    ] >>
  } >>
}
]]></artwork></figure>

</section>
<section numbered="no" anchor="cbor-binary-in-hex-3"><name>CBOR Binary in Hex</name>

<figure><artwork><![CDATA[
A2025873825824822F5820F9D837B7118A8972360022D51AC5319023D245
A76F7504079B9ED01C0B4934F2584AD28443A10126A0F65840332BE0CC2D
109F23ADF1D220CECA17EA38047814A6CE0389AC370A32AB2008B44C6778
9CEFEEEC9208FEBC55EA60AC2E88365498D70689C190BBDAD2E60072B903
58A0A50101021BFFFFFFFFFFFFFFFF03585BA20281844B544545502D4465
76696365485365637572654653508D82573A926D4754935332DC29997F74
42746104582B8614A20150C0DDD5F15243566087DB4F5B0AA26C2F0250DB
42F7093D8C55BAA8C5265FC5820F4E010F020F05844B544545502D446576
696365485365637572654653508D82573A926D4754935332DC29997F7444
737569741146840C00182100
]]></artwork></figure>

</section>
</section>
</section>
<section numbered="no" anchor="suit-reports"><name>F. Examples of SUIT Reports</name>

<t>This section shows some examples of SUIT reports.</t>

<section numbered="no" anchor="f1-example-1-success"><name>F.1. Example 1: Success</name>

<t>SUIT Reports have no records if no conditions have failed.
The URI in this example is the reference URI provided in the SUIT manifest.</t>

<figure><artwork><![CDATA[
{
  / suit-report-manifest-digest / 1:<<[
    / algorithm-id / -16 / "sha256" /,
    / digest-bytes / h'a7fd6593eac32eb4be578278e6540c5c'
                     h'09cfd7d4d234973054833b2b93030609'
  ]>>,
  / suit-report-manifest-uri / 2: "tam.teep.example/personalisation.suit",
  / suit-report-records / 4: []
}
]]></artwork></figure>

</section>
<section numbered="no" anchor="f2-example-2-faiure"><name>F.2. Example 2: Faiure</name>

<figure><artwork><![CDATA[
{
  / suit-report-manifest-digest / 1:<<[
    / algorithm-id / -16 / "sha256" /,
    / digest-bytes / h'a7fd6593eac32eb4be578278e6540c5c09cfd7d4d234973054833b2b93030609'
  ]>>,
  / suit-report-manifest-uri / 2: "tam.teep.example/personalisation.suit",
  / suit-report-records / 4: [
    {
      / suit-record-manifest-id / 1:[],
      / suit-record-manifest-section / 2: 7 / dependency-resolution /,
      / suit-record-section-offset / 3: 66,
      / suit-record-dependency-index / 5: 0,
      / suit-record-failure-reason / 6: 404
    }
  ]
}
]]></artwork></figure>

<t>where the dependency-resolution refers to:</t>

<figure><artwork><![CDATA[
{
  authentication-wrapper,
  / manifest / 3:<<{
    / manifest-version / 1:1,
    / manifest-sequence-number / 2:3,
    common,
    dependency-resolution,
    install,
    validate,
    run,
    text
  }>>,
}
]]></artwork></figure>

<t>and the suit-record-section-offset refers to:</t>

<figure><artwork><![CDATA[
<<[
  / directive-set-dependency-index / 13,0 ,
  / directive-set-parameters / 19,{
    / uri / 21:'tam.teep.example/'
               'edd94cd8-9d9c-4cc8-9216-b3ad5a2d5b8a.suit',
    } ,
  / directive-fetch / 21,2 ,
  / condition-image-match / 3,15
]>>,
]]></artwork></figure>

</section>
</section>


  </back>

<!-- ##markdown-source:
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
gHDqnnCj3v+Sam+Az+cgYchm97qVSru5X1Jj7gnMgYf/5n3h5Ya7vdeTmECr
7Mtatbp5m24WJvOqg1JT/db7zW+cnRlaEFtDrGtrDcDvPwlgizNsDnlD2Yz+
96lHUzqq+3julzJFDsYcCr6dUxfeQnL0a9GCX4sW/Fq04NeiBT9r0QIkM/m0
jUhNPmUDypH7BQf539So7BI+f/+oPOxyvn/vzFMwSF8SuafVEmX44PeDPgDx
vYaYGoDH3r7vxJ05AHA1BNzZYMRg+2WHmRvJQUtWG0UHCfR7guxQ3J4THszy
n+yDWlD7gxIF9JgN9chhdAJsf9NQtXJLzrHaOIr0QVszUozqYinfxncx8mjx
AN2VpTu8GZ/tfylPOl+QvGkeKiheKE8WKpDWDLq5qDyjhdo8IYrP+MFSlMgj
2Y28ZAxx2nPCOgrXTa/7r40NOuFxSxjvyhN2k048ywgjX0mT1wpCLnLzt09A
6qcfUO6D/Eay5TqWA+u5z4rxeMAMi8cefkrlyoW2PeYJMMcOtbJFNaJWqdTq
3f2N95cAKdm579N7k1U9afdKqSzeO43I3flWW8frLB16N+7fUdRyejgrNa1I
q/lcqt4WKtwDzsocBdffzxzVVsqeaot7mLJGiEaF6ozunKudTQ+3e2BGydvx
CUiE49dwfU9O3pwwO0+nmoz/ejZ+fQpiIFs2tspEIWtHeuTx6Zff/WV8IlM1
swOcygdsFcEhgz58NT45O5ocDftnYzaK4BfWh7DKt0cn4xF82eMvz8bHMG3/
5Fuztyp/A1s+moCQ8d3bkzdDWPjR6y+/m/SPvqanax0G84JbwGOko3+NCRpk
uoWj02Ynq4sI5gP/7sEnsPkG4FFYdggEvUFVz3k8X/plGG+SaRDAWdEFoZtL
jz0AjZYMvC6bn+SvHrbAddgEgZsIgVeDrWiy4NXqufNr1uDVGilOrSZsYgxK
Pjfzai0qMm9xcZCOab3FjJoO22HMoEhxKra57l6thx4ZonxevXpv6hcMqtnZ
waOKN+bANsKmUehfLKM4Cafe60gcDKhpibf+JJDAE3FL59r+XVO6qiRFLvdA
vUq7Foya6sfx+upa+TB3d8pESySCh2LOuNvvbeSdDXNnoCgIE2FgpIWY3Itl
7//8zav+UK1Wa9V6tVFtVlvVdrVT7VZ7Vb96Xp1WZ9WgOvf+z3trdG2b0WU3
XJwPnYCQcI1sNuDYoZOqLDEnCPevKRLqB2+s8jb8KXUCN6G7Arl9CUcYVWoV
N2VR99nJPZTn8gw8NRwAvck56IInGVcOvLSd9GB3hxj1gbDqAyArB0UmU++g
xGM13z7Av4V5HwjvPsBW7Yfe5Yt+tV/r1/uNfrPf6rf7nX633+v3+4P+sD/q
j/uTFyX1oCY6B17DQ2th1XuPn1epmInEzJGVRDspDwwzO7jHdnkAE+I/tW4J
1f/3wEvhMy58xBGg41M0DhwIA733R0/Wxcm89GRoMth2sveyg1z7J0LjwAme
+ynHVo6vem9RA8GRuuDIQy69mqPbyq70ueevVv7dXmufdlatZb5fLzmRYq+2
vwmH6PF+PfM48MC9+r4CW61ZMHm9uq9Q7dBAuVV1h5/fAdD2au196xjuw0c1
tNooeHVj38JV6+XdmvsAA4qgwKhsI0O1mjd1lRfazYKFJ6vv34Pm96/GWoP1
GvMCF2Fr9cwaa11chGUTTOF4va0eWQYX5FDda+MTcOdepg2yv4DVdjKr7dBq
u85qyRp48KDDyZT6sA+nvmGCTSVEnOUrSD8U2J5zb9M3Fo28fXjbl8Nj77cP
XnGmfIm74k7eiu8B+GNW7F5eL3t/tyGnhpYCKQVCOgYRBPi/nX97xh3ti2Un
lBwuo9ullNsJl0yOZ4ZlozBKTbMXHDurhGCdmrm7Q7ZtNVPFkPf6E0QAlOTJ
LldGyYZEAM3Bp8s5/Fv/dI1mnvdz4H0AIZh59uWLc7/TrbXP5915tTadB36z
Bv9UZ0Fr5gf1er3xYkv2CjNVq412zW/02rVOx+9Nz5u16nzers3rIMe1/NmG
mT5pmQK2+R3X58AN1aq4xF6zO+9229VZreE3242gGxgZZB3QXvgHMBrHV2u9
7rxV9Zvw9mm11W3XpurxdqMb+ObpKLgyj9dbXXy6C6+DbaOwcTQej703745U
4ueb8TE22z5Qj1/eUk0YnqDe6uHjrWZvNg2m0+55r9uZdhqd82YzaFbnnWm7
0ZoG3Y3wPPBeSQfv6WV47fHsGCclMhy/VOljB0hSAEJ/e1arNCrNZyWvRjLS
MbkZ/VUC2BSsAMXMik1FWHy40zhkg0/Rz9+8dhVnTAdplryzN95g7J2M337d
H45H28hNB7baYFwRUlNtqwnEsiLFebi3FaajUx4phSLDBbxnpo95M9379gPb
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
IFlKxZmatAkYR8aKzaH+eZGZbY2i5w9H0bQQ4mXsjK77wEWjdg6KClh/+bLK
sODVNfJwyflZL2/33AcwUWivZ78aKG+v0wDmO2q3Oy2g60N0W7gn79U2xbmS
2+R+HDCB+mM3UJ8Czo91JM3H5yRkqyjxT9uE5mNkWDouX81sYnRSzQElyQ0A
Vp4Fc6vtr56C2rZxHJqpk2+C9Dl/GtZwDQrrqkbdRSgoR3y70qNSFOX5ejnV
9aGsrrNun5WvgjurP1UZfwbjL49ee29Pjv6COTlfjb+lT3d3jo++fNW/GPeP
B8dfDu6+//L0uNmDv78cDuX32/GrwZfVW//2aND/858v+tf//e3f/3v47suv
j1vVvwyGsIq/f3ua/PWLau/vX14t7/70dnU9+vrsx4PL8K9vLk/6r4f9/ul4
EY391cX6++97f7r8yw9h0HkdXd18//3X3ZPkZnfn7RfnYfLNN9PL2U1/dRbP
v/qQxMNvxz/cfvU6Wb1+9dew92bQeP3F7bL/Lol/vDqpN46byVfhN7K18etR
zsYUpuBZmF5lCPFr08ZF2lyoQqbSqZbL+6oDLIDku8HXR0MbkJMPt+Pbb199
Ff330Y9/rw77f/72SH4f9f88HQHoxpd/8gdfft/8+vvvb06//cv02+X6R/9P
q/b34cH4fHfn/MeDq+bqL4vl0V/Pb7+qdl7dXX993r8aHE+Hfz/3fzypNW/O
LmY/zuM/3U6+Pj9ufZglP775+jRaXLx8aYMivTIFCW7iKtEYoBc7V8a7jsIl
FwePvHcnR7rFQ1GhSrlhoGYXXS4k0kU8LXNl72FyuS6GA287r4JtbdBxVPlW
pGIDkhuAxdaiQRf0qg4oQKCgdOogGdeHNRDWO51mH3Su0bBbbQ6G3U69VR/1
QS4Hebva64IKNWyATgb62gulsGujySb3gLWHDV6Bbb0BjqVmk/W/2OqfsfYP
QCMbj7vdVqsxnHR7oNr06rVJazLpDhr1bm/YaDX7k/4Q9LwxwKQ9Ao2mOh6D
plVt90a9Vq83GE3a3WFnPG6Pm7VBdwiaCqh79eak2q1PJu36GIaCogDaSasz
qHUHo0GvXW/2hoMRvGFcU/BURn4NWKOBpw3plm6ea8K3vt9otUfUyTfUH3gb
bPOOFezptvgn2uCfYnt/pM1d29rf22h1CUxzttGsfuA92FB44H1247k95eex
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
/hrBZHGP/ILa4pC8DQkMAOyuCsakwgEA

-->

</rfc>

