<?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-15" 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 by using 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>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 => 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</dt>
  <dd>
    <t>The challenge 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 is
provided in the QueryRequest and Evidence in the form of an EAT is returned with a QueryResponse message
then the challenge contained in this request MUST be used to generate the EAT,
by copying the challenge into the eat_nonce in the EAT profile <xref target="eat"/> if
using the Nonce freshness mechanism.  For more details see <xref target="freshness-mechanisms"/>.
</t>

    <t>If any format other than EAT is used, it is up to that
format to define the use of the challenge field.</t>
  </dd>
  <dt>versions</dt>
  <dd>
    <t>The versions parameter enumerates the TEEP protocol version(s) supported by the TAM.
A value of 0 refers to the current version of the TEEP protocol.
If this field is not present, it is to be treated the same as if
it contained only version 0.</t>
  </dd>
  <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
for the TEEP Agent to use 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 additional information about the TAM to the TEEP Agent without depending on a Verifier including
the relevant information in the TAM's 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 => 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</dt>
  <dd>
    <t>The challenge field is an optional parameter used for ensuring the freshness of
attestation evidence included with a QueryRequest message.
When a challenge is provided in the Error message and Evidence in the form of an EAT is
returned with a QueryRequest message then the challenge contained in the Error message
MUST be used to generate the EAT, by copying the challenge 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 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 that the TEEP Agent requires attestation of the TAM.</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-tam"/>
and <xref target="attestation-result-agent"/> for
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</c>
      <c>2</c>
      <c>versions</c>
      <c>3</c>
      <c>supported-suit-cose-profiles</c>
      <c>4</c>
      <c>selected-teep-cipher-suite</c>
      <c>5</c>
      <c>selected-version</c>
      <c>6</c>
      <c>attestation-payload</c>
      <c>7</c>
      <c>tc-list</c>
      <c>8</c>
      <c>ext-list</c>
      <c>9</c>
      <c>manifest-list</c>
      <c>10</c>
      <c>msg</c>
      <c>11</c>
      <c>err-msg</c>
      <c>12</c>
      <c>attestation-payload-format</c>
      <c>13</c>
      <c>requested-tc-list</c>
      <c>14</c>
      <c>unneeded-manifest-list</c>
      <c>15</c>
      <c>component-id</c>
      <c>16</c>
      <c>tc-manifest-sequence-number</c>
      <c>17</c>
      <c>have-binary</c>
      <c>18</c>
      <c>suit-reports</c>
      <c>19</c>
      <c>token</c>
      <c>20</c>
      <c>supported-freshness-mechanisms</c>
      <c>21</c>
      <c>err-code</c>
      <c>23</c>
</texttable>

<figure><sourcecode type="cddl-label"><![CDATA[
; labels of mapkey for teep message parameters, uint (0..23)
supported-teep-cipher-suites = 1
challenge = 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
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-tam"/>.</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-tam"/>.</t>

<section anchor="attestation-result-tam"><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 an Error message is received 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 send another QueryRequest with an attestation-payload and optionally a suit-report to the TEEP Agent.</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.</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 anchor="handling-a-queryrequest-message"><name>Handling a QueryRequest Message</name>

<t>When a QueryRequest message is received, it is processed as follows.</t>

<t>If the TEEP Agent requires attesting the TAM and the QueryRequest message did not
contain an attestation-payload, the TEEP Agent MUST send an Error Message
with the error code ERR_ATTESTATION_REQUIRED supplying the supported-freshness-mechanisms and challenge if needed.
Otherwise, processing continues as follows.</t>

<t>If the TEEP Agent requires attesting the TAM and the QueryRequest message did
contain an an attestation-payload, the TEEP Agent 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-agent"/>.</t>

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

<t>Once the Attestation Result is handled, or if the TEEP Agent does not require attesting the TAM,
the Agent responds with a
QueryResponse message if all fields were understood, or an Error message
if any error was encountered.</t>

<section anchor="attestation-result-agent"><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 TEEP Agent 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 TAM 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 TEEP Agent (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>

</section>
</section>
</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-tam"/> and
<xref target="attestation-result-agent"/> 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='30' month='June' year='2023'/>
      <abstract>
	 <t>   An Entity Attestation Token (EAT) provides an attested claims set
   that describes state and characteristics of an entity, a device like
   a smartphone, IoT device, network equipment or such.  This claims set
   is used by a relying party, server or service to determine how much
   it wishes to trust the entity.

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

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


<reference anchor='I-D.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='19' month='June' 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-03'/>
   
</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 => 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 => 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 = 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
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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
awHm9pttpa1sFkadQdZLpp1+ewgSV7sN9K3egKf1wy48q7Og5ipUnyC1ucv6
BBHOHahdb3X64zb8tyGVS/gbVgRw6wMBbx/4pZp2P7c0V2Lp1DdJH+0mChf1
NgCi7erJ3QbNplPfxIZhZ+suM3UGKnJWXJpBgnXcyoXRFqyrPmkgBGFO8P8B
bH+H1uEO1ACduHXQxdS27V6912oBAjUBWXrQtjvu1bujbqc56R4CFHvNw1a/
2271W00AHDR1gd1ojlsDeNXttuG3NjTotNr0rMVwhv82uzBNaDOgf2DjoFW7
OXEGwj0ASB/Cth/aKninJs5koPZGHbzzRB08Fw6e18Q7Dp1zGv+S+riHsHd+
PcJeNIC6tsayBRN5L0YAIXlv/Hbk3UKYbk0WU9uILt1PQRcVSp9Hlm4Rdtz0
1zDdqDDcPTTZgqw0i7N31UvQ3VHykZF8JmIcWpHVYH3scz6SrKtx8OJxOJgX
HSwcbDEOdguvXRuwH46/awFjVPLdBjkl5H6ZL3cHbnu8NbEzsL4LlHPQawHX
HHe7vQ6Q5RFanZ19Fo11AXlk8t645Sq4eeIGN1Ow7rEOEfjwnORfFWL7cWM4
M0a35GOZ1bAm8mAWZdM0vlAZS+StHoBTdRZd6gKnegCqdcWBNCbXtwls5ruY
MINbUBzTBlVMoFAD6daS9fikvnq5Wkxl4h2rnqZbNuKr6EGW7sFURdXqweTL
o9fi5PToW7yg8NXke3oaHB99+Wp4NRkeHxx/efDw45dnx+0B/P3laCR/v5+8
Oviyfh/eHx0M//a3q+Htf3z/z/8YffPl18ed+rcHo2D0z+/Pln//rD7455c3
i4e/nqS346/Pf9q7jv/+5vp0+Ho0HJ5N5skkTK9WP/44+Ov1t+/jqPc6ubn7
8cev+6fLu+Dks4t4+d130+vZ3TA9zy6/erfMRt9P3t9/9XqZvn7193jw5qD1
+rP7xfCbZfbTzWmzddxefhV/x8uavB4XF8WIgfA3hZsQyremHIVM3q8yN8ra
m5y8VG2aD37fHHx9NLLAd/jufnL//auvkv84+umf9dHwb98fyd/Hw79NxwCw
yfVfw4Mvf2x//eOPd2fffzv9frH6Kfxr2v0x3ptcBBc/7d2002/ni6O/X9x/
Ve+9erj9+mJ4c3A8Hf3zIvzptNG+O7+a/XSZ/fX+8OuL48672fKnN1+fJfOr
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
xQEA

-->

</rfc>

