<?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-26" 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 110?>

<t>This document specifies the Trusted Execution Environment Provisioning
(TEEP) Protocol, which enables secure lifecycle management of Trusted
Components in devices with a Trusted Execution Environment (TEE).
The protocol defines message exchanges between a Trusted Application
Manager (TAM) and a TEEP Agent to query device state, convey
attestation evidence, and install, update, or delete Trusted
Components.  Messages are encoded in CBOR and secured using COSE.</t>



    </abstract>



  </front>

  <middle>


<?line 121?>

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

<t>Examples are folded following the conventions in <xref target="RFC8792"/>.</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 TEEP protocol is transport-agnostic; bindings to specific transports
are defined in separate companion specifications.  Section <xref target="transport"/>
defines requirements for such transport bindings.
Deployments MAY use a single TAM or multiple TAMs; local policy
determines which TAMs are permitted to manage a given device. Since
single TAM deployments are more likely, this document assumes them as
the default.
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.
As discussed in <xref target="agent"/>, a QueryResponse can also be sent unsolicited when the
contents of the corresponding QueryRequest are already known and do not vary per message.</t>

<figure title="QueryRequest and QueryResponse Message Flow" anchor="fig-query-overview"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="224" width="328" viewBox="0 0 328 224" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
<path d="M 8,32 L 8,64" fill="none" stroke="black"/>
<path d="M 112,32 L 112,64" fill="none" stroke="black"/>
<path d="M 208,32 L 208,64" fill="none" stroke="black"/>
<path d="M 320,32 L 320,64" fill="none" stroke="black"/>
<path d="M 8,32 L 112,32" fill="none" stroke="black"/>
<path d="M 208,32 L 320,32" fill="none" stroke="black"/>
<path d="M 8,64 L 112,64" fill="none" stroke="black"/>
<path d="M 208,64 L 320,64" fill="none" stroke="black"/>
<path d="M 128,96 L 184,96" fill="none" stroke="black"/>
<path d="M 128,160 L 184,160" fill="none" stroke="black"/>
<polygon class="arrowhead" points="192,96 180,90.4 180,101.6" fill="black" transform="rotate(0,184,96)"/>
<polygon class="arrowhead" points="136,160 124,154.4 124,165.6" fill="black" transform="rotate(180,128,160)"/>
<g class="text">
<text x="32" y="52">TAM</text>
<text x="228" y="52">TEEP</text>
<text x="272" y="52">Agent</text>
<text x="68" y="100">QueryRequest</text>
<text x="256" y="132">QueryResponse</text>
<text x="236" y="164">or</text>
<text x="240" y="196">Error</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![CDATA[
  +------------+           +-------------+
  | TAM        |           |TEEP Agent   |
  +------------+           +-------------+

    QueryRequest ------->

                           QueryResponse

                 <-------     or

                             Error
]]></artwork></artset></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 title="Update Message Flow" anchor="fig-update-overview"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="224" width="328" viewBox="0 0 328 224" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
<path d="M 8,32 L 8,64" fill="none" stroke="black"/>
<path d="M 112,32 L 112,64" fill="none" stroke="black"/>
<path d="M 208,32 L 208,64" fill="none" stroke="black"/>
<path d="M 320,32 L 320,64" fill="none" stroke="black"/>
<path d="M 8,32 L 112,32" fill="none" stroke="black"/>
<path d="M 208,32 L 320,32" fill="none" stroke="black"/>
<path d="M 8,64 L 112,64" fill="none" stroke="black"/>
<path d="M 208,64 L 320,64" fill="none" stroke="black"/>
<path d="M 168,96 L 200,96" fill="none" stroke="black"/>
<path d="M 160,160 L 192,160" fill="none" stroke="black"/>
<polygon class="arrowhead" points="208,96 196,90.4 196,101.6" fill="black" transform="rotate(0,200,96)"/>
<polygon class="arrowhead" points="168,160 156,154.4 156,165.6" fill="black" transform="rotate(180,160,160)"/>
<g class="text">
<text x="32" y="52">TAM</text>
<text x="228" y="52">TEEP</text>
<text x="272" y="52">Agent</text>
<text x="124" y="100">Update</text>
<text x="248" y="132">Success</text>
<text x="236" y="164">or</text>
<text x="240" y="196">Error</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![CDATA[
 +------------+           +-------------+
 | TAM        |           |TEEP Agent   |
 +------------+           +-------------+

             Update  ---->

                            Success

                    <----    or

                            Error
]]></artwork></artset></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.
The complete CDDL definitions for all messages appear in Appendix C; the snippets in this
section focus on the fields discussed.</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 /= success
$teep-message-type /= error

$teep-type /= TEEP-TYPE-query-request
$teep-type /= TEEP-TYPE-query-response
$teep-type /= TEEP-TYPE-update
$teep-type /= TEEP-TYPE-success
$teep-type /= TEEP-TYPE-error

; message type numbers
TEEP-TYPE-query-request = 1
TEEP-TYPE-query-response = 2
TEEP-TYPE-update = 3
TEEP-TYPE-success = 4
TEEP-TYPE-error = 5
]]></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 (see <xref target="RFC8937"/> and <xref target="RFC4086"/>).  Subsequent token values
  MUST be different for each message the TAM creates.</t>
  <t>Create a COSE_Sign1 or COSE_Sign object
  using the TEEP message as the COSE 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.</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_Protected / SUIT_Report_Unprotected) ],
    * $$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) might not need explicit token expiration and can rely
on immediate token invalidation after the first valid response.
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.  Bit assignments are maintained in the
"TEEP data-item-requested Bits" registry (see Section <xref target="data-item-registry"/>).
</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 containing either SUIT_Report_Protected
or SUIT_Report_Unprotected. 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.</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_Protected / SUIT_Report_Unprotected) ],
    ? 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.  Version values are defined by Standards Track
