<?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 3.0.2) -->


<!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-14" 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>ALAXALA Networks Corp.</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><sourcecode type="cddl-teep-message"><![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, in one byte which could take a number from 0 to 23
$teep-type = (0..23)
TEEP-TYPE-query-request = 1
TEEP-TYPE-query-response = 2
TEEP-TYPE-update = 3
TEEP-TYPE-teep-success = 5
TEEP-TYPE-teep-error = 6
]]></sourcecode></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 Section 4 of <xref 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 sending the data-item-requested parameter. Currently,
the following features are supported:</t>

<t><list style="symbols">
  <t>Request for attestation information of the TEEP Agent,</t>
  <t>Listing supported extensions,</t>
  <t>Querying installed Trusted Components, and</t>
  <t>Request for logging information in SUIT Reports.</t>
</list></t>

<t>If the TAM received an Error message with ERR_ATTESTATION_REQUIRED, it indicates that the TEEP Agent is requesting attestation information of the TAM in the attestation-payload and/or suit-report.</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><sourcecode type="cddl-query-request"><![CDATA[
query-request = [
  type: TEEP-TYPE-query-request,
  options: {
    ? token => bstr .size (8..64),
    ? supported-freshness-mechanisms => [ + $freshness-mechanism ],
    ? challenge-agent => bstr .size (8..512),
    ? versions => [ + version ],
    ? attestation-payload-format => text,
    ? attestation-payload => bstr,
    ? suit-reports => [ + bstr ],
    * $$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
]

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,
)
]]></sourcecode></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-agent</dt>
  <dd>
    <t>The challenge-agent field is an optional parameter used for ensuring the freshness of
attestation evidence returned with a QueryResponse message. It MUST be absent if
the attestation bit is clear or the Passport model is used (since the token is used instead in those cases).
When a challenge-agent is
provided in the QueryRequest and Evidence in the form of an EAT is returned with a QueryResponse message
then the challenge-agent contained in this request MUST be used to generate the EAT,
by copying the challenge-agent 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-agent 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>
  <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
of the TAM for the TEEP Agent to perform attestation of the TAM.
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 of the TAM
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"/>.
SUIT Reports can be useful in QueryRequest messages to
pass information to the TEEP Agent without depending on a Verifier including
the relevant information in Attestation Results.</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><sourcecode type="cddl-query-response"><![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
}
]]></sourcecode></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>Section 4.1 of <xref target="I-D.ietf-rats-eat"/></c>
      <c>Device unique identifier</c>
      <c>ueid</c>
      <c>Section 4.2.1 of <xref target="I-D.ietf-rats-eat"/></c>
      <c>Vendor of the device</c>
      <c>oemid</c>
      <c>Section 4.2.3 of <xref target="I-D.ietf-rats-eat"/></c>
      <c>Class of the device</c>
      <c>hwmodel</c>
      <c>Section 4.2.4 of <xref target="I-D.ietf-rats-eat"/></c>
      <c>TEE hardware type</c>
      <c>hwversion</c>
      <c>Section 4.2.5 of <xref target="I-D.ietf-rats-eat"/></c>
      <c>TEE hardware version</c>
      <c>hwversion</c>
      <c>Section 4.2.5 of <xref target="I-D.ietf-rats-eat"/></c>
      <c>TEE firmware type</c>
      <c>manifests</c>
      <c>Section 4.2.15 of <xref target="I-D.ietf-rats-eat"/></c>
      <c>TEE firmware version</c>
      <c>manifests</c>
      <c>Section 4.2.15 of <xref 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><sourcecode type="cddl-update"><![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 => (0..23),
    ? err-msg => text .size (1..128),
    * $$update-extensions,
    * $$teep-option-extensions
  }
]
]]></sourcecode></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.
The SUIT manifest processor MAY execute uninstall section in the manifest.</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 encrypted Personalization Data in the SUIT manifest, and it will be delivered by the TAM.
The SUIT manifest processor decrypts it and then store it into file named "config.json", and then install the dependency component.</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: {                            | |
      |       |         dependency-prefix 1: {                   | |
      |       |           [tc-uuid, 'suit']                      | |
      |       |         }                                        | |
      |       |       }                                          | |
      |       |       components: [                              | |
      |       |         ['config.json']                          | |
      |       |       ]                                          | |
      |       |     },                                           | |
      |       |     dependency-resolution: {                     | |
      |       |       override-parameters: {                     | |
      |       |         uri: "https://example.org/tc-uuid.suit"  | |
      |       |       },                                         | |
      |       |       fetch                                      | |
      |       |     },                                           | |
      |       |     install: {                                   | |
      |       |       set-component-index 0,                     | |
      |       |       override-parameters: {                     | |
      |       |         content: h'48FE0794...'                  | |
      |       |         encryption-info: << ... >>               | |
      |       |       },                                         | |
      |       |       write,                                     | |
      |       |       set-component-index 1,                     | |
      |       |       process-dependency                         | |
      |       |     }                                            | |
      |       |   }                                              | |
      |       | })                                               | |
      |       +==================================================+ |
      |     ]                                                      |
      |   }                                                        |
      | ])                                                         |
      +============================================================+

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

