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


<!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-22" 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 fullname="Hannes Tschofenig">
      <organization abbrev="H-BRS">University of Applied Sciences Bonn-Rhein-Sieg</organization>
      <address>
        <postal>
          <country>Germany</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>dave.thaler.ietf@gmail.com</email>
      </address>
    </author>
    <author initials="A." surname="Tsukamoto" fullname="Akira Tsukamoto">
      <organization>Openchip &amp; Software Technologies, S.L.</organization>
      <address>
        <postal>
          <street></street>
          <city></city>
          <region></region>
          <code></code>
          <country>ES</country>
        </postal>
        <email>akira.tsukamoto@gmail.com</email>
      </address>
    </author>

    <date year="2026"/>

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

    <abstract>


<?line 107?>

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


<?line 115?>

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

<t>The Trusted Execution Environment (TEE) concept has been designed to
 separate a regular operating system, also referred to 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="RFC9397"/> 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.
<?line -6?></t>

<t>This specification reuses the terminology defined in <xref target="RFC9397"/>.</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="RFC9711"/>
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" type="1">
  <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 initial token value generated by a TAM MUST be produced
  using a cryptographically secure random source.  Subsequent token values
  MUST be different for each message the TAM creates.</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 a TEEP message is received (see the ProcessTeepMessage conceptual API
defined in Section 6.2.1 of <xref target="RFC9397"/>),
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" type="1">
  <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 .cbor SUIT_Report ],
    * $$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 (i.e., the attestation bit, which is bit 0 in the bitmap, is not set).
When the attestation bit is
clear then a challenge will be included, which offers replay protection
capabilities. The size of the token is at least 8 bytes
(64 bits) and maximum of 64 bytes. 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 to facilitate cleanup of  stale request state, and MUST ignore any messages with expired tokens. Implementations without explicit token management (e.g., simple TAMs that process requests synchronously  and do not maintain state) may not need explicit token expiration.
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. Implementations SHOULD use a timeout mechanism (see <xref target="tam"/>) to eventually
discard unanswered requests that have been awaiting responses for an excessive duration.</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 for parsing SUIT Reports. 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 (see <xref target="RFC9334"/>) is used.
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 the QueryRequest MUST be used to generate the EAT,
by copying the challenge into the eat_nonce claim (Section 4.1 of <xref target="RFC9711"/>) if
the nonce-based freshness mechanism is used for attestation Evidence.  For more details about freshness
of Evidence 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 version of the TEEP protocol defined in this document.
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=urn:ietf:rfc:rfcXXXX" (see <xref target="RFC9782"/>
for further discussion).
(RFC-editor: upon RFC publication, replace XXXX above with 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="RFC9711"/>.  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 TAM SUIT Reports related
to “boot” time (including the start of an executable in an OS context), as defined
by SUIT_Report in Section 4 of <xref target="I-D.ietf-suit-report"/>.
SUIT Reports are encoded as CBOR byte strings. When a SUIT Report includes its own COSE
protection (via signatures or MACs), the cryptographic key used MUST be distinct
from the key used for the TEEP message's COSE security wrapper since otherwise its authenticity relies on the TEEP message's signature/MAC keys without adding any additional security.
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-version => version,
    ? attestation-payload-format => text,
    ? attestation-payload => bstr,
    ? suit-reports => [ + bstr .cbor SUIT_Report ],
    ? 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,
  ? 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-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=urn:ietf:rfc:rfcXXXX" (see <xref target="RFC9782"/>
for further discussion).
(RFC-editor: upon RFC publication, replace XXXX above with 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="RFC9711"/>.  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="RFC9397"/> 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="RFC9397"/> 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; see <xref target="RFC9124"/>.</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="RFC9397"/> 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 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="RFC9397"/> is often required depending on the policy.</t>

<t>Attestation Results SHOULD use Entity Attestation Tokens (EATs) to use a standardized
format and to reduce TAM implementation complexity. Use of any other format, such as a widely
implemented format for a specific processor vendor, is permitted when standardized EAT
support is not available or when proprietary formats provide essential functionality,
but this increases the complexity of the TAM by requiring it to understand
the format for each such format rather than only the common EAT format and is not
recommended for interoperable deployments.</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="RFC9711"/></c>
      <c>Device unique identifier</c>
      <c>ueid</c>
      <c>Section 4.2.1 of <xref target="RFC9711"/></c>
      <c>Vendor of the device</c>
      <c>oemid</c>
      <c>Section 4.2.3 of <xref target="RFC9711"/></c>
      <c>Class of the device</c>
      <c>hwmodel</c>
      <c>Section 4.2.4 of <xref target="RFC9711"/></c>
      <c>TEE hardware type</c>
      <c>hwversion</c>
      <c>Section 4.2.5 of <xref target="RFC9711"/></c>
      <c>TEE hardware version</c>
      <c>hwversion</c>
      <c>Section 4.2.5 of <xref target="RFC9711"/></c>
      <c>TEE firmware type</c>
      <c>manifests</c>
      <c>Section 4.2.15 of <xref target="RFC9711"/></c>
      <c>TEE firmware version</c>
      <c>manifests</c>
      <c>Section 4.2.15 of <xref target="RFC9711"/></c>
</texttable>

<t>The "manifests" claim (see Section 4.2.15 of <xref target="RFC9711"/>) 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 <xref target="fig-arch"/>,
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 title="Example use of TEEP and Attestation." anchor="fig-arch"><artwork><![CDATA[
         +---------------+
         |   Verifier    |
         +---------------+
               ^    | Attestation
      Evidence |    v   Result
         +---------------+
         |     TAM /     |
         | Relying Party |
         +---------------+
 QueryResponse ^    |    Update
   (Evidence)  |    | (Attestation
               |    v    Result)
         +---------------+             +---------------+
         |  TEEP Agent   |------------>|     Other     |
         |  / Attester   | Attestation | Relying Party |
         +---------------+    Result   +---------------+
]]></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),
    ? err-lang => text .size (1..35),
    * $$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. See
Section 7 of <xref target="I-D.ietf-suit-trust-domains"/> for more information about the 
suit-uninstall Command Sequence.</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=urn:ietf:rfc:rfcXXXX" (see <xref target="RFC9782"/>
for further discussion).
(RFC-editor: upon RFC publication, replace XXXX above with 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 in <xref target="eat"/>.</t>
  </dd>
  <dt>attestation-payload</dt>
  <dd>
    <t>The attestation-payload parameter contains an Attestation Result. 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="RFC9711"/>.  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>
  <dt>err-lang</dt>
  <dd>
    <t>The err-lang parameter is an OPTIONAL RFC 5646 <xref target="RFC5646"/> language tag identifying the
language of the <spanx style="verb">err-msg</spanx> text.  When present, implementations MUST use the
language tag to aid human operators in interpreting diagnostic text.  The
err-msg field SHOULD be formatted in the language indicated by this tag.</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, 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="RFC9397"/> 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" that contains
the URI. The filename "tc-uuid" 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 cannot be changed by the TAM since the SUIT manifest is
signed by the Trusted Component Developer.</t>

<t><xref target="fig-tc"/> shows the exchange graphically.</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 title="URI of the Trusted Component Binary." anchor="fig-tc"><artwork><![CDATA[
    +------------+           +-------------+
    | TAM        |           | TEEP Agent  |
    +------------+           +-------------+

             Update  ---->

    +=================== teep-protocol(TAM) ==================+
    | TEEP_Message([                                          |
    |   TEEP-TYPE-update,                                     |
    |   options: {                                            |
    |     manifest-list: [                                    |
    |       += suit-manifest "tc-uuid" (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 ... |
          +==========================+
]]></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><xref target="fig-tc-integrated"/> shows the exchange graphically.</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 title="Integrated Payload with Trusted Component Binary." anchor="fig-tc-integrated"><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 ...'     | |
      |       | })                              | |
      |       +=================================+ |
      |     ]                                     |
      |   }                                       |
      | ])                                        |
      +===========================================+
]]></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" 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, then stores it in a file named "config.json", and then installs
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>

<t><xref target="fig-pers-data"/> shows the exchange graphically.</t>