RFCs; this document does not create a separate IANA registry for versions.</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 as CBOR byte strings containing either SUIT_Report_Protected or
SUIT_Report_Unprotected. When protected, SUIT reports use 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. Deployments that choose a non-EAT format
SHOULD document the format and pre-configure both the TAM and TEEP Agent accordingly;
otherwise interoperability across vendors is likely to be reduced.</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 a 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"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="304" width="448" viewBox="0 0 448 304" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
<path d="M 72,32 L 72,64" fill="none" stroke="black"/>
<path d="M 72,112 L 72,160" fill="none" stroke="black"/>
<path d="M 72,224 L 72,272" fill="none" stroke="black"/>
<path d="M 120,72 L 120,104" fill="none" stroke="black"/>
<path d="M 120,168 L 120,216" fill="none" stroke="black"/>
<path d="M 160,72 L 160,104" fill="none" stroke="black"/>
<path d="M 160,168 L 160,216" fill="none" stroke="black"/>
<path d="M 200,32 L 200,64" fill="none" stroke="black"/>
<path d="M 200,112 L 200,160" fill="none" stroke="black"/>
<path d="M 200,224 L 200,272" fill="none" stroke="black"/>
<path d="M 312,224 L 312,272" fill="none" stroke="black"/>
<path d="M 440,224 L 440,272" fill="none" stroke="black"/>
<path d="M 72,32 L 200,32" fill="none" stroke="black"/>
<path d="M 72,64 L 200,64" fill="none" stroke="black"/>
<path d="M 72,112 L 200,112" fill="none" stroke="black"/>
<path d="M 72,160 L 200,160" fill="none" stroke="black"/>
<path d="M 72,224 L 200,224" fill="none" stroke="black"/>
<path d="M 312,224 L 440,224" fill="none" stroke="black"/>
<path d="M 208,240 L 304,240" fill="none" stroke="black"/>
<path d="M 72,272 L 200,272" fill="none" stroke="black"/>
<path d="M 312,272 L 440,272" fill="none" stroke="black"/>
<polygon class="arrowhead" points="312,240 300,234.4 300,245.6" fill="black" transform="rotate(0,304,240)"/>
<polygon class="arrowhead" points="168,216 156,210.4 156,221.6" fill="black" transform="rotate(90,160,216)"/>
<polygon class="arrowhead" points="168,104 156,98.4 156,109.6" fill="black" transform="rotate(90,160,104)"/>
<polygon class="arrowhead" points="128,168 116,162.4 116,173.6" fill="black" transform="rotate(270,120,168)"/>
<polygon class="arrowhead" points="128,72 116,66.4 116,77.6" fill="black" transform="rotate(270,120,72)"/>
<g class="text">
<text x="132" y="52">Verifier</text>
<text x="216" y="84">Attestation</text>
<text x="76" y="100">Evidence</text>
<text x="212" y="100">Result</text>
<text x="128" y="132">TAM</text>
<text x="152" y="132">/</text>
<text x="112" y="148">Relying</text>
<text x="168" y="148">Party</text>
<text x="56" y="180">QueryResponse</text>
<text x="220" y="180">Update</text>
<text x="60" y="196">(Evidence)</text>
<text x="220" y="196">(Attestation</text>
<text x="224" y="212">Result)</text>
<text x="108" y="244">TEEP</text>
<text x="152" y="244">Agent</text>
<text x="376" y="244">Other</text>
<text x="96" y="260">/</text>
<text x="140" y="260">Attester</text>
<text x="256" y="260">Attestation</text>
<text x="352" y="260">Relying</text>
<text x="408" y="260">Party</text>
<text x="260" y="276">Result</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![CDATA[
         +---------------+
         |   Verifier    |
         +---------------+
               ^    | Attestation
      Evidence |    v   Result
         +---------------+
         |     TAM /     |
         | Relying Party |
         +---------------+
 QueryResponse ^    |    Update
   (Evidence)  |    | (Attestation
               |    v    Result)
         +---------------+             +---------------+
         |  TEEP Agent   |------------>|     Other     |
         |  / Attester   | Attestation | Relying Party |
         +---------------+    Result   +---------------+
]]></artwork></artset></figure>

<t>Like other TEEP messages, the Update message is
signed, and the relevant CDDL snippet is shown below.</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 => err-code-values,
    ? 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.  The value 0 is reserved and MUST NOT be used.</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 SHOULD use