<t>For the full SUIT Manifest example binary, see <xref target="suit-personalization"/>.</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><sourcecode type="cddl-teep-success"><![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
  }
]
]]></sourcecode></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><sourcecode type="cddl-teep-error"><![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 ],
     ? challenge-tam => bstr .size (8..512),
     ? versions => [ + version ],
     ? suit-reports => [ + SUIT_Report ],
     * $$teep-error-extensions,
     * $$teep-option-extensions
  },
  err-code: (0..23)
]

; The err-code parameter, uint (0..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_ATTESTATION_REQUIRED = 7
ERR_CERTIFICATE_EXPIRED = 9
ERR_TEMPORARY_ERROR = 10
ERR_MANIFEST_PROCESSING_FAILED = 17
]]></sourcecode></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>challenge-tam</dt>
  <dd>
    <t>The challenge-tam field is an optional parameter used for ensuring the freshness of
attestation evidence included with a QueryRequest message.
When a challenge-tam is provided in the Error message and Evidence in the form of an EAT is
returned with a QueryRequest message then the challenge-tam contained in the Error message
MUST be used to generate the EAT, by copying the challenge-tam value into the eat_nonce claim, as described in the
EAT profile <xref target="eat"/>, if the nonce-based freshness mechanism is used.
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-tam field.</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_ATTESTATION_REQUIRED (7)</dt>
  <dd>
    <t>Indicates attestation of the TAM is required by the TEEP Agent side. This will lead to an
additional QueryRequest / QueryResponse message pair to be exchanged before
proceeding to the Update message.</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"/> for details.  When the
eat_nonce claim is used, the value is a single bstr.</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-agent</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>challenge-tam</c>
      <c>22</c>
      <c>err-code</c>
      <c>23</c>
</texttable>

<figure><sourcecode type="cddl-label"><![CDATA[
; labels of mapkey for teep message parameters, uint (0..23)
supported-teep-cipher-suites = 1
challenge-agent = 2
versions = 3
supported-suit-cose-profiles = 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
challenge-tam = 22
err-code = 23
]]></sourcecode></figure>

</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 Section 3.1 of <xref 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 the TAM received an Error message with the error code ERR_ATTESTATION_REQUIRED, it indicates that the TEEP Agent is requesting attestation of the TAM.
In this case, the TAM MUST return another QueryRequest containing attestation-payload and/or suit-report to the TEEP Agent before advancing to an Update message.</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>If the TEEP Agent requires attesting the TAM, the TEEP Agent MUST send the Error Message with the error code ERR_ATTESTATION_REQUIRED supplying the supported-freshness-mechanisms or the challenge-tam.</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><sourcecode type="cddl-cipher-suite"><![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
]]></sourcecode></figure>

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

<t><list style="symbols">
  <t>a COSE-type defined in Section 2 of <xref 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 a mechanism such as <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 Ephemeral-Static Diffie-Hellman is used