<figure title="Encrypted Personalization Data." anchor="fig-pers-data"><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"       | |
      |       |       },                                         | |
      |       |       fetch                                      | |
      |       |     },                                           | |
      |       |     install: {                                   | |
      |       |       set-component-index 0,                     | |
      |       |       override-parameters: {                     | |
      |       |         content: h'48FE0794...'                  | |
      |       |         encryption-info: << ... >>               | |
      |       |       },                                         | |
      |       |       write,                                     | |
      |       |       set-component-index 1,                     | |
      |       |       process-dependency                         | |
      |       |     }                                            | |
      |       |   }                                              | |
      |       | })                                               | |
      |       +==================================================+ |
      |     ]                                                      |
      |   }                                                        |
      | ])                                                         |
      +============================================================+
]]></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 => [ + bstr .cbor 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 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"/>, encoded as CBOR byte strings
containing either protected or unprotected SUIT Report payloads. When a SUIT Report
includes its own COSE protection (signatures or MACs), the cryptographic key used
MUST be distinct from the key used for the TEEP message's COSE security wrapper.
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),
     ? err-lang => text .size (1..35),
     ? supported-teep-cipher-suites => [ + $teep-cipher-suite ],
     ? supported-freshness-mechanisms => [ + $freshness-mechanism ],
     ? supported-suit-cose-profiles => [ + $suit-cose-profile ],
     ? challenge => bstr .size (8..512),
     ? versions => [ + version ],
     ? suit-reports => [ + bstr .cbor 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_UNSUPPORTED_SUIT_REPORT = 8
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>err-lang</dt>
  <dd>
    <t>The err-lang parameter is an OPTIONAL RFC 5646 <xref target="RFC5646"/> language tag identifying the
language of the <spanx style="verb">err-msg</spanx> text. When present, implementations SHOULD use the
language tag to aid human operators in interpreting diagnostic text. The
err-msg field SHOULD be formatted in the language indicated by this tag.</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>supported-suit-cose-profiles</dt>
  <dd>
    <t>The supported-suit-cose-profiles parameter lists the SUIT profiles
supported by the TEEP Agent. Details
about the cipher suite encoding can be found in <xref target="eat-suit-ciphersuite"/>.
This otherwise optional parameter MUST be returned if err-code is ERR_UNSUPPORTED_SUIT_REPORT.</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"/>, encoded as CBOR byte strings
containing either protected or unprotected SUIT Report payloads. When a SUIT Report
includes its own COSE protection (signatures or MACs), the cryptographic key used
MUST be distinct from the key used for the TEEP message's COSE security wrapper.
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.
Note that error codes are restricted to the range (0..23) to permit
encoding as single-byte CBOR unsigned integers. Error code values 0, 11-16,
and 18-22 are currently unassigned and reserved for future use.
Error code 0 is intentionally reserved to prevent accidental use.
Extensions that define new error codes SHOULD constrain values to this range;
however, implementations that receive unrecognized error code values greater than 23
SHOULD handle them gracefully, treating them as unknown errors.</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 received TEEP
message contained incorrect fields or fields that are inconsistent with
other fields.
For diagnosis purposes it is RECOMMENDED to identify the failure reason
in the error message field.
A TEEP implementation receiving this error might refuse to communicate further with
the problematic TEEP message sender, by silently dropping any TEEP messages
received, 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 implementation does not support an extension included in the
TEEP message it received.
For diagnosis purposes it is RECOMMENDED to identify the unsupported
extension in the error message field.
A TAM implementation receiving this error might retry sending the last message it sent to
the sender of this error, without using any TEEP 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 implementation does not
support the TEEP protocol version indicated in the received 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
RECOMMENDED to include information about the failing certificate
in the error message field.  For example, the certificate was of an
unsupported type, or the certificate was revoked by its signer.
A TEEP implementation receiving this error might attempt to use an alternate certificate.</t>
  </dd>
  <dt>ERR_ATTESTATION_REQUIRED (7)</dt>
  <dd>
    <t>Indicates that the TEEP implementation sending this error requires
attestation of the TEEP implementation receiving this error.</t>
  </dd>
  <dt>ERR_UNSUPPORTED_SUIT_REPORT (8)</dt>
  <dd>
    <t>Indicates that the TEEP Agent does not support the suit-cose-profile of
the SUIT Reports which was sent by the TAM. The TEEP Agent must report the
error code ERR_UNSUPPORTED_SUIT_REPORT supplying the
supported-suit-cose-profiles.</t>
  </dd>
  <dt>ERR_CERTIFICATE_EXPIRED (9)</dt>
  <dd>
    <t>A certificate has expired or is not currently
valid.
A TEEP implementation 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 TEEP message.
A TEEP implementation receiving this error might retry the last message it sent to the sender
of this error at some later point, which is up to the implementation.</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 noted in <xref target="attestation"/>, Evidence is opaque to the TAM, while Attestation
Results are processed by the TAM in its role as the Relying Party. Although
Attestation Results required by a TAM are logically separate from the TEEP
protocol, this section defines requirements for building a compliant TAM
that uses EATs for Attestation Results.</t>

<t>Section 6 of <xref target="RFC9711"/> 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>&lt;urn:ietf:rfc:rfcXXXX&gt;.
(RFC-editor: upon RFC publication, replace XXXX with 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) as specified in
<xref target="RFC9679"/>.  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" type="1">
  <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>Message parameter labels are current defined only in the range [0..23] to permit
encoding as single-byte CBOR unsigned integers, providing compact message representation.
Currently, labels 0, 5, and 22 are unassigned and reserved for future use.
Extensions that define new message parameters SHOULD constrain label values to this range.
If future standards require additional messages beyond this range, implementations
SHOULD be designed to handle gracefully any unrecognized labels, treating them
as unknown optional parameters without failing to process the message.</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-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>

<t>The following CDDL description is used:</t>

<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-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="RFC9397"/>.</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>

<t>A TAM implementation that sends multiple concurrent requests to a TEEP Agent
needs to track outstanding requests and their associated tokens. To prevent
unbounded storage of token state, a TAM MUST implement a timeout mechanism
to eventually discard unanswered requests and their tokens. This timeout SHOULD be
configurable, with a recommended minimum duration of several hours to account for
scenarios where devices may take considerable time to process updates and resolve
dependencies (as noted in <xref target="tam"/>, such processing may take hours or longer).
A TAM MAY also implement a per-device maximum storage limit for outstanding requests,
reusing tokens for new requests once the per-device limit is reached (after discarding
the oldest outstanding request).</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 and sends an
Update message containing an appropriate err-code and err-msg.  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" type="1">
  <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.  <vspace blankLines='1'/>
See Sections 3.4 and Section 6 of <xref target="RFC8747"/> for more discussion.</t>
</list></t>

<t>Note: The proof-of-possession functionality for the Attestation Result may not be supported by every attestation technology or may not be enabled for use in every deployment.</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 typically three cases:</t>

<t><list style="numbers" type="1">
  <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 might 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.  If the TAM does not have permission to update such components
(this can happen if different TAMs manage different components in the device), the TAM instead
responds with an Update message containing an appropriate err-msg, and err-code set to ERR_ATTESTATION_REQUIRED.</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 QueryResponse 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>

<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 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>The TEEP Agent MAY also use (in any implementation specific way) any SUIT Reports in the
QueryRequest in determining whether it trusts the TAM.  If a SUIT Report
uses a suit-cose-profile that the TEEP Agent does not support, then the TEEP
Agent MUST send an Error Message with the error code ERR_UNSUPPORTED_SUIT_REPORT supplying
the supported-suit-cose-profiles.  Otherwise, processing continues as follows.</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" type="1">
  <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.  <vspace blankLines='1'/>
See Sections 3.4 and Section 6 of <xref target="RFC8747"/> for more discussion.</t>
</list></t>

</section>
</section>
<section anchor="handling-an-update-message"><name>Handling an Update Message</name>

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

</section>
</section>
</section>
<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.</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-ed25519
$teep-cipher-suite /= teep-cipher-suite-sign1-esp256

;The following two cipher suites have only a single operation each.
;Other cipher suites may be defined to have multiple operations.
;It is 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-ed25519 = [ cose-sign1, cose-alg-ed25519 ]
teep-operation-sign1-esp256  = [ cose-sign1, cose-alg-esp256 ]

teep-cipher-suite-sign1-ed25519 = [ teep-operation-sign1-ed25519 ]
teep-cipher-suite-sign1-esp256  = [ teep-operation-sign1-esp256 ]

;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-esp256  = -9   ; ECDSA using P-256 curve and SHA-256
cose-alg-ed25519 = -19  ; EdDSA using Ed25519 curve
]]></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="RFC9397"/> 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="RFC9397"/>.</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, unless the transport layer provides sufficient confidentiality
protection or the TEEP Agent's deployment environment does not permit access to
the TAM's public key. 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 for the same reasons, to protect sensitive
information from intermediate processors and transport mechanisms. Again, the TAM is the recipient of the encrypted
content. For content-key distribution Ephemeral-Static Diffie-Hellman (ES-DH) 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>ES-DH is a scheme that provides public key encryption given
a recipient's public key. Hence, the TEEP Agent needs to be in possession of the public
key of the TAM. See Section 5 of <xref target="RFC9397"/> for more discussion of TAM keys used by the
TEEP Agent. There are multiple variants of this scheme; this document uses the
variant specified in Section 8.5.5 of <xref target="RFC9052"/>.</t>

<t>The following two layer structure is used:</t>

<t><list style="symbols">
  <t>Layer 0: Has a content encrypted with the Content Encryption Key (CEK), a symmetric key.
For encrypting SUIT Reports and EATs the content MUST NOT be detached.</t>
  <t>Layer 1: Uses the AES Key Wrap algorithm to encrypt the randomly generated CEK with the
Key Encryption Key (KEK) derived with ES-DH, whereby the resulting symmetric key is fed
into the HKDF-based key derivation function.</t>
</list></t>

<t>As a result, the two layers combine ES-DH with AES-KW and HKDF.</t>

<t>This document reuses the CDDL defined in Section 6.2.3 of
<xref target="I-D.ietf-suit-firmware-encryption"/> and the context information structure defined in
Section 6.2.4 of <xref target="I-D.ietf-suit-firmware-encryption"/> although with an important modification.
The COSE_KDF_Context.SuppPubInfo.other value MUST be set to "SUIT Report Encryption" when a
SUIT Report is encrypted and MUST be set to "EAT Encryption" when an EAT is encrypted. The
COSE_KDF_Context.SuppPubInfo.other field captures the protocol in which the ES-DH content key
distribution algorithm is used.</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-esp256-ecdh-a128ctr
$suit-cose-profile /= suit-sha256-ed25519-ecdh-a128ctr
$suit-cose-profile /= suit-sha256-esp256-ecdh-a128gcm
$suit-cose-profile /= suit-sha256-ed25519-ecdh-chacha-poly
]]></sourcecode></figure>

</section>
</section>
<section anchor="freshness-mechanisms"><name>Attestation 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="RFC9397"/>,
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>Replay Protection</dt>
  <dd>
    <t>The TEEP protocol supports replay protection as follows.
The transport protocol under the TEEP protocol might provide replay
protection, but may be terminated in the TEEP Broker which is not trusted
by the TEEP Agent and so the TEEP protocol does replay protection itself.
If attestation of the TAM is used, the attestation freshness mechanism
provides replay protection for attested QueryRequest messages.
If non-attested QueryRequest messages are replayed, the TEEP Agent will generate
QueryResponse or Error messages, but the REE can already conduct Denial of Service
attacks against the TEE and/or the TAM even without the TEEP protocol.
QueryResponse messages have replay protection via attestation freshness mechanism,
or the token field in the message if attestation is not used.
Update messages have replay protection via the suit-manifest-sequence-number
(see Section 8.4.2 of <xref target="I-D.ietf-suit-manifest"/>).
Error and Success messages have replay protection via SUIT Reports and/or the token
field in the message, where a TAM can detect which message it is in response to.</t>
  </dd>
  <dt>Trusted Component Signer Compromise</dt>
  <dd>
    <t>A TAM is responsible for vetting Trusted Components before distributing them to TEEP Agents.
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 anchor="operational"><name>Operational Considerations</name>

