<?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-25" 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 108?>

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

<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><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><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.  Subsequent token values
  MUST be different for each message the TAM creates.</t>
  <t>Create a COSE header containing the desired set of header
  parameters.  The COSE header MUST be valid per the <xref target="RFC9052"/> specification.</t>
  <t>Create a COSE_Sign1 or COSE_Sign object
  using the TEEP message as the COSE_Sign1 or COSE_Sign Payload; all
  steps specified in <xref target="RFC9052"/> for creating a
  COSE_Sign1 or COSE_Sign object MUST be followed.</t>
</list></t>

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

<t>When a TEEP message is received (see the ProcessTeepMessage conceptual API
defined in Section 6.2.1 of <xref target="RFC9397"/>),
the following validation steps are performed. If any of
the listed steps fail, then the TEEP message MUST be rejected.</t>

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

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

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

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

<t>Like other TEEP messages, the QueryRequest message is
signed, and the relevant CDDL snippet is shown below.</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 is instead determined to contain Evidence, the TAM passes
the Evidence (via some mechanism out of scope of this document) to an attestation Verifier
(see <xref target="RFC9334"/>)
to determine whether the Agent is in a trustworthy state.  Once the TAM receives an Attestation
Result from the Verifier, processing continues as in <xref target="attestation-result-tam"/>.</t>

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

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

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

<t>Note: The proof-of-possession functionality for the Attestation Result may not be supported by every attestation technology or may not be enabled for use in every deployment.</t>

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

<t><list style="numbers" type="1">
  <t>Attestation failed. This indicates that the rest of the information in the QueryResponse
cannot necessarily be trusted, as the TEEP Agent may not be healthy (or at least up to date).
In this case, the TAM might attempt to use TEEP to update any Trusted Components (e.g., firmware,
the TEEP Agent itself, etc.) needed to get the TEEP Agent back into an up-to-date state that
would allow attestation to succeed.  If the TAM does not have permission to update such components
(this can happen if different TAMs manage different components in the device), the TAM instead
responds with an Update message containing an appropriate err-msg, and err-code set to ERR_ATTESTATION_REQUIRED.</t>
  <t>Attestation succeeded (so the QueryResponse information can be accepted as valid), but the set
of Trusted Components needs to be updated based on TAM policy changes or requests from the TEEP Agent.</t>
  <t>Attestation succeeded, and no changes are needed.</t>
</list></t>

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

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

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

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

<t>If an Error message is received with the error code ERR_ATTESTATION_REQUIRED, it indicates that the TEEP Agent is requesting attestation of the TAM.
In this case, the TAM MUST send another QueryRequest with an attestation-payload and optionally a suit-report to the TEEP Agent.</t>

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

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

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

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

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

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

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

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

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

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

<t>If the TEEP Agent requires attesting the TAM and the QueryRequest message did
contain an attestation-payload, the TEEP Agent checks whether it contains Evidence or an
Attestation Result by inspecting the attestation-payload-format
parameter.  The media type defined in <xref target="eat"/> indicates an Attestation Result, though future
extensions might also indicate other Attestation Result formats in the future. Any other unrecognized
value indicates Evidence.  If it contains an Attestation Result, processing continues as in
<xref target="attestation-result-agent"/>.</t>

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

<t>The TEEP Agent MAY also use (in any implementation specific way) any SUIT Reports in the
QueryRequest in determining whether it trusts the TAM.  If a SUIT Report
uses a suit-cose-profile that the TEEP Agent does not support, then the TEEP
Agent MUST send an Error Message with the error code ERR_UNSUPPORTED_SUIT_REPORT supplying
the supported-suit-cose-profiles.  Otherwise, processing continues as follows.</t>

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

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

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

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

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

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

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

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

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

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

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

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

<figure><sourcecode type="cddl-cipher-suite"><![CDATA[
; teep-cipher-suites
$teep-cipher-suite /= teep-cipher-suite-sign1-ed25519
$teep-cipher-suite /= teep-cipher-suite-sign1-esp256

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

teep-operation-sign1-ed25519 = [ cose-sign1, cose-alg-ed25519 ]
teep-operation-sign1-esp256  = [ cose-sign1, cose-alg-esp256 ]

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

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

cose-sign1 = 18      ; CoAP Content-Format value

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

cose-alg-esp256  = -9   ; ECDSA using P-256 curve and SHA-256
cose-alg-ed25519 = -19  ; EdDSA using Ed25519 curve
]]></sourcecode></figure>

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

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

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