in this specification. See Section 8.5.5 and Appendix B of <xref target="RFC9052"/> for more details.
(If <xref target="I-D.ietf-suit-firmware-encryption"/> is used, it is also the same as discussed in
Section 6.2 of that document.)</t>

<t>To perform encryption with ECDH 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.ietf-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><sourcecode type="cddl-suit-cose-profile"><![CDATA[
; suit-cose-profile
$suit-cose-profile /= suit-sha256-es256-ecdh-a128gcm
$suit-cose-profile /= suit-sha256-eddsa-ecdh-a128gcm
]]></sourcecode></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><sourcecode type="cddl-freshness"><![CDATA[
; freshness-mechanisms
FRESHNESS_NONCE = 0
FRESHNESS_TIMESTAMP = 1

$freshness-mechanism /= FRESHNESS_NONCE
$freshness-mechanism /= FRESHNESS_TIMESTAMP
]]></sourcecode></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 if the Background Check model is used, or in
the QueryRequest token if the Passport model is used.  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 Section 6 of <xref 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='I-D.ietf-rats-eat'>
   <front>
      <title>The Entity Attestation Token (EAT)</title>
      <author fullname='Laurence Lundblade' initials='L.' surname='Lundblade'>
         <organization>Security Theory LLC</organization>
      </author>
      <author fullname='Giridhar Mandyam' initials='G.' surname='Mandyam'>
         <organization>Qualcomm Technologies Inc.</organization>
      </author>
      <author fullname='Jeremy O&#x27;Donoghue' initials='J.' surname='O&#x27;Donoghue'>
         <organization>Qualcomm Technologies Inc.</organization>
      </author>
      <author fullname='Carl Wallace' initials='C.' surname='Wallace'>
         <organization>Red Hound Software, Inc.</organization>
      </author>
      <date day='13' month='June' year='2023'/>
      <abstract>
	 <t>   An Entity Attestation Token (EAT) provides an attested claims set
   that describes state and characteristics of an entity, a device like
   a smartphone, IoT device, network equipment or such.  This claims set
   is used by a relying party, server or service to determine how much
   it wishes to trust the entity.

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

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-ietf-rats-eat-20'/>
   
</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-mti'>
   <front>
      <title>Mandatory-to-Implement Algorithms for Authors and Recipients of Software Update for the Internet of Things manifests</title>
      <author fullname='Brendan Moran' initials='B.' surname='Moran'>
         <organization>Arm Limited</organization>
      </author>
      <author fullname='Øyvind Rønningstad' initials='O.' surname='Rønningstad'>
         <organization>Nordic Semiconductor</organization>
      </author>
      <author fullname='Akira Tsukamoto' initials='A.' surname='Tsukamoto'>
         </author>
      <date day='13' month='March' year='2023'/>
      <abstract>
	 <t>   This document specifies algorithm profiles for SUIT manifest parsers
   and authors to ensure better interoperability.  These profiles apply
   specifically to a constrained node software update use case.

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-ietf-suit-mti-00'/>
   
</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='13' month='March' year='2023'/>
      <abstract>
	 <t>   This specification describes extensions to the SUIT manifest format
   (as defined in [I-D.ietf-suit-manifest]) for use in deployments with
   multiple trust domains.  A device has more than one trust domain when
   it enables delegation of different rights to mutually distrusting
   entities for use for different purposes or components in the context
   of firmware or software update.

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-ietf-suit-trust-domains-02'/>
   
</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='13' month='March' year='2023'/>
      <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-05'/>
   
</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-suit-firmware-encryption'>
   <front>
      <title>Encrypted Payloads in SUIT Manifests</title>
      <author fullname='Hannes Tschofenig' initials='H.' surname='Tschofenig'>
         </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='13' month='April' year='2023'/>
      <abstract>
	 <t>   This document specifies techniques for encrypting software, firmware
   and personalization data by utilizing the IETF SUIT manifest.  Key
   agreement is provided by ephemeral-static (ES) Diffie-Hellman (DH)
   and AES Key Wrap (AES-KW).  ES-DH uses public key cryptography while
   AES-KW uses a pre-shared key-encryption 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-12'/>
   