<t>This section summarizes operational and management guidance for
deployments using the TEEP protocol.  It complements the general
operational guidelines in the IETF operations-area document <xref target="I-D.ietf-opsawg-rfc5706bis"/>
and refers implementers to the architecture and conceptual APIs in
<xref target="RFC9397"/> for configuration and management points.</t>

<t><list style="symbols">
  <t>Configuration and placement: Protocol-specific configuration is
typically performed in the TAM, the TEEP Agent, and any Verifier used
by the TAM.  See the conceptual APIs in <xref target="RFC9397"/> for the
configuration points exposed by implementations (e.g., which
Trusted Components to manage, trust anchors, and per-device state).</t>
  <t>Token lifecycle and state management: Tokens are used to match
requests and responses and to provide limited replay protection.  The
guidance in this document requires random initial tokens and
non-reuse; implementers MUST ensure bounded storage of outstanding
tokens (timeouts, per-device caps) and MUST expire tokens after the
first valid response.  Operational deployments SHOULD tune token
timeouts to accommodate device processing time (see <xref target="tam"/>).</t>
  <t>Key and certificate lifecycle: Operators MUST run procedures for
certificate and key issuance, rollover, revocation, and timely
renewal.  Implementations SHOULD support certificate status checks
and have clear behavior when certificates are expired or revoked
(see err-code behaviors such as ERR_CERTIFICATE_EXPIRED and
ERR_BAD_CERTIFICATE).</t>
  <t>Logging, monitoring, and diagnostics: Implementations SHOULD log
operational events, but MUST avoid placing sensitive data (e.g., raw
Evidence, private keys) into logs.  Diagnostic fields, such as
<spanx style="verb">err-msg</spanx> (optionally accompanied by <spanx style="verb">err-lang</spanx>), are intended for
human operators; logs should capture structured error codes and
minimal diagnostic text to aid incident response.</t>
  <t>Rate limiting and DoS protection: Implementations SHOULD apply
rate limits and backoff policies to mitigate malformed or
high-volume requests.  Agents SHOULD limit the size and number of
concurrent manifests processed and protect local resources (CPU,
memory, storage) from exhausting.</t>
  <t>Time synchronization: Accurate device time is important for
certificate validity checks and for some attestation freshness
mechanisms.  Operators SHOULD ensure devices maintain adequate
time synchronization.</t>
  <t>Privacy and data minimization Attestation results, SUIT reports,
and system-property-claims can contain identifying information.  Do
not expose such data to unauthorised parties; apply least-privilege
principles when requesting or returning attestation or component
lists.</t>
  <t>Upgrade and rollback procedures: Manifest processing can be
disruptive.  Operators SHOULD plan for safe upgrade and rollback
procedures, including verification of manifests prior to execution,
mechanisms for retry, and consideration of partial failure modes.</t>
  <t>Transport and deployment-specific concerns: TEEP is transport
agnostic; operators MUST ensure the chosen transport provides
adequate confidentiality, integrity, authentication, and replay
protection.  See the HTTP binding draft <xref target="I-D.ietf-teep-otrp-over-http"/>
for transport-specific operational details when that binding is used.</t>
  <t>Scaling and batching: Large-scale deployments SHOULD consider
batching updates and asynchronous workflows to avoid overwhelming
devices or management servers.  Unsolicited messages and polling
behavior should be chosen to balance timeliness and operational
load.</t>
  <t>Emergency recovery: Provide procedures for emergency recovery,
including factory-reset processes, certificate revocation handling,
and operational steps for devices that become non-responsive after
updates.</t>
</list></t>

<t>Where operational considerations are covered by other documents (for
example, the TEEP architecture <xref target="RFC9397"/>), implementers SHOULD follow
the guidance in those documents as applicable.</t>

</section>
</section>
<section anchor="transport"><name>Transport Considerations</name>

<t>This specification defines the TEEP protocol as a set of messages to be exchanged
between a TAM and a TEEP Agent.  However, this specification is transport-agnostic
and does not mandate use of a specific transport protocol.  The TEEP protocol messages
are signed and can be optionally encrypted at the protocol layer, providing end-to-end
security independent of the underlying transport.</t>

<t>Companion specifications define how TEEP messages are transported over specific
protocols. For example, <xref target="I-D.ietf-teep-otrp-over-http"/> defines how TEEP messages
are transported over HTTP/HTTPS. TEEP transport specifications MUST provide the
following information:</t>

<t><list style="symbols">
  <t>Whether the transport provides reliability guarantees and ordered delivery</t>
  <t>How message loss and retransmission are handled</t>
  <t>Recovery mechanisms for mid-transaction transport failures</t>
  <t>How the transport handles duplicate messages and idempotency</t>
  <t>How transport-layer errors are reported to the TEEP Agent and TAM</t>
</list></t>

<t>Implementations SHOULD use a transport that provides authentication of the
remote endpoint and confidentiality protection of messages in flight, or
provide these protections at the TEEP protocol layer.  As discussed in
<xref target="RFC9397"/>, the TEEP protocol uses end-to-end cryptographic protection
via COSE to ensure that messages cannot
be modified by intermediaries, such as the TEEP Broker.</t>

<t>The token field in TEEP messages (present in QueryRequest and Update messages)
is used for request-response matching. As described in <xref target="tam"/>, the token MUST
be unique among outstanding requests for a given device at a given TAM, but
tokens MAY be reused for new requests once the previous request has received
a response or timed out. Token reuse across multiple devices or TAMs is permitted
but not required; implementations MAY choose to make tokens globally unique
for audit or logging purposes.</t>

</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="RFC9711"/> unless the transport
layer provides sufficient confidentiality protection. Encryption is particularly
important 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, that
mechanism MUST 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"/>, particularly
when they contain device identifiers or other sensitive operational data.</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>

<t>EATs and SUIT Reports from a TAM can also be present in
a QueryRequest. Typically, the ability to uniquely identify a TAM
is less of a concern than it is for TEEP Agents, but where confidentiality
is a concern for the TAM, such EATs and SUIT Reports SHOULD be encrypted
just like ones from TEEP Agents.</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>
    <t><list style="symbols">
      <t>Deprecated alias names for this type: N/A</t>
      <t>Magic number(s): N/A</t>
      <t>File extension(s): N/A</t>
      <t>Macintosh file type code(s): N/A</t>
    </list></t>
  </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 anchor="teep-message-type-registry"><name>TEEP Message Type Registry</name>

<t>IANA is requested to create a new registry titled "TEEP Message Types" within the TEEP
registry.  The registry has the following format:</t>

<texttable>
      <ttcol align='left'>Value</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0</c>
      <c>(Reserved)</c>
      <c>This document</c>
      <c>1</c>
      <c>TEEP-TYPE-query-request</c>
      <c>This document</c>
      <c>2</c>
      <c>TEEP-TYPE-query-response</c>
      <c>This document</c>
      <c>3</c>
      <c>TEEP-TYPE-update</c>
      <c>This document</c>
      <c>4</c>
      <c>(Reserved)</c>
      <c>This document</c>
      <c>5</c>
      <c>TEEP-TYPE-teep-success</c>
      <c>This document</c>
      <c>6</c>
      <c>TEEP-TYPE-teep-error</c>
      <c>This document</c>
      <c>7-23</c>
      <c>(Reserved for future use)</c>
      <c>This document</c>
</texttable>

<t>Registration procedures are as follows:</t>

<t><list style="symbols">
  <t>0-12: Standards Action</t>
  <t>13-23: Specification Required</t>
</list></t>

</section>
<section anchor="data-item-requested-bitmap-registry"><name>data-item-requested Bitmap Registry</name>

<t>IANA is requested to create a registry titled "TEEP data-item-requested Bits" within the TEEP
registry. The registry has the following format:</t>

<texttable>
      <ttcol align='left'>Bit</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Description</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0</c>
      <c>attestation</c>
      <c>TAM requests attestation payload</c>
      <c>This document</c>
      <c>1</c>
      <c>trusted-components</c>
      <c>TAM queries installed Trusted Components</c>
      <c>This document</c>
      <c>2</c>
      <c>extensions</c>
      <c>TAM queries supported extensions</c>
      <c>This document</c>
      <c>3</c>
      <c>suit-reports</c>
      <c>TAM requests SUIT Reports</c>
      <c>This document</c>
      <c>4-31</c>
      <c>(Reserved for future use)</c>
      <c>&#160;</c>
      <c>This document</c>
</texttable>

<t>Registration procedures are as follows:</t>

<t><list style="symbols">
  <t>0-23: Standards Action</t>
  <t>24-31: Specification Required</t>
</list></t>

</section>
<section anchor="teep-error-code-registry"><name>TEEP Error Code Registry</name>

<t>IANA is requested to create a registry titled "TEEP Error Codes" within the TEEP
registry. The registry has the following format:</t>

<texttable>
      <ttcol align='left'>Value</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Description</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0</c>
      <c>(Reserved)</c>
      <c>Reserved to prevent accidental use</c>
      <c>This document</c>
      <c>1</c>
      <c>ERR_PERMANENT_ERROR</c>
      <c>Incorrect or inconsistent fields</c>
      <c>This document</c>
      <c>2</c>
      <c>ERR_UNSUPPORTED_EXTENSION</c>
      <c>Unsupported extension in message</c>
      <c>This document</c>
      <c>3</c>
      <c>ERR_UNSUPPORTED_FRESHNESS_MECHANISMS</c>
      <c>Unsupported freshness mechanism</c>
      <c>This document</c>
      <c>4</c>
      <c>ERR_UNSUPPORTED_MSG_VERSION</c>
      <c>Unsupported TEEP protocol version</c>
      <c>This document</c>
      <c>5</c>
      <c>ERR_UNSUPPORTED_CIPHER_SUITES</c>
      <c>Unsupported cipher suites</c>
      <c>This document</c>
      <c>6</c>
      <c>ERR_BAD_CERTIFICATE</c>
      <c>Certificate processing failed</c>
      <c>This document</c>
      <c>7</c>
      <c>ERR_ATTESTATION_REQUIRED</c>
      <c>Attestation is required</c>
      <c>This document</c>
      <c>8</c>
      <c>ERR_UNSUPPORTED_SUIT_REPORT</c>
      <c>Unsupported SUIT Report profile</c>
      <c>This document</c>
      <c>9</c>
      <c>ERR_CERTIFICATE_EXPIRED</c>
      <c>Certificate has expired or is invalid</c>
      <c>This document</c>
      <c>10</c>
      <c>ERR_TEMPORARY_ERROR</c>
      <c>Temporary error (e.g., memory allocation)</c>
      <c>This document</c>
      <c>11-16</c>
      <c>(Reserved for future use)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>17</c>
      <c>ERR_MANIFEST_PROCESSING_FAILED</c>
      <c>Manifest processing failure</c>
      <c>This document</c>
      <c>18-22</c>
      <c>(Reserved for future use)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>23</c>
      <c>(Reserved)</c>
      <c>Reserved for future use</c>
      <c>&#160;</c>