the language tag to aid human operators in interpreting diagnostic text.
The <spanx style="verb">err-msg</spanx> field SHOULD be formatted in the language indicated by this
tag.  If the indicated language is not supported, or the implementation only
has diagnostics available in another language, implementations MAY use a
different language and SHOULD treat <spanx style="verb">err-msg</spanx> as optional diagnostic text;
<spanx style="verb">err-code</spanx> remains authoritative for machine processing.</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"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="704" width="480" viewBox="0 0 480 704" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
<path d="M 8,32 L 8,64" fill="none" stroke="black"/>
<path d="M 8,128 L 8,448" fill="none" stroke="black"/>
<path d="M 8,512 L 8,544" fill="none" stroke="black"/>
<path d="M 56,640 L 56,672" fill="none" stroke="black"/>
<path d="M 72,208 L 72,384" fill="none" stroke="black"/>
<path d="M 112,32 L 112,64" fill="none" stroke="black"/>
<path d="M 120,512 L 120,544" fill="none" stroke="black"/>
<path d="M 208,32 L 208,64" fill="none" stroke="black"/>
<path d="M 208,512 L 208,544" fill="none" stroke="black"/>
<path d="M 272,640 L 272,672" fill="none" stroke="black"/>
<path d="M 320,32 L 320,64" fill="none" stroke="black"/>
<path d="M 328,512 L 328,544" fill="none" stroke="black"/>
<path d="M 456,208 L 456,384" fill="none" stroke="black"/>
<path d="M 472,128 L 472,448" fill="none" stroke="black"/>
<path d="M 8,32 L 112,32" fill="none" stroke="black"/>
<path d="M 208,32 L 320,32" fill="none" stroke="black"/>
<path d="M 8,64 L 112,64" fill="none" stroke="black"/>
<path d="M 208,64 L 320,64" fill="none" stroke="black"/>
<path d="M 144,96 L 176,96" fill="none" stroke="black"/>
<path d="M 8,126 L 160,126" fill="none" stroke="black"/><path d="M 8,130 L 160,130" fill="none" stroke="black"/>
<path d="M 328,126 L 472,126" fill="none" stroke="black"/><path d="M 328,130 L 472,130" fill="none" stroke="black"/>
<path d="M 408,206 L 456,206" fill="none" stroke="black"/><path d="M 408,210 L 456,210" fill="none" stroke="black"/>
<path d="M 72,382 L 456,382" fill="none" stroke="black"/><path d="M 72,386 L 456,386" fill="none" stroke="black"/>
<path d="M 8,446 L 472,446" fill="none" stroke="black"/><path d="M 8,450 L 472,450" fill="none" stroke="black"/>
<path d="M 8,512 L 120,512" fill="none" stroke="black"/>
<path d="M 208,512 L 328,512" fill="none" stroke="black"/>
<path d="M 8,544 L 120,544" fill="none" stroke="black"/>
<path d="M 208,544 L 328,544" fill="none" stroke="black"/>
<path d="M 144,576 L 176,576" fill="none" stroke="black"/>
<path d="M 56,638 L 112,638" fill="none" stroke="black"/><path d="M 56,642 L 112,642" fill="none" stroke="black"/>
<path d="M 216,638 L 272,638" fill="none" stroke="black"/><path d="M 216,642 L 272,642" fill="none" stroke="black"/>
<path d="M 56,670 L 272,670" fill="none" stroke="black"/><path d="M 56,674 L 272,674" fill="none" stroke="black"/>
<polygon class="arrowhead" points="184,96 172,90.4 172,101.6" fill="black" transform="rotate(0,176,96)"/>
<polygon class="arrowhead" points="152,576 140,570.4 140,581.6" fill="black" transform="rotate(180,144,576)"/>
<g class="text">
<text x="32" y="52">TAM</text>
<text x="236" y="52">TEEP</text>
<text x="280" y="52">Agent</text>
<text x="100" y="100">Update</text>
<text x="244" y="132">teep-protocol(TAM)</text>
<text x="76" y="148">TEEP_Message([</text>
<text x="104" y="164">TEEP-TYPE-update,</text>
<text x="68" y="180">options:</text>
<text x="112" y="180">{</text>
<text x="108" y="196">manifest-list:</text>
<text x="176" y="196">[</text>
<text x="80" y="212">=</text>
<text x="144" y="212">suit-manifest</text>
<text x="240" y="212">&quot;tc-uuid&quot;</text>
<text x="296" y="212">(TC</text>
<text x="356" y="212">Developer)</text>
<text x="144" y="228">SUIT_Envelope({</text>
<text x="136" y="244">manifest:</text>
<text x="184" y="244">{</text>
<text x="148" y="260">install:</text>
<text x="192" y="260">{</text>
<text x="212" y="276">override-parameters:</text>
<text x="304" y="276">{</text>
<text x="164" y="292">uri:</text>
<text x="316" y="292">&quot;https://example.org/tc-uuid.ta&quot;</text>
<text x="140" y="308">},</text>
<text x="152" y="324">fetch</text>
<text x="120" y="340">}</text>
<text x="104" y="356">}</text>
<text x="92" y="372">})</text>
<text x="56" y="404">]</text>
<text x="40" y="420">}</text>
<text x="28" y="436">])</text>
<text x="16" y="484">and</text>
<text x="56" y="484">then,</text>
<text x="36" y="532">TEEP</text>
<text x="80" y="532">Agent</text>
<text x="228" y="532">TC</text>
<text x="280" y="532">Developer</text>
<text x="40" y="612">fetch</text>
<text x="196" y="612">&quot;https://example.org/tc-uuid.ta&quot;</text>
<text x="164" y="644">tc-uuid.ta</text>
<text x="76" y="660">48</text>
<text x="100" y="660">65</text>
<text x="124" y="660">6C</text>
<text x="148" y="660">6C</text>
<text x="172" y="660">6F</text>
<text x="196" y="660">2C</text>
<text x="220" y="660">20</text>
<text x="248" y="660">...</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![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></artset></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"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="496" width="384" viewBox="0 0 384 496" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
<path d="M 8,32 L 8,64" fill="none" stroke="black"/>
<path d="M 24,128 L 24,464" fill="none" stroke="black"/>
<path d="M 88,208 L 88,400" fill="none" stroke="black"/>
<path d="M 112,32 L 112,64" fill="none" stroke="black"/>
<path d="M 208,32 L 208,64" fill="none" stroke="black"/>
<path d="M 320,32 L 320,64" fill="none" stroke="black"/>
<path d="M 360,208 L 360,400" fill="none" stroke="black"/>
<path d="M 376,128 L 376,464" fill="none" stroke="black"/>
<path d="M 8,32 L 112,32" fill="none" stroke="black"/>
<path d="M 208,32 L 320,32" fill="none" stroke="black"/>
<path d="M 8,64 L 112,64" fill="none" stroke="black"/>
<path d="M 208,64 L 320,64" fill="none" stroke="black"/>
<path d="M 144,96 L 176,96" fill="none" stroke="black"/>
<path d="M 24,126 L 112,126" fill="none" stroke="black"/><path d="M 24,130 L 112,130" fill="none" stroke="black"/>
<path d="M 280,126 L 376,126" fill="none" stroke="black"/><path d="M 280,130 L 376,130" fill="none" stroke="black"/>
<path d="M 88,206 L 104,206" fill="none" stroke="black"/><path d="M 88,210 L 104,210" fill="none" stroke="black"/>
<path d="M 344,206 L 360,206" fill="none" stroke="black"/><path d="M 344,210 L 360,210" fill="none" stroke="black"/>
<path d="M 88,398 L 360,398" fill="none" stroke="black"/><path d="M 88,402 L 360,402" fill="none" stroke="black"/>
<path d="M 24,462 L 376,462" fill="none" stroke="black"/><path d="M 24,466 L 376,466" fill="none" stroke="black"/>
<polygon class="arrowhead" points="184,96 172,90.4 172,101.6" fill="black" transform="rotate(0,176,96)"/>
<g class="text">
<text x="32" y="52">TAM</text>
<text x="236" y="52">TEEP</text>
<text x="280" y="52">Agent</text>
<text x="100" y="100">Update</text>
<text x="196" y="132">teep-protocol(TAM)</text>
<text x="92" y="148">TEEP_Message([</text>
<text x="120" y="164">TEEP-TYPE-update,</text>
<text x="84" y="180">options:</text>
<text x="128" y="180">{</text>
<text x="124" y="196">manifest-list:</text>
<text x="192" y="196">[</text>
<text x="180" y="212">suit-manifest(TC</text>
<text x="292" y="212">Developer)</text>
<text x="160" y="228">SUIT_Envelope({</text>
<text x="152" y="244">manifest:</text>
<text x="200" y="244">{</text>
<text x="164" y="260">install:</text>
<text x="208" y="260">{</text>
<text x="228" y="276">override-parameters:</text>
<text x="320" y="276">{</text>
<text x="180" y="292">uri:</text>
<text x="224" y="292">&quot;#tc&quot;</text>
<text x="156" y="308">},</text>
<text x="168" y="324">fetch</text>
<text x="136" y="340">}</text>
<text x="124" y="356">},</text>
<text x="140" y="372">&quot;#tc&quot;:</text>
<text x="188" y="372">h'48</text>
<text x="220" y="372">65</text>
<text x="244" y="372">6C</text>
<text x="268" y="372">6C</text>
<text x="300" y="372">...'</text>
<text x="108" y="388">})</text>
<text x="72" y="420">]</text>
<text x="56" y="436">}</text>
<text x="44" y="452">])</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![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></artset></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"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="800" width="520" viewBox="0 0 520 800" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
<path d="M 8,32 L 8,64" fill="none" stroke="black"/>
<path d="M 24,128 L 24,768" fill="none" stroke="black"/>
<path d="M 88,208 L 88,704" fill="none" stroke="black"/>
<path d="M 112,32 L 112,64" fill="none" stroke="black"/>
<path d="M 208,32 L 208,64" fill="none" stroke="black"/>
<path d="M 320,32 L 320,64" fill="none" stroke="black"/>
<path d="M 496,208 L 496,704" fill="none" stroke="black"/>
<path d="M 512,128 L 512,768" fill="none" stroke="black"/>
<path d="M 8,32 L 112,32" fill="none" stroke="black"/>
<path d="M 208,32 L 320,32" fill="none" stroke="black"/>
<path d="M 8,64 L 112,64" fill="none" stroke="black"/>
<path d="M 208,64 L 320,64" fill="none" stroke="black"/>
<path d="M 144,96 L 176,96" fill="none" stroke="black"/>
<path d="M 24,126 L 168,126" fill="none" stroke="black"/><path d="M 24,130 L 168,130" fill="none" stroke="black"/>
<path d="M 336,126 L 512,126" fill="none" stroke="black"/><path d="M 336,130 L 512,130" fill="none" stroke="black"/>
<path d="M 88,206 L 160,206" fill="none" stroke="black"/><path d="M 88,210 L 160,210" fill="none" stroke="black"/>
<path d="M 400,206 L 496,206" fill="none" stroke="black"/><path d="M 400,210 L 496,210" fill="none" stroke="black"/>
<path d="M 88,702 L 496,702" fill="none" stroke="black"/><path d="M 88,706 L 496,706" fill="none" stroke="black"/>
<path d="M 24,766 L 512,766" fill="none" stroke="black"/><path d="M 24,770 L 512,770" fill="none" stroke="black"/>
<polygon class="arrowhead" points="184,96 172,90.4 172,101.6" fill="black" transform="rotate(0,176,96)"/>
<g class="text">
<text x="32" y="52">TAM</text>
<text x="236" y="52">TEEP</text>
<text x="280" y="52">Agent</text>
<text x="100" y="100">Update</text>
<text x="252" y="132">teep-protocol(TAM)</text>
<text x="92" y="148">TEEP_Message([</text>
<text x="120" y="164">TEEP-TYPE-update,</text>
<text x="84" y="180">options:</text>
<text x="128" y="180">{</text>
<text x="124" y="196">manifest-list:</text>
<text x="192" y="196">[</text>
<text x="236" y="212">suit-manifest(TC</text>
<text x="348" y="212">Developer)</text>
<text x="160" y="228">SUIT_Envelope({</text>
<text x="152" y="244">manifest:</text>
<text x="200" y="244">{</text>
<text x="160" y="260">common:</text>
<text x="200" y="260">{</text>
<text x="200" y="276">dependencies:</text>
<text x="264" y="276">{</text>
<text x="232" y="292">dependency-prefix</text>
<text x="316" y="292">1:</text>
<text x="336" y="292">{</text>
<text x="216" y="308">[tc-uuid,</text>
<text x="288" y="308">'suit']</text>
<text x="168" y="324">}</text>
<text x="152" y="340">}</text>
<text x="192" y="356">components:</text>
<text x="248" y="356">[</text>
<text x="224" y="372">['config.json']</text>
<text x="152" y="388">]</text>
<text x="140" y="404">},</text>
<text x="220" y="420">dependency-resolution:</text>
<text x="320" y="420">{</text>
<text x="228" y="436">override-parameters:</text>
<text x="320" y="436">{</text>
<text x="180" y="452">uri:</text>
<text x="320" y="452">&quot;https://example.org/tc-uuid&quot;</text>
<text x="156" y="468">},</text>
<text x="168" y="484">fetch</text>
<text x="140" y="500">},</text>
<text x="164" y="516">install:</text>
<text x="208" y="516">{</text>
<text x="224" y="532">set-component-index</text>
<text x="316" y="532">0,</text>
<text x="228" y="548">override-parameters:</text>
<text x="320" y="548">{</text>
<text x="196" y="564">content:</text>
<text x="292" y="564">h'48FE0794...'</text>
<text x="228" y="580">encryption-info:</text>
<text x="308" y="580">&lt;&lt;</text>
<text x="336" y="580">...</text>
<text x="364" y="580">&gt;&gt;</text>
<text x="156" y="596">},</text>
<text x="172" y="612">write,</text>
<text x="224" y="628">set-component-index</text>
<text x="316" y="628">1,</text>
<text x="220" y="644">process-dependency</text>
<text x="136" y="660">}</text>
<text x="120" y="676">}</text>
<text x="108" y="692">})</text>
<text x="72" y="724">]</text>
<text x="56" y="740">}</text>
<text x="44" y="756">])</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![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></artset></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.</t>

<figure><sourcecode type="cddl-success"><![CDATA[
success = [
  type: TEEP-TYPE-success,
  options: {
    ? token => bstr .size (8..64),
    ? msg => text .size (1..128),
    ? suit-reports => [ + bstr .cbor
             (SUIT_Report_Protected / SUIT_Report_Unprotected) ],
    * $$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 (4) 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 SUIT_Report_Protected or SUIT_Report_Unprotected. 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.</t>

<figure><sourcecode type="cddl-error"><![CDATA[
error = [
  type: TEEP-TYPE-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_Protected / SUIT_Report_Unprotected) ],
     * $$error-extensions,
     * $$teep-option-extensions
  },
  err-code: err-code-values
]

; The err-code parameter
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 = 11

err-code-values = ERR_PERMANENT_ERROR
         / ERR_UNSUPPORTED_EXTENSION
         / ERR_UNSUPPORTED_FRESHNESS_MECHANISMS
         / ERR_UNSUPPORTED_MSG_VERSION
         / ERR_UNSUPPORTED_CIPHER_SUITES
         / ERR_BAD_CERTIFICATE
         / ERR_ATTESTATION_REQUIRED
         / ERR_UNSUPPORTED_SUIT_REPORT
         / ERR_CERTIFICATE_EXPIRED
         / ERR_TEMPORARY_ERROR
         / ERR_MANIFEST_PROCESSING_FAILED
]]></sourcecode></figure>

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

<dl newline="true">
  <dt>type</dt>
  <dd>
    <t>The value of (5) 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 Error 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.
If the indicated language is not supported, or the implementation only has
diagnostics available in another language, implementations MAY use a
different language and SHOULD treat <spanx style="verb">err-msg</spanx> as optional diagnostic text;
<spanx style="verb">err-code</spanx> remains authoritative for machine processing.</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.
The value 0 is reserved and MUST NOT be used. Only selected values are
applicable to each message.</t>
  </dd>
</dl>

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

<dl newline="true">
  <dt>ERR_PERMANENT_ERROR (1)</dt>
  <dd>
    <t>The 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 (11)</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 the result is not accepted as
trustworthy, 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 in the range [0..23] permit encoding as single-byte
CBOR unsigned integers, providing compact message representation.</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>5</c>
      <c>attestation-payload</c>
      <c>6</c>
      <c>tc-list</c>
      <c>7</c>
      <c>ext-list</c>
      <c>8</c>
      <c>manifest-list</c>
      <c>9</c>
      <c>msg</c>
      <c>10</c>
      <c>err-msg</c>
      <c>11</c>
      <c>attestation-payload-format</c>
      <c>12</c>
      <c>requested-tc-list</c>
      <c>13</c>
      <c>unneeded-manifest-list</c>
      <c>14</c>
      <c>component-id</c>
      <c>15</c>
      <c>tc-manifest-sequence-number</c>
      <c>16</c>
      <c>have-binary</c>
      <c>17</c>
      <c>suit-reports</c>
      <c>18</c>
      <c>token</c>
      <c>19</c>
      <c>supported-freshness-mechanisms</c>
      <c>20</c>
      <c>err-lang</c>
      <c>21</c>
      <c>err-code</c>
      <c>22</c>
</texttable>

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

<figure><sourcecode type="cddl-label"><![CDATA[
; labels of mapkey for teep message parameters
supported-teep-cipher-suites = 1
challenge = 2
versions = 3
supported-suit-cose-profiles = 4
selected-version = 5
attestation-payload = 6
tc-list = 7
ext-list = 8
manifest-list = 9
msg = 10
err-msg = 11
attestation-payload-format = 12
requested-tc-list = 13
unneeded-manifest-list = 14
component-id = 15
tc-manifest-sequence-number = 16
have-binary = 17
suit-reports = 18
token = 19
supported-freshness-mechanisms = 20
err-lang = 21
err-code = 22
]]></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 instead contains Evidence, the TAM passes
the Evidence via a mechanism outside the scope of this document to a Verifier
(see <xref target="RFC9334"/>)
to determine whether the TEEP 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 a mechanism outside the 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 new TEEP cipher suites MUST provide authentication and integrity protection,
and SHOULD provide confidentiality protection.</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.</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 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.</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.
When AES-CTR content encryption is used (for example, A128CTR), integrity and
authentication are provided by the surrounding COSE structures rather than by
CTR mode itself; see <xref target="RFC9459"/> for guidance on AES-CTR usage.</t>

<t>This document reuses the CDDL defined in <xref target="I-D.ietf-suit-firmware-encryption"/>
and the context information structure defined in
<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>
<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 should run documented
procedures for certificate and key issuance, rollover, revocation,
and renewal, with renewal intervals defined by local policy and
deployment requirements.  Operators may use certificate status
checks using Certificate Revocation Lists (CRLs) or the Online
Certificate Status Protocol (OCSP) and have clear behavior when
certificates are expired or revoked (see also 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 time
synchronization within the tolerance required by deployed certificate
validation and freshness mechanisms.</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: The TEEP protocol is transport
agnostic.  See <xref target="transport"/> for requirements that apply to transport
bindings, and see the HTTP binding <xref target="I-D.ietf-teep-otrp-over-http"/>
for transport-specific operational details when that binding is used.</t>
  <t>Scaling: Large-scale deployments should consider
batching updates 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 other documents already cover operational considerations
(e.g., <xref target="RFC9397"/>), implementers should follow that guidance.</t>

</section>
<section anchor="transport"><name>Transport Binding Requirements</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.  This section defines
requirements for companion specifications that bind TEEP to concrete transport
protocols.</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>

<t>IANA is requested to create a new registry group titled "Trusted Execution
Environment Provisioning (TEEP) Protocol Parameters".  The registries in
Sections 13.2 through 13.6 are to be created within this registry group.
The allocation tables in those sections define the initial allocations made by
this document.</t>

<section anchor="guidance-for-designated-experts"><name>Guidance for Designated Experts</name>

<t>For all TEEP registries (or registry ranges) using the "Specification Required"
policy, the following guidance applies to Designated Experts (DEs), in addition
to <xref target="RFC8126"/>.</t>

<t>When evaluating a registration request, the DE evaluates whether:</t>

<t><list style="symbols">
  <t>The requested value has a stable, public specification that is sufficiently
detailed to enable interoperable independent implementations.</t>
  <t>The registration is not redundant with an existing entry and does not
introduce avoidable overlap or ambiguity with existing TEEP assignments.</t>
  <t>The requested semantics are clear, well-scoped, and consistent with this
specification's architecture, security model, and terminology.</t>
  <t>Any security, privacy, and interoperability considerations are adequately
described, including behavior when peers do not understand the new value.</t>
  <t>The request does not conflict with active IETF work in related areas.</t>
</list></t>

<t>The DE can request additional information or clarifications before approval.
Approvals and rejections include a brief rationale.</t>

</section>
<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 "Trusted Execution Environment Provisioning (TEEP) Protocol Parameters"
registry group.  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>TEEP-TYPE-success</c>
      <c>This document</c>
      <c>5</c>
      <c>TEEP-TYPE-error</c>
      <c>This document</c>
      <c>6-255</c>
      <c>(Unassigned)</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 anchor="data-item-registry"><name>data-item-requested Bitmap Registry</name>

<t>IANA is requested to create a registry titled "TEEP data-item-requested Bits"
within the "Trusted Execution Environment Provisioning (TEEP) Protocol
Parameters" registry group. 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-254</c>
      <c>(Unassigned)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>255</c>
      <c>Private Use</c>
      <c>Not registered with IANA</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-254: Specification Required</t>
  <t>255: Private Use</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
"Trusted Execution Environment Provisioning (TEEP) Protocol Parameters"
registry group. 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</c>
      <c>ERR_MANIFEST_PROCESSING_FAILED</c>
      <c>Manifest processing failure</c>
      <c>This document</c>
      <c>12-255</c>
      <c>(Unassigned)</c>
      <c>Available for future assignment</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 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
"Trusted Execution Environment Provisioning (TEEP) Protocol Parameters"
registry group. 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>selected-version</c>
      <c>uint</c>
      <c>This document</c>
      <c>6</c>
      <c>attestation-payload</c>
      <c>bstr</c>
      <c>This document</c>
      <c>7</c>
      <c>tc-list</c>
      <c>array</c>
      <c>This document</c>
      <c>8</c>
      <c>ext-list</c>
      <c>array</c>
      <c>This document</c>
      <c>9</c>
      <c>manifest-list</c>
      <c>array</c>
      <c>This document</c>
      <c>10</c>
      <c>msg</c>
      <c>text</c>
      <c>This document</c>
      <c>11</c>
      <c>err-msg</c>
      <c>text</c>
      <c>This document</c>
      <c>12</c>
      <c>attestation-payload-format</c>
      <c>text</c>
      <c>This document</c>
      <c>13</c>
      <c>requested-tc-list</c>
      <c>array</c>
      <c>This document</c>
      <c>14</c>
      <c>unneeded-manifest-list</c>
      <c>array</c>
      <c>This document</c>
      <c>15</c>
      <c>component-id</c>
      <c>SUIT_Component_Identifier</c>
      <c>This document</c>
      <c>16</c>
      <c>tc-manifest-sequence-number</c>
      <c>uint</c>
      <c>This document</c>
      <c>17</c>
      <c>have-binary</c>
      <c>bool</c>
      <c>This document</c>
      <c>18</c>
      <c>suit-reports</c>
      <c>array</c>
      <c>This document</c>
      <c>19</c>
      <c>token</c>
      <c>bstr</c>
      <c>This document</c>
      <c>20</c>
      <c>supported-freshness-mechanisms</c>
      <c>array</c>
      <c>This document</c>
      <c>21</c>
      <c>err-lang</c>
      <c>text</c>
      <c>This document</c>
      <c>22</c>
      <c>err-code</c>
      <c>uint</c>
      <c>This document</c>
      <c>23-1023</c>
      <c>(Unassigned)</c>
      <c>&#160;</c>
      <c>&#160;</c>
</texttable>

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

<t><list style="symbols">
  <t>0-255: Standards Action</t>
  <t>256-1023: Specification Required</t>
</list></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 "Trusted Execution Environment Provisioning (TEEP) Protocol
Parameters" registry group. 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>(Unassigned)</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="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="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="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="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="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="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="17" month="February" year="2026"/>
      <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-19"/>
   
</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="19" month="February" year="2026"/>
      <abstract>
	 <t>   New Protocols and 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 and 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.  Finally, it introduces a requirement to include an
   &quot;Operational Considerations&quot; section in new RFCs that document a
   technical specification in the IETF Stream, while providing an escape
   clause if no new considerations are identified.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-opsawg-rfc5706bis-02"/>
   
</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="RFC9459">
  <front>
    <title>CBOR Object Signing and Encryption (COSE): AES-CTR and AES-CBC</title>
    <author fullname="R. Housley" initials="R." surname="Housley"/>
    <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
    <date month="September" year="2023"/>
    <abstract>
      <t>The Concise Binary Object Representation (CBOR) data format is designed for small code size and small message size. CBOR Object Signing and Encryption (COSE) is specified in RFC 9052 to provide basic security services using the CBOR data format. This document specifies the conventions for using AES-CTR and AES-CBC as content encryption algorithms with COSE.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9459"/>
  <seriesInfo name="DOI" value="10.17487/RFC9459"/>
</reference>
<reference anchor="RFC8937">
  <front>
    <title>Randomness Improvements for Security Protocols</title>
    <author fullname="C. Cremers" initials="C." surname="Cremers"/>
    <author fullname="L. Garratt" initials="L." surname="Garratt"/>
    <author fullname="S. Smyshlyaev" initials="S." surname="Smyshlyaev"/>
    <author fullname="N. Sullivan" initials="N." surname="Sullivan"/>
    <author fullname="C. Wood" initials="C." surname="Wood"/>
    <date month="October" year="2020"/>
    <abstract>
      <t>Randomness is a crucial ingredient for Transport Layer Security (TLS) and related security protocols. Weak or predictable "cryptographically secure" pseudorandom number generators (CSPRNGs) can be abused or exploited for malicious purposes. An initial entropy source that seeds a CSPRNG might be weak or broken as well, which can also lead to critical and systemic security problems. This document describes a way for security protocol implementations to augment their CSPRNGs using long-term private keys. This improves randomness from broken or otherwise subverted CSPRNGs.</t>
      <t>This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8937"/>
  <seriesInfo name="DOI" value="10.17487/RFC8937"/>
</reference>
<reference anchor="RFC4086">
  <front>
    <title>Randomness Requirements for Security</title>
    <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
    <author fullname="J. Schiller" initials="J." surname="Schiller"/>
    <author fullname="S. Crocker" initials="S." surname="Crocker"/>
    <date month="June" year="2005"/>
    <abstract>
      <t>Security systems are built on strong cryptographic algorithms that foil pattern analysis attempts. However, the security of these systems is dependent on generating secret quantities for passwords, cryptographic keys, and similar quantities. The use of pseudo-random processes to generate secret quantities can result in pseudo-security. A sophisticated attacker may find it easier to reproduce the environment that produced the secret quantities and to search the resulting small set of possibilities than to locate the quantities in the whole of the potential number space.</t>
      <t>Choosing random quantities to foil a resourceful and motivated adversary is surprisingly difficult. This document points out many pitfalls in using poor entropy sources or traditional pseudo-random number generation techniques for generating such quantities. It recommends the use of truly random hardware techniques and shows that the existing hardware on many systems can be used for this purpose. It provides suggestions to ameliorate the problem when a hardware solution is not available, and it gives examples of how large such quantities need to be for some applications. 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="106"/>
  <seriesInfo name="RFC" value="4086"/>
  <seriesInfo name="DOI" value="10.17487/RFC4086"/>
</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="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="RFC8126">
  <front>
    <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
    <author fullname="M. Cotton" initials="M." surname="Cotton"/>
    <author fullname="B. Leiba" initials="B." surname="Leiba"/>
    <author fullname="T. Narten" initials="T." surname="Narten"/>
    <date month="June" year="2017"/>
    <abstract>
      <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters. To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper. For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
      <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed. This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
      <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="26"/>
  <seriesInfo name="RFC" value="8126"/>
  <seriesInfo name="DOI" value="10.17487/RFC8126"/>
</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>
<reference anchor="RFC8792">
  <front>
    <title>Handling Long Lines in Content of Internet-Drafts and RFCs</title>
    <author fullname="K. Watsen" initials="K." surname="Watsen"/>
    <author fullname="E. Auerswald" initials="E." surname="Auerswald"/>
    <author fullname="A. Farrel" initials="A." surname="Farrel"/>
    <author fullname="Q. Wu" initials="Q." surname="Wu"/>
    <date month="June" year="2020"/>
    <abstract>
      <t>This document defines two strategies for handling long lines in width-bounded text content. One strategy, called the "single backslash" strategy, is based on the historical use of a single backslash ('\') character to indicate where line-folding has occurred, with the continuation occurring with the first character that is not a space character (' ') on the next line. The second strategy, called the "double backslash" strategy, extends the first strategy by adding a second backslash character to identify where the continuation begins and is thereby able to handle cases not supported by the first strategy. Both strategies use a self-describing header enabling automated reconstitution of the original content.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8792"/>
  <seriesInfo name="DOI" value="10.17487/RFC8792"/>
</reference>



    </references>

</references>


<?line 2349?>

<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 reviewers for their feedback during the IESG evaluation phase: Sean Turner, Paul Kyzivat, Scott Hollenbeck, Luigi Iannone, Paul Wouters, Mohamed Boucadair, Gorry Fairhurst, Gunter Van de Velde, Ketan Talaulikar, Roman Danyliw, Deb Cooley, Darrel Miller, 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 /= success
$teep-message-type /= error

$teep-type /= TEEP-TYPE-query-request
$teep-type /= TEEP-TYPE-query-response
$teep-type /= TEEP-TYPE-update
$teep-type /= TEEP-TYPE-success
$teep-type /= TEEP-TYPE-error

; message type numbers
TEEP-TYPE-query-request = 1
TEEP-TYPE-query-response = 2
TEEP-TYPE-update = 3
TEEP-TYPE-success = 4
TEEP-TYPE-error = 5

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_Protected / SUIT_Report_Unprotected) ],
    * $$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_Protected / SUIT_Report_Unprotected) ],
    ? 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 => err-code-values,
    ? err-msg => text .size (1..128),
    ? err-lang => text .size (1..35),
    * $$update-extensions,
    * $$teep-option-extensions
  }
]

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