</reference>


<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-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-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='5' month='June' year='2023'/>
      <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-01'/>
   
</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>



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




    </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[
; DO NOT EDIT this cddl file manually.
; This cddl file is Auto-generated file from md file.
; Edit the md file and run make for generating this cddl file.
; Please do not forget to commit and push this cddl file to git repo
; every time you have revised the md file.

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, in one byte which could take a number from 0 to 23
$teep-type = (0..23)
TEEP-TYPE-query-request = 1
TEEP-TYPE-query-response = 2
TEEP-TYPE-update = 3
TEEP-TYPE-teep-success = 5
TEEP-TYPE-teep-error = 6

query-request = [
  type: TEEP-TYPE-query-request,
  options: {
    ? token => bstr .size (8..64),
    ? supported-freshness-mechanisms => [ + $freshness-mechanism ],
    ? challenge-agent => bstr .size (8..512),
    ? versions => [ + version ],
    ? attestation-payload-format => text,
    ? attestation-payload => bstr,
    ? suit-reports => [ + bstr ],
    * $$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
]

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

; 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

; suit-cose-profile
$suit-cose-profile /= suit-sha256-es256-ecdh-a128gcm
$suit-cose-profile /= suit-sha256-eddsa-ecdh-a128gcm

; 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,
    ? err-code => (0..23),
    ? err-msg => text .size (1..128),
    * $$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 ],
     ? challenge-tam => bstr .size (8..512),
     ? versions => [ + version ],
     ? suit-reports => [ + SUIT_Report ],
     * $$teep-error-extensions,
     * $$teep-option-extensions
  },
  err-code: (0..23)
]

; The err-code parameter, uint (0..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_ATTESTATION_REQUIRED = 7
ERR_CERTIFICATE_EXPIRED = 9
ERR_TEMPORARY_ERROR = 10
ERR_MANIFEST_PROCESSING_FAILED = 17

; labels of mapkey for teep message parameters, uint (0..23)
supported-teep-cipher-suites = 1
challenge-agent = 2
versions = 3
supported-suit-cose-profiles = 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
challenge-tam = 22
err-code = 23
]]></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 /
                                    ],
  / supported-suit-cose-profiles: / [ [ -7, 1 ] / ES256+ECDH+A128GCM /,
                                      [ -8, 1 ] / EdDSA+ECDH+A128GCM /
                                    ],
  / 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-ecdh-a128gcm /
         26         # negative(6) / -7 = cose-alg-es256 /
         01         # unsigned(1) / 1 = A128GCM /
      82            # array(2) / suit-sha256-eddsa-ecdh-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 /
        ] >>
      }
    ]
  }
]
]]></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: /
      81            # array(1)
         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
]]></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 / SHA256 /,
      / digest-bytes: / h'EF53C7F719CB10041233850AE3211D62CEC9528924E656607688E77BC14886A0'
    ] >>,
    << / COSE_Sign1_Tagged / 18([
      / protected: / << {
        / algorithm-id / 1: -7 / ES256 /
      } >>,
      / unprotected: / {},
      / payload: / null,
      / signature: / h'7E367F9E124859473FBDF3D6312AA8943617B41AE4782FCA0E77A492C51F8A7252EA42C23D722E787AA235B5175DBE61DDF8F16F956E0317B9550A04BF9165DD'
    ]) >>
  ] >>,
  / manifest / 3: << {
    / manifest-version / 1: 1,
    / manifest-sequence-number / 2: 3,
    / common / 3: << {
      / components / 2: [
        [
           'TEEP-Device',
           'SecureFS',
          h'8D82573A926D4754935332DC29997F74', / tc-uuid /
           '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 / SHA256 /,
            / digest-bytes: / h'8CF71AC86AF31BE184EC7A05A411A8C3A14FD9B77A30D046397481469468ECE8'
          ] >>,
          / parameter-image-size / 14: 20
        },
        / condition-vendor-identifier / 1, 15,
        / condition-class-identifier / 2, 15
      ] >>
    } >>,
    / manifest-component-id / 5: [
       'TEEP-Device',
       'SecureFS',
      h'8D82573A926D4754935332DC29997F74',  / tc-uuid /
       '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
    ] >>,
    / uninstall / 24: << [
      / directive-unlink / 33, 15
    ] >>
  } >>
}
]]></artwork></figure>

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