</texttable>

<t>Note: Error codes are constrained to the range 0-23 to permit encoding as single-byte
CBOR unsigned integers.</t>

<t>Registration procedures are as follows:</t>

<t><list style="symbols">
  <t>1-10, 17: Standards Action</t>
  <t>11-16, 18-23: Reserved for future use by Specification Required</t>
</list></t>

</section>
<section anchor="teep-cbor-label-registry"><name>TEEP CBOR Label Registry</name>

<t>IANA is requested to create a registry titled "TEEP CBOR Labels" within the TEEP registry. The registry has the following format:</t>

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Type</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0</c>
      <c>(Reserved)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>1</c>
      <c>supported-teep-cipher-suites</c>
      <c>array</c>
      <c>This document</c>
      <c>2</c>
      <c>challenge</c>
      <c>bstr</c>
      <c>This document</c>
      <c>3</c>
      <c>versions</c>
      <c>array</c>
      <c>This document</c>
      <c>4</c>
      <c>supported-suit-cose-profiles</c>
      <c>array</c>
      <c>This document</c>
      <c>5</c>
      <c>(Reserved)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>6</c>
      <c>selected-version</c>
      <c>uint</c>
      <c>This document</c>
      <c>7</c>
      <c>attestation-payload</c>
      <c>bstr</c>
      <c>This document</c>
      <c>8</c>
      <c>tc-list</c>
      <c>array</c>
      <c>This document</c>
      <c>9</c>
      <c>ext-list</c>
      <c>array</c>
      <c>This document</c>
      <c>10</c>
      <c>manifest-list</c>
      <c>array</c>
      <c>This document</c>
      <c>11</c>
      <c>msg</c>
      <c>text</c>
      <c>This document</c>
      <c>12</c>
      <c>err-msg</c>
      <c>text</c>
      <c>This document</c>
      <c>13</c>
      <c>attestation-payload-format</c>
      <c>text</c>
      <c>This document</c>
      <c>14</c>
      <c>requested-tc-list</c>
      <c>array</c>
      <c>This document</c>
      <c>15</c>
      <c>unneeded-manifest-list</c>
      <c>array</c>
      <c>This document</c>
      <c>16</c>
      <c>component-id</c>
      <c>SUIT_Component_Identifier</c>
      <c>This document</c>
      <c>17</c>
      <c>tc-manifest-sequence-number</c>
      <c>uint</c>
      <c>This document</c>
      <c>18</c>
      <c>have-binary</c>
      <c>bool</c>
      <c>This document</c>
      <c>19</c>
      <c>suit-reports</c>
      <c>array</c>
      <c>This document</c>
      <c>20</c>
      <c>token</c>
      <c>bstr</c>
      <c>This document</c>
      <c>21</c>
      <c>supported-freshness-mechanisms</c>
      <c>array</c>
      <c>This document</c>
      <c>22</c>
      <c>(Reserved)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>23</c>
      <c>err-code</c>
      <c>uint</c>
      <c>This document</c>
      <c>2-255</c>
      <c>(Reserved for future use)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>256-</c>
      <c>(Reserved for future use)</c>
      <c>&#160;</c>
      <c>&#160;</c>
</texttable>

<t>Note: Labels are not constrained to a specific range.</t>

<t>Registration procedures are as follows:</t>

<t><list style="symbols">
  <t>0-255:: Standards Action</t>
  <t>256 and above: Specification Required</t>
</list></t>

</section>
<section anchor="teep-cipher-suite-registry"><name>TEEP Cipher Suite Registry</name>

<t>IANA is requested to create a registry titled "TEEP Cipher Suites" within the TEEP
registry. The registry has the following format:</t>

<texttable>
      <ttcol align='left'>Value</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0</c>
      <c>teep-cipher-suite-sign1-ed25519</c>
      <c>This document</c>
      <c>1</c>
      <c>teep-cipher-suite-sign1-esp256</c>
      <c>This document</c>
      <c>2-255</c>
      <c>(Reserved for future use)</c>
      <c>&#160;</c>
</texttable>

<t>Registration procedures are as follows:</t>

<t><list style="symbols">
  <t>0-23: Standards Action</t>
  <t>24-255: Specification Required</t>
</list></t>

<t>Any new cipher suites MUST provide authentication, integrity, and SHOULD provide
confidentiality protection.</t>

</section>
<section anchor="teep-freshness-mechanism-registry"><name>TEEP Freshness Mechanism Registry</name>

<t>IANA is requested to create a registry titled "TEEP Freshness Mechanisms" within the TEEP
registry. The registry has the following format:</t>

<texttable>
      <ttcol align='left'>Value</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0</c>
      <c>FRESHNESS_NONCE</c>
      <c>This document</c>
      <c>1</c>
      <c>FRESHNESS_TIMESTAMP</c>
      <c>This document</c>
      <c>2-255</c>
      <c>(Reserved for future use)</c>
      <c>&#160;</c>
</texttable>

<t>Registration procedures are as follows:</t>

<t><list style="symbols">
  <t>0-23: Standards Action</t>
  <t>24-255: Specification Required</t>
</list></t>

</section>
</section>


  </middle>

  <back>


<references title='References' anchor="sec-combined-references">

    <references title='Normative References' anchor="sec-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"/>
    <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"/>
    <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="RFC5646">
  <front>
    <title>Tags for Identifying Languages</title>
    <author fullname="A. Phillips" initials="A." role="editor" surname="Phillips"/>
    <author fullname="M. Davis" initials="M." role="editor" surname="Davis"/>
    <date month="September" year="2009"/>
    <abstract>
      <t>This document describes the structure, content, construction, and semantics of language tags for use in cases where it is desirable to indicate the language used in an information object. It also describes how to register values for use in language tags and the creation of user-defined extensions for private interchange. 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="47"/>
  <seriesInfo name="RFC" value="5646"/>
  <seriesInfo name="DOI" value="10.17487/RFC5646"/>