<t>Any 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.  Implementations should support certificate
status checks and have clear behavior when certificates are expired
or revoked (see err-code behaviors such as ERR_CERTIFICATE_EXPIRED
and ERR_BAD_CERTIFICATE).</t>
  <t>Logging, monitoring, and diagnostics: Implementations should log
operational events, but must avoid placing sensitive data (e.g., raw
Evidence, private keys) into logs.  Diagnostic fields, such as
<spanx style="verb">err-msg</spanx> (optionally accompanied by <spanx style="verb">err-lang</spanx>), are intended for
human operators; logs should capture structured error codes and
minimal diagnostic text to aid incident response.</t>
  <t>Rate limiting and DoS protection: Implementations should apply
rate limits and backoff policies to mitigate malformed or
high-volume requests.  Agents should limit the size and number of
concurrent manifests processed and protect local resources (CPU,
memory, storage) from exhausting.</t>
  <t>Time synchronization: Accurate device time is important for
certificate validity checks and for some attestation freshness
mechanisms.  Operators should ensure devices maintain 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="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 2346?>

<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+y963Iby5Um+j+fIg/lGJE2AInUZW9Rlru5Kag3x5uSWuRu
u8PhkZOFBFBWoQquLJCCJXbMg5wTcZ7lPMo8yYl1y0tVASQluds90465aBNV
WZkrV65c128Nh0PlGlNO3puiKu2hbuqVVfmyxn+55uDhw2cPD9SkykqzsId6
UptpM8xtMx021i6Hy7pqqqwqhoVprGtUZppD7ZqJcquLRe5cXpXNemkP9cn4
/JVa5odKa9fUedYc6vtr6+4rrZsqS/5jYpfN/FDffwz/7daL2k5deMBVdZP+
JasWSxMP6FYX4W9ldV81eVPYQ30OK7ITPf5os1WTV6Uel5d5XZULWzb6bV1d
5jDhvJzp3fPx+O0e/A2Xp8zFRW0vDzX8Ofprbc2hPrPZqs6btbqa0QPqw9UN
H1MT09hDffDw4Kkyq2Ze1YdK6aHSeroqCiL1j6YsrdPnLptXU1vmM6V1Vc9M
mf/VwHiH+ucyv7S1y5u1rqb6aLkscjvRZ1luy8w6/UNVlsN3c5uXw7Pcwuuy
ih+HP7w7Q8qtyqZeH+p/svXClGultV2YvDjUO3P8+qjxX//H2eLjqLTNDs0z
L92hPh3ptzZXWtOMT/NyVuSmnPFfq3p2qH+oKzPJqgVtvLWwJ7hrebPmf9Z2
huuhv1cT6//J0/v5LMxsIR8ZLW3+jxc8+gi+EM3s5Uj/bm5tYWs/u5fmMp9E
f8XZHS3MX6vyW81tYi7t1dzafzQ4bM+kzuemNScb/oYzOs2zunLVtPmWkxo1
+I0RHNx/nMHf23M7Gulzt/pgFlVT+ekdfchrk/wdp3j/zdKW2Txf6v+mz6pp
c2Vqq89tNi+roprl1g302ein0f2vWcE4WoGBaYwamUa8gLKqF6bJLy0Ilnev
jh89PXjG/3zy9PFT+ef+s+/5n99/9/g7+eezx/Lss4dPDuSfT7/zf/1uf1/+
+eiZf+3p/kP458nwJdJz6FZ5M1yYMp9a1/T80uTdP6JwHU6qhQHqd36u7bKq
cazjN2fj0VExq+q8mS/gL1qzONuB37T/ze3gjyJONP4P9+vk6PURvWjqGezG
vGmW7vDBg6urq1FuSjOq6tkD41w+Q+nkHmSVs/j/jD7Om0Vxz/iPqLycxjRP
5z3N6wVww9CWWb1ekpiKn6pN44amfuxSmuCfazu1NYiuYV42tjYZvD5cVBNb
pCTCm6dq6uWwurT1EFaT/F4tnbmaDetp9uS7h08vcuf383u/y4+fPOvOIKvK
LHd22Jiha6raOs8p+0+ElZ49eix/3T946tnD//XZ/sHjQ6WGw6E2F66BZSil
zue505MqW+FV45Y2y6e5dbqZ2ztcS6p1LQ301TzP5tqW5qKwTju4iawu8qnN
1llh9cKUZmZxnGoqH1LH1WJZlbDROi/1xF7mcF1c5c1cmxtmAxPYG6nzudVy
9euJneZwUy2sc2Zmtf2YzU05s05f2ObK2jIaFS+pDO8vdYqTq/Xu+dHpnjbl
BJ6D+/VoBp9qKv2Xla3XPEHtGtPYgc6q8tKulWlA38CBtL3MJ8A3AxwkL11j
imKgV8sJvlHVemIL29geAoy0PqVpOw1SzJYgjGAQffzDm3c4IFF1olcONAM8
kLS/i3wyKaxS9/RJ2dTVZIUcqz/dy6P/vFZKn9+4y0hXWFtml42eG6Cdhb2B
M2knGoSvs0tTm8ZqA+JzVZhaV0tbmwam5dausYuBNoWrNJ6kGl/Txmmj3wGX
+C+r9NPvxuO9gZ7W1YKWmjfrobOly+GMaxN2zI30SUmbpGxWySd5fy5tOalq
pxdmrVfO6kk+xfPcdGaJbNfMrXo3HiOFu6+A0uiQZ8djh3d56Snod0+/tJe2
gNGdrmoF/wkTOZos8jKHo9fAfGDgHvbTzH4O+c/tIYk7vAOzS5knHsPh783c
5sBiS1sCG8KxroBMV/nE6hpOgoKVJOdsWTW2bHJTFOto1bDYAYxXalNqlIJI
u4u8AP1Sl9ZOtKlzZ91ou0zxh3Na1aAgL1YlzrmcxYfy6FS1jx2OexeZJKqy
qbN53tisWdVW+Vl9+sSX5/U1zAkOqmOuVrNVPjFlZvnU0pGh+avSZnAs67Vu
bL3IUbFYjxSctfPwB5rrB7vWV1U9cXrn9Oez850B/f/69Rv897vxP/988m78
Ev599uPRTz/5fyh+4uzHNz//9DL8K7x5/Ob0dPz6Jb38+s25Tv6kdk6P/nWH
mGTnzdvzkzevj37aIeaOtwYES1PpC0tbuqwtkNY4NbEuq/MLkjc/HL/9//7f
/cf606f/692r44P9/WfX1/wf3+9/9/j6Wl/NbUlfq8pizf/ZzEEaLpfW1DCK
KQqdmWXemMIN4PC7eXVV6rmt7Uj9+h+KvLR6+PQffiN3ErMNn4narhxzUER3
lvA4y2hDR0odOW0/Lgsjv55ZEoGPR4+B5Zu5aTwZBnTZAad57mxqaxqnrMnm
vWd09/xoD1a8To8XDnQEYpLIARKgKk3BlpGemMbg2lliqizceDgnFPUfl7V1
jif+88m5Fh2ORzXpX9Uin80bkNGNyUu4VbzCoherosmXhdUXeWlqmOKus1Z/
+tSvJF5fKziXi6q2emIbkxduj6jpVtl84OnfI/J2z4/3uhyGM3Eo7pWzeNn7
mSTrbK1p4PkS5R4+o1AcjLR+XTWWydUzEZDZeZkVq4nVVWm1rOf8yIFQeYBy
p5zms1Udb0o5gfPqUJTZib5YoxyCadAtYXVW1bXNmgKO+zhmjPDt3OlVmf9l
ZYu1hqu/AcHHg+H6wqMn8nOtbtgSz7zfj74bHYwOcEciLaO24OOY4Ma4Ae4U
8NiYlQ9cWvz8O+tWReMG4CWAB7uH6NFjPETjj2axLFgBmVYF0GVaFUV1BeIV
eAF1npJuHHz9H9CSeXaA798TFUa/ubT1ZW6v9Kd7rIy5a5bnybHLqtLlrsEL
Vh70atvkxhuiO2DudFOb0oHVMjSzsnJNnj0HHpzk5QwZUwRNeNAhZSKyeAUH
vTclEDERT6CtySZ9+uTHub5WooLW9i+rvEaF1+HVh7vkn/QTGqmXdllUa3rw
9OhfUUswGjS8Anj4FPlZTjUoCM91UWWm0MuqyLO1mlgSkHChow4Oz+AOLuHv
TUPaFyng2uhZfmlF1x7ps7zMrIq+NommA4PgUSryD7ZYD9q3iXOrBQnBBVwi
wCATOzWrgrdmcZNCG2mVcilrW06GTTW0ou/mzXqk0k1OxuURLtbIoLacLKu8
BMmZj+yIRf3RqehHKrDPQF+sGq+JJ8oUiBTUXy9w3mBAwj0JU/Jf6xNFXg0E
LbBPCexj2bJq6BqFG08hbWBi+H2YfW2B91AFFoLoqxou2nqA7pFijbYAH+aH
T+Aw6lerupnbGrZvQAwo/hHSKOnuAhmlRPJosqe3SaYctdgJXkt4c8TWDww4
LhuYXyx+zqsPttS746PzPZ7id/v7dPHA1+DqXy3hUACJi2ZerWZzXcHkk9Hp
cdpzpI1n71GvBiEncQqEE4451P8Mltw7+5cVXjr8X25Zlc4O1M+sbJ+tMtD6
6PYd1zVsnDpCPgJLEC4zw0fovtPZqkalGe1CsV7j78jnRzBGsCuvclDwzbSB
la5A2W5ENUZRh/6T/K8ie2uZNPlkEsPT+0KqcqCL3DWofnUYVLQUPmrRW9pc
VKsm7IQKjhZ8xX5swBBjuW9Swvn16aNSWyCXN8Fzp2rbrGoUrNN4HSqrVsUE
uf8CzYQMdYORJjoDceSv+FrvF5EPvQRUV3OLfNNUOi/zJof9cKsLB18smx6/
AD54o5Uey4YRKEeT3GUr0WQ+fTKwndfXgw5dMlN6OeJgBqvSgdTOYVdAa0aR
BIocyttqypdsXeMIcEOkjETMX1szWesPJejTKEYrJOMlWCkgfDy7qX/7t3/7
N22MuwSn+6+G0f9+pcP/kh+Gv1Jaf8Y94P99jh79HPGv1p/vMio6/pLV8E+/
UUpv/l9C0Z4nf82jsJdx61iaDjOSRSn1OziqQHE694GpcPUZWr6uqVdZ03EI
MddoUjAVM0yifnYOXyT8gwBIeJwnAJ4MZmntWZrvsdx5wQCntJzET6juleQ9
ONHNVUZD9NxiZ/BkDcKK5WB0mrU/zcK+4lSpyvAtUJsKtC0djQDBpPVAwYVR
0h7ImAol/VXu2ux6e269PbPejVf9/5g99M3MKhTrf+jXwqc3sWnMpff0SzTM
7CQ4CM+Sm+7TPTLdFm4GSjasOdGQQNOwWROUJNAW3sMu7wO3+v/SxOsrsRIi
l8CnT+jqzvLl3NagFFhQ+Lu6TPLdZITjly9/CgoGRy+ur/WFLaorGkq4hp7F
+zsnfQw1jSIe3rsZjpZgjucf9fFzXJsr8+XSNk5MU+VYT59W2Qr9YfDUNLfF
JJLjwnvZZFKQV1/YM/4P/UL/Iv7vITgH9QhufPha/Mu0Ngt7VdUflOr/u36h
/wBRZoxJ06g42oPoP4b+1h1AxAujGO5Qf9K/pI/RX/Q1/PpLcE4811NS+7Qt
yPYYaDuajUgDBLt3mDd2MeQr2E7UH3l+PNQLvbvKy0a/+A0Mt6fU80BzsY9w
xw5VDyUevCBHuYx/wzMs0vsfott4w48sVTb8ihqIUjFRXyCfDs//9e142DfF
zU8lk+w+lkyz+3M60e7vPFVPZeQHXa4WF7Z2asOc9Qu93/Mb6xwv9IFqz0+/
0I9UZ1b6hX6sWnPRL/QTETz39DF4xUQf/RdT5BP6Tzz0Io3gyfhRHUsgpc4r
ncFvtvULmWbBveAau/R2KwgKPJX7Ixq5/bY2WVbVqCA1ZCaRtCE2RhYlVbda
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
vs4K/OrV0Knevlahaw9y71NW0HUHGPtYXz9pItjOSV4SWQ+1B7a0JrP3rRpu
23EeFKRRKb/Qcywr0d0DFR/HijbGr9HSyPgyWn5M/Rctv2pgwHHKi7rX5oZZ
2aoyyWazyjSbP1cn2vw9nWq+ysbNaA7q3GlzHak07a1uoj2AnYZLaA8Qp+n+
2QPUqbt69gBznPrjCkptmVKVPh1Vovnfqba+961R13f17dstsbvL6fZO2mSF
qr73LfgZfAOsmeZPsjEKg7r5KIZw/qzcnk5HzQzefKAltt3et9oUWNIye3jx
ZiXDJn2imZwObADlz5ZB4nTjX57nGfy6oPz9D5M8t992Nuevwb/+VdmHgmPM
ixalA1763QGGcSwDM3pm+Zs16U+qPZu4Q9qzWTBD97Rwop4xoXZPVfRlC6fK
dmwvbau3mToKN1DioP698yBN47lILnRQ7Kn2Ds4dmytvD/z/LZOCLtvZHoA6
h2bDZ9UDSOeiLooxAGzWo9jyHiA7juaflqKYlgXt7jUbViu/37WXrl/iOA+a
RcmqILbO7qAD0FWyqMnr81JAry7Cs+s8ONQypV5g8tpUCzNSYTE1I+UXG4p0
ObvOA5OA62JFXfaLajl258GiWqG6XlE+D0NpVpTPwpSdB2mtwZ1KnluVREsG
pTTpu7kcTGddXXzFA0FRiX4HNCqzn7T0z8u+t/U3DTI53L7/eoilczxpH6I0
i2XTPHGcBweNTaqWAa3tWVlHPDyOnAfFvld3s9yvvpFZKowHzY0sVyGC+bfJ
YrDrOMWCKpEoDDN9AIKpfJ7VzOvEhoHreD3r27W9TmP2zoPcIKpTYyndfl7T
2QQ012qnPyhqLzl1EgB7oOPpF4iC8FimcbbPO+q3wdUs1XOPH0v1jdMgwD3Q
QZ7uPSx6R+mPur/zf7Du0l+2Io7TUNuWKVlpUYF1taw6xr/3bab9/H11n3/n
foX0CS3ZPvLmTfw97Vj5QSsSeZ8WAD7t2I6r5wPkPo20S66rWDQ4s8l3VOGU
XtR8gT1NHhU3wN637fNVD/r3Usx/71utW5mGZYBfbf10eu7cOE5ua9go2fy4
LgXfex+s/QqaBBXs4guZBLm7YO/b/N8dLZjm5SbKDZUOni0G2t1FWGyXW2kH
RbMZYdsF1Zg1X4OgCgPRtpXpr+vu5er3+8Nsp/RN1lihzFi2rY/+zbI6t1me
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
mkoruoVzd+UCK24Hle7g3Ed5cJhA4q6SHmHjX3So1Ke32L1qgCCILbf2jtIS
YKk3MK0Idr8re+kgOus6iNV12fKdKHMl2PaAyoR0Ua7JVGnP09lwDsYj9VeO
VqQNRv3xeTLc1TfP1J2q8QQsys7KsdFBZnniaNXocjZ9Nx6ae4Tq18o9w91U
jv2eVlZaksQZoN7Dhz+nKoAVZKgnW7YADGsmTL5dluSTzFXQng1boaUbi/7F
ripXs5uuWzf3Cs+1B2qjOUq2Lxp3/rmSHDnWWf+LYNS4Pz6/mlmvVP+llrq6
os6fvKT6LQqnS9pQtSgel7rEfi77BWztslOrp+a243j2YdLenelopMofaJCN
c3vb0sCZCsp6ZQ203HhkCKMzS/oajQW8Byg0aTeU1VRQ1fuzZJaYC7nWmesD
PgeLaa9EU3YvqsV39vDhUs/Z7Rxnqd/MeM3Mv61zNT+l9oL5IwPfzV+zq7RN
6lm/URSXLYQCjdQyLNmfxlqYk1O3FSw7hcgO3LE0rcBbyNvJVisHIjcb1N5g
W5vJcOjRwVB0vKE36NDBQHQ8jHjnlPSHrI+H7FRkJSFuQH0WJYgRm9/acWvE
HH1I9bv/D1drN/poMQIA

-->

</rfc>