<figure><artwork><![CDATA[
A2025873825824822F5820EF53C7F719CB10041233850AE3211D62CEC952
8924E656607688E77BC14886A0584AD28443A10126A0F658407E367F9E12
4859473FBDF3D6312AA8943617B41AE4782FCA0E77A492C51F8A7252EA42
C23D722E787AA235B5175DBE61DDF8F16F956E0317B9550A04BF9165DD03
590108A601010203035884A20281844B544545502D446576696365485365
637572654653508D82573A926D4754935332DC29997F7442746104585486
14A40150C0DDD5F15243566087DB4F5B0AA26C2F0250DB42F7093D8C55BA
A8C5265FC5820F4E035824822F58208CF71AC86AF31BE184EC7A05A411A8
C3A14FD9B77A30D046397481469468ECE80E14010F020F05844B54454550
2D446576696365485365637572654653508D82573A926D4754935332DC29
997F7444737569741158458614A115783B68747470733A2F2F6578616D70
6C652E6F72672F38643832353733612D393236642D343735342D39333533
2D3332646332393939376637342E7461150F030F1818448218210F
]]></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 / SHA256 /,
      / digest-bytes: / h'526A85341DE35AFA4FAF9EDDDA40164525077DC45DFBE25785B9FF40683EE881'
    ] >>,
    << / COSE_Sign1_Tagged / 18([
      / protected: / << {
        / algorithm-id / 1: -7 / ES256 /
      } >>,
      / unprotected: / {},
      / payload: / null,
      / signature: / h'4B57A8102D0D86B83BA0368E118917D87DBF7815DC31B19DEB7E154F3D191A1434ADFAE27D5AED39C07A2A4B2A0D78031E73B23D679507C4953DD9E00CA7E541'
    ]) >>
  ] >>,
  / manifest / 3: << {
    / manifest-version / 1: 1,
    / manifest-sequence-number / 2: 3,
    / common / 3: << {
      / components / 2: [
        [
           'TEEP-Device',
           'SecureFS',
          h'8D82573A926D4754935332DC29997F74', / tc-uuid /
           '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 / SHA256 /,
            / digest-bytes: / h'8CF71AC86AF31BE184EC7A05A411A8C3A14FD9B77A30D046397481469468ECE8'
          ] >>,
          / parameter-image-size / 14: 20
        },
        / condition-vendor-identifier / 1, 15,
        / condition-class-identifier / 2, 15
      ] >>
    } >>,
    / manifest-component-id / 5: [
       'TEEP-Device',
       'SecureFS',
      h'8D82573A926D4754935332DC29997F74',  / tc-uuid /
       'suit'
    ],
    / install / 17: << [
      / directive-override-parameters / 20, {
        / uri / 21: "#tc"
      },
      / directive-fetch / 21, 15,
      / condition-image-match / 3, 15
    ] >>,
    / uninstall / 24: << [
      / directive-unlink / 33, 15
    ] >>
  } >>,
  "#tc" : 'Hello, Secure World!'
}
]]></artwork></figure>

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