</reference>
<reference anchor="RFC5198">
  <front>
    <title>Unicode Format for Network Interchange</title>
    <author fullname="J. Klensin" initials="J." surname="Klensin"/>
    <author fullname="M. Padlipsky" initials="M." surname="Padlipsky"/>
    <date month="March" year="2008"/>
    <abstract>
      <t>The Internet today is in need of a standardized form for the transmission of internationalized "text" 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"/>
    <author fullname="L. Seitz" initials="L." surname="Seitz"/>
    <author fullname="G. Selander" initials="G." surname="Selander"/>
    <author fullname="S. Erdtman" initials="S." surname="Erdtman"/>
    <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
    <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 "Proof-of-Possession Key Semantics for JSON Web Tokens (JWTs)" (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"/>
    <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
    <date month="December" year="2020"/>
    <abstract>
      <t>The Concise Binary Object Representation (CBOR) is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation. These design goals make it different from earlier binary serializations such as ASN.1 and MessagePack.</t>
      <t>This document obsoletes RFC 7049, providing editorial improvements, new details, and errata fixes while keeping full compatibility with the interchange format of RFC 7049. It does not create a new version of the format.</t>
    </abstract>
  </front>
  <seriesInfo name="STD" value="94"/>
  <seriesInfo name="RFC" value="8949"/>
  <seriesInfo name="DOI" value="10.17487/RFC8949"/>
</reference>
<reference anchor="RFC9679">
  <front>
    <title>CBOR Object Signing and Encryption (COSE) Key Thumbprint</title>
    <author fullname="K. Isobe" initials="K." surname="Isobe"/>
    <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
    <author fullname="O. Steele" initials="O." surname="Steele"/>
    <date month="December" year="2024"/>
    <abstract>
      <t>This specification defines a method for computing a hash value over a CBOR Object Signing and Encryption (COSE) Key. It specifies which fields within the COSE Key structure are included in the cryptographic hash computation, the process for creating a canonical representation of these fields, and how to hash the resulting byte sequence. The resulting hash value, referred to as a "thumbprint", can be used to identify or select the corresponding key.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9679"/>
  <seriesInfo name="DOI" value="10.17487/RFC9679"/>
</reference>
<reference anchor="RFC9711">
  <front>
    <title>The Entity Attestation Token (EAT)</title>
    <author fullname="L. Lundblade" initials="L." surname="Lundblade"/>
    <author fullname="G. Mandyam" initials="G." surname="Mandyam"/>
    <author fullname="J. O'Donoghue" initials="J." surname="O'Donoghue"/>
    <author fullname="C. Wallace" initials="C." surname="Wallace"/>
    <date month="April" year="2025"/>
    <abstract>
      <t>An Entity Attestation Token (EAT) provides an attested claims set that describes the state and characteristics of an entity, a device such as a smartphone, an Internet of Things (IoT) device, network equipment, or such. This claims set is used by a relying party, server, or service to determine the type and degree of trust placed in the entity.</t>
      <t>An EAT is either a CBOR Web Token (CWT) or a JSON Web Token (JWT) with attestation-oriented claims.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9711"/>
  <seriesInfo name="DOI" value="10.17487/RFC9711"/>
</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>University of Applied Sciences Bonn-Rhein-Sieg</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="28" month="May" year="2025"/>
      <abstract>
	 <t>   This specification describes the format of a manifest.  A manifest is
   a bundle of metadata about code/data obtained by a recipient (chiefly
   the firmware for an Internet of Things (IoT) device), where to find
   the code/data, the devices to which it applies, and cryptographic
   information protecting the manifest.  Software updates and Trusted
   Invocation both tend to use sequences of common operations, so the
   manifest encodes those sequences of operations, rather than declaring
   the metadata.

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

<reference anchor="I-D.ietf-suit-mti">
   <front>
      <title>Cryptographic Algorithms for Internet of Things (IoT) Devices</title>
      <author fullname="Brendan Moran" initials="B." surname="Moran">
         <organization>Arm Limited</organization>
      </author>
      <author fullname="Øyvind Rønningstad" initials="O." surname="Rønningstad">
         <organization>Nordic Semiconductor</organization>
      </author>
      <author fullname="Akira Tsukamoto" initials="A." surname="Tsukamoto">
         <organization>Openchip &amp; Software Technologies, S.L.</organization>
      </author>
      <date day="22" month="July" year="2025"/>
      <abstract>
	 <t>   The SUIT manifest, as defined in &quot;A Manifest Information Model for
   Firmware Updates in Internet of Things (IoT) Devices&quot; (RFC 9124),
   provides a flexible and extensible format for describing how firmware
   and software updates are to be fetched, verified, decrypted, and
   installed on resource-constrained devices.  To ensure the security of
   these update processes, the manifest relies on cryptographic
   algorithms for functions such as digital signature verification,
   integrity checking, and confidentiality.

   This document defines cryptographic algorithm profiles for use with
   the Software Updates for Internet of Things (SUIT) manifest.  These
   profiles specify sets of algorithms to promote interoperability
   across implementations.

   Given the diversity of IoT deployments and the evolving cryptographic
   landscape, algorithm agility is essential.  This document groups
   algorithms into named profiles to accommodate varying levels of
   device capabilities and security requirements.  These profiles
   support the use cases laid out in the SUIT architecture, published in
   &quot;A Firmware Update Architecture for Internet of Things&quot; (RFC 9019).

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-suit-mti-23"/>
   
</reference>

<reference anchor="I-D.ietf-suit-trust-domains">
   <front>
      <title>Software Update for the Internet of Things (SUIT) Manifest Extensions for Multiple Trust Domain</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="22" month="July" year="2025"/>
      <abstract>
	 <t>   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.  This specification describes extensions to the
   Software Update for the Internet of Things (SUIT) Manifest format for
   use in deployments with multiple trust domains.

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

<reference anchor="I-D.ietf-suit-report">
   <front>
      <title>Secure Reporting of SUIT 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="9" month="December" year="2025"/>
      <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.  This document specifies 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-18"/>
   
</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"/>
    <date month="March" year="1997"/>
    <abstract>
      <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="14"/>
  <seriesInfo name="RFC" value="2119"/>
  <seriesInfo name="DOI" value="10.17487/RFC2119"/>
</reference>
<reference anchor="RFC8174">
  <front>
    <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
    <author fullname="B. Leiba" initials="B." surname="Leiba"/>
    <date month="May" year="2017"/>
    <abstract>
      <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="14"/>
  <seriesInfo name="RFC" value="8174"/>
  <seriesInfo name="DOI" value="10.17487/RFC8174"/>
</reference>



    </references>

    <references title='Informative References' anchor="sec-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">
         <organization>University of Applied Sciences Bonn-Rhein-Sieg</organization>
      </author>
      <author fullname="Russ Housley" initials="R." surname="Housley">
         <organization>Vigil Security, LLC</organization>
      </author>
      <author fullname="Brendan Moran" initials="B." surname="Moran">
         <organization>Arm Limited</organization>
      </author>
      <author fullname="David Brown" initials="D." surname="Brown">
         <organization>Linaro</organization>
      </author>
      <author fullname="Ken Takayama" initials="K." surname="Takayama">
         <organization>SECOM CO., LTD.</organization>
      </author>
      <date day="8" month="December" year="2025"/>
      <abstract>
	 <t>   This document specifies techniques for encrypting software, firmware,
   machine learning models, and personalization data by utilizing the
   IETF SUIT manifest.  Key agreement is provided by ephemeral-static
   (ES) Diffie-Hellman (DH) and AES Key Wrap (AES-KW).  ES-DH uses
   public key cryptography while AES-KW uses a pre-shared key.
   Encryption of the plaintext is accomplished with conventional
   symmetric key cryptography.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-suit-firmware-encryption-26"/>
   
</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>Linaro</organization>
      </author>
      <author fullname="Vincent Scarlata" initials="V." surname="Scarlata">
         <organization>Intel</organization>
      </author>
      <date day="15" month="August" year="2025"/>
      <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.

   This document also defines two serialisations of the proposed
   information model, utilising CBOR and JSON.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-rats-ar4si-09"/>
   
</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="5" month="November" year="2025"/>
      <abstract>
	 <t>   This document describes interaction models for remote attestation
   procedures (RATS) [RFC9334].  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-15"/>
   
</reference>

<reference anchor="I-D.ietf-teep-otrp-over-http">
   <front>
      <title>HTTP Transport for Trusted Execution Environment Provisioning: Agent Initiated Communication</title>
      <author fullname="Dave Thaler" initials="D." surname="Thaler">
         <organization>Microsoft</organization>
      </author>
      <date day="27" month="March" year="2023"/>
      <abstract>
	 <t>   The Trusted Execution Environment Provisioning (TEEP) Protocol is
   used to manage code and configuration data in a Trusted Execution
   Environment (TEE).  This document specifies the HTTP transport for
   TEEP communication where a Trusted Application Manager (TAM) service
   is used to manage code and data in TEEs on devices that can initiate
   communication to the TAM.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-teep-otrp-over-http-15"/>
   
</reference>

<reference anchor="I-D.ietf-opsawg-rfc5706bis">
   <front>
      <title>Guidelines for Considering Operations and Management in IETF Specifications</title>
      <author fullname="Benoît Claise" initials="B." surname="Claise">
         <organization>Everything OPS</organization>
      </author>
      <author fullname="Joe Clarke" initials="J." surname="Clarke">
         <organization>Cisco</organization>
      </author>
      <author fullname="Adrian Farrel" initials="A." surname="Farrel">
         <organization>Old Dog Consulting</organization>
      </author>
      <author fullname="Samier Barguil" initials="S." surname="Barguil">
         <organization>Nokia</organization>
      </author>
      <author fullname="Carlos Pignataro" initials="C." surname="Pignataro">
         <organization>Blue Fern Consulting</organization>
      </author>
      <author fullname="Ran Chen" initials="R." surname="Chen">
         <organization>ZTE</organization>
      </author>
      <date day="17" month="December" year="2025"/>
      <abstract>
	 <t>   New Protocols or Protocol Extensions are best designed with due
   consideration of the functionality needed to operate and manage them.
   Retrofitting operations and management considerations is suboptimal.
   The purpose of this document is to provide guidance to authors and
   reviewers on what operational and management aspects should be
   addressed when defining New Protocols or Protocol Extensions.

   This document obsoletes RFC 5706, replacing it completely and
   updating it with new operational and management techniques and
   mechanisms.  It also updates RFC 2360 to obsolete mandatory MIB
   creation and introduces a requirement to include an &quot;Operational
   Considerations&quot; section in new RFCs in the IETF Stream.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-opsawg-rfc5706bis-01"/>
   
</reference>
<reference anchor="RFC9397">
  <front>
    <title>Trusted Execution Environment Provisioning (TEEP) Architecture</title>
    <author fullname="M. Pei" initials="M." surname="Pei"/>
    <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
    <author fullname="D. Thaler" initials="D." surname="Thaler"/>
    <author fullname="D. Wheeler" initials="D." surname="Wheeler"/>
    <date month="July" year="2023"/>
    <abstract>
      <t>A Trusted Execution Environment (TEE) is an environment that enforces the following: any code within the environment cannot be tampered with, and any data used by such code cannot be read or tampered with by any code outside the environment. This architecture document discusses the motivation for designing and standardizing a protocol for managing the lifecycle of Trusted Applications running inside such a TEE.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9397"/>
  <seriesInfo name="DOI" value="10.17487/RFC9397"/>
</reference>
<reference anchor="RFC9782">
  <front>
    <title>Entity Attestation Token (EAT) Media Types</title>
    <author fullname="L. Lundblade" initials="L." surname="Lundblade"/>
    <author fullname="H. Birkholz" initials="H." surname="Birkholz"/>
    <author fullname="T. Fossati" initials="T." surname="Fossati"/>
    <date month="May" year="2025"/>
    <abstract>
      <t>The payloads used in Remote ATtestation procedureS (RATS) may require an associated media type for their conveyance, for example, when the payloads are used in RESTful APIs.</t>
      <t>This memo defines media types to be used for Entity Attestation Tokens (EATs).</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9782"/>
  <seriesInfo name="DOI" value="10.17487/RFC9782"/>
</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="December" 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-02"/>
   
</reference>
<reference anchor="RFC8610">
  <front>
    <title>Concise Data Definition Language (CDDL): A Notational Convention to Express Concise Binary Object Representation (CBOR) and JSON Data Structures</title>
    <author fullname="H. Birkholz" initials="H." surname="Birkholz"/>
    <author fullname="C. Vigano" initials="C." surname="Vigano"/>
    <author fullname="C. Bormann" initials="C." surname="Bormann"/>
    <date month="June" year="2019"/>
    <abstract>
      <t>This document proposes a notational convention to express Concise Binary Object Representation (CBOR) data structures (RFC 7049). Its main goal is to provide an easy and unambiguous way to express structures for protocol messages and data formats that use CBOR or JSON.</t>
    </abstract>
  </front>
  <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"/>
    <author fullname="D. Sibold" initials="D." surname="Sibold"/>
    <author fullname="K. Teichel" initials="K." surname="Teichel"/>
    <author fullname="M. Dansarie" initials="M." surname="Dansarie"/>
    <author fullname="R. Sundblad" initials="R." surname="Sundblad"/>
    <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"/>
    <author fullname="S. Ashmore" initials="S." surname="Ashmore"/>
    <author fullname="C. Wallace" initials="C." surname="Wallace"/>
    <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"/>
    <author fullname="D. Thaler" initials="D." surname="Thaler"/>
    <author fullname="M. Richardson" initials="M." surname="Richardson"/>
    <author fullname="N. Smith" initials="N." surname="Smith"/>
    <author fullname="W. Pan" initials="W." surname="Pan"/>
    <date month="January" year="2023"/>
    <abstract>
      <t>In network protocol exchanges, it is often useful for one end of a communication to know whether the other end is in an intended operating state. This document provides an architectural overview of the entities involved that make such tests possible through the process of generating, conveying, and evaluating evidentiary Claims. It provides a model that is neutral toward processor architectures, the content of Claims, and protocols.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9334"/>
  <seriesInfo name="DOI" value="10.17487/RFC9334"/>
</reference>
<reference anchor="RFC9124">
  <front>
    <title>A Manifest Information Model for Firmware Updates in Internet of Things (IoT) Devices</title>
    <author fullname="B. Moran" initials="B." surname="Moran"/>
    <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
    <author fullname="H. Birkholz" initials="H." surname="Birkholz"/>
    <date month="January" year="2022"/>
    <abstract>
      <t>Vulnerabilities with Internet of Things (IoT) devices have raised the need for a reliable and secure firmware update mechanism that is also suitable for constrained devices. Ensuring that devices function and remain secure over their service lifetime requires such an update mechanism to fix vulnerabilities, update configuration settings, and add new functionality.</t>
      <t>One component of such a firmware update is a concise and machine-processable metadata document, or manifest, that describes the firmware image(s) and offers appropriate protection. This document describes the information that must be present in the manifest.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9124"/>
  <seriesInfo name="DOI" value="10.17487/RFC9124"/>
</reference>



    </references>

</references>


<?line 2290?>

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

<t>Finally, we would like to thank the following IESG members for their review feedback: Sean Turner, Paul Kyzivat, Scott Hollenbeck, Luigi Iannone, Paul Wouters, and Yoshifumi Nishida</t>

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

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

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

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

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

teep-option = (uint => any)

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

; message type numbers, 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 .cbor SUIT_Report ],
    * $$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-ed25519