error = [
  type: TEEP-TYPE-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_Protected / SUIT_Report_Unprotected) ],
     * $$error-extensions,
     * $$teep-option-extensions
  },
  err-code: err-code-values
]

; The err-code parameter
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 = 11

err-code-values = ERR_PERMANENT_ERROR
         / ERR_UNSUPPORTED_EXTENSION
         / ERR_UNSUPPORTED_FRESHNESS_MECHANISMS
         / ERR_UNSUPPORTED_MSG_VERSION
         / ERR_UNSUPPORTED_CIPHER_SUITES
         / ERR_BAD_CERTIFICATE
         / ERR_ATTESTATION_REQUIRED
         / ERR_UNSUPPORTED_SUIT_REPORT
         / ERR_CERTIFICATE_EXPIRED
         / ERR_TEMPORARY_ERROR
         / ERR_MANIFEST_PROCESSING_FAILED

; labels of mapkey for teep message parameters
supported-teep-cipher-suites = 1
challenge = 2
versions = 3
supported-suit-cose-profiles = 4
selected-version = 5
attestation-payload = 6
tc-list = 7
ext-list = 8
manifest-list = 9
msg = 10
err-msg = 11
attestation-payload-format = 12
requested-tc-list = 13
unneeded-manifest-list = 14
component-id = 15
tc-manifest-sequence-number = 16
have-binary = 17
suit-reports = 18
token = 19
supported-freshness-mechanisms = 20
err-lang = 21
err-code = 22
]]></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 / 19 : 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)
      13            # unsigned(19) / 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 / 19 : h'A0A1A2A3A4A5A6A7A8A9AAABACADAEAF',
    / selected-version / 5 : 0,
    / attestation-payload / 6 : h'' / empty only for example \
                                                           purpose /,
    / tc-list / 7 : [
      {
        / 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)
      13            # unsigned(19) / token: /
      50            # bytes(16)
         A0A1A2A3A4A5A6A7A8A9AAABACADAEAF
      05            # unsigned(5) / selected-version: /
      00            # unsigned(0)
      06            # unsigned(6) / attestation-payload: /
      40            # bytes(0)
                    # ""
      07            # unsigned(7) / 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 / 19 : h'A0A1A2A3A4A5A6A7A8A9AAABACADAEAF',
    / manifest-list / 9 : [
      <<
        / 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)
      13            # unsigned(19) / token: /
      50            # bytes(16)
         A0A1A2A3A4A5A6A7A8A9AAABACADAEAF
      09            # unsigned(9) / 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[
/ success = /
[
  / type: / 4 / TEEP-TYPE-success /,
  / options: /
  {
    / token / 19 : 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)
   04               # unsigned(4) / TEEP-TYPE-success /
   A1               # map(1)
      13            # unsigned(19) / 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[
/ error = /
[
  / type: / 5 / TEEP-TYPE-error /,
  / options: /
  {
    / token / 19 : h'A0A1A2A3A4A5A6A7A8A9AAABACADAEAF',
    / err-msg / 11 : "disk-full"
  },
  / err-code: / 11 / 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)
   05               # unsigned(5) / TEEP-TYPE-error /
   A2               # map(2)
      13            # unsigned(19) / token: /
      50            # bytes(16)
         A0A1A2A3A4A5A6A7A8A9AAABACADAEAF
      0B            # unsigned(11) / err-msg: /
      69            # text(9)
         6469736B2D66756C6C # "disk-full"
   0B               # unsigned(11) / 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+y963IbyZUu+j+fIg/l2CJtABKpS7coyzNsCprWdlPSkOyx
JxzecrKQAMoqVMGVBVKwxIn9IOdEnGc5j7Kf5MS65aWqAJKSPOPZezrmQqGq
8rpy5bp+azgcKteYcvLeFFVpD3VTr6zKlzX+5ZqDhw+fPTxQkyorzcIe6klt
ps0wt8102Fi7HC7rqqmyqhgWprGuUZlpDrVrJsqtLha5c3lVNuulPdSvx+ev
1DI/VFq7ps6z5lDfX1t3X2ndVFnyj4ldNvNDff8x/NutF7WduvCCq+om/SWr
FksTN+hWF+G3srqvmrwp7KE+hxnZiR5/tNmqyatSj8vLvK7KhS0b/a6uLnMY
cF7O9O75ePxuD37D6SlzcVHby0MNP0e/1tYc6jObreq8WaurGb2gPlzd0Jma
mMYe6oOHB0+VWTXzqj5USg+V1tNVUdBS/2jK0jp97rJ5NbVlPlNaV/XMlPlf
DbR3qH8u80tbu7xZ62qqj5bLIrcTfZbltsys0z9UZTk8ndu8HJ7lFj6XWfw4
/OH0DFduVTb1+lD/k60Xplwrre3C5MWh3plj76PG9/6Ps8XHUWmbHRpnXrpD
fTLS72yutKYRn+TlrMhNOeNfq3p2qH+oKzPJqgVtvLWwJ7hrebPmP2s7w/nQ
79XE+j95eD+fhZEtpJPR0ub/eMGtj6CHaGQvR/p3c2sLW/vRvTSX+ST6FUd3
tDB/rcpvNbaJubRXc2v/0WCzPYM6n5vWmGz4DUd0kmd15app8y0HNWqwjxEc
3H+cwe/tsR2N9LlbfTCLqqn88I4+5LVJfsch3n+7tGU2z5f6v+mzatpcmdrq
c5vNy6qoZrl1A302+ml0/2tmMI5mYGAYo0aGEU+grOqFafJLC4zl9NXxo6cH
z/jPJ08fP5U/9599z39+/93j7+TPZ4/l3WcPnxzIn0+/879+t78vfz565j97
uv8Q/nw9fInrOXSrvBkuTJlPrWt6njR590dkrsNJtTCw+p3HtV1WNbZ1/PZs
PDoqZlWdN/MF/KI1s7MdeKb9M7eDD4WdaPwP9+v10Zsj+tDUM9iNedMs3eGD
B1dXV6PclGZU1bMHxrl8htzJPcgqZ/H/jD7Om0Vxz/hOVF5O4zVPxz3N6wVQ
w9CWWb1eEpuK36pN44amfuzSNcGfazu1NbCuYV42tjYZfD5cVBNbpEuEN0/V
1MthdWnrIcwmeV4tnbmaDetp9uS7h08vcuf383u/y4+fPPNk8Ei29vHD7592
x5VVZZY7O2zM0DVVbZ3/cP+JENizR4/l1/2Dp55o/K/P9g8eHyo1HA61uXAN
TE4pdT7PnZ5U2QovILe0WT7NrdPN3N7hslKty2qgr+Z5Nte2NBeFddrB/WR1
kU9tts4KqxemNDOL7VRT6UgdV4tlVcL267zUE3uZwyVylTdzbW4YDQxgb6TO
51aLQKAndprD/bWwzpmZ1fZjNjflzDp9YZsra8uoVby6MrzV1AkOrta750cn
e9qUE3gPbt2jGXTVVPovK1uveYDaNaaxA51V5aVdK9OAFIINaXuZT4CaBthI
XrrGFMVAr5YT/KKq9cQWtrE9CzDS+oSG7TTwNlsCi4JG9PEPb0+xQVrViV45
kBfwmNL+LvLJpLBK3dOvy6auJiukY/3pXh7981opfX7jLuO6wtwyu2z03MDa
WdgbOKl2ooElO7s0tWmsNsBUV4WpdbW0tWlgWG7tGrsYaFO4SuP5qvEzbZw2
+hSoxPes0q5Px+O9gZ7W1YKmmjfrobOly+HkaxN2zI3065I2Sdmski55fy5t
OalqpxdmrVfO6kk+xVPedEaJZNfMrTodj3GFu5+AKOmQZsdjhzd86VfQ755+
aS9tAa07XdUK/gkDOZos8jKHo9fAeKDhHvLTTH4O6c/t4RJ3aAdGlxJP3IbD
583c5kBiS1sCGcKxrmCZrvKJ1TWcBAUzSc7Zsmps2eSmKNbRrGGyA2iv1KbU
yBtx7S7yAqROXVo70abOnXWj7TzFH85pVYPYvFiVOOZyFh/KoxPVPnbY7l14
kgjQps7meWOzZlVb5Uf16RNfqdfXMCY4qI6pWs1W+cSUmeVTS0eGxq9Km8Gx
rNe6sfUiR3FjPVJw1s7DDzTWD3atr6p64vTOyc9n5zsD+v/6zVv8+3T8zz+/
Ph2/hL/Pfjz66Sf/h+I3zn58+/NPL8Nf4cvjtycn4zcv6eM3b8918pPaOTn6
1x0ikp23785fv31z9NMOEXe8NcBYmkpfWNrSZW1haY1TE+uyOr8gfvPD8bv/
7//df6w/ffq/Tl8dH+zvP7u+5n98v//d4+trfTW3JfVWlcWa/9nMgRsul9bU
0IopCp2ZZd6Ywg3g8Lt5dVXqua3tSP36H4q8tHr49B9+I3cSkw2fidquHFNQ
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
n0SZkTYkP/Zk2bdiKqOKi5I5CHA1CZRWj118e05tt/uvT6rlwSkZZH9aLT/9
0rzam3NN/11qEEBGKs/ka7JV29vwlemqj3uA8ttdbILIZ3u+0n8jiPwoP4de
a+Kh9zYcx2i2QHRlVl3Y3B7gfEFNo1+xOk6EpJzWaBdY/bLvmEDao0/GSBMx
QtZJN9g9RQAT5GOExuwmYFC4ajsHo5uBsTAfQ+KF0tvShL8dmPRmKOhbYz9v
RX5Oi07fgP18l0JJmLHZUyopKZR0xyJJEQS6lEn6yiJJd0GY3nos/s5Qpdtj
JTQaSlIPYDTdNCxikkky++0uSs6F79yTvpU4X//Gy7I9gK+/KnF0isbYf01S
Ln/3krzNLXlLWIZb4jLglbqlvDlfsb/oPJK7Mmmgt2avNNHzsLeRnqLk0kTn
UdRAKPnZXbwn+wdhvr70J7cqiFDxWP4dhAyUJOhUtGWMG4QMRNjnxKrDNnQH
FA56viF7Uo1PT9+/G5+eHL0Zvzl/Pz49fXuqX+h9/P3nN2c/v3v39vR8/PL9
+Pfn4zdnr9++0S/0Qefpq9Px2Y9vxmdn70/Gxz8evXl9dnKmX+hHnRdPzv7p
/b+MT7mhx53nx6/f/Tg+fQ8rNYYWnuAbPxy9fH88Pj1//er18dH5WL/QT/H3
o/Pz8dn50fnrt2/en47/+efXp+OX+oX+rtMsrfwY/qVf6O/xedTg+/Hv3/G3
z/DZ+fjk3dvTo9N/DSvyEB+cHL15/Wp8dv7+3enb4/HZ2es3//T+1dHrn/Db
/f2Qr8prr1/onhUO9PJAb1zobS/1rfe296Nl3/ZasvrtF1ub0H7ctxfb+oq2
pP1az860X2ltUPvx5m2KhPGUzX+lKP6kDzkm7eEGSfzvTA5vSRo0lb+x+J2s
139ENvQXCeM80P/wJOjb5kC3m/uKHGjNhdBka74iBRoToNW3yoBmkOr/vTKg
t4llUtdtm+TWhxSPbIheQyHH9tczj5RLrV8mpd5RYYoaCBgQjFIzrVYlA0FE
g4qK7GB+cECo9YvXhaLwSm8+DcJM7rZfZMnK9cmjnbXrFVr7Vs+/qP2LX7R+
W5asbyx/q2XrEyuS1esK4p2165HV+1YONUzfiN66ZLJgYIG4M8ltru307dcv
kmlGSnn1g9coqCMeKSu+EkK33o6A2Ziiawdaq6YpBkyEDU82j4mAdvTW6VVa
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
AgA=

-->

</rfc>