<figure><artwork><![CDATA[
A3025873825824822F5820526A85341DE35AFA4FAF9EDDDA40164525077D
C45DFBE25785B9FF40683EE881584AD28443A10126A0F658404B57A8102D
0D86B83BA0368E118917D87DBF7815DC31B19DEB7E154F3D191A1434ADFA
E27D5AED39C07A2A4B2A0D78031E73B23D679507C4953DD9E00CA7E54103
58CEA601010203035884A20281844B544545502D44657669636548536563
7572654653508D82573A926D4754935332DC29997F744274610458548614
A40150C0DDD5F15243566087DB4F5B0AA26C2F0250DB42F7093D8C55BAA8
C5265FC5820F4E035824822F58208CF71AC86AF31BE184EC7A05A411A8C3
A14FD9B77A30D046397481469468ECE80E14010F020F05844B544545502D
446576696365485365637572654653508D82573A926D4754935332DC2999
7F744473756974114C8614A11563237463150F030F1818448218210F6323
74635448656C6C6F2C2053656375726520576F726C6421
]]></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 / SHA256 /,
      / digest-bytes: / h'F8CDE205EA2C63FB23042AAF336BA51C12DBDFAA9714149F42FA0F701490DF43'
    ] >>,
    << / COSE_Sign1_Tagged / 18([
      / protected: / << {
        / algorithm-id / 1: -7 / ES256 /
      } >>,
      / unprotected: / {},
      / payload: / null,
      / signature: / h'34994DB97D120652829B242C9A33AEF892C213BB10550341B9816207EF78E21BE323A8B4C3BF2BD90E3EEE34D749D3AF45C972E3EA96B8FE3D49B3CD27FCF779'
    ]) >>
  ] >>,
  / manifest / 3: << {
    / manifest-version / 1: 1,
    / manifest-sequence-number / 2: 3,
    / common / 3: << {
      / dependencies / 1: {
        / component-index / 1: {
          / dependency-prefix / 1: [
             'TEEP-Device',
             'SecureFS',
            h'8D82573A926D4754935332DC29997F74', / tc-uuid /
             'suit'
          ]
        }
      },
      / components / 2: [
        [
          'TEEP-Device',
          'SecureFS',
          'config.json'
        ]
      ],
      / shared-sequence / 4: << [
        / directive-set-component-index / 12, 0,
        / directive-override-parameters / 20, {
          / parameter-vendor-identifier / 1: h'C0DDD5F15243566087DB4F5B0AA26C2F',
          / parameter-class-identifier / 2: h'DB42F7093D8C55BAA8C5265FC5820F4E'
        },
        / condition-vendor-identifier / 1, 15,
        / condition-class-identifier / 2, 15
      ] >>
    } >>,
    / manifest-component-id / 5: [
      'TEEP-Device',
      'SecureFS',
      'config.suit'
    ],
    / validate / 7: << [
      / directive-set-component-index / 12, 0,
      / directive-override-parameters / 20, {
        / NOTE: image-digest and image-size of plaintext config.json /
        / parameter-image-digest / 3: << [
          / digest-algorithm-id: / -16 / SHA256 /,
          / digest-bytes: / h'2d62bc330d02054f4028e790a161cf26fce74ae5e05f6165ccbdf23b27faf5c7'
        ] >>,
        / image-size / 14: 64
      },
      / 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
    ] >>,
    / install / 17: << [
      / directive-set-component-index / 12, 1,
      / directive-process-dependency / 11, 0,

      / NOTE: fetch encrypted firmware /
      / directive-set-component-index / 12, 0,
      / directive-override-parameters / 20, {
        / NOTE: encrypted payload and encryption-info /
        / parameter-content / 18: h'48FE0794D291C42700D614FC7EF638A6CF9C6B40CBE172CC0EB2B0ECB9DA6071BE85CACB416090E350354760A463D3D85D7E835B5E48190DBE61F2DA1C1C687062AC556B89B8459FE99D79378158BAF5',
        / parameter-encryption-info / 19: << 96([
          / protected: / << {
            / alg / 1: 1 / AES-GCM-128 /
          } >>,
          / unprotected: / {
            / IV / 5: h'5318E31B9825AAF12664796B5DC644EB'
          },
          / payload: / null / detached ciphertext /,
          / recipients: / [
            [
              / protected: / << {
              } >>,
              / unprotected: / {
                / alg / 1: -3 / A128KW /,
                / kid / 4: 'kid-1'
              },
              / payload: / h'8A788C02AA608BAD1F94BDC4786E6BAFB9D805173A8B66DD' / CEK encrypted with KEK /
            ]
          ]
        ]) >>
      },

      / decrypt encrypted firmware /
      / directive-write / 18, 15 / consumes the SUIT_Encryption_Info above /
    ] >>,
    / uninstall / 24: << [
      / directive-set-component-index / 12, 1,
      / directive-process-dependency / 11, 0,
      / directive-set-component-index / 12, 0,
      / directive-unlink / 33, 15
    ] >>
  } >>
}
]]></artwork></figure>

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