$teep-cipher-suite /= teep-cipher-suite-sign1-esp256

;The following two cipher suites have only a single operation each.
;Other cipher suites may be defined to have multiple operations.
;It is 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-ed25519 = [ cose-sign1, cose-alg-ed25519 ]
teep-operation-sign1-esp256  = [ cose-sign1, cose-alg-esp256 ]

teep-cipher-suite-sign1-ed25519 = [ teep-operation-sign1-ed25519 ]
teep-cipher-suite-sign1-esp256  = [ teep-operation-sign1-esp256 ]

;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-esp256  = -9   ; ECDSA using P-256 curve and SHA-256
cose-alg-ed25519 = -19  ; EdDSA using Ed25519 curve

; suit-cose-profile
$suit-cose-profile /= suit-sha256-esp256-ecdh-a128ctr
$suit-cose-profile /= suit-sha256-ed25519-ecdh-a128ctr
$suit-cose-profile /= suit-sha256-esp256-ecdh-a128gcm
$suit-cose-profile /= suit-sha256-ed25519-ecdh-chacha-poly

; 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-version => version,
    ? attestation-payload-format => text,
    ? attestation-payload => bstr,
    ? suit-reports => [ + bstr .cbor SUIT_Report ],
    ? 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,
  ? 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),
    ? err-lang => text .size (1..35),
    * $$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 => [ + bstr .cbor 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),
     ? err-lang => text .size (1..35),
     ? supported-teep-cipher-suites => [ + $teep-cipher-suite ],
     ? supported-freshness-mechanisms => [ + $freshness-mechanism ],
     ? supported-suit-cose-profiles => [ + $suit-cose-profile ],
     ? challenge => bstr .size (8..512),
     ? versions => [ + version ],
     ? suit-reports => [ + bstr .cbor 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_UNSUPPORTED_SUIT_REPORT = 8
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-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, -9 ] ] / Sign1 using ESP256 /,
    [ [ 18, -19 ] ] / Sign1 using Ed25519 /
  ],
  / supported-suit-cose-profiles: / [
    [-16, -9, -29, -65534] / suit-sha256-esp256-ecdh-a128ctr /,
    [-16, -19, -29, -65534] / suit-sha256-ed25519-ecdh-a128ctr /,
    [-16, -9, -29, 1]      / suit-sha256-esp256-ecdh-a128gcm /,
    [-16, -19, -29, 24]     / suit-sha256-ed25519-ecdh-chacha-poly /
  ],
  / 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[
=============== NOTE: '\' line wrapping per RFC 8792 ================

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 /
            28      # negative(8) / -9 = cose-alg-esp256 /
      81            # array(1)
         82         # array(2)
            12      # unsigned(18) / cose-sign1 /
            32      # negative(18) / -19 = cose-alg-ed25519 /
   84               # array(4) / supported-suit-cose-profiles /
      84            # array(4) / suit-sha256-esp256-ecdh-a128ctr /,
         2f         # negative(15) / -16 = SHA-256 /
         28         # negative(8) / -9 = ESP256 /
         38 1C      # negative(28) / -29 = ECDH-ES + A128KW /
         39 fffd    # negative(65533) / -65534 = A128CTR /
      84            # array(4) / suit-sha256-ed25519-ecdh-a128ctr /
         2f         # negative(15) / -16 = SHA-256 /
         32         # negative(18) / -19 = Ed25519 /
         38 1C      # negative(28) / -29 = ECDH-ES + A128KW /
         39 fffd    # negative(65533) / -65534 = A128CTR /
      84            # array(4) / suit-sha256-esp256-ecdh-a128gcm /
         2f         # negative(15) / -16 = SHA-256 /
         28         # negative(6) / -9 = ESP256 /
         38 1C      # negative(28) / -29 = ECDH-ES + A128KW /
         01         # unsigned(1) / A128GCM /
      84            # array(4) / suit-sha256-ed25519-ecdh-chacha-\
                                                               poly /
         2f         # negative(15) / -16 = SHA-256 /
         32         # negative(18) / Ed25519 /
         38 1C      # negative(28) / -29 = ECDH-ES + A128KW /
         18 18      # unsigned(24) / 24 = ChaCha20/Poly1305 /
   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], / Multipart numeric  /
    / 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[
=============== NOTE: '\' line wrapping per RFC 8792 ================

/ query-response = /
[
  / type: / 2 / TEEP-TYPE-query-response /,
  / options: /
  {
    / token / 20 : h'A0A1A2A3A4A5A6A7A8A9AAABACADAEAF',
    / 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[
=============== NOTE: '\' line wrapping per RFC 8792 ================

82                  # array(2)
   02               # unsigned(2) / TEEP-TYPE-query-response /
   A4               # map(4)
      14            # unsigned(20) / token: /
      50            # bytes(16)
         A0A1A2A3A4A5A6A7A8A9AAABACADAEAF
      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)
               \
822F5820A7FD6593EAC32EB4BE578278E6540C5C09CFD7D4D234973054833B2B9303\
                                                                 0609
]]></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[
=============== NOTE: '\' line wrapping per RFC 8792 ================

/ 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'\
5B2D535A2B6D5E3C585C1074F414DA9E10BD285C99A33916DADE3ED38812504817AC\
        48B62B8E984EC622785BD1C411888BE531B1B594507816B201F6F28579A4'
            ] ) >>
          ] >>,
          / 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[
=============== NOTE: '\' line wrapping per RFC 8792 ================

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[
=============== NOTE: '\' line wrapping per RFC 8792 ================

/ SUIT_Envelope / {
  / authentication-wrapper / 2: << [
    << [
      / digest-algorithm-id: / -16 / SHA256 /,
      / digest-bytes: / h'\
    B39B52B0B747EA79588C190F567BFC2C8437BA8A73F7EA983182E79F0148D59B'
    ] >>,
    << / COSE_Sign1_Tagged / 18([
      / protected: / << {
        / algorithm-id / 1: -9 / ESP256 /
      } >>,
      / unprotected: / {},
      / payload: / null,
      / signature: / h'\
B35BF8C5276ACF6131F4661E76A7F19945FF928A4B7D79572583E857C695DFD48725\
        C1B8253EF6E805A9EEE9262CAAB61A09DF69CCBD996F2431BC2515EB59FF'
    ]) >>
  ] >>,
  / 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 / 20: << [
      / 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[
A2025873825824822F5820B39B52B0B747EA79588C190F567BFC2C8437BA
8A73F7EA983182E79F0148D59B584AD28443A10128A0F65840B35BF8C527
6ACF6131F4661E76A7F19945FF928A4B7D79572583E857C695DFD48725C1
B8253EF6E805A9EEE9262CAAB61A09DF69CCBD996F2431BC2515EB59FF03
590108A601010203035884A20281844B544545502D446576696365485365
637572654653508D82573A926D4754935332DC29997F7442746104585486
14A40150C0DDD5F15243566087DB4F5B0AA26C2F0250DB42F7093D8C55BA
A8C5265FC5820F4E035824822F58208CF71AC86AF31BE184EC7A05A411A8
C3A14FD9B77A30D046397481469468ECE80E14010F020F05844B54454550
2D446576696365485365637572654653508D82573A926D4754935332DC29
997F7444737569741458458614A115783B68747470733A2F2F6578616D70
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[
=============== NOTE: '\' line wrapping per RFC 8792 ================

/ SUIT_Envelope / {
  / authentication-wrapper / 2: << [
    << [
      / digest-algorithm-id: / -16 / SHA256 /,
      / digest-bytes: / h'\
    CEDB0457952F7DD0A33FA4692F73BC833A6A6E2300B16F6605993F0192E3F219'
    ] >>,
    << / COSE_Sign1_Tagged / 18([
      / protected: / << {
        / algorithm-id / 1: -9 / ESP256 /
      } >>,
      / unprotected: / {},
      / payload: / null,
      / signature: / h'\
6A9F4D3DE3B8BC49A47F12E13A3EF76C5E2B4BB1D8EE6EFFA659220A6D8D164B3926\
        A722220283A9C7B48DA012A188F0C6F98F3962613E63CD4C597D4C01F56C'
    ]) >>
  ] >>,
  / 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 / 20: << [
      / 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[
A3025873825824822F5820CEDB0457952F7DD0A33FA4692F73BC833A6A6E
2300B16F6605993F0192E3F219584AD28443A10128A0F658406A9F4D3DE3
B8BC49A47F12E13A3EF76C5E2B4BB1D8EE6EFFA659220A6D8D164B3926A7
22220283A9C7B48DA012A188F0C6F98F3962613E63CD4C597D4C01F56C03
58CEA601010203035884A20281844B544545502D44657669636548536563
7572654653508D82573A926D4754935332DC29997F744274610458548614
A40150C0DDD5F15243566087DB4F5B0AA26C2F0250DB42F7093D8C55BAA8
C5265FC5820F4E035824822F58208CF71AC86AF31BE184EC7A05A411A8C3
A14FD9B77A30D046397481469468ECE80E14010F020F05844B544545502D
446576696365485365637572654653508D82573A926D4754935332DC2999
7F744473756974144C8614A11563237463150F030F1818448218210F6323
74635448656C6C6F2C2053656375726520576F726C6421
]]></artwork></figure>

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

<t>This example uses the following parameters:</t>

<t><list style="symbols">
  <t>SUIT Profile: suit-sha256-esp256-ecdh-a128ctr (see <xref target="I-D.ietf-suit-mti"/> Section 3.2)
  <list style="symbols">
      <t>Algorithm for payload encryption: A128CTR (-65534)</t>
      <t>Algorithm for key wrap: ECDH-ES + A128KW (-29)</t>
    </list></t>
  <t>KEK (Receiver's Private Key):
  <list style="symbols">
      <t>kty: EC2</t>
      <t>crv: P-256</t>
      <t>x: h'5886CD61DD875862E5AAA820E7A15274
C968A9BC96048DDCACE32F50C3651BA3'</t>
      <t>y: h'9EED8125E932CD60C0EAD3650D0A485C
F726D378D1B016ED4298B2961E258F1B'</t>
      <t>d: h'60FE6DD6D85D5740A5349B6F91267EEA
C5BA81B8CB53EE249E4B4EB102C476B3'</t>
    </list></t>
  <t>COSE_KDF_Context
  <list style="symbols">
      <t>AlgorithmID: -3 (A128KW)</t>
      <t>SuppPubInfo
      <list style="symbols">
          <t>keyDataLength: 128</t>
          <t>protected: &lt;&lt; {/ alg / 1: -29 / ECDH-ES+A128KW / } &gt;&gt;</t>
          <t>other: 'SUIT Payload Encryption'</t>
        </list></t>
    </list></t>
</list></t>

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

<figure><artwork><![CDATA[
=============== NOTE: '\' line wrapping per RFC 8792 ================

/ SUIT_Envelope / {
  / authentication-wrapper / 2: << [
    << [
      / digest-algorithm-id: / -16 / SHA256 /,
      / digest-bytes: / h'\
    506D4796D65AE599EE0A3F7D123ED6819E0FA1A324A5DE547F6D7F50D465508A'
    ] >>,
    << / COSE_Sign1_Tagged / 18([
      / protected: / << {
        / algorithm-id / 1: -9 / ESP256 /
      } >>,
      / unprotected: / {},
      / payload: / null,
      / signature: / h'\
9AF4896B66B0642122C5317D1D8A81BB4CE3C0B022A7A53879224BA14AE954DE456D\
        01069DEF0B5CE2E6B0325ACF21B5059320ABBA8480602C8A6FD7BF7894FF'
    ]) >>
  ] >>,
  / 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'\
    8273468FB64BD84BB04825F8371744D952B751C73A60F455AF681E167726F116'
        ] >>,
        / image-size / 14: 61
      },
      / condition-image-match / 3, 15
    ] >>,
    / dependency-resolution / 15: << [
      / directive-set-component-index / 12, 1,
      / directive-override-parameters / 20, {
        / parameter-image-digest / 3: << [
          / algorithm-id / -16 / SHA256 /,
          / digest-bytes / h'\
    B39B52B0B747EA79588C190F567BFC2C8437BA8A73F7EA983182E79F0148D59B'
        ] >>,
        / parameter-image-size / 14: 389,
        / parameter-uri / 21: "https://example.org/8d82573a-926d-\
                                         4754-9353-32dc29997f74.suit"
      },
      / directive-fetch / 21, 2
    ] >>,
    / install / 20: << [
      / 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'\
6D5BE4F569E98AE01F38B071EF025437B742FF28854AB32C868BC6A76CD33B5CA112\
             FF22BA95EA4672B7199C89A7829183794A21A6BE345C4371DCB0DC',
        / parameter-encryption-info / 19: << 96([
          / protected: / h'',
          / unprotected: / {
            / alg / 1: -65534 / A128CTR /,
            / IV / 5: h'67E3BA7CD42D02BBC39C508B5EA0F1C4'
          },
          / payload: / null / detached ciphertext /,
          / recipients: / [
            [
              / protected: / << {
                / alg / 1: -29 / ECDH-ES + A128KW /
              } >>,
              / unprotected: / {
                / ephemeral key / -1: {
                  / kty / 1: 2 / EC2 /,
                  / crv / -1: 1 / P-256 /,
                  / x / -2: h'\
   F2452399667F57993B14C5F1107F667884854C190894FC08531C1E2290A7BA19',
                  / y / -3: h'\
    275EDDE29FD75C9393AFFA706F8FAD3C49D03D67D47F8B0C027BE5F0BCA884CB'
                }
              },
              / payload: / h'\
                    7D806DA1ACEC6F704D803F0CFE7420525C81E1957699FCCE'
            ]
          ]
        ]) >>
      },

      / decrypt encrypted firmware /
      / directive-write / 18, 15 / consumes the \
                                         SUIT_Encryption_Info above /
      / NOTE: decrypted payload would be ``{"name":"FOO Bar","secret\
                             ":"0123456789abfcdef0123456789abcd"}'' /
    ] >>,
    / 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[
A2025873825824822F5820506D4796D65AE599EE0A3F7D123ED6819E0FA1
A324A5DE547F6D7F50D465508A584AD28443A10128A0F658409AF4896B66
B0642122C5317D1D8A81BB4CE3C0B022A7A53879224BA14AE954DE456D01
069DEF0B5CE2E6B0325ACF21B5059320ABBA8480602C8A6FD7BF7894FF03
590242A801010203035886A301A101A101844B544545502D446576696365
485365637572654653508D82573A926D4754935332DC29997F7444737569
740281834B544545502D4465766963654853656375726546534B636F6E66
69672E6A736F6E04582D880C0014A20150C0DDD5F15243566087DB4F5B0A
A26C2F0250DB42F7093D8C55BAA8C5265FC5820F4E010F020F05834B5445
45502D4465766963654853656375726546534B636F6E6669672E73756974
075831860C0014A2035824822F58208273468FB64BD84BB04825F8371744
D952B751C73A60F455AF681E167726F1160E183D030F0F5872860C0114A3
035824822F5820B39B52B0B747EA79588C190F567BFC2C8437BA8A73F7EA
983182E79F0148D59B0E19018515783D68747470733A2F2F6578616D706C
652E6F72672F38643832353733612D393236642D343735342D393335332D
3332646332393939376637342E7375697415021458D88A0C010B000C0014
A212583D6D5BE4F569E98AE01F38B071EF025437B742FF28854AB32C868B
C6A76CD33B5CA112FF22BA95EA4672B7199C89A7829183794A21A6BE345C
4371DCB0DC13588AD8608440A20139FFFD055067E3BA7CD42D02BBC39C50
8B5EA0F1C4F6818344A101381CA120A401022001215820F2452399667F57
993B14C5F1107F667884854C190894FC08531C1E2290A7BA19225820275E
DDE29FD75C9393AFFA706F8FAD3C49D03D67D47F8B0C027BE5F0BCA884CB
58187D806DA1ACEC6F704D803F0CFE7420525C81E1957699FCCE120F1818
4A880C010B000C0018210F
]]></artwork></figure>

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

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

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

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

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

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

<figure><artwork><![CDATA[
{
  / suit-report-manifest-digest / 1:<<[
    / algorithm-id / -16 / "sha256" /,
    / digest-bytes / h'a7fd6593eac32eb4be578278e6540c5c09cfd7d4d23497
3054833b2b93030609'
  ]>>,
  / suit-report-manifest-uri / 2: "tam.teep.example/personalisation",
  / 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',
    } ,
  / directive-fetch / 21,2,
  / condition-image-match / 3,15
]>>,
]]></artwork></figure>

</section>
</section>


  </back>

<!-- ##markdown-source:
H4sIAAAAAAAAA+y9+3IbyZkn+n8+RR7JsSLbACRSd2rkGTQFTXPdlLgk222H
w6tJViWAGhWq4MoCKVjixD7IORHnWc6j7JOc+C55q0qApFoee3ft2IuaqMrK
y5ff/ft9w+FQmFZV+QdV1pU+kG2z0qJYNvgv0+4/evTy0b7I66xSC30g80ZN
22Gh2+mw1Xo5XDZ1W2d1OSxVq00rMtUeSNPmwqwuFoUxRV2166U+kEeT87di
WRwIKU3bFFl7IB+stXkgpGzrLPqPXC/b+YF88AT+26wXjZ4a/4Cpmzb+S1Yv
lioc0Kwu/N+q+oFoi7bUB/IcVqRzOfmks1Vb1JWcVJdFU1cLXbXypKkvC5hw
Uc3kzvlkcrILf8PlCXVx0ejLAwl/Dv7aaHUgz3S2aop2La5m9ID4eHXDx0Su
Wn0g9x/tPxNq1c7r5kAIORRSTldlSVv9g6oqbeS5yeb1VFfFTEhZNzNVFX9R
MN6B/KkqLnVjinYt66kcL5dloXN5lhW6yrSR39dVNTyd66IanhUaXrer+GH4
/ekZ7tyqapv1gfxX3SxUtRZS6oUqygN5b45fH7Xu6/8yW3waVbq9R/MsKnMg
j0fyRBdCSprxcVHNykJVM/5r3cwO5PdNrfKsXtDBaw1ngqdWtGv+Z6NnuB76
e51r90+e3k9nfmYL+5HRUhf/csGjj+ALwczejOTPc61L3bjZvVGXRR78FWc3
Xqi/1NW3mluuLvXVXOt/UThsYlLnc9WZk/Z/wxkdF1lTm3rafstJjVr8xggu
7r/M4O/duY1H8tysPqpF3dZueuOPRaOiv+MUH7xf6iqbF0v5X+RZPW2vVKPl
uc7mVV3Ws0KbgTwb/Th68EtWMAlWoGAao9ZOI1xAVTcL1RaXGhjL6dvDl4+e
7vM/Hz/bf8n/fPrsyTP7z72XL/ifL54/eW7/+fLJy/4IL589d399vrcH/zwa
vsFNHJpV0Q4Xqiqm2rSJX9qi/0fkqMO8XijY8t7PjV7WDY51+P5sMhqXs7op
2vkC/iIl87B78Jt0v5l7+KPlIRL/h4d0NH43phdVM4MjmLft0hw8fHh1dTUq
VKVGdTN7qIwpZsiSzMOsNhr/n9Gnebso7yv3EVFU03Cj43lPi2YBJDDUVdas
l8Sbwqca1Zqhap6YeE/wz42e6gb41bCoWt2oDF4fLupcl/EWobip22Y5rC91
M4TVRL/XS6OuZsNmmj19/ujZRWHsyT1++dwd4ov9/gyyusoKo4etGpq2brR9
8cWzvUe4DqSPvaeWgF4+fuKG9v/c239yIMRwOJTqwrSwDiHE+bwwMq+zFQoY
s9RZMS20kUpauSnbuWrhBraqLM1ArpYgGcxAqiqXuS51q42wouSwXizrCs5K
FpVUMteXRablVdHOpeoLHBFKNxBouyMpcUo8kwzliMz1tABJoyqJZ1AvdaMu
Si3cJKd1IxeqUjMQje1cy7KY6mydlRoET396I9qJRZHnpRbivjyq2qbOV3i4
8vP9IvjPayHk+VzfIJxx+hKOSi9bOVdGXmgNUwfy1bkE5mT0UjWq1VIBe1mV
qpG4lBZmbdam1YuBVKWpJRJdg69JBcdxWmTzYOPiT59OJrsDOW3qhTQs6odG
V6aA6yAViF3aSTOSR3Au55OJ0FltP8nHdKmrvG6MXKi1XBkt82KKpN/2ZonH
2861OJ1MkBD6r4BSZXDzJxODsq7qn4N8oy91CaMbWTcC/hMmMs4XRVUAkbYw
HxjYvjr2i5HHcODw6s75+Njs4hYzoVo6Dck0NYbB39u5LhqZ66Wucl1lcAFq
2KarIteyUdVMC1gJbZMhcl7Wra7aQpXlOlg1LHYA41UdYi1K0L9kpXUuVVMY
DSS46fYBAUekndWLxarCOVczeaHbK6AtJc/HxwIWoEjtG8901eK4N1FrSpVU
TTYvWp21q0YLN6vPn5lFXV/DnC6LXBumajFbFbmqMo2baK8MzV9UOtPGqGYt
W90sChS865GAu3bu/0Bz/ajX8qpuciPvHf90dn5vQP+/fPce/306+W8/HZ1O
3sC/z34Y//ij+4fgJ85+eP/Tj2/8v/ybh++Pjyfv3tDL796fy+hP4t7x+A/3
iEjuvT85P3r/bvzjPSLu8GhAfWhreaHpSJeNhq1VRuTaZE1xoWH58vvDk//v
/917Ij9//r9O3x7u7+29vL7m/3ix9/zJ9bW8muuKvlZX5Zr/s53rtVDLpVYN
cs2ylJlaFq0CdquMNPP6qpJz3eiR+Kd/LotKy+Gzf/6N5d4xq2z0yjAFBfvO
HBRnGRzoSIixkfrTslT21zNNLPDJ6AmQPDJ/uw04VaI0Lx0arVojtMrmyTu6
cz7ehRWv4+uFA42BTdJ2AAeoK1Wy5SBz1SpcO3NMkXnJgnOCE9Gflo02hif+
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
tqk4nncMl42eFp8g6HoXfYz+90dmxgP5AE7qwQYpvW2QW3v1tmhftx1i2yBh
w8IbCHfbcv74IGDdm/Zj+yB38JJu1BRvzQW2DBLQSKNNXa7aYjMBf40OfodB
buHvv3fjIHfYla9R2289yDc5ndvHYLYux+h2GAB2VLn+BNCQdxvkGx0xoyOQ
7fF28uj5yyfO7rj1IKzcQQ4pJLcfyH/6J3Qq/+Y3tx7km9DJVVPcOkR5p9PZ
u+vpsAo6DPTFu87kTqGXDaboXYb4OjvzFoN8RRzn6yzR/ly+wjTdMsjXhrO+
0nhN6LGRNev0fVdfudXG+gV2a6fKwhqvtujMt45HW4z/uKlYPNk+zha2AWZJ
hKeU8IVvLw/tf/5vUx+K1gmvSoT/saFWNHzkaytGb66m/LoG3uHcfkmFZfds
fmGJ5dMEnHj3E5uAxNmxL+RfCUg8qCmhx9pw6smBwzTNDryqXVUfUDUBL27x
tOiv2EQkwLqN2zZb8PEqdXegVM/VG8S1Br5SwraL80nwMTaUxaZF0MR+jQFl
rHbLDPpFBgv1ydcWCLmttPXbwf1uBuu9NTrv1lYwcXtbXVCrYyoJpFzkVeX/
M0TB5ahospkMlhgm2slEzWTu2EgmQKi2rWR+YSOZuwAPb70Tf2dgw925EswK
VVV7lJV+3RBxyKj6+naik4u3e5LTjRIWmN8oPrsT+BsKT1yW8P/cJjipfr0v
Nm8jN28JRXBLLAIUslsaMbPQ/VXvJytwowGSXU3tEIkfk4Mk2ifbIXo/BQP4
poj9zXu6t+/X65oj8qgWLSmcy13VDq9W0FXpah03qB0DLr8C3ntggSeg0cqr
DbV/A2yO4p6cnJ5+OJmcHo/fTd6df5icnr4/la/lHv79p3dnP52cvD89n7z5
MPn9+eTd2dH7d/K13O/9+vZ0cvbDu8nZ2YfjyeEP43dHZ8dn8rV83Hvw+Oxf
P/xucsoDPen9fnh08sPk9APs0wRGeIpPfD9+8+Fwcnp+9PbocHw+ka/lM/z7
+Px8cnY+hpq6D6eT//bT0enkjXwtn/eGpX2fwH/J1/IF/h4M+GHy+xN+9yX+
dj45Pnl/Oj79g9+RR/jD8fjd0dvJ2fmHk9P3h5Ozs6N3//rh7fjoR3x373mg
Asb85RcqgM9SGBvxF27Q//7OtL+/jdoX7djfotD0q5RAnujfvL50e3lpgJP5
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
M/eT25WuPsaIq+7nkzVbmNPUskamDrcX89POMBml4b9KDZTS5jrHiqrTjwve
ME8GxjxzhoDxWbNWMqmmMg3YmMrwo+tJFmGygFZBUEnd+ST51EsPtQ3Q6EeP
Dp+Dl68OfzTee0+iN/Zb79nho8f6NNLP/GeP/E/vHx09o0qfRo+CIP33TfTY
fwRv+jeHvv7++1N9+c83v/4z+OHR02cM/ugHXvDrm6Orf3wL1a+PLiafvns5
uwyfvv7cPRv/48XZK/080PooOp9G/dnp9fv36ruzHz+OE/F8evHh/fun8tXV
B+/ltyfjq59+GpwNP+jZ6/noyburefAm+njz5PnV7Pnjf4zVC588//Zmon+4
mn++eIXJM3r1ZPyTm1b0PFyclDsYZv1tzgOjzxy6xJMn5+OBXdw0b3GWrdGm
mv+U5lrNNq1p/X7wnx4GpeWL391EN28eP5n+8/DzrzDQ3785TP8d6u8H4fen
Ojr7ru8/ek+fvn//4ejNj4M3k+vP/e9m/P24G514J5+7F3T24/nk8B8nN0+g
ePzp8umJvvCfDYJfT/qfXyH64fXp8PNo/t1N/PTkGXs3vPr84unR9Pz04KC0
ArVhuQUwpCW9GAb2qtwLYLPT2oM4BT+8OszCLbZmt0uv0fVs3HiDzLPbRpUW
LuWXV0Y1KXi6YC2dTgn6yC2SmoGwuh1D1YCpjFb5RPkM+9AXVERaKCZlgBSM
GRd+HOBAUiJ8LbUgsYi0kgRJHAkVQ0RlyJS/nUIEGXSzTKtSDL5dmdKoRFFW
iVKx1S6DRUu0Jq3akgYtiU+YHxvJQ3AdxBwRFFPOUSS4FjFSirI4Vlhq6otQ
KCYwkySSTARcsTAOqRSYFax8gHyJGYliHknItIqiSGGOA619jjRUYcxVEPih
UjzGlCA/wAyxyGcqjtNFTZUj2eIW4ntNB1GS65tUH6Wfl2k7jBdKo4KjC9p1
GhUobtsyGE6/UMV/tzOFQeXr++gJtq/6BVCa4f3Hpd0968+Mi0s7tG/uxN0A
wy74QwD8crf/Psy+3OsaMP0dH6RapS8Koi8qFdfDy0uYrLkCd4DGy8VXoOE5
Dls8aKX7WrOlY6Wr13zZFi/aWpes6ZZtG6qavkTZwAokHsNenR7d5TKV92AF
4F5F1O+k2FkJv9/uNYy/GWkv72kbuH5c2sPrSWmxaOtiXU/Ox5N3ppVqM16K
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
EsSI3W/tuDVinr2kdu7/B8N0w+RoIgIA

-->

</rfc>