<figure><artwork><![CDATA[
A2025873825824822F5820F8CDE205EA2C63FB23042AAF336BA51C12DBDF
AA9714149F42FA0F701490DF43584AD28443A10126A0F6584034994DB97D
120652829B242C9A33AEF892C213BB10550341B9816207EF78E21BE323A8
B4C3BF2BD90E3EEE34D749D3AF45C972E3EA96B8FE3D49B3CD27FCF77903
5901E3A801010203035886A301A101A101844B544545502D446576696365
485365637572654653508D82573A926D4754935332DC29997F7444737569
740281834B544545502D4465766963654853656375726546534B636F6E66
69672E6A736F6E04582D880C0014A20150C0DDD5F15243566087DB4F5B0A
A26C2F0250DB42F7093D8C55BAA8C5265FC5820F4E010F020F05834B5445
45502D4465766963654853656375726546534B636F6E6669672E73756974
075831860C0014A2035824822F58202D62BC330D02054F4028E790A161CF
26FCE74AE5E05F6165CCBDF23B27FAF5C70E1840030F0F5847860C0114A1
15783D68747470733A2F2F6578616D706C652E6F72672F38643832353733
612D393236642D343735342D393335332D3332646332393939376637342E
7375697415021158A48A0C010B000C0014A212585048FE0794D291C42700
D614FC7EF638A6CF9C6B40CBE172CC0EB2B0ECB9DA6071BE85CACB416090
E350354760A463D3D85D7E835B5E48190DBE61F2DA1C1C687062AC556B89
B8459FE99D79378158BAF5135843D8608443A10101A105505318E31B9825
AAF12664796B5DC644EBF6818341A0A2012204456B69642D3158188A788C
02AA608BAD1F94BDC4786E6BAFB9D805173A8B66DD120F18184A880C010B
000C0018210F
]]></artwork></figure>

<t>The Personalization Data above is encrypted with A128KW.
The secret key is h'61616161616161616161616161616161' (0x61 = 'a', and the length is 16).</t>

</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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
+tK2whbsP1Pb4IO/Ye/gM1GdGdfI9TyLegebo/pSPU+3j0K/z/gGlorX4Ygz
5i9Y1Tj0h6MjAgZKN7KMLw76JrxXHerGAoTU65i+AMnrXTTZ15ZzQi9huXrH
Twg0A4n5hvUyxmb6ek/3BTE+5bJR5MFkyhQAH74znpAtkCwdb99VCBWZEdAf
qtirS/ip7mM3ccSFiGl1ytaBGx9hS6GU6U8WAK+FeZ3ZBTwExBADvAKxF5Rr
2boNi2TKL+hFHpz4LtVPSR6i24PBpTWFaCmcTsLoa7td7N5UwkVDVngU80KK
GSE84nZTRs+n9NDDYI5Ly6wru1IliipPDqlLU4lbLOFNES2SSropUUnXLBS1
yRfTDbVqjQKLsmGH8V7p0KjQ8rYDSR91AHIVFz03Wm0Vg6yi9p/elakgH3/N
zcxcXW1v4tlEcQHJP3MtF31R+08lOMrX6MKO/CJipUE2b1PfE6N9IeiF8eTe
9LKI0B0pSRa7V2h0YXdzFe8lpSCq9k2JrnJCmsAuSZyJ8PNY87F1CKnz4Kf3
kpDaMmrK7ZjJWg10IBC1VQPP6AyRlzBEait3ryRfqGnkYFXftj54JImhnpVv
ECVlCZD2geJQDUMOBGdzudRjqeULAIHmR+GIrPMFWhqxD9E7gQvbIoxM00sh
uNhIA8KPNomIq0v+SO65G0oE9+x9Iq0s6oNFBEtDu6Q7aWqQeaqDX3ZjdDG5
S+KEzUVPn6I0y2X5byLyn/bPmxcnnpcV+IKkmUaGyGdLaXzdkqtoRfaKTHsm
Tza4QxHOJWyqxpVKOyQmYnf04V6hcnOeIDZqY4YKpKyhtBe5xpKsPcwTIWwx
rhEtDJ7Z9BCfrVA2OWEHwH8W34vuf4HqqCwVZF2iKNeAy1YhPPPOMIELjAro
2rd4Jrpk+dzDDgGrH5cw8RgmYsgRCK/XCQWBDLAmr3/KQ62mWkYpaNhTNDZK
gsu8CfhT9j1ifxFbnKgtS4kkSCW9m9eDS+aQ1Z+VGU9u/ZALVwsR3qxzLXo3
S8IlPPuiTxr7w5TGJ+Ohvzf7oOFIDWEqa4wtJmhTYjCZq+wLWhKLRRDa+5G9
LgCD8Q7Dmu+CZCJbcPOL7/kKLQybxDxAZ3GYlugWp9FqrRQNsl2JppglPyQc
I4sGUL1XyMn4PstADlEbVXFJq8Uqsh7RoHV1s0alCW4LkBU6IDwe9NrWKlIR
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
+iiFGdjgW671gZupVXF9vWZ32u22q5NaI2i2G2E3VLLPOqR98A9gLj5erfW6
01Y1aMKrx9VWt10by9HtRjcM1OA4nOvR9VYXB3fhZbDjEnx8MhqN/NffnsiE
0NejU+xyfiBG39xxSZADHt3D0a1mbzIOx+PuVa/bGXcanatmM2xWp51xu9Ea
h91NkDzwX4jG6eObaCnqjWBYl5RR8JVS9TtAmgHA+eeTWqVRaT4ByeQNrvmU
HH1BsgL8CRPAKbVcXRsWx3Yah2Q4Kvr5p9+u4nzZ6NCSf/naPxr556Ozl/3B
aLiD3HNgKiXaFSQ6lu0yXlheRHEf7q2FIRmUX0ohznDVNk/0wTXRtncfmHYg
raeukwjp1aH/5Ga1WqaHBwdCFakA7TlQia0IrifbpMuCV0y4kT3I8IebTknO
obxfZcLncg1YhP+EafmTXUTcA5/fWCaxCjHtWdCZTtqtXiMMxo16eNW8Clud
br3TDdutZnXcGu9IFMwfuJq98XTSmTQn9Uaz12lUW81uo3FVv+o1QJtsV3vb
J32z8YmPG74tHvnG+2hyikYlU2lrqybZ+ERNUvnIsqpk3Slki8d/DV1ygwnq
wG+RdplRBkmNR6e/pQke5J1rB37bF6Ebvs29leHqwO/Qcp8hI9hoJNDvkcan
A7/ra5qmed+B9KJZxifUjnEzyC1ypox+9ag6qA6ro+rxM2Xq9dVlVSbCcjSn
lq3ysgJN/ctfLLIqRojL5bymFy/6OQ3aHrb7nXzY9VLvFhvAcM+xrEChaeMb
/6uvPPN6vRFuCFMLbTxSC80J4H5WHajmRXStKbqVUHk/SAvNarmshbZ+cy20
Zc+k3tva33gNt+ulvz9lsNo2ZzDe1d53EAq9w2q1YFxV7qLaKXiis+8mMXry
pvMoqzZ89NdPnshXdgteSXAT1Oghp9Q3T8mykNhQsPbvJmuHmcOSL3e9VkDh
2Nh8reXa/WYCaS+1kVtqY38z2cwuudX1601jTY12bk3dev241a1X+53jIVLD
UX/QqI+OmkcjpoYjpIaD1qDaGxwPO8Pm0KSGR/UjSQ1Nnt+syDZ3W5l985HM
XsUQZJl8wyJi4rFfg7nbxvgDrPqpOeZf/mLwOTtm4MBSJcVx2vXIyncJqAph
gqvKcUE//8Em1nioeKM2uyBRYXk2L846uOUhscvhUbta6w9HcPa9+lGr22rU
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

-->

</rfc>

