<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.17 (Ruby 3.0.2) -->


<!DOCTYPE rfc  [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">

]>

<?rfc compact="yes"?>
<?rfc subcompact="no"?>
<?rfc rfcedstyle="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-rats-eat-22" category="std" consensus="true" submissionType="IETF" tocDepth="4" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="EAT">The Entity Attestation Token (EAT)</title>

    <author initials="L." surname="Lundblade" fullname="Laurence Lundblade">
      <organization>Security Theory LLC</organization>
      <address>
        <email>lgl@securitytheory.com</email>
      </address>
    </author>
    <author initials="G." surname="Mandyam" fullname="Giridhar Mandyam">
      <organization>Qualcomm Technologies Inc.</organization>
      <address>
        <postal>
          <street>5775 Morehouse Drive</street>
          <city>San Diego</city>
          <region>California</region>
          <country>USA</country>
        </postal>
        <phone>+1 858 651 7200</phone>
        <email>mandyam@qti.qualcomm.com</email>
      </address>
    </author>
    <author initials="J." surname="O'Donoghue" fullname="Jeremy O'Donoghue">
      <organization>Qualcomm Technologies Inc.</organization>
      <address>
        <postal>
          <street>279 Farnborough Road</street>
          <city>Farnborough</city>
          <code>GU14 7LS</code>
          <country>United Kingdom</country>
        </postal>
        <phone>+44 1252 363189</phone>
        <email>jodonogh@qti.qualcomm.com</email>
      </address>
    </author>
    <author initials="C." surname="Wallace" fullname="Carl Wallace">
      <organization>Red Hound Software, Inc.</organization>
      <address>
        <email>carl@redhoundsoftware.com</email>
      </address>
    </author>

    <date year="2023" month="October" day="14"/>

    <area>Security</area>
    <workgroup>RATS</workgroup>
    <keyword>signing attestation cbor</keyword>

    <abstract>


<t>An Entity Attestation Token (EAT) provides an attested claims set
that describes state and characteristics of an entity,
a device like a smartphone, IoT device, network equipment or such.
This claims set is used by a relying party, server or service to determine the type and degree of trust placed in the entity.</t>

<t>An EAT is either a CBOR Web Token (CWT) or JSON Web Token (JWT) with attestation-oriented
claims.</t>



    </abstract>



  </front>

  <middle>


<section anchor="introduction"><name>Introduction</name>

<t>An Entity Attestation Token (EAT) is a message made up of claims about an entity.
An entity may be a device, some hardware or some software.
The claims are ultimately used by a relying party who decides if and how it will interact with the entity.
The relying party may choose to trust, not trust or partially trust the entity.
For example, partial trust may be allowing a monetary transaction only up to a limit.</t>

<t>The security model and goal for attestation are unique and are not the same as for other security standards like those for server authentication, user authentication and secured messaging.
To give an example of one aspect of the difference, consider the association and life-cycle of key material.
For authentication, keys are associated with a user or service and set up by actions performed by a user or an operator of a service.
For attestation, the keys are associated with specific devices and are configured by device manufacturers.
The reader is assumed to be familiar with the goals and security model for attestation as described in RATS Architecture <xref target="RFC9334"/> and are not repeated here.</t>

<t>This document defines some common claims that are potentially of broad use.
EAT additionally allows proprietary claims and for further claims to be standardized.
Here are some examples:</t>

<t><list style="symbols">
  <t>Make and model of manufactured consumer device</t>
  <t>Make and model of a chip or processor, particularly for a security-oriented chip</t>
  <t>Identification and measurement of the software running on a device</t>
  <t>Configuration and state of a device</t>
  <t>Environmental characteristics of a device like its Global Positioning Sytem (GPS) location</t>
  <t>Formal certifications received</t>
</list></t>

<t>EAT is constructed to support a wide range of use cases.</t>

<t>No single set of claims can accommodate all use cases so EAT is constructed as a framework for defining specific attestation tokens for specific use cases.
In particular, EAT provides a profile mechanism to be able to clearly specify the claims needed, the cryptographic algorithms that should be used, and other characteristics for a particular token and use case.
<xref target="profiles"/> describes profile contents and provides a profile that is suitable for constrained device use cases.</t>

<t>The entity's EAT implementation generates the claims and typically signs them with an attestation key.
It is responsible for protecting the attestation key.
Some EAT implementations will use components with very high resistance to attack like Trusted Platform Modules or Secure Elements.
Others may rely solely on simple software defenses.</t>

<t>Nesting of tokens and claims sets is accommodated for composite devices that have multiple subsystems.</t>

<t>An EAT may be encoded in either JavaScript Object Notation (JSON) <xref target="RFC8259"/> or Concise Binary Object Representation (CBOR) <xref target="RFC8949"/> as needed for each use case.
EAT is built on CBOR Web Token (CWT) <xref target="RFC8392"/> and JSON Web Token (JWT) <xref target="RFC7519"/> and inherits all their characteristics and their security mechanisms.
Like CWT and JWT, EAT does not imply any message flow.</t>

<t>Following is a very simple example.
It is JSON format for easy reading, but could also be CBOR.
Only the Claims-Set, the payload for the JWT, is shown.</t>

<figure><artwork><![CDATA[
{
    "eat_nonce": "MIDBNH28iioisjPy",
    "ueid":      "AgAEizrK3Q",
    "oemid":     76543, 
    "swname":    "Acme IoT OS",
    "swversion": "3.1.4"
}
]]></artwork></figure>

<t>This example has a nonce for freshness.
This nonce is the base64url encoding of a 12 byte random binary byte string.
The ueid is effectively a serial number uniquely identifying the device.
This ueid is the base64url encoding of a 48-bit MAC address preceded by the type byte 0x02.
The oemid identifies the manufacturer using a Private Enterprise Number <xref target="PEN"/>.
The software is identified by a simple string name and version.
It could be identified by a full manifest, but this is a minimal example.</t>

<section anchor="entity-overview"><name>Entity Overview</name>

<t>This document uses the term "entity" to refer to the target of an EAT.
Most of the claims defined in this document are claims about an entity.
An entity is equivalent to a target environment in an attester as defined in <xref target="RFC9334"></xref>.</t>

<t>Layered attestation and composite devices, as described in <xref target="RFC9334"></xref>, are supported by a submodule mechanism (see <xref target="submods"/>).
Submodules allow nesting of EATs and of claims-sets so that such hierarchies can be modeled.</t>

<t>An entity is the same as a "system component", as defined in the Internet Security Glossary <xref target="RFC4949"/>.</t>

<t>Note that <xref target="RFC4949"/> defines  "entity" and "system entity" as synonyms, and that they may be a person or organization in addition to being a system component.
In the EAT context, "entity" never refers to a person or organization.
The hardware and software that implement a web site server or service may be an entity in the EAT sense, but the organization that operates, maintains or hosts the web site is not an entity.</t>

<t>Some examples of entities:</t>

<t><list style="symbols">
  <t>A Secure Element</t>
  <t>A Trusted Execution Environment (TEE)</t>
  <t>A network card in a router</t>
  <t>A router, perhaps with each network card in the router a submodule</t>
  <t>An Internet of Things (IoT) device</t>
  <t>An individual process</t>
  <t>An app on a smartphone</t>
  <t>A smartphone with many submodules for its many subsystems</t>
  <t>A subsystem in a smartphone like the modem or the camera</t>
</list></t>

<t>An entity may have strong security defenses against hardware invasive attacks.
It may also have low security, having no special security defenses.
There is no minimum security requirement to be an entity.</t>

</section>
<section anchor="eat-as-a-framework"><name>EAT as a Framework</name>

<t>EAT is a framework for defining attestation tokens for specific use cases, not a specific token definition.
While EAT is based on and compatible with CWT and JWT, it can also be described as:</t>

<t><list style="symbols">
  <t>An identification and type system for claims in claims-sets</t>
  <t>Definitions of common attestation-oriented claims</t>
  <t>Claims defined in CDDL and serialized using CBOR or JSON</t>
  <t>Security envelopes based on CBOR Object Signing and Encryption (COSE) and Javascript Object Signing and Encryption (JOSE)</t>
  <t>Nesting of claims sets and tokens to represent complex and compound devices</t>
  <t>A profile mechanism for specifying and identifying specific tokens for specific use cases</t>
</list></t>

<t>EAT uses the name/value pairs the same as CWT and JWT to identify individual claims.
<xref target="theclaims"/> defines common attestation-oriented claims that are added to the CWT and JWT IANA registries.
As with CWT and JWT, no claims are mandatory and claims not recognized should be ignored.</t>

<t>Unlike, but compatible with CWT and JWT, EAT defines claims using Concise Data Definition Language (CDDL) <xref target="RFC8610"/>.
In most cases the same CDDL definition is used for both the CBOR/CWT serialization and the JSON/JWT serialization.</t>

<t>Like CWT and JWT, EAT uses COSE and JOSE to provide authenticity, integrity and optionally confidentiality.
EAT places no new restrictions on cryptographic algorithms, retaining all the cryptographic flexibility of CWT, COSE, JWT and JOSE.</t>

<t>EAT defines a means for nesting tokens and claims sets to accommodate composite devices that have multiple subsystems and multiple attesters.
Tokens with security envelopes or bare claims sets may be embedded in an enclosing token.
The nested token and the enclosing token do not have to use the same encoding (e.g., a CWT may be enclosed in a JWT).</t>

<t>EAT adds the ability to detach claims sets and send them separately from a security-enveloped EAT that contains a digest of the detached claims set.</t>

<t>This document registers no media or content types for the identification of the type of EAT, its serialization encoding or security envelope.
The definition and registration of EAT media types is addressed in <xref target="EAT.media-types"/>.</t>

<t>Finally, the notion of an EAT profile is introduced that facilitates the creation of narrowed definitions of EATs for specific use cases in follow-on documents.
One basic profile for constrained devices is normatively defined.</t>

</section>
<section anchor="operating-model-and-rats-architecture"><name>Operating Model and RATS Architecture</name>

<t>EAT follows the operational model described in Figure 1 in RATS Architecture <xref target="RFC9334"/>. To summarize, an attester generates evidence in the form of a claims set describing various characteristics of an entity.
Evidence is usually signed by a key that proves the attester and the evidence it produces are authentic.
The claims set includes a nonce or some other means to assure freshness.</t>

<t>A verifier confirms an EAT is valid by verifying the signature and may vet some claims using reference values.
The verifier then produces attestation results, which may also be represented as an EAT.
The attestation results are provided to the relying party, which is the ultimate consumer of the Remote Attestation Procedure.
The relying party uses the attestation results as needed for its use case, perhaps allowing an entity to access a network, allowing a financial transaction or such.
In some cases, the verifier and relying party are not distinct entities.</t>

<section anchor="relationship"><name>Relationship between Evidence and Attestation Results</name>

<t>Any claim defined in this document or in the IANA CWT or JWT registry may be used in evidence or attestation results. The relationship of claims in attestation results to evidence is fundamentally governed by the verifier and the verifier's policy.</t>

<t>A common use case is for the verifier and its policy to perform checks, calculations and processing with evidence as the input to produce a summary result in attestation results that indicates the overall health and status of the entity.
For example, measurements in evidence may be compared to reference values the results of which are represented as a simple pass/fail in attestation results.</t>

<t>It is also possible that some claims in the Evidence will be forwarded unmodified to the relying party in attestation results.
This forwarding is subject to the verifier's implementation and policy.
The relying party should be aware of the verifier's policy to know what checks it has performed on claims it forwards.</t>

<t>The verifier may modify claims it forwards, for example, to implement a privacy preservation functionality. It is also possible the verifier will put claims in the attestation results that give details about the entity that it has computed or looked up in a database.
For example, the verifier may be able to put an "oemid" claim in the attestation results by performing a look up based on a "ueid" claim (e.g., serial number) it received in evidence.</t>

<t>This specification does not establish any normative rules for the verifier to follow, as these are a matter of local policy.
It is up to each relying party to understand the processing rules of each verifier to know how to interpret claims in attestation results.</t>

</section>
</section>
</section>
<section anchor="terminology"><name>Terminology</name>

<t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>

<t>In this document, the structure of data is specified in CDDL <xref target="RFC8610"/> <xref target="RFC9165"/>.</t>

<t>The examples in <xref target="examples"/> use CBOR diagnostic notation defined in <xref section="8" sectionFormat="of" target="RFC8949"/> and <xref section="G" sectionFormat="of" target="RFC8610"/>.</t>

<t>This document reuses terminology from JWT <xref target="RFC7519"/> and CWT <xref target="RFC8392"/>:</t>

<dl>
  <dt>base64url-encoded:</dt>
  <dd>
    <t>base64url-encoded is as described in <xref target="RFC7515"/>, i.e., using URL- and filename-safe character set <xref target="RFC4648"/> with all trailing '=' characters omitted and without the inclusion of any line breaks, whitespace, or other additional characters.</t>
  </dd>
  <dt>Claim:</dt>
  <dd>
    <t>A piece of information asserted about a subject. A claim is represented as pair with a value and either a name or key to identify it.</t>
  </dd>
  <dt>Claim Name:</dt>
  <dd>
    <t>A unique text string that identifies the claim. It is used as the claim name for JSON encoding.</t>
  </dd>
  <dt>Claim Key:</dt>
  <dd>
    <t>The CBOR map key used to identify a claim. (The term "Claim Key" comes from CWT. This document, like COSE, uses the term "label" to refer to CBOR map keys to avoid confusion with cryptographic keys.)</t>
  </dd>
  <dt>Claim Value:</dt>
  <dd>
    <t>The value portion of the claim. A claim value can be any CBOR data item or JSON value.</t>
  </dd>
  <dt>Claims Set:</dt>
  <dd>
    <t>The CBOR map or JSON object that contains the claims conveyed by the CWT or JWT.</t>
  </dd>
</dl>

<t>This document reuses terminology from RATS Architecure <xref target="RFC9334"/>:</t>

<dl>
  <dt>Attester:</dt>
  <dd>
    <t>A role performed by an entity (typically a device) whose evidence must be appraised in order to infer the extent to which the attester is considered trustworthy, such as when deciding whether it is authorized to perform some operation.</t>
  </dd>
  <dt>Verifier:</dt>
  <dd>
    <t>A role that appraises the validity of evidence about an attester and produces attestation results to be used by a relying party.</t>
  </dd>
  <dt>Relying Party:</dt>
  <dd>
    <t>A role that depends on the validity of information about an attester, for purposes of reliably applying application specific actions. Compare /relying party/ in <xref target="RFC4949"></xref>.</t>
  </dd>
  <dt>Evidence:</dt>
  <dd>
    <t>A set of claims generated by an attester to be appraised by a verifier. Evidence may include configuration data, measurements, telemetry, or inferences.</t>
  </dd>
  <dt>Attestation Results:</dt>
  <dd>
    <t>The output generated by a verifier, typically including information about an attester, where the verifier vouches for the validity of the results</t>
  </dd>
  <dt>Reference Values:</dt>
  <dd>
    <t>A set of values against which values of claims can be compared as part of applying an appraisal policy for evidence.  Reference Values are sometimes referred to in other documents as known-good values, golden measurements, or nominal values, although those terms typically assume comparison for equality, whereas here reference values might be more general and be used in any sort of comparison.</t>
  </dd>
  <dt>Endorsement:</dt>
  <dd>
    <t>A secure statement that an Endorser vouches for the integrity of an attester's various capabilities such as claims collection and evidence signing.</t>
  </dd>
</dl>

<t>This document reuses terminology from CDDL <xref target="RFC8610"/>:</t>

<dl>
  <dt>Group Socket:</dt>
  <dd>
    <t>refers to the mechanism by which a CDDL definition is extended, as described in <xref target="RFC8610"></xref> and <xref target="RFC9165"></xref></t>
  </dd>
</dl>

</section>
<section anchor="top-level-token-definition"><name>Top-Level Token Definition</name>

<t>An "EAT" is an encoded (serialized) message the purpose of which is to transfer a Claims-Set between two parties.
An EAT <bcp14>MUST</bcp14> always contain a Claims-Set.
In this document an EAT is always a CWT or JWT.</t>

<t>An EAT <bcp14>MUST</bcp14> have authenticity and integrity protection.
CWT and JWT provide that in this document.</t>

<t>Further documents may define other encodings and security mechanims for EAT.</t>

<t>The identification of a protocol element as an EAT follows the general conventions used for CWTs and JWTs.
Identification depends on the protocol carrying the EAT.
In some cases it may be by media type (e.g., in a HTTP Content-Type field).
In other cases it may be through use of CBOR tags.
There is no fixed mechanism across all use cases.</t>

<t>This document also defines another message, the detached EAT bundle (see <xref target="DEB"/>), which holds a collection of detached claims sets and an EAT that provides integrity and authenticity protection for them.
Detached EAT bundles can be either CBOR or JSON encoded.</t>

<t>The following CDDL defines the top-level <spanx style="verb">$EAT-CBOR-Tagged-Token</spanx>, <spanx style="verb">$EAT-CBOR-Untagged-Token</spanx> and <spanx style="verb">$EAT-JSON-Token-Formats</spanx> sockets (see <xref section="3.9" sectionFormat="of" target="RFC8610"/>), enabling future token formats to be defined.
Any new format that plugs into one or more of these sockets <bcp14>MUST</bcp14> be defined by an IETF standards action.
Of particular use may be a token type that provides no direct authenticity or integrity protection for use with transports mechanisms that do provide the necessary security services <xref target="UCCS"/>.</t>

<t>Nesting of EATs is allowed and defined in <xref target="Nested-Token"/>.
This includes the nesting of an EAT that is a different format than the enclosing EAT, i.e., the nested EAT may be encoded using CBOR and the enclosing EAT encoded using JSON or vice versa.
The definition of Nested-Token references the CDDL defined in this section.
When new token formats are defined, the means for identification in a nested token <bcp14>MUST</bcp14> also be defined.</t>

<t>The top-level CDDL type for CBOR-encoded EATs is EAT-CBOR-Token and for JSON is EAT-JSON-Token (while CDDL and CDDL tools provide enough support for shared definitions of most items in this document, they don’t provide enough support for this sharing at the top level).</t>

<figure><sourcecode type="CDDL"><![CDATA[
EAT-CBOR-Token = $EAT-CBOR-Tagged-Token / $EAT-CBOR-Untagged-Token

$EAT-CBOR-Tagged-Token /= CWT-Tagged-Message
$EAT-CBOR-Tagged-Token /= BUNDLE-Tagged-Message

$EAT-CBOR-Untagged-Token /= CWT-Untagged-Message
$EAT-CBOR-Untagged-Token /= BUNDLE-Untagged-Message
]]></sourcecode></figure>

<figure><sourcecode type="CDDL"><![CDATA[
EAT-JSON-Token = $EAT-JSON-Token-Formats

$EAT-JSON-Token-Formats /= JWT-Message
$EAT-JSON-Token-Formats /= BUNDLE-Untagged-Message
]]></sourcecode></figure>

</section>
<section anchor="theclaims"><name>The Claims</name>

<t>This section describes new claims defined for attestation that are to be added to the CWT <xref target="IANA.CWT.Claims"/> and JWT <xref target="IANA.JWT.Claims"/> IANA registries.</t>

<t>All definitions, requirements, creation and validation procedures, security considerations, IANA registrations and so on from CWT and JWT carry over to EAT.</t>

<t>This section also describes how several extant CWT and JWT claims apply in EAT.</t>

<t>The set of claims that an EAT must contain to be considered valid is context dependent and is outside the scope of this specification.
Specific applications of EATs will require implementations to understand and process some claims in particular ways.
However, in the absence of such requirements, all claims that are not understood by implementations <bcp14>MUST</bcp14> be ignored.</t>

<t>CDDL, along with a text description, is used to define each claim
independent of encoding.  Each claim is defined as a CDDL group.
In <xref target="encoding"/> on encoding, the CDDL groups turn into CBOR map entries and JSON name/value pairs.</t>

<t>Each claim defined in this document is added to the <spanx style="verb">$$Claims-Set-Claims</spanx> group socket. Claims defined by other specifications <bcp14>MUST</bcp14> also be added to the <spanx style="verb">$$Claims-Set-Claims</spanx> group socket.</t>

<t>All claims in an EAT <bcp14>MUST</bcp14> use the same encoding except where otherwise explicitly stated (e.g., in a CBOR-encoded token, all claims must be CBOR-encoded).</t>

<t>This specification includes a CDDL definition of most of what is defined in <xref target="RFC8392"/>.
Similarly, this specification includes CDDL for most of what is defined in <xref target="RFC7519"/>.
These definitions are in <xref target="CDDL_for_CWT"/> and are not normative.</t>

<t>Each claim described has a unique text string and integer that identifies it.
CBOR-encoded tokens <bcp14>MUST</bcp14> use only the integer for claim keys.
JSON-encoded tokens <bcp14>MUST</bcp14> use only the text string for claim names.</t>

<section anchor="nonce"><name>eat_nonce (EAT Nonce) Claim</name>

<t>An EAT nonce is either a byte or text string or an array of byte or text strings.
The array option supports multistage EAT verification and consumption.</t>

<t>A claim named "nonce" was defined and registered with IANA for JWT, but <bcp14>MUST NOT</bcp14> be used because it does not support multiple nonces.
No previous "nonce" claim was defined for CWT.
To distinguish from the previously defined JWT "nonce" claim, this claim is named "eat_nonce" in JSON-encoded EATs. The CWT nonce defined
here is intended for general purpose use and retains the "Nonce" claim name instead of an EAT-specific name.</t>

<t>An EAT nonce <bcp14>MUST</bcp14> have at least 64 bits of entropy.
A maximum EAT nonce size is set to limit the memory required for an implementation.
All receivers <bcp14>MUST</bcp14> be able to accommodate the maximum size.</t>

<t>In CBOR, an EAT nonce is a byte string between 8 and 64 bytes in length.
In JSON, an EAT nonce is a text string between 8 and 88 bytes in length.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //= 
    (nonce-label => nonce-type / [ 2* nonce-type ])

nonce-type = JC< tstr .size (8..88), bstr .size (8..64)>

]]></sourcecode></figure>

</section>
<section anchor="claims-describing-the-entity"><name>Claims Describing the Entity</name>

<t>The claims in this section describe the entity itself.
They describe the entity whether they occur in evidence or occur in attestation results.
See <xref target="relationship"/> for discussion on how attestation results relate to evidence.</t>

<section anchor="UEID"><name>ueid (Universal Entity ID) Claim</name>

<t>The "ueid" claim conveys a UEID, which identifies an individual manufactured entity like a
mobile phone, a water meter, a Bluetooth speaker or a networked
security camera. It may identify the entire entity or a submodule.
It does not identify types, models or classes of
entities. It is akin to a serial number, though it does not have to be
sequential.</t>

<t>UEIDs <bcp14>MUST</bcp14> be universally and globally unique across manufacturers
and countries, as described in <xref target="UEIDCreateRules"/>. UEIDs <bcp14>MUST</bcp14> also be unique across protocols and systems,
as tokens are intended to be embedded in many different protocols and
systems. No two products anywhere, even in completely different
industries made by two different manufacturers in two different
countries should have the same UEID (if they are not global and
universal in this way, then relying parties receiving them will have
to track other characteristics of the entity to keep entities distinct
between manufacturers).</t>

<t>UEIDs are not designed for direct use by humans (e.g., printing on
the case of a device), so no such representation is defined.</t>

<t>There are privacy considerations for UEIDs. See <xref target="ueidprivacyconsiderations"/>.</t>

<t>A Device Identifier URN is registered for UEIDs. See <xref target="registerueidurn"/>.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (ueid-label => ueid-type)

ueid-type = JC<base64-url-text .size (10..44) , bstr .size (7..33)>
]]></sourcecode></figure>

<section anchor="UEIDCreateRules"><name>Rules for Creating UEIDs</name>

<t>These rules are solely for the creation of UEIDs.
The EAT consumer need not have any awareness of them.</t>

<t>A UEID is constructed of a single type byte followed by the unique bytes for that type.
The type byte assures global uniqueness of a UEID even if the unique bytes for different types are accidentally the same.</t>

<t>UEIDS are variable length to accommodate the types defined here and future-defined types.</t>

<t>UEIDs <bcp14>SHOULD NOT</bcp14> be longer than 33 bytes.
If they are longer, there is no guarantee that a receiver will be able to accept them.
See <xref target="UEID-Design"/>.</t>

<t>A UEID is permanent. It <bcp14>MUST</bcp14> never change for a given entity.</t>

<t>The different types of UEIDs 1) accommodate different manufacturing processes, 2) accommodate small UEIDs, 3) provide an option that doesn't require registration fees and central administration.</t>

<t>In the unlikely event that a new UEID type is needed, it <bcp14>MUST</bcp14> be defined in a standards-track update to this document.</t>

<t>A manufacturer of entities <bcp14>MAY</bcp14> use different types for different products.
They <bcp14>MAY</bcp14> also change from one type to another for a given product or use one type for some items of a given produce and another type for other.</t>

<texttable title="UEID Composition Types" anchor="ueid-types-table">
      <ttcol align='left'>Type Byte</ttcol>
      <ttcol align='left'>Type Name</ttcol>
      <ttcol align='left'>Specification</ttcol>
      <c>0x01</c>
      <c>RAND</c>
      <c>This is a 128, 192 or 256-bit random number generated once and stored in the entity. This may be constructed by concatenating enough identifiers to make up an equivalent number of random bits and then feeding the concatenation through a cryptographic hash function. It may also be a cryptographic quality random number generated once at the beginning of the life of the entity and stored. It <bcp14>MUST NOT</bcp14> be smaller than 128 bits. See the length analysis in <xref target="UEID-Design"/>.</c>
      <c>0x02</c>
      <c>IEEE EUI</c>
      <c>This makes use of the device identification scheme operated by the IEEE. An EUI is either an EUI-48, EUI-60 or EUI-64 and made up of an OUI, OUI-36 or a CID, different registered company identifiers, and some unique per-entity identifier. EUIs are often the same as or similar to MAC addresses. This type includes MAC-48, an obsolete name for EUI-48. (Note that while entities with multiple network interfaces may have multiple MAC addresses, there is only one UEID for an entity; changeable MAC addresses that don't meet the permanence requirements in this document <bcp14>MUST NOT</bcp14> be used for the UEID or SUEID) <xref target="IEEE.802-2001"/>, <xref target="OUI.Guide"/>.</c>
      <c>0x03</c>
      <c>IMEI</c>
      <c>This makes use of the International Mobile Equipment Identity (IMEI) scheme operated by the GSMA. This is a 14-digit identifier consisting of an 8-digit Type Allocation Code (TAC) and a 6-digit serial number allocated by the manufacturer, which <bcp14>SHALL</bcp14> be encoded as byte string of length 14 with each byte as the digit's value (not the ASCII encoding of the digit; the digit 3 encodes as 0x03, not 0x33). The IMEI value encoded <bcp14>SHALL NOT</bcp14> include Luhn checksum or SVN information. See <xref target="ThreeGPP.IMEI"/>.</c>
</texttable>

</section>
<section anchor="rules-for-consuming-ueids"><name>Rules for Consuming UEIDs</name>

<t>For the consumer, a UEID is solely a globally unique opaque identifier.
The consumer does not and should not have any awareness of the rules and structure used to achieve global uniqueness.</t>

<t>All implementations <bcp14>MUST</bcp14> be able to receive UEIDs up to 33 bytes long.
33 bytes is the longest defined in this document and gives necessary entropy for probabilistic uniqueness.</t>

<t>The consumer of a UEID <bcp14>MUST</bcp14> treat it as a completely opaque string of bytes and <bcp14>MUST NOT</bcp14> make any use of its internal structure.
The reasons for this are:</t>

<t><list style="symbols">
  <t>UEIDs types vary freely from one manufacturer to the next.</t>
  <t>New types of UEIDs may be defined.</t>
  <t>The manufacturer of an entity is allowed to change from one type of UEID to another anytime they want.</t>
</list></t>

<t>For example, when the consumer receives a type 0x02 UEID, they should not use the OUI part to identify the manufacturer of the device because there is no guarantee all UEIDs will be type 0x02.
Different manufacturers may use different types.
A manufacturer may make some of their product with one type and others with a different type or even change to a different type for newer versions of their product.
Instead, the consumer should use the "oemid" claim.</t>

</section>
</section>
<section anchor="sueids-semi-permanent-ueids-claim-sueids"><name>sueids (Semi-permanent UEIDs) Claim (SUEIDs)</name>

<t>The "sueids" claim conveys one or more semi-permanent UEIDs (SUEIDs). An SUEID has the same format, characteristics and requirements as a UEID, but <bcp14>MAY</bcp14> change to a different value on entity life-cycle events.
An entity <bcp14>MAY</bcp14> have both a UEID and SUEIDs, neither, one or the other.</t>

<t>Examples of life-cycle events are change of ownership, factory reset and on-boarding into an IoT device management system.
It is beyond the scope of this document to specify particular types of SUEIDs and the life-cycle events that trigger their change.
An EAT profile <bcp14>MAY</bcp14> provide this specification.</t>

<t>There <bcp14>MAY</bcp14> be multiple SUEIDs.
Each has a text string label the purpose of which is to distinguish it from others.
The label <bcp14>MAY</bcp14> name the purpose, application or type of the SUEID.
For example, the label for the SUEID used by XYZ Onboarding Protocol could thus be "XYZ".
It is beyond the scope of this document to specify any SUEID labeling schemes.
They are use case specific and <bcp14>MAY</bcp14> be specified in an EAT profile.</t>

<t>If there is only one SUEID, the claim remains a map and there still <bcp14>MUST</bcp14> be a label.</t>

<t>An SUEID provides functionality similar to an IEEE LDevID <xref target="IEEE.802.1AR"/>.</t>

<t>There are privacy considerations for SUEIDs. See <xref target="ueidprivacyconsiderations"/>.</t>

<t>A Device Identifier URN is registered for SUEIDs. See <xref target="registerueidurn"/>.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (sueids-label => sueids-type)

sueids-type = {
    + tstr => ueid-type
}
]]></sourcecode></figure>

</section>
<section anchor="oemid"><name>oemid (Hardware OEM Identification) Claim</name>

<t>The "oemid" claim identifies the Original Equipment Manufacturer (OEM) of the hardware.
Any of the three forms described below <bcp14>MAY</bcp14> be used at the convenience of the claim sender.
The receiver of this claim <bcp14>MUST</bcp14> be able to handle all three forms.</t>

<t>Note that the "hwmodel" claim in <xref target="hwmodel"/>, the "oemboot" claim in <xref target="oemboot"/> and "dbgstat" claim in <xref target="dbgstat"/> depend on this claim.</t>

<t>Sometimes one manufacturer will acquire or merge with another.
Depending on the situation and use case newly manfactured devices may continue to use the old OEM ID or switch to a new one.
This is left to the discretion of the manufacturers, but they should consider how it affects the above-mentioned claims and the attestation eco-system for their devices.
The considerations are the same for all three forms of this claim.</t>

<section anchor="random-number-based-oem-id"><name>Random Number Based OEM ID</name>

<t>The random number based OEM ID <bcp14>MUST</bcp14> always be 16 bytes (128 bits) long.</t>

<t>The OEM may create their own ID by using a cryptographic-quality random number generator.
They would perform this only once in the life of the company to generate the single ID for said company.
They would use that same ID in every entity they make.
This uniquely identifies the OEM on a statistical basis and is large enough should there be ten billion companies.</t>

<t>In JSON-encoded tokens this <bcp14>MUST</bcp14> be base64url-encoded.</t>

</section>
<section anchor="ieee-based-oem-id"><name>IEEE Based OEM ID</name>

<t>The IEEE operates a global registry for MAC addresses and company IDs.
This claim uses that database to identify OEMs. The contents of the
claim may be either an IEEE MA-L, MA-M, MA-S or an IEEE CID
<xref target="IEEE-RA"/>.  An MA-L, formerly known as an OUI, is a 24-bit value
used as the first half of a MAC address. MA-M similarly is a 28-bit
value uses as the first part of a MAC address, and MA-S, formerly
known as OUI-36, a 36-bit value.  Many companies already have purchased
one of these. A CID is also a 24-bit value from the same space as an
MA-L, but not for use as a MAC address.  IEEE has published Guidelines
for Use of EUI, OUI, and CID <xref target="OUI.Guide"/> and provides a lookup
service <xref target="OUI.Lookup"/>.</t>

<t>Companies that have more than one of these IDs or MAC address blocks
<bcp14>SHOULD</bcp14> select one and prefer that for all their entities.</t>

<t>Commonly, these are expressed in Hexadecimal Representation as described in
<xref target="IEEE.802-2001"/>. It is also called the Canonical format. When this claim is
encoded the order of bytes in the bstr are the same as the order in the
Hexadecimal Representation. For example, an MA-L like "AC-DE-48" would
be encoded in 3 bytes with values 0xAC, 0xDE, 0x48.</t>

<t>This format is always 3 bytes in size in CBOR.</t>

<t>In JSON-encoded tokens, this <bcp14>MUST</bcp14> be base64url-encoded and always 4 bytes.</t>

</section>
<section anchor="iana-private-enterprise-number-based-oem-id"><name>IANA Private Enterprise Number Based OEM ID</name>

<t>IANA maintains a registry for Private Enterprise Numbers (PEN) <xref target="PEN"/>. A PEN is an integer that identifies an enterprise and may be
used to construct an object identifier (OID) relative to the following OID arc that is managed by IANA:  iso(1) identified-organization(3) dod(6) internet(1) private(4) enterprise(1).</t>

<t>For EAT purposes, only the integer value assigned by IANA as the PEN is relevant, not the full OID value.</t>

<t>In CBOR this value <bcp14>MUST</bcp14> be encoded as a major type 0 integer and is typically 3 bytes.
In JSON, this value <bcp14>MUST</bcp14> be encoded as a number.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (
    oemid-label => oemid-pen / oemid-ieee / oemid-random
)

oemid-pen = int

oemid-ieee = JC<oemid-ieee-json, oemid-ieee-cbor>
oemid-ieee-cbor = bstr .size 3
oemid-ieee-json = base64-url-text .size 4

oemid-random = JC<oemid-random-json, oemid-random-cbor>
oemid-random-cbor = bstr .size 16
oemid-random-json = base64-url-text .size 24

]]></sourcecode></figure>

</section>
</section>
<section anchor="hwmodel"><name>hwmodel (Hardware Model) Claim</name>

<t>The "hwmodel" claim differentiates hardware models, products and variants manufactured by a particular OEM, the one identified by OEM ID in <xref target="oemid"/>.
It <bcp14>MUST</bcp14> be unique within a given OEM ID.
The concatenation of the OEM ID and "hwmodel" give a global identifier of a particular product.
The "hwmodel" claim <bcp14>MUST</bcp14> only be present if an "oemid" claim described in <xref target="oemid"/> is present.</t>

<t>The granularity of the model identification is for each OEM to decide.
It may be very granular, perhaps including some version information.
It may be very general, perhaps only indicating top-level products.</t>

<t>The "hwmodel" claim is for use in protocols and not for human consumption.
The format and encoding of this claim should not be human-readable to discourage use other than in protocols.
If this claim is to be derived from an already-in-use human-readable identifier, it can be run through a hash function.</t>

<t>There is no minimum length so that an OEM with a very small number of models can use a one-byte encoding.
The maximum length is 32 bytes.
All receivers of this claim <bcp14>MUST</bcp14> be able to receive this maximum size.</t>

<t>The receiver of this claim <bcp14>MUST</bcp14> treat it as a completely opaque string of bytes, even if there is some apparent naming or structure.
The OEM is free to alter the internal structure of these bytes as long as the claim continues to uniquely identify its models.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (
    hardware-model-label => hardware-model-type
)

hardware-model-type = JC<base64-url-text .size (4..44),
                         bytes .size (1..32)>
]]></sourcecode></figure>

</section>
<section anchor="hwversion-hardware-version-claim"><name>hwversion (Hardware Version) Claim</name>

<t>The "hwversion" claim is a text string the format of which is set by each manufacturer.
The structure and sorting order of this text string can be specified using the version-scheme item from CoSWID <xref target="CoSWID"/>.
It is useful to know how to sort versions so the newer can be distinguished from the older.
A "hwversion" claim <bcp14>MUST</bcp14> only be present if a "hwmodel" claim described in <xref target="hwmodel"/> is present.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //=  (
    hardware-version-label => hardware-version-type
)

hardware-version-type = [
    version:  tstr,
    ? scheme:  $version-scheme
]
]]></sourcecode></figure>

</section>
<section anchor="swname"><name>swname (Software Name) Claim</name>

<t>The "swname" claim contains a very simple free-form text value for naming the software used by the entity.
Intentionally, no general rules or structure are set.
This will make it unsuitable for use cases that wish precise naming.</t>

<t>If precise and rigourous naming of the software for the entity is needed, the "manifests" claim described in <xref target="manifests"/> may be used instead.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //= ( sw-name-label => tstr )
]]></sourcecode></figure>

</section>
<section anchor="swversion-software-version-claim"><name>swversion (Software Version) Claim</name>

<t>The "swversion" claim makes use of the CoSWID version-scheme defined in <xref target="CoSWID"/> to give a simple version for the software.
A "swversion" claim <bcp14>MUST</bcp14> only be present if a "swname" claim described in <xref target="swname"/> is present.</t>

<t>The "manifests" claim <xref target="manifests"/> may be instead if this is too simple.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (sw-version-label => sw-version-type)

sw-version-type = [
    version:  tstr
    ? scheme:  $version-scheme 
]
]]></sourcecode></figure>

</section>
<section anchor="oemboot"><name>oemboot (OEM Authorized Boot) Claim</name>

<t>An "oemboot" claim with value of true indicates the entity booted with software authorized by the manufacturer of the entity as indicated by the "oemid" claim described in <xref target="oemid"/>.
It indicates the firmware and operating system are fully under control of the OEM and may not be replaced by the end user or even the enterprise that owns the device.
The means of control may be by cryptographic authentication of the software, by the software being in Read-Only Memory (ROM), a combination of the two or other.
If this claim is present the "oemid" claim <bcp14>MUST</bcp14> be present.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (oem-boot-label => bool)
]]></sourcecode></figure>

</section>
<section anchor="dbgstat"><name>dbgstat (Debug Status) Claim</name>

<t>The "dbgstat" claim applies to entity-wide or submodule-wide debug facilities of the
entity like <xref target="JTAG"/> and diagnostic hardware built into
chips. It applies to any software debug facilities related to privileged software that allows system-wide memory
inspection, tracing or modification of non-system software like user
mode applications.</t>

<t>This characterization assumes that debug facilities can be enabled and
disabled in a dynamic way or be disabled in some permanent way, such
that no enabling is possible. An example of dynamic enabling is one
where some authentication is required to enable debugging. An example
of permanent disabling is blowing a hardware fuse in a chip. The specific
type of the mechanism is not taken into account. For example, it does
not matter if authentication is by a global password or by per-entity
public keys.</t>

<t>As with all claims, the absence of the "dbgstat" claim means it is not reported.</t>

<t>This claim is not extensible so as to provide a common interoperable description of debug status.
If a particular implementation considers this claim to be inadequate, it can define its own proprietary claim.
It may consider including both this claim as a coarse indication of debug status and its own proprietary claim as a refined indication.</t>

<t>The higher levels of debug disabling requires that all debug disabling
of the levels below it be in effect. Since the lowest level requires
that all of the target's debug be currently disabled, all other levels
require that too.</t>

<t>There is no inheritance of claims from a submodule to a superior
module or vice versa. There is no assumption, requirement or guarantee
that the target of a superior module encompasses the targets of
submodules. Thus, every submodule must explicitly describe its own
debug state. The receiver of an EAT <bcp14>MUST NOT</bcp14>
assume that debug is turned off in a submodule because there is a claim
indicating it is turned off in a superior module.</t>

<t>An entity may have multiple debug
facilities. The use of plural in the description of the states
refers to that, not to any aggregation or inheritance.</t>

<t>The architecture of some chips or devices may be such that a debug
facility operates for the whole chip or device. If the EAT for such
a chip includes submodules, then each submodule should independently
report the status of the whole-chip or whole-device debug facility.
This is the only way the receiver can know the debug status
of the submodules since there is no inheritance.</t>

<section anchor="enabled"><name>Enabled</name>

<t>If any debug facility, even manufacturer hardware diagnostics, is
currently enabled, then this level must be indicated.</t>

</section>
<section anchor="disabled"><name>Disabled</name>

<t>This level indicates all debug facilities are currently disabled. It
may be possible to enable them in the future. It may also be
that they were enabled in the past, but they are currently disabled.</t>

</section>
<section anchor="disabled-since-boot"><name>Disabled Since Boot</name>

<t>This level indicates all debug facilities are currently disabled and
have been so since the entity booted/started.</t>

</section>
<section anchor="disabled-permanently"><name>Disabled Permanently</name>

<t>This level indicates all non-manufacturer facilities are permanently
disabled such that no end user or developer can enable them. Only
the manufacturer indicated in the "oemid" claim can enable them. This
also indicates that all debug facilities are currently disabled and
have been so since boot/start.
If this debug state is reported, the "oemid" claim  <bcp14>MUST</bcp14> be present.</t>

</section>
<section anchor="disabled-fully-and-permanently"><name>Disabled Fully and Permanently</name>

<t>This level indicates that all debug facilities for the entity are permanently disabled.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //= ( debug-status-label => debug-status-type )

debug-status-type = ds-enabled /
                    disabled /
                    disabled-since-boot /
                    disabled-permanently /
                    disabled-fully-and-permanently

ds-enabled                     = JC< "enabled", 0 >
disabled                       = JC< "disabled", 1 >
disabled-since-boot            = JC< "disabled-since-boot", 2 >
disabled-permanently           = JC< "disabled-permanently", 3 >
disabled-fully-and-permanently = 
                       JC< "disabled-fully-and-permanently", 4 >
]]></sourcecode></figure>

</section>
</section>
<section anchor="location"><name>location (Location) Claim</name>

<t>The "location" claim gives the geographic position of the entity from which the attestation originates.
Latitude, longitude, altitude, accuracy, altitude-accuracy, heading and speed <bcp14>MUST</bcp14> be as defined in the W3C Geolocation API <xref target="W3C.GeoLoc"/>
(which, in turn, is based on <xref target="WGS84"/>).
If the entity is stationary, the heading is NaN (floating-point not-a-number).
Latitude and longitude <bcp14>MUST</bcp14> always be provided.
If any other of these values are unknown, they are omitted.</t>

<t>The location may have been cached for a period of time before token
creation. For example, it might have been minutes or hours or more
since the last contact with a GNSS satellite. Either the timestamp or
age data item can be used to quantify the cached period.  The timestamp
data item is preferred as it a non-relative time.
If the entity has no clock or the clock is unset but has a means to measure the time interval between the acquisition of the location and the token creation the age may be reported instead.
The age is in seconds.</t>

<t>See location-related privacy considerations in <xref target="locationprivacyconsiderations"/>.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (location-label => location-type)

location-type = {
    latitude => number,
    longitude => number,
    ? altitude => number,
    ? accuracy => number,
    ? altitude-accuracy => number,
    ? heading => number,
    ? speed => number,
    ? timestamp => ~time-int,
    ? age => uint
}

latitude          = JC< "latitude",          1 >
longitude         = JC< "longitude",         2 >
altitude          = JC< "altitude",          3 >
accuracy          = JC< "accuracy",          4 >
altitude-accuracy = JC< "altitude-accuracy", 5 >
heading           = JC< "heading",           6 >
speed             = JC< "speed",             7 >
timestamp         = JC< "timestamp",         8 >
age               = JC< "age",               9 >
]]></sourcecode></figure>

</section>
<section anchor="uptime-uptime-claim"><name>uptime (Uptime) Claim</name>

<t>The "uptime" claim contains the number of seconds that have elapsed since the entity or submodule was last booted.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (uptime-label => uint)
]]></sourcecode></figure>

</section>
<section anchor="bootcount-boot-count-claim"><name>bootcount (Boot Count) Claim</name>

<t>The "bootcount" claim contains a count of the number
times the entity or submodule has been booted. Support for this claim
requires a persistent storage on the device.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (boot-count-label => uint)
]]></sourcecode></figure>

</section>
<section anchor="bootseed-boot-seed-claim"><name>bootseed (Boot Seed) Claim</name>

<t>The "bootseed" claim contains a value created at system boot time that allows differentiation of attestation reports from different boot sessions of a particular entity (e.g., a certain UEID).</t>

<t>This value is usually public.
It is not a secret and <bcp14>MUST NOT</bcp14> be used for any purpose that a secret seed is needed, such as seeding a random number generator.</t>

<t>There are privacy considerations for this claim. See <xref target="bootseedprivacyconsiderations"/>.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //=  (boot-seed-label => binary-data)
]]></sourcecode></figure>

</section>
<section anchor="dloas"><name>dloas (Digital Letters of Approval) Claim</name>

<t>The "dloas" claim conveys one or more Digital Letters of Approval (DLOAs). A DLOA <xref target="DLOA"/> is a document that describes a certification that an entity has received.
Examples of certifications represented by a DLOA include those issued by Global Platform and those based on Common Criteria.
The DLOA is unspecific to any particular certification type or those issued by any particular organization.</t>

<t>This claim is typically issued by a verifier, not an attester.
Verifiers <bcp14>MUST NOT</bcp14> issue this claim unless the entity has received the certification indicated by the DLOA.</t>

<t>This claim <bcp14>MAY</bcp14> contain more than one DLOA.
If multiple DLOAs are present, verifiers <bcp14>MUST NOT</bcp14> issue this claim unless the entity has received all of the certifications.</t>

<t>DLOA documents are always fetched from a registrar that stores them.
This claim contains several data items used to construct a Uniform Resource Locator (URL) for fetching the DLOA from the particular registrar.</t>

<t>This claim <bcp14>MUST</bcp14> be encoded as an array with either two or three elements.
The first element <bcp14>MUST</bcp14> be the URL for the registrar.
The second element <bcp14>MUST</bcp14> be a platform label indicating which platform was certified.
If the DLOA applies to an application, then the third element is added which <bcp14>MUST</bcp14> be an application label.
The method of constructing the registrar URL, platform label and possibly application label is specified in <xref target="DLOA"/>.</t>

<t>The retriever of a DLOA <bcp14>MUST</bcp14> follow the recommendation in <xref target="DLOA"/> and use TLS or some other means to be sure the DLOA registrar they are accessing is authentic.
The platform and application labels in the claim indicate the correct DLOA for the entity.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (
    dloas-label => [ + dloa-type ]
)

dloa-type = [
    dloa_registrar: general-uri
    dloa_platform_label: text 
    ? dloa_application_label: text
]
]]></sourcecode></figure>

</section>
<section anchor="manifests"><name>manifests (Software Manifests) Claim</name>

<t>The "manifests" claim contains descriptions of software present on the entity.
These manifests are installed on the entity when the software is installed or are created as part of the installation process.
Installation is anything that adds software to the entity, possibly factory installation, the user installing elective applications and so on.
The defining characteristic of a manifest is that it is created by the software manufacturer.
The purpose of this claim is to relay unmodified manifests to the verifier and possibly to the relying party.</t>

<t>Some manifests are signed by their software manufacturer independently, and some are not either because they do not support signing or the manufacturer chose not to sign them.
For example, a CoSWID might be signed independently before it is included in an EAT.
When signed manifests are put into an EAT, the manufacturer's signature <bcp14>SHOULD</bcp14> be included even though an EAT's signature will also cover the manifest.
This allows the receiver to directly verify the manufacturer-originated manifest.</t>

<t>This claim allows multiple manifest formats.
For example, the manifest may be a CBOR-encoded CoSWID, an XML-encoded SWID or other.
Identification of the type of manifest is always by a Constrained Application Protocol (CoAP) Content-Format integer <xref target="RFC7252"/>.
If there is no CoAP identifier registered for a manifest format, one <bcp14>MUST</bcp14> be registered.</t>

<t>This claim <bcp14>MUST</bcp14> be an array of one or more manifests.
Each manifest in the claim <bcp14>MUST</bcp14> be an array of two.
The first item in the array of two <bcp14>MUST</bcp14> be an integer CoAP Content-Format identifier.
The second item is <bcp14>MUST</bcp14> be the actual manifest.</t>

<t>In JSON-encoded tokens the manifest, whatever encoding it is, <bcp14>MUST</bcp14> be placed in a text string.
When a non-text encoded manifest like a CBOR-encoded CoSWID is put in a JSON-encoded token, the manifest <bcp14>MUST</bcp14> be base-64 encoded.</t>

<t>This claim allows for multiple manifests in one token since multiple software packages are likely to be present.
The multiple manifests <bcp14>MAY</bcp14> be of different encodings.
In some cases EAT submodules may be used instead of the array structure in this claim for multiple manifests.</t>

<t>A CoSWID manifest <bcp14>MUST</bcp14> be a payload CoSWID, not an evidence CoSWID.
These are defined in <xref target="CoSWID"/>.</t>

<t>A Software Updates for Internet of Things (SUIT) Manifest <xref target="SUIT.Manifest"/> may be used.</t>

<t>This claim is extensible for use of manifest formats beyond those mentioned in this document.
No particular manifest format is preferred.
For manifest interoperability, an EAT profile as defined in <xref target="profiles"/>, should be used to specify which manifest format(s) are allowed.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (
    manifests-label => manifests-type
)

manifests-type = [+ manifest-format]

manifest-format = [
    content-type:   coap-content-format,
    content-format: JC< $manifest-body-json,
                        $manifest-body-cbor >
]

$manifest-body-cbor /= bytes .cbor untagged-coswid
$manifest-body-json /= base64-url-text

$manifest-body-cbor /= bytes .cbor SUIT_Envelope
$manifest-body-json /= base64-url-text

]]></sourcecode></figure>

</section>
<section anchor="measurements"><name>measurements (Measurements) Claim</name>

<t>The "measurements" claim contains descriptions, lists, evidence or measurements of the software that exists on the entity or any other measurable
subsystem of the entity (e.g. hash of sections of a file system or non-volatile memory).
The defining characteristic of this claim is that its contents are created by processes on the entity that inventory, measure or otherwise characterize the software on the entity.
The contents of this claim do not originate from the manufacturer of the measurable subsystem (e.g. developer of a software library).</t>

<t>This claim can be a <xref target="CoSWID"/>.
When the CoSWID format is used, it <bcp14>MUST</bcp14> be an evidence CoSWID, not a payload CoSWID.</t>

<t>Formats other than CoSWID <bcp14>MAY</bcp14> be used.
The identification of format is by CoAP Content Format, the same as the "manifests" claim in <xref target="manifests"/>.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (
    measurements-label => measurements-type
)

measurements-type = [+ measurements-format]

measurements-format = [
    content-type:   coap-content-format,
    content-format: JC< $measurements-body-json,
                        $measurements-body-cbor >
]

$measurements-body-cbor /= bytes .cbor untagged-coswid
$measurements-body-json /= base64-url-text

]]></sourcecode></figure>

</section>
<section anchor="measurementresults"><name>measres (Software Measurement Results) Claim</name>

<t>The "measres" claim is a general-purpose structure for reporting comparison of measurements to expected reference values.
This claim provides a simple standard way to report the result of a comparison as success, failure, fail to run, and absence.</t>

<t>It is the nature of measurement systems that they are specific to the operating system, software and hardware of the entity that is being measured.
It is not possible to standardize what is measured and how it is measured across platforms, OS's, software and hardware.
The recipient must obtain the information about what was measured and what it indicates for the characterization of the security of the entity from the provider of the measurement system.
What this claim provides is a standard way to report basic success or failure of the measurement.
In some use cases it is valuable to know if measurements succeeded or failed in a general way even if the details of what was measured is not characterized.</t>

<t>This claim <bcp14>MAY</bcp14> be generated by the verifier and sent to the relying party.
For example, it could be the results of the verifier comparing the contents of the "measurements" claim, <xref target="measurements"/>, to reference values.</t>

<t>This claim <bcp14>MAY</bcp14> also be generated on the entity if the entity has the ability for one subsystem to measure and evaluate another subsystem.
For example, a TEE might have the ability to measure the software of the rich OS and may have the reference values for the rich OS.</t>

<t>Within an entity, attestation target or submodule, multiple results can be reported.
For example, it may be desirable to report the results for measurements of the file system, chip configuration, installed software, running software and so on.</t>

<t>Note that this claim is not for reporting the overall result of a verifier.
It is solely for reporting the result of comparison to reference values.</t>

<t>An individual measurement result (individual-result) is an array consisting of two elements, an identifier of the measurement (result-id) and an enumerated type of the result (result).
Different measurement systems will measure different things and perhaps measure the same thing in different ways.
It is up to each measurement system to define identifiers (result-id) for the measurements it reports.</t>

<t>Each individual measurement result is part of a group that may contain many individual results.
Each group has a text string that names it, typically the name of the measurement scheme or system.</t>

<t>The claim itself consists of one or more groups.</t>

<t>The values for the results enumerated type are as follows:</t>

<dl>
  <dt>1 -- comparison successful:</dt>
  <dd>
    <t>Indicates successful comparison to reference values.</t>
  </dd>
  <dt>2 -- comparison fail:</dt>
  <dd>
    <t>The comparison was completed and did not compare correctly to the reference values.</t>
  </dd>
  <dt>3 -- comparison not run:</dt>
  <dd>
    <t>The comparison was not run. This includes error conditions such as running out of memory.</t>
  </dd>
  <dt>4 -- measurement absent:</dt>
  <dd>
    <t>The particular measurement was not available for comparison.</t>
  </dd>
</dl>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //= ( 
    measurement-results-label => 
        [ + measurement-results-group ] )

measurement-results-group = [
    measurement-system: tstr,
    measurement-results: [ + individual-result ]
]

individual-result = [
    result-id:  tstr / binary-data,
    result:     result-type, 
]

result-type = comparison-successful /
              comparison-fail /
              comparison-not-run /
              measurement-absent 

comparison-successful    = JC< "success",       1 >
comparison-fail          = JC< "fail",          2 >
comparison-not-run       = JC< "not-run",       3 >
measurement-absent       = JC< "absent",        4 >

]]></sourcecode></figure>

</section>
<section anchor="submods"><name>submods (Submodules)</name>

<t>Some devices are complex and have many subsystems.  A mobile phone is a good example. It may have subsystems for communications (e.g., Wi-Fi and cellular), low-power audio and video playback, multiple
security-oriented subsystems like a TEE and a Secure Element, and etc. The claims for a subsystem can be grouped together in a submodule.</t>

<t>Submodules may be used in either evidence or attestation results.</t>

<t>Because system architecture will vary greatly from use case to use case, there are no set requirements for what a submodule represents either in evidence or in attestation results.
Profiles, <xref target="profiles"/>, may wish to impose requirements.
An attester that outputs evidence with submodules should document the semantics it associates with particular submodules for the verifier.
Likewise, a verifier that outputs attestation results with submodules should document the semantics it associates with the submodules for the relying party.</t>

<t>A submodule claim is a map that holds some number of submodules.
Each submodule is named by its label in the submodule claim map.
The value of each entry in a submodule may be a Claims-Set, nested token or Detached-Submodule-Digest.
This allows for the submodule to serve as its own attester or not and allows for claims
for each submodule to be represented directly or indirectly, i.e., detached.</t>

<t>A submodule may include a submodule, allowing for arbitrary levels of nesting.
However, submodules do not inherit anything from the containing token and must explicitly include all claims.
Submodules may contain claims that are present in any surrounding token or submodule.
For example, the top-level of the token may have a UEID, a submodule may have a different UEID and a further subordinate submodule may also have a UEID.</t>

<t>The following sub-sections define the three types for representing submodules:</t>

<t><list style="symbols">
  <t>A submodule Claims-Set</t>
  <t>The digest of a detached Claims-Set</t>
  <t>A nested token, which can be any EAT</t>
</list></t>

<t>The Submodule type definition and Nested-Token type definition vary with the type of encoding. The definitions for CBOR-encoded EATs are as follows:</t>

<figure><sourcecode type="CDDL"><![CDATA[
Nested-Token = CBOR-Nested-Token

CBOR-Nested-Token =
    JSON-Token-Inside-CBOR-Token /
    CBOR-Token-Inside-CBOR-Token

CBOR-Token-Inside-CBOR-Token = bstr .cbor $EAT-CBOR-Tagged-Token

JSON-Token-Inside-CBOR-Token = tstr 

$$Claims-Set-Claims //= (submods-label => { + text => Submodule })

Submodule = Claims-Set / CBOR-Nested-Token / 
            Detached-Submodule-Digest
]]></sourcecode></figure>

<t>The Submodule and Nested-Token definitions for JSON-encoded EATs is as below. This difference in definitions vs. CBOR is necessary because JSON has no tag mechanism and no byte string type to help indicate the nested token is CBOR.</t>

<figure><sourcecode type="CDDL"><![CDATA[
Nested-Token = JSON-Selector

$JSON-Selector-Type /= "JWT" / "CBOR" / "BUNDLE" / "DIGEST"
$JSON-Selector-Value /= JWT-Message /
                  CBOR-Token-Inside-JSON-Token /
                  Detached-EAT-Bundle /
                  Detached-Submodule-Digest

JSON-Selector = [
   type : $JSON-Selector-Type,
   nested-token : $JSON-Selector-Value
]

CBOR-Token-Inside-JSON-Token = base64-url-text

$$Claims-Set-Claims //= (submods-label => { + text => Submodule })

Submodule = Claims-Set / JSON-Selector
]]></sourcecode></figure>

<t>The Detached-Submodule-Digest type is defined as follows:</t>

<figure><sourcecode type="CDDL"><![CDATA[
Detached-Submodule-Digest = [
   hash-algorithm : text / int,
   digest         : binary-data
]
]]></sourcecode></figure>

<t>Nested tokens can be one of three types as defined in this document or types standardized in follow-on documents (e.g., <xref target="UCCS"/>).
Nested tokens are the only mechanism by which JSON can be embedded in CBOR and vice versa.</t>

<t>The addition of further types is accomplished by augmenting the $EAT-CBOR-Tagged-Token socket or the $JSON-Selector-Type and $JSON-Selector-Value sockets.</t>

<t>When decoding a JSON-encoded EAT, the type of submodule is determined as follows.
A JSON object indicates the submodule is a Claims-Set.
In all other cases, it is a JSON-Selector, which is an array of two elements that indicates whether the submodule is a nested token or a Detached-Submodule-Digest.The first element in the array indicates the type present in the second element.
If the value is “JWT”, “CBOR”, “BUNDLE” or a future-standardized token types, e.g., <xref target="UCCS"/>, the submodule is a nested token of the indicated type, i.e., JWT-Message, CBOR-Token-Inside-JSON-Token, Detached-EAT-Bundle, or a future type.
If the value is "DIGEST", the submodule is a Detached-Submodule-Digest.
Any other value indicates a standardized extension to this specification.</t>

<t>When decoding a CBOR-encoded EAT, the CBOR item type indicates the type of the submodule as follows.
A map indicates a CBOR-encoded submodule Claims-Set.
An array indicates a CBOR-encoded Detached-Submodule-Digest.
A byte string indicates a CBOR-encoded CBOR-Nested-Token.
A text string indicates a JSON-encoded JSON-Selector. Where JSON-Selector is used in a CBOR-encoded EAT, the "DIGEST" type and corresponding Detached-Submodule-Digest type <bcp14>MUST NOT</bcp14> be used.</t>

<t>The type of a CBOR-encoded nested token is always determined by the CBOR tag encountered after the byte string wrapping is removed in a CBOR-encoded enclosing token or after the base64 wrapping is removed in JSON-encoded enclosing token.</t>

<t>The type of a JSON-encoded nested token is always determined by the string name in JSON-Selector and is always “JWT”, “BUNDLE” or a new name standardized outside this document for a further type (e.g., “UCCS”).
This string name may also be “CBOR” to indicate the nested token is CBOR-encoded.</t>

<dl>
  <dt>"JWT":</dt>
  <dd>
    <t>The second array item <bcp14>MUST</bcp14> be a JWT formatted according to <xref target="RFC7519"/></t>
  </dd>
  <dt>"CBOR":</dt>
  <dd>
    <t>The second array item <bcp14>MUST</bcp14> be some base64url-encoded CBOR that is a tag, typically a CWT or CBOR-encoded detached EAT bundle</t>
  </dd>
  <dt>"BUNDLE":</dt>
  <dd>
    <t>The second array item <bcp14>MUST</bcp14> be a JSON-encoded Detached EAT Bundle as defined in this document.</t>
  </dd>
  <dt>"DIGEST":</dt>
  <dd>
    <t>The second array item <bcp14>MUST</bcp14> be a JSON-encoded Detached-Submodule-Digest as defined in this document.</t>
  </dd>
</dl>

<t>As noted elsewhere, additional EAT types may be defined by a standards action. New type specifications <bcp14>MUST</bcp14> address the integration of the new type into the Submodule claim type for submodules.</t>

<section anchor="submodule-claims-set"><name>Submodule Claims-Set</name>

<t>The Claims-Set type provides a means of representing claims from a submodule that does not have its own attesting environment,
i.e., it has no keys distinct from the attester producing the surrounding token. Claims are represented as a Claims-Set. Submodule claims represented in this way are secured by the same
mechanism as the enclosing token (e.g., it is signed by the same attestation key).</t>

<t>The encoding of a submodule Claims-Set <bcp14>MUST</bcp14> be the same as the encoding as the surrounding EAT, e.g., all submodule Claims-Sets in a CBOR-encoded token must be CBOR-encoded.</t>

</section>
<section anchor="Detached-Submodule-Digest"><name>Detached Submodule Digest</name>

<t>The Detached-Submodule-Digest type is similar to a submodule Claims-Set, except a digest of the Claims-Set is included in the claim with the Claims-Set contents conveyed separately.
The separately-conveyed Claims-Set is called a detached claims set.
The input to the digest algorithm is directly the CBOR or JSON-encoded Claims-Set for the submodule.
There is no byte-string wrapping or base 64 encoding.</t>

<t>The data type for this type of submodule is an array consisting of two data items: an algorithm identifier and a byte string containing the digest. The hash algorithm identifier is always from the COSE Algorithm registry, <xref target="IANA.COSE.Algorithms"/>. Either the integer or string identifier may be used. The hash algorithm identifier is never from the JOSE Algorithm registry.</t>

<t>A detached EAT bundle, described in <xref target="DEB"/>, may be used to convey detached claims sets and the EAT containing the corresponding detached digests.
EAT, however, doesn't require use of a detached EAT bundle.
Any other protocols may be used to convey detached claims sets and the EAT containing the corresponding detached digests.
Detached Claims-Sets must not be modified in transit, else validation will fail.</t>

</section>
<section anchor="Nested-Token"><name>Nested Tokens</name>

<t>The CBOR-Nested-Token and JSON-Selector types provide a means of representing claims from a submodule that has its own attesting environment,
i.e., it has keys distinct from the attester producing the surrounding token. Claims are represented in a signed EAT token.</t>

<t>Inclusion of a signed EAT as a claim cryptographically binds the EAT to the surrounding token.
If it was conveyed in parallel with the surrounding token, there would be no such binding and attackers could substitute a good attestation from another device for the attestation of an errant subsystem.</t>

<t>A nested token need not use the same encoding as the enclosing token.
This enables composite devices to be built without regards to the encoding used by components.
Thus, a CBOR-encoded EAT can have a JSON-encoded EAT as a nested token and vice versa.</t>

</section>
</section>
</section>
<section anchor="claims-describing-the-token"><name>Claims Describing the Token</name>

<t>The claims in this section provide meta data about the token they occur in.
They do not describe the entity. They may appear in evidence or attestation results.</t>

<section anchor="iat-claim"><name>iat (Timestamp) Claim</name>

<t>The "iat" claim defined in CWT and JWT is used to indicate the
date-of-creation of the token, the time at which the claims are
collected and the token is composed and signed.</t>

<t>The data for some claims may be held or cached for some period of
time before the token is created. This period may be long, even
days. Examples are measurements taken at boot or a geographic
position fix taken the last time a satellite signal was received.
There are individual timestamps associated with these claims to
indicate their age is older than the "iat" timestamp.</t>

<t>CWT allows the use of floating-point for this claim. EAT disallows
the use of floating-point. An EAT token <bcp14>MUST NOT</bcp14> contain an "iat" claim in
floating-point format. Any recipient of a token with a floating-point
format "iat" claim <bcp14>MUST</bcp14> consider it an error.</t>

<t>A 64-bit integer representation of the CBOR epoch-based time
<xref target="RFC8949"/> used by this claim can represent a range of +/- 500
billion years, so the only point of a floating-point timestamp is to
have precession greater than one second. This is not needed for EAT.</t>

</section>
<section anchor="profile-claim"><name>eat_profile (EAT Profile) Claim</name>

<t>See <xref target="profiles"/> for the detailed description of an EAT profile.</t>

<t>The "eat_profile" claim identifies an EAT profile by either a Uniform Resource Identifier (URI) or an Object Identifier (OID).
Typically, the URI will reference a document describing the profile.
An OID is just a unique identifier for the profile.
It may exist anywhere in the OID tree.
There is no requirement that the named document be publicly accessible.
The primary purpose of the "eat_profile" claim is to uniquely identify the profile even if it is a private profile.</t>

<t>The OID is always absolute and never relative.</t>

<t>See <xref target="common-types"/> for OID and URI encoding.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (profile-label => general-uri / general-oid)
]]></sourcecode></figure>

</section>
<section anchor="intuse-intended-use-claim"><name>intuse (Intended Use) Claim</name>

<t>EATs may be employed in the context of several different applications.  The "intuse"
claim provides an indication to an EAT consumer about  the intended usage
of the token. This claim can be used as a way for an application using EAT to internally distinguish between different ways it utilizes EAT.
5 possible values for "intuse" are currently defined, but an IANA registry can be created in the future to extend these values  based on new use cases of EAT.</t>

<dl>
  <dt>1 -- Generic:</dt>
  <dd>
    <t>Generic attestation describes an application where the EAT consumer
requires the most up-to-date security assessment of the attesting entity. It
is expected that this is the most commonly-used application of EAT.</t>
  </dd>
  <dt>2-- Registration:</dt>
  <dd>
    <t>Entities that are registering for a new service may be expected to
provide an attestation as part of the registration process.  This "intuse"
setting indicates that the attestation is not intended for any use but registration.</t>
  </dd>
  <dt>3 -- Provisioning:</dt>
  <dd>
    <t>Entities may be provisioned with different values or settings by an EAT
consumer.  Examples include key material or device management trees.  The consumer
may require an EAT to assess entity security state of the entity prior to provisioning.</t>
  </dd>
  <dt>4 -- Certificate Issuance:</dt>
  <dd>
    <t>Certification Authorities (CAs) may require attestation results (which in a background check model might require receiving evidence to be passed to a verifier) to make decisions about the issuance of certificates.
An EAT may be used as part of the certificate signing request (CSR).</t>
  </dd>
  <dt>5 -- Proof-of-Possession:</dt>
  <dd>
    <t>An EAT consumer may require an attestation as part of an accompanying
proof-of-possession (PoP) application. More precisely, a PoP transaction is intended
to provide to the recipient cryptographically-verifiable proof that the sender has possession
of a key.  This kind of attestation may be necessary to verify the
security state of the entity storing the private key used in a PoP application.</t>
  </dd>
</dl>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //= ( intended-use-label => intended-use-type )

intended-use-type = generic /
                    registration / 
                    provisioning / 
                    csr /
                    pop

generic      = JC< "generic",      1 >
registration = JC< "registration", 2 >
provisioning = JC< "provisioning", 3 >
csr          = JC< "csr",          4 >
pop          = JC< "pop",          5 >
]]></sourcecode></figure>

</section>
</section>
</section>
<section anchor="DEB"><name>Detached EAT Bundles</name>

<t>A detached EAT bundle is a message to convey an EAT plus detached claims sets secured by that EAT.
It is a top-level message like a CWT or JWT.
It can occur in any place that a CWT or JWT occurs, for example as a submodule nested token as defined in <xref target="Nested-Token"/>.</t>

<t>A detached EAT bundle may be either CBOR or JSON-encoded.</t>

<t>A detached EAT bundle consists of two parts.</t>

<t>The first part is an encoded EAT as follows:</t>

<t><list style="symbols">
  <t><bcp14>MUST</bcp14> have at least one submodule that is a detached submodule digest as defined in <xref target="Detached-Submodule-Digest"/></t>
  <t><bcp14>MAY</bcp14> be either CBOR or JSON-encoded and doesn't have to the the same as the encoding of the bundle</t>
  <t><bcp14>MAY</bcp14> be a CWT, or JWT or some future-defined token type, but <bcp14>MUST NOT</bcp14> be a detached EAT bundle</t>
  <t><bcp14>MUST</bcp14> be authenticity and integrity protected</t>
</list></t>

<t>The same mechanism for distinguishing the type for nested token submodules is employed here.</t>

<t>The second part is a map/object as follows:</t>

<t><list style="symbols">
  <t><bcp14>MUST</bcp14> be a Claims-Set</t>
  <t><bcp14>MUST</bcp14> use the same encoding as the bundle</t>
  <t><bcp14>MUST</bcp14> be wrapped in a byte string when the encoding is CBOR and be base64url-encoded when the encoding is JSON</t>
</list></t>

<t>For CBOR-encoded detached EAT bundles, tag TBD602 can be used to identify it.
The standard rules apply for use or non-use of a tag.
When it is sent as a submodule, it is always sent as a tag to distinguish it from the other types of nested tokens.</t>

<t>The digests of the detached claims sets are associated with detached Claims-Sets by label/name.
It is up to the constructor of the detached EAT bundle to ensure the names uniquely identify the detached claims sets.
Since the names are used only in the detached EAT bundle, they can be very short, perhaps one byte.</t>

<figure><sourcecode type="CDDL"><![CDATA[
BUNDLE-Messages = BUNDLE-Tagged-Message / BUNDLE-Untagged-Message

BUNDLE-Tagged-Message   = #6.TBD602(BUNDLE-Untagged-Message)
BUNDLE-Untagged-Message = Detached-EAT-Bundle

Detached-EAT-Bundle = [
    main-token : Nested-Token,
    detached-claims-sets: {
        + tstr => JC<json-wrapped-claims-set,
                     cbor-wrapped-claims-set>
    }
]

json-wrapped-claims-set = base64-url-text

cbor-wrapped-claims-set = bstr .cbor Claims-Set

]]></sourcecode></figure>

</section>
<section anchor="profiles"><name>Profiles</name>

<t>EAT makes normative use of CBOR, JSON, COSE, JOSE, CWT and JWT.
Most of these have implementation options to accommodate a range of use cases.</t>

<t>For example, COSE doesn't require a particular set of cryptographic algorithms so as to accommodate different usage scenarios and evolution of algorithms over time.
Section 10 of <xref target="RFC9052"/> describes the profiling considerations for COSE.</t>

<t>The use of encryption is optional for both CWT and JWT.
Section 8 of <xref target="RFC7519"/> describes implementation requirement and recommendations for JWT.</t>

<t>Similarly, CBOR provides indefinite length encoding, which is not commonly used, but valuable for very constrained devices.
For EAT itself, in a particular use case some claims will be used and others will not.
Section 4 of <xref target="RFC8949"/> describes serialization considerations for CBOR.</t>

<t>For example a mobile phone use case may require the device make and model, and prohibit UEID and location for privacy reasons.
The general EAT standard retains all this flexibility because it too is aimed to accommodate a broad range of use cases.</t>

<t>It is necessary to explicitly narrow these implementation options to guarantee interoperability.
EAT chooses one general and explicit mechanism, the profile, to indicate the choices made for these implementation options for all aspects of the token.</t>

<t>Below is a list of the various issues that should be addressed by a profile.</t>

<t>The "eat_profile" claim in <xref target="profile-claim"/> provides a unique identifier for the profile a particular token uses.</t>

<t>A profile can apply to evidence or to attestation results or both.</t>

<section anchor="format-of-a-profile-document"><name>Format of a Profile Document</name>

<t>A profile document doesn't have to be in any particular format. It may be simple text, something more formal or a combination.</t>

<t>A profile may define, and possibly register, one or more new claims if needed. A profile may also reuse one or more already defined claims, either as-is or with values constrained to a subset or subrange.</t>

</section>
<section anchor="full-and-partial-profiles"><name>Full and Partial Profiles</name>

<t>For a "full" profile, the receiver will be able to decode and verify every possible EAT sent when a sender and receiver both adhere to it.
For a "partial" profile, there are still some protocol options left undecided.</t>

<t>For example, a profile that allows the use of signing algorithms by the sender that the receiver is not required to support is a partial profile.
The sender might choose a signing algorithm that some receivers don't support.</t>

<t>Full profiles <bcp14>MUST</bcp14> be complete such that a complying receiver can decode, verify and check for freshness every EAT created by a complying sender.
A full profile <bcp14>MAY</bcp14> or <bcp14>MAY</bcp14> NOT require the receiver to fully handle every claim in an EAT from a complying sender.
Profile specifications may assume the receiver has access to the necessary verification keys or may go into specific detail on the means to access verification keys.</t>

<t>The "eat_profile" claim <bcp14>MUST NOT</bcp14> be used to identify partial profiles.</t>

<t>While fewer profiles are preferrable, sometimes several may be needed for a use case.
One approach to handling variation in devices might be to define several full profiles that are variants of each other.
It is relatively easy and inexpensive to define profiles as they don't have to be standards track and don't have to be registered anywhere.
For example, flexibility for post-quantum algorithms can be handled as follows.
First, define a full profile for a set of non-post-quantum algorithms for current use.
Then, when post-quantum algorithms are settled, define another full profile derived from the first.</t>

</section>
<section anchor="list-of-profile-issues"><name>List of Profile Issues</name>

<t>The following is a list of EAT, CWT, JWT, COSE, JOSE and CBOR options that a profile should address.</t>

<section anchor="use-of-json-cbor-or-both"><name>Use of JSON, CBOR or both</name>

<t>A profile should specify whether CBOR, JSON or both may be sent.
A profile should specify that the receiver can accept all encodings that the sender is allowed to send.</t>

<t>This should be specified for the top-level and all nested tokens.
For example, a profile might require all nested tokens to be of the same encoding of the top level token.</t>

</section>
<section anchor="cbor-map-and-array-encoding"><name>CBOR Map and Array Encoding</name>

<t>A profile should specify whether definite-length arrays/maps, indefinite-length arrays/maps or both may be sent.
A profile should specify that the receiver be able to accept all length encodings that the sender is allowed to send.</t>

<t>This applies to individual EAT claims, CWT and COSE parts of the implementation.</t>

<t>For most use cases, specifying that only definite-length arrays/maps may be sent is suitable.</t>

</section>
<section anchor="cbor-string-encoding"><name>CBOR String Encoding</name>

<t>A profile should specify whether definite-length strings, indefinite-length strings or both may be sent.
A profile should specify that the receiver be able to accept all types of string encodings that the sender is allowed to send.</t>

<t>For most use cases, specifying that only definite-length strings may be sent is suitable.</t>

</section>
<section anchor="cbor-preferred-serialization"><name>CBOR Preferred Serialization</name>

<t>A profile should specify whether or not CBOR preferred serialization must be sent or not.
A profile should specify the receiver be able to accept preferred and/or non-preferred serialization so it will be able to accept anything sent by the sender.</t>

</section>
<section anchor="cbor-tags"><name>CBOR Tags</name>

<t>The profile should specify whether the token should be a CWT Tag or not.</t>

<t>When COSE protection is used, the profile should specify whether COSE tags are used or not.
Note that RFC 8392 requires COSE tags be used in a CWT tag.</t>

<t>Often a tag is unnecessary because the surrounding or carrying protocol identifies the object as an EAT.</t>

</section>
<section anchor="message-type"><name>COSE/JOSE Protection</name>

<t>COSE and JOSE have several options for signed, MACed and encrypted messages.
JWT may use the JOSE NULL protection option.
It is possible to implement no protection, sign only, MAC only, sign then encrypt and so on.
All combinations allowed by COSE, JOSE, JWT, and CWT are allowed by EAT.</t>

<t>A profile should specify all signing, encryption and MAC message formats that may be sent.
For example, a profile might allow only COSE_Sign1 to be sent.
For another example, a profile might allow COSE_Sign and COSE_Encrypt to be sent to carry multiple signatures for post quantum cryptography and to use encryption to provide confidentiality.</t>

<t>A profile should specify the receiver accepts all message formats that are allowed to be sent.</t>

<t>When both signing and encryption are allowed, a profile should specify which is applied first.</t>

</section>
<section anchor="cosejose-algorithms"><name>COSE/JOSE Algorithms</name>

<t>See the section on "Application Profiling Considerations" in <xref target="RFC9052"/> for a discussion on selection of cryptographic algorithms and related issues.</t>

<t>The profile <bcp14>MAY</bcp14> require the protocol or system using EAT provide an algorithm negotiation mechanism.</t>

<t>If not, The profile document should list a set of algorithms for each COSE and JOSE message type allowed by the profile per <xref target="message-type"/>.
The verifier should implement all of them.
The attester may implement any of them it wishes, possibly just one for each message type.</t>

<t>If detached submodule digests are used the profile should address the determination of the hash algorithm(s) for the digests.</t>

</section>
<section anchor="detached-eat-bundle-support"><name>Detached EAT Bundle Support</name>

<t>A profile should specify whether or not a detached EAT bundle (<xref target="DEB"/>) can be sent.
A profile should specify that a receiver be able to accept a detached EAT bundle if the sender is allowed to send it.</t>

</section>
<section anchor="key-identification"><name>Key Identification</name>

<t>A profile should specify what must be sent to identify the verification, decryption or MAC key or keys.
If multiple methods of key identification may be sent, a profile should require the receiver support them all.</t>

<t><xref target="keyid"/> describes a number of methods for identifying verification keys.
When encryption is used, there are further considerations.
In some cases key identification may be very simple and in others involve multiple components.
For example, it may be simple through use of COSE key ID or it may be complex through use of an X.509 certificate hierarchy.</t>

<t>While not always possible, a profile should specify or make reference to, a full end-end specification for key identification.
For example, a profile should specify in full detail how COSE key IDs are to be created, their lifecycle and such rather than just specifying that a COSE key ID be used.
For example, a profile should specify the full details of an X.509 hierarchy including extension processing, algorithms allowed and so on rather than just saying X.509 certificates are used.</t>

</section>
<section anchor="endorsement-identification"><name>Endorsement Identification</name>

<t>Similar to, or perhaps the same as verification key identification, the profile may wish to specify how endorsements are to be identified.
However note that endorsement identification is optional, whereas key identification is not.</t>

</section>
<section anchor="freshness"><name>Freshness</name>

<t>Security considerations, see <xref target="sec-con-freshness"/>, require a mechanism to provide freshness.
This may be the EAT nonce claim in <xref target="nonce"/>, or some claim or mechanism defined outside this document.
The section on freshness in <xref target="RFC9334"/> describes several options.
A profile should specify which freshness mechanism or mechanisms can be used.</t>

<t>If the EAT nonce claim is used, a profile should specify whether multiple nonces may be sent.
If a profile allows multiple nonces to be sent, it should require the receiver to process multiple nonces.</t>

</section>
<section anchor="claims-requirements"><name>Claims Requirements</name>

<t>A profile may define new claims that are not defined in this document.</t>

<t>This document requires an EAT receiver must accept tokens with claims it does not understand.
A profile for a specific use case may reverse this and allow a receiver to reject tokens with claims it does not understand.
A profile for a specific use case may specify that specific claims are prohibited.</t>

<t>A profile for a specific use case may modify this and specify that some claims are required.</t>

<t>A profile may constrain the definition of claims that are defined in this document or elsewhere.
For example, a profile may require the EAT nonce be a certain length or the "location" claim always include the altitude.</t>

<t>Some claims are "pluggable" in that they allow different formats for their content.
The "manifests" claim (<xref target="manifests"/>) along with the measurement and "measurements" (<xref target="measurements"/>) claims are examples of this, allowing the use of CoSWID, SUIT Manifest and other formats.
A profile should specify which formats are allowed to be sent, with the assumption that the corresponding CoAP content types have been registered.
A profile should require the receiver to accept all formats that are allowed to be sent.</t>

<t>Further, if there is variation within a format that is allowed, the profile should specify which variations can be sent.
For example, there are variations in the CoSWID format.
A profile that require the receiver to accept all variations that are allowed to be sent.</t>

</section>
</section>
<section anchor="the-constrained-device-standard-profile"><name>The Constrained Device Standard Profile</name>

<t>It is anticipated that there will be many profiles defined for EAT for many different use cases.
This section gives a normative definition of one profile that is good for many constrained device use cases.</t>

<t>The identifier for this profile is "urn:ietf:rfc:rfcTBD".</t>

<t><cref anchor="to-be-removed">RFC Editor: please replace rfcTBD with this RFC number and remove this note.</cref></t>

<texttable title="Constrained Device Profile Definition" anchor="constrained-profile">
      <ttcol align='left'>Issue</ttcol>
      <ttcol align='left'>Profile Definition</ttcol>
      <c>CBOR/JSON</c>
      <c>CBOR <bcp14>MUST</bcp14> be used</c>
      <c>CBOR Encoding</c>
      <c>Definite length maps and arrays <bcp14>MUST</bcp14> be used</c>
      <c>CBOR Encoding</c>
      <c>Definite length strings <bcp14>MUST</bcp14> be used</c>
      <c>CBOR Serialization</c>
      <c>Preferred serialization <bcp14>MUST</bcp14> be used</c>
      <c>COSE Protection</c>
      <c>COSE_Sign1 <bcp14>MUST</bcp14> be used</c>
      <c>Algorithms</c>
      <c>The receiver <bcp14>MUST</bcp14> accept ES256, ES384 and ES512; the sender <bcp14>MUST</bcp14> send one of these</c>
      <c>Detached EAT Bundle Usage</c>
      <c>Detached EAT bundles <bcp14>MUST</bcp14> not be sent with this profile</c>
      <c>Verification Key Identification</c>
      <c>Either the COSE kid or the UEID <bcp14>MUST</bcp14> be used to identify the verification key. If both are present, the kid takes precedence. (It is assumed the receiver has access to a database of trusted verification keys which allows lookup of the verification key ID; the key format and means of distribution are beyond the scope of this profile)</c>
      <c>Endorsements</c>
      <c>This profile contains no endorsement identifier</c>
      <c>Freshness</c>
      <c>A new single unique nonce <bcp14>MUST</bcp14> be used for every token request</c>
      <c>Claims</c>
      <c>No requirement is made on the presence or absence of claims other than requiring an EAT nonce. As per general EAT rules, the receiver <bcp14>MUST NOT</bcp14> error out on claims it doesn't understand.</c>
</texttable>

<t>Any profile with different requirements than those above <bcp14>MUST</bcp14> have a different profile identifier.</t>

<t>Note that many claims can be present for tokens conforming to this profile, even claims not defined in this document.
Note also that even slight deviation from the above requirements is considered a different profile that <bcp14>MUST</bcp14> have a different identifier.
For example, if a kid (key identifier) or UEID is not used for key identification, it is not in conformance with this profile.
For another example, requiring the presence of some claim is also not in conformance and requires another profile.</t>

<t>Derivations of this profile are encouraged.
For example another profile may be simply defined as The Constrained Device Standard Profile plus the requirement for the presence of claim xxxx and claim yyyy.</t>

</section>
</section>
<section anchor="encoding"><name>Encoding and Collected CDDL</name>

<t>An EAT is fundamentally defined using CDDL.
This document specifies how to encode the CDDL in CBOR or JSON.
Since CBOR can express some things that JSON can't (e.g., tags) or that are expressed differently (e.g., labels) there is some CDDL that is specific to the encoding.</t>

<section anchor="claims-set-and-cddl-for-cwt-and-jwt"><name>Claims-Set and CDDL for CWT and JWT</name>

<t>CDDL was not used to define CWT or JWT.
It was not available at the time.</t>

<t>This document defines CDDL for both CWT and JWT.
This document does not change the encoding or semantics of anything in a CWT or JWT.</t>

<t>A Claims-Set is the central data structure for EAT, CWT and JWT.
It holds all the claims and is the structure that is secured by signing or other means.
It is not possible to define EAT, CWT, or JWT in CDDL without it.
The CDDL definition of Claims-Set here is applicable to EAT, CWT and JWT.</t>

<t>This document specifies how to encode a Claims-Set in CBOR or JSON.</t>

<t>With the exception of nested tokens and some other externally defined structures (e.g., SWIDs) an entire Claims-Set must be in encoded in either CBOR or JSON, never a mixture.</t>

<t>CDDL for the seven claims defined by <xref target="RFC8392"/> and <xref target="RFC7519"/> is included here.</t>

</section>
<section anchor="encoding-data-types"><name>Encoding Data Types</name>

<t>This makes use of the types defined in <xref target="RFC8610"/> Appendix D, Standard Prelude.</t>

<section anchor="common-types"><name>Common Data Types</name>

<t>time-int is identical to the epoch-based time, but disallows
floating-point representation.</t>

<t>The OID encoding from <xref target="RFC9090"/> is used without the tag number in CBOR-encoded tokens.
In JSON tokens OIDs are a text string in the common form of "nn.nn.nn...".</t>

<t>Unless expliclity indicated, URIs are not the URI tag defined in <xref target="RFC8949"/>.
They are just text strings that contain a URI conforming to the format defined in <xref target="RFC3986"/>.</t>

<figure><sourcecode type="CDDL"><![CDATA[
time-int = #6.1(int)

binary-data = JC< base64-url-text, bstr>

base64-url-text = tstr .regexp "[A-Za-z0-9_-]+"

general-oid = JC< json-oid, ~oid >

json-oid = tstr .regexp "([0-2])((\\.0)|(\\.[1-9][0-9]*))*"

general-uri = JC< text, ~uri >

coap-content-format = uint .le 65535

]]></sourcecode></figure>

</section>
<section anchor="jsoninterop"><name>JSON Interoperability</name>

<t>JSON should be encoded per <xref target="RFC8610"/>, Appendix E. In addition, the
following CDDL types are encoded in JSON as follows:</t>

<t><list style="symbols">
  <t>bstr -- <bcp14>MUST</bcp14> be base64url-encoded</t>
  <t>time -- <bcp14>MUST</bcp14> be encoded as NumericDate as described in Section 2 of <xref target="RFC7519"/>.</t>
  <t>string-or-uri -- <bcp14>MUST</bcp14> be encoded as StringOrURI as described in Section 2 of <xref target="RFC7519"/>.</t>
  <t>uri -- <bcp14>MUST</bcp14> be a URI <xref target="RFC3986"/>.</t>
  <t>oid -- <bcp14>MUST</bcp14> be encoded as a string using the well established dotted-decimal notation (e.g., the text "1.2.250.1") <xref target="RFC2252"/>.</t>
</list></t>

<t>The CDDL generic "JC&lt; &gt;" is used in most places where there is a variance between CBOR and JSON.
The first argument is the CDDL for JSON and the second is CDDL for CBOR.</t>

</section>
<section anchor="labels"><name>Labels</name>

<t>Most map labels, Claims-Keys, Claim-Names and enumerated-type values are integers for CBOR-encoded tokens and strings for JSON-encoded tokens.
When this is the case the "JC &lt; &gt;" CDDL construct is used to give both the integer and string values.</t>

</section>
<section anchor="cbor-interoperability"><name>CBOR Interoperability</name>

<t>CBOR allows data items to be serialized in more than one form to accommodate a variety of use cases.
This is addressed in <xref target="profiles"/>.</t>

</section>
</section>
<section anchor="collected-cddl"><name>Collected CDDL</name>

<section anchor="payload-cddl"><name>Payload CDDL</name>

<t>This CDDL defines all the EAT Claims that are added to the main definition of a Claim-Set in <xref target="CDDL_for_CWT"/>.
Claims-Set is the payload for CWT, JWT and potentially other token types.
This is for both CBOR and JSON.
When there is variation between CBOR and JSON, the JC&lt;&gt; CDDL generic defined in <xref target="CDDL_for_CWT"/>.</t>

<t>This CDDL uses, but doesn't define Submodule or nested tokens because the definition for these types varies between CBOR and JSON and the JC&lt;&gt; generic can't be used to define it.
The submodule claim is the one place where a CBOR token can be nested inside a JSON token and vice versa.
Encoding-specific definitions are provided in the following sections.</t>

<figure><sourcecode type="CDDL"><![CDATA[
time-int = #6.1(int)

binary-data = JC< base64-url-text, bstr>

base64-url-text = tstr .regexp "[A-Za-z0-9_-]+"

general-oid = JC< json-oid, ~oid >

json-oid = tstr .regexp "([0-2])((\\.0)|(\\.[1-9][0-9]*))*"

general-uri = JC< text, ~uri >

coap-content-format = uint .le 65535


$$Claims-Set-Claims //= 
    (nonce-label => nonce-type / [ 2* nonce-type ])

nonce-type = JC< tstr .size (8..88), bstr .size (8..64)>


$$Claims-Set-Claims //= (ueid-label => ueid-type)

ueid-type = JC<base64-url-text .size (10..44) , bstr .size (7..33)>

$$Claims-Set-Claims //= (sueids-label => sueids-type)

sueids-type = {
    + tstr => ueid-type
}

$$Claims-Set-Claims //= (
    oemid-label => oemid-pen / oemid-ieee / oemid-random
)

oemid-pen = int

oemid-ieee = JC<oemid-ieee-json, oemid-ieee-cbor>
oemid-ieee-cbor = bstr .size 3
oemid-ieee-json = base64-url-text .size 4

oemid-random = JC<oemid-random-json, oemid-random-cbor>
oemid-random-cbor = bstr .size 16
oemid-random-json = base64-url-text .size 24


$$Claims-Set-Claims //=  (
    hardware-version-label => hardware-version-type
)

hardware-version-type = [
    version:  tstr,
    ? scheme:  $version-scheme
]

$$Claims-Set-Claims //= (
    hardware-model-label => hardware-model-type
)

hardware-model-type = JC<base64-url-text .size (4..44),
                         bytes .size (1..32)>

$$Claims-Set-Claims //= ( sw-name-label => tstr )

$$Claims-Set-Claims //= (sw-version-label => sw-version-type)

sw-version-type = [
    version:  tstr
    ? scheme:  $version-scheme 
]

$$Claims-Set-Claims //= (oem-boot-label => bool)

$$Claims-Set-Claims //= ( debug-status-label => debug-status-type )

debug-status-type = ds-enabled /
                    disabled /
                    disabled-since-boot /
                    disabled-permanently /
                    disabled-fully-and-permanently

ds-enabled                     = JC< "enabled", 0 >
disabled                       = JC< "disabled", 1 >
disabled-since-boot            = JC< "disabled-since-boot", 2 >
disabled-permanently           = JC< "disabled-permanently", 3 >
disabled-fully-and-permanently = 
                       JC< "disabled-fully-and-permanently", 4 >

$$Claims-Set-Claims //= (location-label => location-type)

location-type = {
    latitude => number,
    longitude => number,
    ? altitude => number,
    ? accuracy => number,
    ? altitude-accuracy => number,
    ? heading => number,
    ? speed => number,
    ? timestamp => ~time-int,
    ? age => uint
}

latitude          = JC< "latitude",          1 >
longitude         = JC< "longitude",         2 >
altitude          = JC< "altitude",          3 >
accuracy          = JC< "accuracy",          4 >
altitude-accuracy = JC< "altitude-accuracy", 5 >
heading           = JC< "heading",           6 >
speed             = JC< "speed",             7 >
timestamp         = JC< "timestamp",         8 >
age               = JC< "age",               9 >

$$Claims-Set-Claims //= (uptime-label => uint)

$$Claims-Set-Claims //=  (boot-seed-label => binary-data)

$$Claims-Set-Claims //= (boot-count-label => uint)

$$Claims-Set-Claims //= ( intended-use-label => intended-use-type )

intended-use-type = generic /
                    registration / 
                    provisioning / 
                    csr /
                    pop

generic      = JC< "generic",      1 >
registration = JC< "registration", 2 >
provisioning = JC< "provisioning", 3 >
csr          = JC< "csr",          4 >
pop          = JC< "pop",          5 >

$$Claims-Set-Claims //= (
    dloas-label => [ + dloa-type ]
)

dloa-type = [
    dloa_registrar: general-uri
    dloa_platform_label: text 
    ? dloa_application_label: text
]

$$Claims-Set-Claims //= (profile-label => general-uri / general-oid)

$$Claims-Set-Claims //= (
    manifests-label => manifests-type
)

manifests-type = [+ manifest-format]

manifest-format = [
    content-type:   coap-content-format,
    content-format: JC< $manifest-body-json,
                        $manifest-body-cbor >
]

$manifest-body-cbor /= bytes .cbor untagged-coswid
$manifest-body-json /= base64-url-text

$manifest-body-cbor /= bytes .cbor SUIT_Envelope
$manifest-body-json /= base64-url-text


$$Claims-Set-Claims //= (
    measurements-label => measurements-type
)

measurements-type = [+ measurements-format]

measurements-format = [
    content-type:   coap-content-format,
    content-format: JC< $measurements-body-json,
                        $measurements-body-cbor >
]

$measurements-body-cbor /= bytes .cbor untagged-coswid
$measurements-body-json /= base64-url-text


$$Claims-Set-Claims //= ( 
    measurement-results-label => 
        [ + measurement-results-group ] )

measurement-results-group = [
    measurement-system: tstr,
    measurement-results: [ + individual-result ]
]

individual-result = [
    result-id:  tstr / binary-data,
    result:     result-type, 
]

result-type = comparison-successful /
              comparison-fail /
              comparison-not-run /
              measurement-absent 

comparison-successful    = JC< "success",       1 >
comparison-fail          = JC< "fail",          2 >
comparison-not-run       = JC< "not-run",       3 >
measurement-absent       = JC< "absent",        4 >



Detached-Submodule-Digest = [
   hash-algorithm : text / int,
   digest         : binary-data
]


BUNDLE-Messages = BUNDLE-Tagged-Message / BUNDLE-Untagged-Message

BUNDLE-Tagged-Message   = #6.TBD602(BUNDLE-Untagged-Message)
BUNDLE-Untagged-Message = Detached-EAT-Bundle

Detached-EAT-Bundle = [
    main-token : Nested-Token,
    detached-claims-sets: {
        + tstr => JC<json-wrapped-claims-set,
                     cbor-wrapped-claims-set>
    }
]

json-wrapped-claims-set = base64-url-text

cbor-wrapped-claims-set = bstr .cbor Claims-Set



nonce-label            = JC< "eat_nonce",  10 >
ueid-label             = JC< "ueid",       256 >
sueids-label           = JC< "sueids",     257 >
oemid-label            = JC< "oemid",      258 >
hardware-model-label   = JC< "hwmodel",    259 >
hardware-version-label = JC< "hwversion",  260 >
oem-boot-label         = JC< "oemboot",    262 >
debug-status-label     = JC< "dbgstat",    263 >
location-label         = JC< "location",   264 >
profile-label          = JC< "eat_profile",265 >
submods-label          = JC< "submods",    266 >

uptime-label           = JC< "uptime",     TBD >
boot-seed-label        = JC< "bootseed",   TBD >
intended-use-label     = JC< "intuse",     TBD >
dloas-label            = JC< "dloas",      TBD >
sw-name-label          = JC< "swname",     TBD >
sw-version-label       = JC< "swversion",  TBD >
manifests-label        = JC< "manifests",  TBD >
measurements-label     = JC< "measurements", TBD >
measurement-results-label = JC< "measres" , TBD >
boot-count-label       = JC< "bootcount",  TBD >


]]></sourcecode></figure>

</section>
<section anchor="cbor-specific-cddl"><name>CBOR-Specific CDDL</name>

<figure><sourcecode type="CDDL"><![CDATA[
EAT-CBOR-Token = $EAT-CBOR-Tagged-Token / $EAT-CBOR-Untagged-Token

$EAT-CBOR-Tagged-Token /= CWT-Tagged-Message
$EAT-CBOR-Tagged-Token /= BUNDLE-Tagged-Message

$EAT-CBOR-Untagged-Token /= CWT-Untagged-Message
$EAT-CBOR-Untagged-Token /= BUNDLE-Untagged-Message


Nested-Token = CBOR-Nested-Token

CBOR-Nested-Token =
    JSON-Token-Inside-CBOR-Token /
    CBOR-Token-Inside-CBOR-Token

CBOR-Token-Inside-CBOR-Token = bstr .cbor $EAT-CBOR-Tagged-Token

JSON-Token-Inside-CBOR-Token = tstr 

$$Claims-Set-Claims //= (submods-label => { + text => Submodule })

Submodule = Claims-Set / CBOR-Nested-Token / 
            Detached-Submodule-Digest

]]></sourcecode></figure>

</section>
<section anchor="json-specific-cddl"><name>JSON-Specific CDDL</name>

<figure><sourcecode type="CDDL"><![CDATA[
EAT-JSON-Token = $EAT-JSON-Token-Formats

$EAT-JSON-Token-Formats /= JWT-Message
$EAT-JSON-Token-Formats /= BUNDLE-Untagged-Message


Nested-Token = JSON-Selector

$JSON-Selector-Type /= "JWT" / "CBOR" / "BUNDLE" / "DIGEST"
$JSON-Selector-Value /= JWT-Message /
                  CBOR-Token-Inside-JSON-Token /
                  Detached-EAT-Bundle /
                  Detached-Submodule-Digest

JSON-Selector = [
   type : $JSON-Selector-Type,
   nested-token : $JSON-Selector-Value
]

CBOR-Token-Inside-JSON-Token = base64-url-text

$$Claims-Set-Claims //= (submods-label => { + text => Submodule })

Submodule = Claims-Set / JSON-Selector

]]></sourcecode></figure>

</section>
</section>
</section>
<section anchor="privacyconsiderations"><name>Privacy Considerations</name>

<t>Certain EAT claims can be used to track the owner of an entity;
therefore, implementations should consider privacy-preserving
options dependent on the usage of the EAT.
For example, the location claim might be suppressed in EATs sent to unauthenticated consumers.</t>

<section anchor="ueidprivacyconsiderations"><name>UEID and SUEID Privacy Considerations</name>

<t>A UEID is usually not privacy-preserving. Relying parties
receiving tokens that happen to be from a particular entity will be
able to know the tokens are  from the same entity and be able to
identify the entity issuing those tokens.</t>

<t>Thus the use of the claim may violate privacy policies. In other usage situations a UEID will
not be allowed for certain products like browsers that give privacy
for the end user. It will often be the case that tokens will not have
a UEID for these reasons.</t>

<t>An SUEID is also usually not privacy-preserving.  In some cases it may
have fewer privacy issues than a UEID depending on when and how and
when it is generated.</t>

<t>There are several strategies that can be used to still be able to put
UEIDs and SUEIDs in tokens:</t>

<t><list style="symbols">
  <t>The entity obtains explicit permission from the user of the entity
to use the UEID/SUEID. This may be through a prompt. It may also be through
a license agreement.  For example, agreements for some online banking
and brokerage services might already cover use of a UEID/SUEID.</t>
  <t>The UEID/SUEID is used only in a particular context or particular use
case. It is used only by one relying party.</t>
  <t>The entity authenticates the relying party and generates a derived
UEID/SUEID just for that particular relying party.  For example, the relying
party could prove their identity cryptographically to the entity, then
the entity generates a UEID just for that relying party by hashing a
proofed relying party ID with the main entity UEID/SUEID.</t>
</list></t>

<t>Note that some of these privacy preservation strategies result in
multiple UEIDs and SUEIDs per entity. Each UEID/SUEID is used in a
different context, use case or system on the entity. However, from the
view of the relying party, there is just one UEID and it is still
globally universal across manufacturers.</t>

</section>
<section anchor="locationprivacyconsiderations"><name>Location Privacy Considerations</name>

<t>Geographic location is most always considered personally identifiable information.
Implementers should consider laws and regulations governing the transmission of location data from end user devices to servers and services.
Implementers should consider using location management facilities offered by the operating system on the entity generating the attestation.
For example, many mobile phones prompt the user for permission before sending location data.</t>

</section>
<section anchor="bootseedprivacyconsiderations"><name>Boot Seed Privacy Considerations</name>

<t>The "bootseed" claim is effectively a stable entity identifier within a given boot epoch.  Therefore, it is not suitable for use in attestation schemes that are privacy-preserving.</t>

</section>
<section anchor="replayprivacyconsiderations"><name>Replay Protection and Privacy</name>

<t>EAT defines the EAT nonce claim for replay protection and token freshness.
The nonce claim is based on a value usually derived remotely (outside of the entity).
This claim might be used to extract and convey personally identifying information either inadvertently or by intention.
For instance, an implementor may choose a nonce equivalent to a username associated with the device (e.g., account login).
If the token is inspected by a 3rd-party then this information could be used to identify the source of the token or an account associated with the token.
To avoid the conveyance of privacy-related information in the nonce claim, it should be derived using a salt that originates from a true and reliable random number generator or any other source of randomness that would still meet the target system requirements for replay protection and token freshness.</t>

</section>
</section>
<section anchor="securitycons"><name>Security Considerations</name>

<t>The security considerations provided in Section 8 of <xref target="RFC8392"/> and Section 11
of <xref target="RFC7519"/> apply to EAT in its CWT and JWT form, respectively.  Moreover, Chapter 12
of <xref target="RFC9334"/> is also applicable to implementations of EAT.  In addition,
implementors should consider the following.</t>

<section anchor="claim-trustworthiness"><name>Claim Trustworthiness</name>

<t>This specification defines semantics for each claim.
It does not require any particular level of security in the implementation of the claims or even the attester itself.
Such specification is far beyond the scope of this document which is about a message format not the security level of an implementation.</t>

<t>The receiver of an EAT comes to know the trustworthiness of the claims in it by understanding the implementation made by the attester vendor and/or understanding the checks and processing performed by the verifier.</t>

<t>For example, this document says that a UEID is permanent and that it must not change, but it doesn't say what degree of attack to change it must be defended.</t>

<t>The degree of security will vary from use case to use case.
In some cases the receiver may only need to know something of the implementation such as that it was implemented in a TEE.
In other cases the receiver may require the attester be certified by a particular certification program.
Or perhaps the receiver is content with very little security.</t>

</section>
<section anchor="key-provisioning"><name>Key Provisioning</name>

<t>Private key material can be used to sign and/or encrypt the EAT, or
can be used to derive the keys used for signing and/or encryption.  In
some instances, the manufacturer of the entity may create the key
material separately and provision the key material in the entity
itself.  The manufacturer of any entity that is capable of producing
an EAT should take care to ensure that any private key material be
suitably protected prior to provisioning the key material in the
entity itself.  This can require creation of key material in an
enclave (see <xref target="RFC4949"/> for definition of "enclave"), secure
transmission of the key material from the enclave to the entity using
an appropriate protocol, and persistence of the private key material
in some form of secure storage to which (preferably) only the entity
has access.</t>

<section anchor="transmission-of-key-material"><name>Transmission of Key Material</name>

<t>Regarding transmission of key material from the enclave to the entity,
the key material may pass through one or more intermediaries.
Therefore some form of protection ("key wrapping") may be necessary.
The transmission itself may be performed electronically, but can also
be done by human courier.  In the latter case, there should be minimal
to no exposure of the key material to the human (e.g. encrypted
portable memory).  Moreover, the human should transport the key
material directly from the secure enclave where it was created to a
destination secure enclave where it can be provisioned.</t>

</section>
</section>
<section anchor="sec-con-freshness"><name>Freshness</name>

<t>All EAT use <bcp14>MUST</bcp14> provide a freshness mechanism to prevent replay and related attacks.
The extensive discussions on freshness in <xref target="RFC9334"/> including security considerations apply here.
The EAT nonce claim, in <xref target="nonce"/>, is one option to provide freshness.</t>

</section>
<section anchor="multiple-eat-consumers"><name>Multiple EAT Consumers</name>

<t>In many cases, more than one EAT consumer may be required to fully
verify the entity attestation.  Examples include individual consumers
for nested EATs, or consumers for individual claims with an EAT.  When
multiple consumers are required for verification of an EAT, it is
important to minimize information exposure to each consumer.  In
addition, the communication between multiple consumers should be
secure.</t>

<t>For instance, consider the example of an encrypted and signed EAT with
multiple claims.  A consumer may receive the EAT (denoted as the
"receiving consumer"), decrypt its payload, verify its signature, but
then pass specific subsets of claims to other consumers for evaluation
("downstream consumers").  Since any COSE encryption will be removed
by the receiving consumer, the communication of claim subsets to any
downstream consumer <bcp14>MUST</bcp14> leverage an equivalent communication security protocol
(e.g. Transport Layer Security).</t>

<t>However, assume the EAT of the previous example is hierarchical and
each claim subset for a downstream consumer is created in the form of
a nested EAT.  Then the nested EAT is itself encrypted and cryptographically verifiable (due to its
COSE envelope)
by a downstream consumer (unlike the previous example where a claims set
without a COSE envelope is sent to a downstream consumer).  Therefore, Transport Layer Security between the receiving and
downstream consumers is not strictly required.  Nevertheless,
downstream consumers of a nested EAT should provide a nonce unique to
the EAT they are consuming.</t>

</section>
<section anchor="detached-eat-bundle-digest-security-considerations"><name>Detached EAT Bundle Digest Security Considerations</name>

<t>A detached EAT bundle is composed of a nested EAT and
an claims set as per <xref target="DEB"/>.  Although the attached claims set is vulnerable to
modification in transit, any modification can be detected by the receiver through the associated
digest, which is a claim fully contained within an EAT.  Moreover, the digest itself can only be derived using
an appropriate COSE hash algorithm, implying that an attacker cannot induce false detection
of modified detached claims because the algorithms in the COSE registry are assumed to be
of sufficient cryptographic strength.</t>

</section>
<section anchor="verfication-key-sc"><name>Verification Keys</name>

<t>In all cases there must be some way that the verification key is itself verified or determined to be trustworthy.
The key identification itself is never enough.
This will always be by some out-of-band mechanism that is not described here.
For example, the verifier may be configured with a root certificate or a master key by the verifier system administrator.</t>

<t>Often an X.509 certificate or an endorsement carries more than just the verification key.
For example, an X.509 certificate might have key usage constraints, and an endorsement might have reference values.
When this is the case, the key identifier must be either a protected header or in the payload, such that it is cryptographically bound to the EAT.
This is in line with the requirements in section 6 on Key Identification in JSON Web Signature <xref target="RFC7515"/>.</t>

</section>
</section>
<section anchor="iana-cons"><name>IANA Considerations</name>

<section anchor="reuse-of-cbor-and-json-web-token-cwt-and-jwt-claims-registries"><name>Reuse of CBOR and JSON Web Token (CWT and JWT) Claims Registries</name>

<t>Claims defined for EAT are compatible with those of CWT and JWT
so the CWT and JWT Claims Registries, <xref target="IANA.CWT.Claims"/> and <xref target="IANA.JWT.Claims"/>, are re-used. No new IANA registry
is created.</t>

<t>All EAT claims defined in this document are placed in both registries.
All new EAT claims defined subsequently should be placed in both registries.</t>

<t><xref target="Claim_Characteristics"/> describes some considerations when defining new claims.</t>

</section>
<section anchor="cwt-and-jwt-claims-registered-by-this-document"><name>CWT and JWT Claims Registered by This Document</name>

<t>This specification adds the following values to the "JSON Web Token
Claims" registry established by <xref target="RFC7519"/> and the "CBOR Web Token Claims Registry"
established by <xref target="RFC8392"/>.
Each entry below is an addition to both registries.</t>

<t>The "Claim Description", "Change Controller" and "Specification Documents" are common and equivalent for the JWT and CWT registries.
The "Claim Key" and "Claim Value Types(s)" are for the CWT registry only.
The "Claim Name" is as defined for the CWT registry, not the JWT registry.
The "JWT Claim Name" is equivalent to the "Claim Name" in the JWT registry.</t>

<t>IANA is requested to register the following claims.</t>

<t><cref anchor="remove">RFC editor: please remove this paragraph.</cref></t>

<t>RFC Editor: Please make the following adjustments and remove this paragraph.
Replace "<strong>this document</strong>" with this RFC number.
In the following, the claims with "Claim Key: TBD" need to be assigned a value in the Specification Required Range, preferably starting around 267.
Those below already with a Claim Key number were given early assignment.
No change is requested for them except for Claim Key 262.
Claim 262 should be renamed from "secboot" to "oemboot" in the JWT registry and its description changed in both the CWT and JWT registries.</t>

<t><list style="symbols">
  <t>Claim Name: Nonce</t>
  <t>Claim Description: Nonce</t>
  <t>JWT Claim Name: "eat_nonce"</t>
  <t>Claim Key: 10</t>
  <t>Claim Value Type(s): byte string</t>
  <t>Change Controller: IETF</t>
  <t>Specification Document(s): <strong>this document</strong></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: UEID</t>
  <t>Claim Description: The Universal Entity ID</t>
  <t>JWT Claim Name: "ueid"</t>
  <t>CWT Claim Key: 256</t>
  <t>Claim Value Type(s): byte string</t>
  <t>Change Controller: IETF</t>
  <t>Specification Document(s): <strong>this document</strong></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: SUEIDs</t>
  <t>Claim Description: Semi-permanent UEIDs</t>
  <t>JWT Claim Name: "sueids"</t>
  <t>CWT Claim Key: 257</t>
  <t>Claim Value Type(s): map</t>
  <t>Change Controller: IETF</t>
  <t>Specification Document(s): <strong>this document</strong></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: Hardware OEM ID</t>
  <t>Claim Description: Hardware OEM ID</t>
  <t>JWT Claim Name: "oemid"</t>
  <t>Claim Key: 258</t>
  <t>Claim Value Type(s): byte string or integer</t>
  <t>Change Controller: IETF</t>
  <t>Specification Document(s): <strong>this document</strong></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: Hardware Model</t>
  <t>Claim Description: Model identifier for hardware</t>
  <t>JWT Claim Name: "hwmodel"</t>
  <t>Claim Key: 259</t>
  <t>Claim Value Type(s): byte string</t>
  <t>Change Controller: IETF</t>
  <t>Specification Document(s): <strong>this document</strong></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: Hardware Version</t>
  <t>Claim Description: Hardware Version Identifier</t>
  <t>JWT Claim Name: "hwversion"</t>
  <t>Claim Key: TBD 260</t>
  <t>Claim Value Type(s): array</t>
  <t>Change Controller: IETF</t>
  <t>Specification Document(s): <strong>this document</strong></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: OEM Authorised Boot</t>
  <t>Claim Description: Indicates whether the software booted was OEM authorized</t>
  <t>JWT Claim Name: "oemboot"</t>
  <t>Claim Key: 262</t>
  <t>Claim Value Type(s): Boolean</t>
  <t>Change Controller: IETF</t>
  <t>Specification Document(s): <strong>this document</strong></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: Debug Status</t>
  <t>Claim Description: Indicates status of debug facilities</t>
  <t>JWT Claim Name: "dbgstat"</t>
  <t>Claim Key: 263</t>
  <t>Claim Value Type(s): integer or string</t>
  <t>Change Controller: IETF</t>
  <t>Specification Document(s): <strong>this document</strong></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: Location</t>
  <t>Claim Description: The geographic location</t>
  <t>JWT Claim Name: "location"</t>
  <t>Claim Key: 264</t>
  <t>Claim Value Type(s): map</t>
  <t>Change Controller: IETF</t>
  <t>Specification Document(s): <strong>this document</strong></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: EAT Profile</t>
  <t>Claim Description: Indicates the EAT profile followed</t>
  <t>JWT Claim Name: "eat_profile"</t>
  <t>Claim Key: 265</t>
  <t>Claim Value Type(s): URI or OID</t>
  <t>Change Controller: IETF</t>
  <t>Specification Document(s): <strong>this document</strong></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: Submodules Section</t>
  <t>Claim Description: The section containing submodules</t>
  <t>JWT Claim Name: "submods"</t>
  <t>Claim Key: 266</t>
  <t>Claim Value Type(s): map</t>
  <t>Change Controller: IETF</t>
  <t>Specification Document(s): <strong>this document</strong></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: Uptime</t>
  <t>Claim Description: Uptime</t>
  <t>JWT Claim Name: "uptime"</t>
  <t>Claim Key: TBD</t>
  <t>Claim Value Type(s): unsigned integer</t>
  <t>Change Controller: IETF</t>
  <t>Specification Document(s): <strong>this document</strong></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: Boot Count</t>
  <t>Claim Description: The number times the entity or submodule has been booted</t>
  <t>JWT Claim Name: "bootcount"</t>
  <t>Claim Key: TBD</t>
  <t>Claim Value Type(s): uint</t>
  <t>Change Controller: IETF</t>
  <t>Specification Document(s): <strong>this document</strong></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: Boot Seed</t>
  <t>Claim Description: Identifies a boot cycle</t>
  <t>JWT Claim Name: "bootseed"</t>
  <t>Claim Key: TBD</t>
  <t>Claim Value Type(s): bytes</t>
  <t>Change Controller: IETF</t>
  <t>Specification Document(s): <strong>this document</strong></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: DLOAs</t>
  <t>Claim Description: Certifications received as Digital Letters of Approval</t>
  <t>JWT Claim Name: "dloas"</t>
  <t>Claim Key: TBD</t>
  <t>Claim Value Type(s): array</t>
  <t>Change Controller: IETF</t>
  <t>Specification Document(s): <strong>this document</strong></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: Software Name</t>
  <t>Claim Description: The name of the software running in the entity</t>
  <t>JWT Claim Name: "swname"</t>
  <t>Claim Key: TBD</t>
  <t>Claim Value Type(s): map</t>
  <t>Change Controller: IETF</t>
  <t>Specification Document(s): <strong>this document</strong></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: Software Version</t>
  <t>Claim Description: The version of software running in the entity</t>
  <t>JWT Claim Name: "swversion"</t>
  <t>Claim Key: TBD</t>
  <t>Claim Value Type(s): map</t>
  <t>Change Controller: IETF</t>
  <t>Specification Document(s): <strong>this document</strong></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: Software Manifests</t>
  <t>Claim Description: Manifests describing the software installed on the entity</t>
  <t>JWT Claim Name: "manifests"</t>
  <t>Claim Key: TBD</t>
  <t>Claim Value Type(s): array</t>
  <t>Change Controller: IETF</t>
  <t>Specification Document(s): <strong>this document</strong></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: Measurements</t>
  <t>Claim Description: Measurements of the software, memory configuration and such on the entity</t>
  <t>JWT Claim Name: "measurements"</t>
  <t>Claim Key: TBD</t>
  <t>Claim Value Type(s): array</t>
  <t>Change Controller: IETF</t>
  <t>Specification Document(s): <strong>this document</strong></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: Software Measurement Results</t>
  <t>Claim Description: The results of comparing software measurements to reference values</t>
  <t>JWT Claim Name: "measres"</t>
  <t>Claim Key: TBD</t>
  <t>Claim Value Type(s): array</t>
  <t>Change Controller: IETF</t>
  <t>Specification Document(s): <strong>this document</strong></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: Intended Use</t>
  <t>Claim Description: Indicates intended use of the EAT</t>
  <t>JWT Claim Name: "intuse"</t>
  <t>Claim Key: TBD</t>
  <t>Claim Value Type(s): integer or string</t>
  <t>Change Controller: IETF</t>
  <t>Specification Document(s): <strong>this document</strong></t>
</list></t>

</section>
<section anchor="registerueidurn"><name>UEID URN Registered by this Document</name>

<t>IANA is requested to register the following new subtypes in the "DEV URN Subtypes" registry under "Device Identification". See <xref target="RFC9039"/>.</t>

<texttable title="UEID URN Registration" anchor="ueid-urn-reg">
      <ttcol align='left'>Subtype</ttcol>
      <ttcol align='left'>Description</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>ueid</c>
      <c>Universal Entity Identifier</c>
      <c>This document</c>
      <c>sueid</c>
      <c>Semi-permanent Universal Entity Identifier</c>
      <c>This document</c>
</texttable>

<t>ABNF for these two URNs is as follows where b64ueid is the base64url-encoded binary byte-string for the UEID or SUEID:</t>

<figure><artwork><![CDATA[
body =/ ueidbody
ueidbody = %s”ueid:” b64ueid
]]></artwork></figure>

</section>
<section anchor="cbor-tag-for-detached-eat-bundle-registered-by-this-document"><name>CBOR Tag for Detached EAT Bundle Registered by this Document</name>

<t>In the registry <xref target="IANA.cbor-tags"/>, IANA is requested to allocate the
following tag from the Specification Required space, with the present document as the
specification reference.</t>

<texttable title="Detached EAT Bundle Tag Registration" anchor="deb-tag-reg">
      <ttcol align='left'>Tag</ttcol>
      <ttcol align='left'>Data Items</ttcol>
      <ttcol align='left'>Semantics</ttcol>
      <c>TBD602</c>
      <c>array</c>
      <c>Detached EAT Bundle <xref target="DEB"/></c>
</texttable>

</section>
</section>


  </middle>

  <back>


    <references title='Normative References'>



<reference anchor='RFC7515' target='https://www.rfc-editor.org/info/rfc7515'>
  <front>
    <title>JSON Web Signature (JWS)</title>
    <author fullname='M. Jones' initials='M.' surname='Jones'/>
    <author fullname='J. Bradley' initials='J.' surname='Bradley'/>
    <author fullname='N. Sakimura' initials='N.' surname='Sakimura'/>
    <date month='May' year='2015'/>
    <abstract>
      <t>JSON Web Signature (JWS) represents content secured with digital signatures or Message Authentication Codes (MACs) using JSON-based data structures. Cryptographic algorithms and identifiers for use with this specification are described in the separate JSON Web Algorithms (JWA) specification and an IANA registry defined by that specification. Related encryption capabilities are described in the separate JSON Web Encryption (JWE) specification.</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='7515'/>
  <seriesInfo name='DOI' value='10.17487/RFC7515'/>
</reference>

<reference anchor='RFC8949' target='https://www.rfc-editor.org/info/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='RFC7252' target='https://www.rfc-editor.org/info/rfc7252'>
  <front>
    <title>The Constrained Application Protocol (CoAP)</title>
    <author fullname='Z. Shelby' initials='Z.' surname='Shelby'/>
    <author fullname='K. Hartke' initials='K.' surname='Hartke'/>
    <author fullname='C. Bormann' initials='C.' surname='Bormann'/>
    <date month='June' year='2014'/>
    <abstract>
      <t>The Constrained Application Protocol (CoAP) is a specialized web transfer protocol for use with constrained nodes and constrained (e.g., low-power, lossy) networks. The nodes often have 8-bit microcontrollers with small amounts of ROM and RAM, while constrained networks such as IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs) often have high packet error rates and a typical throughput of 10s of kbit/s. The protocol is designed for machine- to-machine (M2M) applications such as smart energy and building automation.</t>
      <t>CoAP provides a request/response interaction model between application endpoints, supports built-in discovery of services and resources, and includes key concepts of the Web such as URIs and Internet media types. CoAP is designed to easily interface with HTTP for integration with the Web while meeting specialized requirements such as multicast support, very low overhead, and simplicity for constrained environments.</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='7252'/>
  <seriesInfo name='DOI' value='10.17487/RFC7252'/>
</reference>

<reference anchor='RFC7519' target='https://www.rfc-editor.org/info/rfc7519'>
  <front>
    <title>JSON Web Token (JWT)</title>
    <author fullname='M. Jones' initials='M.' surname='Jones'/>
    <author fullname='J. Bradley' initials='J.' surname='Bradley'/>
    <author fullname='N. Sakimura' initials='N.' surname='Sakimura'/>
    <date month='May' year='2015'/>
    <abstract>
      <t>JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred between two parties. The claims in a JWT are encoded as a JSON object that is used as the payload of a JSON Web Signature (JWS) structure or as the plaintext of a JSON Web Encryption (JWE) structure, enabling the claims to be digitally signed or integrity protected with a Message Authentication Code (MAC) and/or encrypted.</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='7519'/>
  <seriesInfo name='DOI' value='10.17487/RFC7519'/>
</reference>

<reference anchor='RFC8259' target='https://www.rfc-editor.org/info/rfc8259'>
  <front>
    <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
    <author fullname='T. Bray' initials='T.' role='editor' surname='Bray'/>
    <date month='December' year='2017'/>
    <abstract>
      <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format. It was derived from the ECMAScript Programming Language Standard. JSON defines a small set of formatting rules for the portable representation of structured data.</t>
      <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
    </abstract>
  </front>
  <seriesInfo name='STD' value='90'/>
  <seriesInfo name='RFC' value='8259'/>
  <seriesInfo name='DOI' value='10.17487/RFC8259'/>
</reference>

<reference anchor='RFC8392' target='https://www.rfc-editor.org/info/rfc8392'>
  <front>
    <title>CBOR Web Token (CWT)</title>
    <author fullname='M. Jones' initials='M.' surname='Jones'/>
    <author fullname='E. Wahlstroem' initials='E.' surname='Wahlstroem'/>
    <author fullname='S. Erdtman' initials='S.' surname='Erdtman'/>
    <author fullname='H. Tschofenig' initials='H.' surname='Tschofenig'/>
    <date month='May' year='2018'/>
    <abstract>
      <t>CBOR Web Token (CWT) is a compact means of representing claims to be transferred between two parties. The claims in a CWT are encoded in the Concise Binary Object Representation (CBOR), and CBOR Object Signing and Encryption (COSE) is used for added application-layer security protection. A claim is a piece of information asserted about a subject and is represented as a name/value pair consisting of a claim name and a claim value. CWT is derived from JSON Web Token (JWT) but uses CBOR rather than JSON.</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='8392'/>
  <seriesInfo name='DOI' value='10.17487/RFC8392'/>
</reference>

<reference anchor='RFC8610' target='https://www.rfc-editor.org/info/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='RFC8792' target='https://www.rfc-editor.org/info/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>

<reference anchor='RFC3986' target='https://www.rfc-editor.org/info/rfc3986'>
  <front>
    <title>Uniform Resource Identifier (URI): Generic Syntax</title>
    <author fullname='T. Berners-Lee' initials='T.' surname='Berners-Lee'/>
    <author fullname='R. Fielding' initials='R.' surname='Fielding'/>
    <author fullname='L. Masinter' initials='L.' surname='Masinter'/>
    <date month='January' year='2005'/>
    <abstract>
      <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource. This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet. The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier. This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name='STD' value='66'/>
  <seriesInfo name='RFC' value='3986'/>
  <seriesInfo name='DOI' value='10.17487/RFC3986'/>
</reference>

<reference anchor='RFC9052' target='https://www.rfc-editor.org/info/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='RFC9090' target='https://www.rfc-editor.org/info/rfc9090'>
  <front>
    <title>Concise Binary Object Representation (CBOR) Tags for Object Identifiers</title>
    <author fullname='C. Bormann' initials='C.' surname='Bormann'/>
    <date month='July' year='2021'/>
    <abstract>
      <t>The Concise Binary Object Representation (CBOR), defined in RFC 8949, 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.</t>
      <t>This document defines CBOR tags for object identifiers (OIDs) and is the reference document for the IANA registration of the CBOR tags so defined.</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='9090'/>
  <seriesInfo name='DOI' value='10.17487/RFC9090'/>
</reference>

<reference anchor='RFC9165' target='https://www.rfc-editor.org/info/rfc9165'>
  <front>
    <title>Additional Control Operators for the Concise Data Definition Language (CDDL)</title>
    <author fullname='C. Bormann' initials='C.' surname='Bormann'/>
    <date month='December' year='2021'/>
    <abstract>
      <t>The Concise Data Definition Language (CDDL), standardized in RFC 8610, provides "control operators" as its main language extension point.</t>
      <t>The present document defines a number of control operators that were not yet ready at the time RFC 8610 was completed:,, and for the construction of constants; / for including ABNF (RFC 5234 and RFC 7405) in CDDL specifications; and for indicating the use of a non-basic feature in an instance.</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='9165'/>
  <seriesInfo name='DOI' value='10.17487/RFC9165'/>
</reference>

<reference anchor='RFC4648' target='https://www.rfc-editor.org/info/rfc4648'>
  <front>
    <title>The Base16, Base32, and Base64 Data Encodings</title>
    <author fullname='S. Josefsson' initials='S.' surname='Josefsson'/>
    <date month='October' year='2006'/>
    <abstract>
      <t>This document describes the commonly used base 64, base 32, and base 16 encoding schemes. It also discusses the use of line-feeds in encoded data, use of padding in encoded data, use of non-alphabet characters in encoded data, use of different encoding alphabets, and canonical encodings. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='4648'/>
  <seriesInfo name='DOI' value='10.17487/RFC4648'/>
</reference>

<reference anchor='RFC2252' target='https://www.rfc-editor.org/info/rfc2252'>
  <front>
    <title>Lightweight Directory Access Protocol (v3): Attribute Syntax Definitions</title>
    <author fullname='M. Wahl' initials='M.' surname='Wahl'/>
    <author fullname='A. Coulbeck' initials='A.' surname='Coulbeck'/>
    <author fullname='T. Howes' initials='T.' surname='Howes'/>
    <author fullname='S. Kille' initials='S.' surname='Kille'/>
    <date month='December' year='1997'/>
    <abstract>
      <t>This document defines a set of syntaxes for LDAPv3, and the rules by which attribute values of these syntaxes are represented as octet strings for transmission in the LDAP protocol. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='2252'/>
  <seriesInfo name='DOI' value='10.17487/RFC2252'/>
</reference>

<reference anchor='RFC9334' target='https://www.rfc-editor.org/info/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="WGS84" target="https://earth-info.nga.mil/php/download.php?file=coord-wgs84">
  <front>
    <title>WORLD GEODETIC SYSTEM 1984, NGA.STND.0036_1.0.0_WGS84</title>
    <author >
      <organization>National Geospatial-Intelligence Agency (NGA)</organization>
    </author>
    <date year="2014" month="July" day="08"/>
  </front>
</reference>


<reference anchor='IANA.CWT.Claims' target='https://www.iana.org/assignments/cwt'>
  <front>
    <title>CBOR Web Token (CWT) Claims</title>
    <author>
      <organization>IANA</organization>
    </author>
  </front>
</reference>

<reference anchor='IANA.JWT.Claims' target='https://www.iana.org/assignments/jwt'>
  <front>
    <title>JSON Web Token (JWT)</title>
    <author>
      <organization>IANA</organization>
    </author>
  </front>
</reference>

<reference anchor='IANA.COSE.Algorithms' target='https://www.iana.org/assignments/cose'>
  <front>
    <title>CBOR Object Signing and Encryption (COSE)</title>
    <author>
      <organization>IANA</organization>
    </author>
  </front>
</reference>


<reference anchor="ThreeGPP.IMEI" target="https://portal.3gpp.org/desktopmodules/Specifications/SpecificationDetails.aspx?specificationId=729">
  <front>
    <title>3rd Generation Partnership Project; Technical Specification Group Core Network and Terminals; Numbering, addressing and identification</title>
    <author >
      <organization>3GPP</organization>
    </author>
    <date year="2019"/>
  </front>
</reference>



<reference anchor='CoSWID' target='https://datatracker.ietf.org/doc/html/draft-ietf-sacm-coswid-24'>
   <front>
      <title>Concise Software Identification Tags</title>
      <author fullname='Henk Birkholz' initials='H.' surname='Birkholz'>
         <organization>Fraunhofer SIT</organization>
      </author>
      <author fullname='Jessica Fitzgerald-McKay' initials='J.' surname='Fitzgerald-McKay'>
         <organization>National Security Agency</organization>
      </author>
      <author fullname='Charles Schmidt' initials='C.' surname='Schmidt'>
         <organization>The MITRE Corporation</organization>
      </author>
      <author fullname='David Waltermire' initials='D.' surname='Waltermire'>
         <organization>National Institute of Standards and Technology</organization>
      </author>
      <date day='24' month='February' year='2023'/>
      <abstract>
	 <t>ISO/IEC 19770-2:2015 Software Identification (SWID) tags provide an extensible XML-based structure to identify and describe individual software components, patches, and installation bundles.  SWID tag representations can be too large for devices with network and storage constraints.  This document defines a concise representation of SWID tags: Concise SWID (CoSWID) tags.  CoSWID supports a set of semantics and features that are similar to those for SWID tags, as well as new semantics that allow CoSWIDs to describe additional types of information, all in a more memory-efficient format.
	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-ietf-sacm-coswid-24'/>
   
</reference>


<reference anchor="DLOA" target="https://globalplatform.org/wp-content/uploads/2015/12/GPC_DigitalLetterOfApproval_v1.0.pdf">
  <front>
    <title>Digital Letter of Approval</title>
    <author >
      <organization></organization>
    </author>
    <date year="2015" month="November"/>
  </front>
</reference>
<reference anchor="PEN" target="https://pen.iana.org/pen/PenApplication.page">
  <front>
    <title>Private Enterprise Number (PEN) Request</title>
    <author >
      <organization></organization>
    </author>
    <date year="n.d."/>
  </front>
</reference>


<reference anchor='IANA.cbor-tags' target='https://www.iana.org/assignments/cbor-tags'>
  <front>
    <title>Concise Binary Object Representation (CBOR) Tags</title>
    <author>
      <organization>IANA</organization>
    </author>
  </front>
</reference>


<reference anchor='SUIT.Manifest' target='https://datatracker.ietf.org/doc/html/draft-ietf-suit-manifest-23'>
   <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'>
         </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='10' month='September' year='2023'/>
      <abstract>
	 <t>   This specification describes the format of a manifest.  A manifest is
   a bundle of metadata about code/data obtained by a recipient (chiefly
   the firmware for an IoT device), where to find the 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-23'/>
   
</reference>

<reference anchor='RFC2119' target='https://www.rfc-editor.org/info/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' target='https://www.rfc-editor.org/info/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'>



<reference anchor='RFC4122' target='https://www.rfc-editor.org/info/rfc4122'>
  <front>
    <title>A Universally Unique IDentifier (UUID) URN Namespace</title>
    <author fullname='P. Leach' initials='P.' surname='Leach'/>
    <author fullname='M. Mealling' initials='M.' surname='Mealling'/>
    <author fullname='R. Salz' initials='R.' surname='Salz'/>
    <date month='July' year='2005'/>
    <abstract>
      <t>This specification defines a Uniform Resource Name namespace for UUIDs (Universally Unique IDentifier), also known as GUIDs (Globally Unique IDentifier). A UUID is 128 bits long, and can guarantee uniqueness across space and time. UUIDs were originally used in the Apollo Network Computing System and later in the Open Software Foundation\'s (OSF) Distributed Computing Environment (DCE), and then in Microsoft Windows platforms.</t>
      <t>This specification is derived from the DCE specification with the kind permission of the OSF (now known as The Open Group). Information from earlier versions of the DCE specification have been incorporated into this document. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='4122'/>
  <seriesInfo name='DOI' value='10.17487/RFC4122'/>
</reference>

<reference anchor='RFC4949' target='https://www.rfc-editor.org/info/rfc4949'>
  <front>
    <title>Internet Security Glossary, Version 2</title>
    <author fullname='R. Shirey' initials='R.' surname='Shirey'/>
    <date month='August' year='2007'/>
    <abstract>
      <t>This Glossary provides definitions, abbreviations, and explanations of terminology for information system security. The 334 pages of entries offer recommendations to improve the comprehensibility of written material that is generated in the Internet Standards Process (RFC 2026). The recommendations follow the principles that such writing should (a) use the same term or definition whenever the same concept is mentioned; (b) use terms in their plainest, dictionary sense; (c) use terms that are already well-established in open publications; and (d) avoid terms that either favor a particular vendor or favor a particular technology or mechanism over other, competing techniques that already exist or could be developed. This memo provides information for the Internet community.</t>
    </abstract>
  </front>
  <seriesInfo name='FYI' value='36'/>
  <seriesInfo name='RFC' value='4949'/>
  <seriesInfo name='DOI' value='10.17487/RFC4949'/>
</reference>

<reference anchor='RFC7120' target='https://www.rfc-editor.org/info/rfc7120'>
  <front>
    <title>Early IANA Allocation of Standards Track Code Points</title>
    <author fullname='M. Cotton' initials='M.' surname='Cotton'/>
    <date month='January' year='2014'/>
    <abstract>
      <t>This memo describes the process for early allocation of code points by IANA from registries for which "Specification Required", "RFC Required", "IETF Review", or "Standards Action" policies apply. This process can be used to alleviate the problem where code point allocation is needed to facilitate desired or required implementation and deployment experience prior to publication of an RFC, which would normally trigger code point allocation. The procedures in this document are intended to apply only to IETF Stream documents.</t>
    </abstract>
  </front>
  <seriesInfo name='BCP' value='100'/>
  <seriesInfo name='RFC' value='7120'/>
  <seriesInfo name='DOI' value='10.17487/RFC7120'/>
</reference>

<reference anchor='RFC9039' target='https://www.rfc-editor.org/info/rfc9039'>
  <front>
    <title>Uniform Resource Names for Device Identifiers</title>
    <author fullname='J. Arkko' initials='J.' surname='Arkko'/>
    <author fullname='C. Jennings' initials='C.' surname='Jennings'/>
    <author fullname='Z. Shelby' initials='Z.' surname='Shelby'/>
    <date month='June' year='2021'/>
    <abstract>
      <t>This document describes a new Uniform Resource Name (URN) namespace for hardware device identifiers. A general representation of device identity can be useful in many applications, such as in sensor data streams and storage or in equipment inventories. A URN-based representation can be passed along in applications that need the information.</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='9039'/>
  <seriesInfo name='DOI' value='10.17487/RFC9039'/>
</reference>


<reference anchor="BirthdayAttack" target="https://en.wikipedia.org/wiki/Birthday_attack.">
  <front>
    <title>Birthday attack</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
</reference>


<reference anchor='IEEE.802.1AR'>
  <front>
    <title>IEEE Standard for Local and Metropolitan Area Networks - Secure Device Identity</title>
    <author>
      <organization/>
    </author>
    <date month='July' year='2018'/>
  </front>
  <seriesInfo name='IEEE' value='standard'/>
  <seriesInfo name='DOI' value='10.1109/ieeestd.2018.8423794'/>
</reference>

<reference anchor='W3C.GeoLoc' target='https://www.w3.org/TR/2013/REC-geolocation-API-20131024/'>
  <front>
    <title>Geolocation API Specification</title>
    <author fullname='Andrei Popescu' role='editor'/>
    <date day='24' month='October' year='2013'/>
  </front>
  <seriesInfo name='W3C REC' value='REC-geolocation-API-20131024'/>
  <seriesInfo name='W3C' value='REC-geolocation-API-20131024'/>
</reference>


<reference anchor="OUI.Guide" target="https://standards.ieee.org/content/dam/ieee-standards/standards/web/documents/tutorials/eui.pdf">
  <front>
    <title>Guidelines for Use of Extended Unique Identifier (EUI), Organizationally Unique Identifier (OUI), and Company ID (CID)</title>
    <author >
      <organization></organization>
    </author>
    <date year="2017" month="August"/>
  </front>
</reference>
<reference anchor="OUI.Lookup" target="https://regauth.standards.ieee.org/standards-ra-web/pub/view.html#registries">
  <front>
    <title>IEEE Registration Authority Assignments</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
</reference>
<reference anchor="IEEE-RA" target="https://standards.ieee.org/products-services/regauth/index.html">
  <front>
    <title>IEEE Registration Authority</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
</reference>


<reference anchor='IEEE.802-2001'>
  <front>
    <title>IEEE Standard for Local and Metropolitan Area Networks: Overview and Architecture</title>
    <author>
      <organization/>
    </author>
    <date month='July' year='2014'/>
  </front>
  <seriesInfo name='IEEE' value='standard'/>
  <seriesInfo name='DOI' value='10.1109/ieeestd.2014.6847097'/>
</reference>


<reference anchor='COSE.X509.Draft' target='https://datatracker.ietf.org/doc/html/draft-ietf-cose-x509-09'>
   <front>
      <title>CBOR Object Signing and Encryption (COSE): Header Parameters for Carrying and Referencing X.509 Certificates</title>
      <author fullname='Jim Schaad' initials='J.' surname='Schaad'>
         <organization>August Cellars</organization>
      </author>
      <date day='13' month='October' year='2022'/>
      <abstract>
	 <t>The CBOR Object Signing and Encryption (COSE) message structure uses references to keys in general.  For some algorithms, additional properties are defined that carry parameters relating to keys as needed.  The COSE Key structure is used for transporting keys outside of COSE messages.  This document extends the way that keys can be identified and transported by providing attributes that refer to or contain X.509 certificates.
	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-ietf-cose-x509-09'/>
   
</reference>


<reference anchor='CBOR.Cert.Draft' target='https://datatracker.ietf.org/doc/html/draft-ietf-cose-cbor-encoded-cert-06'>
   <front>
      <title>CBOR Encoded X.509 Certificates (C509 Certificates)</title>
      <author fullname='John Preuß Mattsson' initials='J. P.' surname='Mattsson'>
         <organization>Ericsson AB</organization>
      </author>
      <author fullname='Göran Selander' initials='G.' surname='Selander'>
         <organization>Ericsson AB</organization>
      </author>
      <author fullname='Shahid Raza' initials='S.' surname='Raza'>
         <organization>RISE AB</organization>
      </author>
      <author fullname='Joel Höglund' initials='J.' surname='Höglund'>
         <organization>RISE AB</organization>
      </author>
      <author fullname='Martin Furuhed' initials='M.' surname='Furuhed'>
         <organization>Nexus Group</organization>
      </author>
      <date day='7' month='July' year='2023'/>
      <abstract>
	 <t>   This document specifies a CBOR encoding of X.509 certificates.  The
   resulting certificates are called C509 Certificates.  The CBOR
   encoding supports a large subset of RFC 5280 and all certificates
   compatible with the RFC 7925, IEEE 802.1AR (DevID), CNSA, RPKI, GSMA
   eUICC, and CA/Browser Forum Baseline Requirements profiles.  When
   used to re-encode DER encoded X.509 certificates, the CBOR encoding
   can in many cases reduce the size of RFC 7925 profiled certificates
   with over 50%.  The CBOR encoded structure can alternatively be
   signed directly (&quot;natively signed&quot;), which does not require re-
   encoding for the signature to be verified.  The document also
   specifies C509 COSE headers, a C509 TLS certificate type, and a C509
   file format.

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-ietf-cose-cbor-encoded-cert-06'/>
   
</reference>


<reference anchor='UCCS' target='https://datatracker.ietf.org/doc/html/draft-ietf-rats-uccs-06'>
   <front>
      <title>A CBOR Tag for Unprotected CWT Claims Sets</title>
      <author fullname='Henk Birkholz' initials='H.' surname='Birkholz'>
         <organization>Fraunhofer SIT</organization>
      </author>
      <author fullname='Jeremy O&#x27;Donoghue' initials='J.' surname='O&#x27;Donoghue'>
         <organization>Qualcomm Technologies Inc.</organization>
      </author>
      <author fullname='Nancy Cam-Winget' initials='N.' surname='Cam-Winget'>
         <organization>Cisco Systems</organization>
      </author>
      <author fullname='Carsten Bormann' initials='C.' surname='Bormann'>
         <organization>Universität Bremen TZI</organization>
      </author>
      <date day='2' month='August' year='2023'/>
      <abstract>
	 <t>   CBOR Web Token (CWT, RFC 8392) Claims Sets sometimes do not need the
   protection afforded by wrapping them into COSE, as is required for a
   true CWT.  This specification defines a CBOR tag for such unprotected
   CWT Claims Sets (UCCS) and discusses conditions for its proper use.

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-ietf-rats-uccs-06'/>
   
</reference>


<reference anchor="JTAG" target="https://ieeexplore.ieee.org/document/5412866">
  <front>
    <title>IEEE Standard for Reduced-Pin and Enhanced-Functionality Test Access Port and Boundary-Scan Architecture</title>
    <author >
      <organization></organization>
    </author>
    <date year="2010" month="February"/>
  </front>
</reference>



<reference anchor='EAT.media-types' target='https://datatracker.ietf.org/doc/html/draft-ietf-rats-eat-media-type-04'>
   <front>
      <title>EAT Media Types</title>
      <author fullname='Laurence Lundblade' initials='L.' surname='Lundblade'>
         <organization>Security Theory LLC</organization>
      </author>
      <author fullname='Henk Birkholz' initials='H.' surname='Birkholz'>
         <organization>Fraunhofer Institute for Secure Information Technology</organization>
      </author>
      <author fullname='Thomas Fossati' initials='T.' surname='Fossati'>
         <organization>arm</organization>
      </author>
      <date day='23' month='July' year='2023'/>
      <abstract>
	 <t>   Payloads used in Remote Attestation Procedures may require an
   associated media type for their conveyance, for example when used in
   RESTful APIs.

   This memo defines media types to be used for Entity Attestation
   Tokens (EAT).

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-ietf-rats-eat-media-type-04'/>
   
</reference>




    </references>


<section anchor="examples"><name>Examples</name>

<t>Most examples are shown as just a Claims-Set that would be a payload for a CWT, JWT, detached EAT bundle or future token types.
The signing is left off so the Claims-Set is easier to see.
Some examples of signed tokens are also given.</t>

<t>WARNING: These examples use tag and label numbers not yet assigned by IANA.</t>

<section anchor="claims-set-examples"><name>Claims Set Examples</name>

<section anchor="simple-tee-attestation"><name>Simple TEE Attestation</name>

<t>This is a simple attestation of a TEE that includes a manifest that is a payload CoSWID to describe the TEE's software.</t>

<figure><artwork><![CDATA[
/ This is an EAT payload that describes a simple TEE. /

{
    / eat_nonce /       10: h'48df7b172d70b5a18935d0460a73dd71',
    / oemboot /        262: true,
    / dbgstat /        263: 2, / disabled-since-boot /
    / manifests /      273: [
                              [
                               121, / CoAP Content ID. A     /
                                    / made up one until one  /
                                    / is assigned for CoSWID /

                               / This is byte-string wrapped      /
                               / payload CoSWID. It gives the TEE /
                               / software name, the version and   /
                               / the  name of the file it is in.  /
                               / {0: "3a24",                      /
                               /  12: 1,                          /
                               /   1: "Acme TEE OS",              /
                               /  13: "3.1.4",                    /
                               /   2: [{31: "Acme TEE OS", 33: 1}, /
                               /       {31: "Acme TEE OS", 33: 2}], /
                               /   6: {                           /
                               /       17: {                      /
                               /           24: "acme_tee_3.exe"   /
                               /       }                          /
                               /    }                             /
                               /  }                               /
                               h' a60064336132340c01016b
                                  41636d6520544545204f530d65332e31
                                  2e340282a2181f6b41636d6520544545
                                  204f53182101a2181f6b41636d652054
                                  4545204f5318210206a111a118186e61
                                  636d655f7465655f332e657865'
                              ]
                            ]
}
]]></artwork></figure>

<figure><artwork><![CDATA[
/ A payload CoSWID created by the SW vendor. All this really does /
/ is name the TEE SW, its version and lists the one file that     /
/ makes up the TEE. /

1398229316({
    / Unique CoSWID ID /    0: "3a24",
    / tag-version /        12: 1,
    / software-name /       1: "Acme TEE OS",
    / software-version /   13: "3.1.4",
    / entity /              2: [
                                   {
        / entity-name /                31: "Acme TEE OS",
        / role        /                33: 1 / tag-creator /
                                   },
                                   {
        / entity-name /                31: "Acme TEE OS",
        / role        /                33: 2 / software-creator /
                                   }
                               ],
    / payload /                6: {
        / ...file /                17: {
            / ...fs-name /             24: "acme_tee_3.exe"
                                   }
                               }
})
]]></artwork></figure>

</section>
<section anchor="submodules-for-board-and-device"><name>Submodules for Board and Device</name>

<figure><artwork><![CDATA[
/ This example shows use of submodules to give information  /
/ about the chip, board and overall device.                 /
/                                                           /
/ The main attestation is associated with the chip with the /
/ CPU and running the main OS. It is what has the keys and  /
/ produces the token.                                       /
/                                                           /
/ The board is made by a different vendor than the chip.    /
/ Perhaps it is some generic IoT board.                     /
/                                                           /
/ The device is some specific appliance that is made by a   /
/ different vendor than either the chip or the board.       /
/                                                           /
/ Here the board and device submodules aren't the typical   /
/ target environments as described by the RATS architecture /
/ document, but they are a valid use of submodules.         /

{
    / eat_nonce /       10: h'e253cabedc9eec24ac4e25bcbeaf7765'
    / ueid /           256: h'0198f50a4ff6c05861c8860d13a638ea',
    / oemid /          258: h'894823', / IEEE OUI format OEM ID /
    / hwmodel /        259: h'549dcecc8b987c737b44e40f7c635ce8'
                              / Hash of chip model name /,
    / hwversion /      260: ["1.3.4", 1], / Multipartnumeric  /
    / swname /         271: "Acme OS",
    / swversion /      272: ["3.5.5", 1],
    / oemboot /        262: true,
    / dbgstat /        263: 3, / permanent-disable  /
    / timestamp (iat) /  6: 1526542894,
    / submods / 266: {
        / A submodule to hold some claims about the circuit board /
        "board" :  {
            / oemid /     258: h'9bef8787eba13e2c8f6e7cb4b1f4619a',
            / hwmodel /   259: h'ee80f5a66c1fb9742999a8fdab930893'
                                  / Hash of board module name /,
            / hwversion / 260: ["2.0a", 2] / multipartnumeric+sfx /
        },

        / A submodule to hold claims about the overall device /
        "device" :  {
            / oemid /     258: 61234, / PEN Format OEM ID / 
            / hwversion / 260: ["4.0", 1] / Multipartnumeric /
        }
    }
}
]]></artwork></figure>

</section>
<section anchor="eat-produced-by-attestation-hardware-block"><name>EAT Produced by Attestation Hardware Block</name>

<figure><artwork><![CDATA[
/ This is an example of a token produced by a HW block            /
/ purpose-built for attestation.  Only the nonce claim changes    /
/ from one attestation to the next as the rest  either come       /
/ directly from the hardware or from one-time-programmable memory /
/ (e.g. a fuse). 47 bytes encoded in CBOR (8 byte nonce, 16 byte  /
/ UEID). /

{
    / eat_nonce /       10: h'd79b964ddd5471c1393c8888',
    / ueid /           256: h'0198f50a4ff6c05861c8860d13a638ea',
    / oemid /          258: 64242, / Private Enterprise Number /
    / oemboot /        262: true,
    / dbgstat /        263: 3, / disabled-permanently /
    / hwversion /      260: [ "3.1", 1 ] / Type is multipartnumeric /
}

]]></artwork></figure>

</section>
<section anchor="key-key-store-attestation"><name>Key / Key Store Attestation</name>

<figure><artwork><![CDATA[
/ This is an attestation of a public key and the key store     /
/ implementation that protects and manages it. The key store   /
/ implementation is in a security-oriented execution           /
/ environment separate from the high-level OS (HLOS), for      /
/ example a Trusted Execution Environment (TEE). The key store /
/ is the Attester.                                             /
/                                                              /
/ There is some attestation of the high-level OS, just version /
/ and boot & debug status. It is a Claims-Set submodule because/
/ it has lower security level than the key store. The key      /
/ store's implementation has access to info about the HLOS, so /
/ it is able to include it.                                    /
/                                                              /
/ A key and an indication of the user authentication given to  /
/ allow access to the key is given. The labels for these are   /
/ in the private space since this is just a hypothetical       /
/ example, not part of a standard protocol.                    /


{
    / eat_nonce /       10: h'99b67438dba40743266f70bf75feb1026d5134
                              97a229bfe8'
    / oemboot /        262: true,
    / dbgstat /        263: 2, / disabled-since-boot /
    / manifests /      273: [
                                [ 121, / CoAP Content ID. A      /
                                       / made up one until one   /
                                       / is assigned for CoSWID  /
                                  h'a600683762623334383766
                                    0c000169436172626f6e6974650d6331
                                    2e320e0102a2181f75496e6475737472
                                    69616c204175746f6d6174696f6e1821
                                    02'
                                 ]
                                 / Above is an encoded CoSWID     /
                                 / with the following data        /
                                 /   SW Name: "Carbonite"         /
                                 /   SW Vers: "1.2"               /
                                 /   SW Creator:                  /
                                 /      "Industrial Automation"   /
                            ],
    / exp /              4: 1634324274, / 2021-10-15T18:57:54Z /
    / iat /              6: 1634317080, / 2021-10-15T16:58:00Z /
                   -80000 : "fingerprint",
                   -80001 : { / The key -- A COSE_Key  / 
                / kty /       1: 2, / EC2, eliptic curve with x & y /
                / kid /       2: h'36675c206f96236c3f51f54637b94ced',
                / curve /    -1: 2, / curve is P-256 /
                / x-coord /  -2: h'65eda5a12577c2bae829437fe338701a
                                   10aaa375e1bb5b5de108de439c08551d',
                / y-coord /  -3: h'1e52ed75701163f7f9e40ddf9f341b3d
                                   c9ba860af7e0ca7ca7e9eecd0084d19c'
             },

    / submods /        266 : { 
                           "HLOS" : { / submod for high-level OS /
         / eat_nonce /         10: h'8b0b28782a23d3f6',
           / oemboot /        262: true,
           / manifests /      273: [ 
                                [ 121, / CoAP Content ID. A      /
                                       / made up one until one   /
                                       / is assigned for CoSWID  /
                                    h'a600687337
                                      6537346b78380c000168
                                      44726f6964204f530d65
                                      52322e44320e0302a218
                                      1F75496E647573747269
                                      616c204175746f6d6174
                                      696f6e182102' 
                                  ]
                                  / Above is an encoded CoSWID /
                                  / with the following data:   /
                                  /   SW Name: "Droid OS"      /
                                  /   SW Vers: "R2.D2"         /
                                  /   SW Creator:              /
                                  /     "Industrial Automation"/
                               ]
                           }
                       }
}
           
   
]]></artwork></figure>

</section>
<section anchor="software-measurements-of-an-iot-device"><name>Software Measurements of an IoT Device</name>

<t>This is a simple token that might be for an IoT device.
It includes CoSWID format measurments of the SW.
The CoSWID is in byte-string wrapped in the token and also shown in diagnostic form.</t>

<figure><artwork><![CDATA[
/ This EAT payload is for an IoT device with a TEE. The attestation /
/ is produced by the TEE. There is a submodule for the IoT OS (the  /
/ main OS of the IoT device that is not as secure as the TEE). The  /
/ submodule contains claims for the IoT OS. The TEE also measures   /
/ the IoT OS and puts the measurements in the submodule.            /

{
    / eat_nonce / 10: h'5e19fba4483c7896'
    / oemboot /  262: true,
    / dbgstat /  263: 2, / disabled-since-boot /
    / oemid /    258: h'8945ad', / IEEE CID based /
    / ueid /     256: h'0198f50a4ff6c05861c8860d13a638ea', 
    / submods /  266: {
                        "OS" : {
        / oemboot /         262: true,
        / dbgstat /         263: 2, / disabled-since-boot /
        / measurements /    274: [
                                   [
                                     121, / CoAP Content ID. A     /
                                          / made up one until one  /
                                          / is assigned for CoSWID /

                                    / This is a byte-string wrapped /
                                    / evidence CoSWID. It has       /
                                    / hashes of the main files of   /
                                    / the IoT OS.  /
                                    h'a600663463613234350c
                                      17016d41636d6520522d496f542d4f
                                      530d65332e312e3402a2181f724163
                                      6d6520426173652041747465737465
                                      7218210103a11183a318187161636d
                                      655f725f696f745f6f732e65786514
                                      1a0044b349078201582005f6b327c1
                                      73b4192bd2c3ec248a292215eab456
                                      611bf7a783e25c1782479905a31818
                                      6d7265736f75726365732e72736314
                                      1a000c38b10782015820c142b9aba4
                                      280c4bb8c75f716a43c99526694caa
                                      be529571f5569bb7dc542f98a31818
                                      6a636f6d6d6f6e2e6c6962141a0023
                                      3d3b0782015820a6a9dcdfb3884da5
                                      f884e4e1e8e8629958c2dbc7027414
                                      43a913e34de9333be6'
                                   ]
                                 ]
                               }
                            }
}

]]></artwork></figure>

<figure><artwork><![CDATA[
/ An evidence CoSWID created for the "Acme R-IoT-OS" created by /
/ the "Acme Base Attester" (both fictious names).  It provides  /
/ measurements of the SW (other than the attester SW) on the    /
/ device. /

1398229316({
    / Unique CoSWID ID /    0: "4ca245",
    / tag-version /        12: 23, / Attester-maintained counter /
    / software-name /       1: "Acme R-IoT-OS",
    / software-version /   13: "3.1.4",
    / entity /              2: {
        / entity-name /        31: "Acme Base Attester",
        / role        /        33: 1 / tag-creator /
                            },
    / evidence /            3: {
        / ...file /             17: [
                                    {
            / ...fs-name /              24: "acme_r_iot_os.exe",
            / ...size    /              20: 4502345,
            / ...hash    /               7: [
                                             1, / SHA-256 /
                                             h'05f6b327c173b419
                                               2bd2c3ec248a2922
                                               15eab456611bf7a7
                                               83e25c1782479905'
                                         ]
                                    },
                                    {
            / ...fs-name /              24: "resources.rsc",
            / ...size    /              20: 800945,
            / ...hash    /               7: [
                                              1, / SHA-256 /
                                             h'c142b9aba4280c4b
                                               b8c75f716a43c995
                                               26694caabe529571
                                               f5569bb7dc542f98'
                                         ]
                                    },
                                    {
            / ...fs-name /              24: "common.lib",
            / ...size    /              20: 2309435,
            / ...hash    /               7: [
                                             1, / SHA-256 /
                                             h'a6a9dcdfb3884da5
                                               f884e4e1e8e86299
                                               58c2dbc702741443
                                               a913e34de9333be6'
                                         ]
                                    }
                                ]
                            }
})
]]></artwork></figure>

</section>
<section anchor="attestation-results-in-json"><name>Attestation Results in JSON</name>

<t>This is a JSON-encoded payload that might be the output of a verifier that evaluated the IoT Attestation example immediately above.</t>

<t>This particular verifier knows enough about the TEE attester to be able to pass claims like debug status directly through to the relying party.
The verifier also knows the reference values for the measured software components and is able to check them.
It informs the relying party that they were correct in the "measres" claim.
"Trustus Verifications" is the name of the services that verifies the software component measurements.</t>

<figure><artwork><![CDATA[
{
   "eat_nonce": "jkd8KL-8=Qlzg4",
   "oemboot": true,
   "dbgstat": "disabled-since-boot",
   "oemid": "iUWt",
   "ueid": "AZj1Ck_2wFhhyIYNE6Y4",
   "swname": "Acme R-IoT-OS",
   "swversion": [
      "3.1.4"
   ],
   "measres": [
      [
         "Trustus Measurements",
         [
            [
               "all",
               "success"
            ]
         ]
      ]
   ]
}
]]></artwork></figure>

</section>
<section anchor="json-encoded-token-with-submodules"><name>JSON-encoded Token with Submodules</name>

<t>This example has its lines wrapped per <xref target="RFC8792"/>.</t>

<figure><artwork><![CDATA[
{
   "eat_nonce": "lI-IYNE6Rj6O",
   "ueid": "AJj1Ck_2wFhhyIYNE6Y46g==",
   "secboot": true,
   "dbgstat": "disabled-permanently",
   "iat": 1526542894,
   "submods": {
      "Android App Foo": {
         "swname": "Foo.app"
      },
      "Secure Element Eat": [
         "CBOR",
         "2D3ShEOhASagWGaoCkiUj4hg0TpGPhkBAFABmPUKT_bAWGHIhg0TpjjqGQ\
ECGfryGQEFBBkBBvUZAQcDGQEEgmMzLjEBGQEKoWNURUWCL1gg5c-V_ST6txRGdC3VjU\
Pa4XjlX-K5QpGpKRCC_8JjWgtYQPaQywOIZ3-mJKN3X9fLxOhAnsmBa-MvpHRzOw-Ywn\
-67bvJljuctezAPD41s6_At7NbSV3qwJlxIuqGfwe41es="
      ],
      "Linux Android": {
         "swname": "Android"
      },
      "Subsystem J": [
         "JWT",
         "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJKLUF0dGVzd\
GVyIiwiaWF0IjoxNjUxNzc0ODY4LCJleHAiOm51bGwsImF1ZCI6IiIsInN1YiI6IiJ9.\
gjw4nFMhLpJUuPXvMPzK1GMjhyJq2vWXg1416XKszwQ"
      ]
   }
}
]]></artwork></figure>

</section>
</section>
<section anchor="signed-token-examples"><name>Signed Token Examples</name>

<section anchor="basic-cwt-example"><name>Basic CWT Example</name>

<t>This is a simple CWT-format token signed with the ECDSA algorithm.</t>

<figure><artwork><![CDATA[
/ This is a full CWT-format token with a very simple payloal. / 
/ The main structure visible here is that of the COSE_Sign1.  /

61( 18( [
    h'A10126',                           / protected headers  /
    {},                           / empty unprotected headers / 
    h'A20B46024A6B0978DE0A49000102030405060708',    / payload /
    h'9B9B2F5E470000F6A20C8A4157B5763FC45BE759
      9A5334028517768C21AFFB845A56AB557E0C8973
      A07417391243A79C478562D285612E292C622162
      AB233787'                                   / signature / 
] ) )
]]></artwork></figure>

</section>
<section anchor="cbor-encoded-detached-eat-bundle"><name>CBOR-encoded Detached EAT Bundle</name>

<t>In this detached EAT bundle, the main token is produced by a HW attestation block.
The detached Claims-Set is produced by a TEE and is largely identical to the Simple TEE examples above.
The TEE digests its Claims-Set and feeds that digest to the HW block.</t>

<t>In a better example the attestation produced by the HW block would be a CWT and thus signed and secured by the HW block.
Since the signature covers the digest from the TEE that Claims-Set is also secured.</t>

<t>The detached EAT bundle itself can be assembled by untrusted software.</t>

<figure><artwork><![CDATA[
/ This is a detached EAT bundle tag.  Note that 602, the tag /
/ identifying a detached EAT bundle is not yet registered /
/ with IANA /

602([

    / First part is a full EAT token with claims like nonce and /
    / UEID. Most importantly, it includes a submodule that is a /
    / detached digest which is the hash of the "TEE" claims set /
    / in the next section. The COSE payload follows:            /
    / { /
    /      10: h'948F8860D13A463E', /
    /     256: h'0198F50A4FF6C05861C8860D13A638EA', /
    /     258: 64242, /
    /     262: true, /
    /     263: 3, /
    /     260: ["3.1", 1], /
    /     266: { /
    /         "TEE": [ /
    /             -16, /
    /              h'8DEF652F47000710D9F466A4C666E209  /
    /                DD74F927A1CEA352B03143E188838ABE' /
    /         ] /
    /     } /
    /   }  /
    h'D83DD28443A10126A05866A80A48948F8860D13A463E1901
      00500198F50A4FF6C05861C8860D13A638EA19010219FAF2
      19010504190106F5190107031901048263332E310119010A
      A163544545822F58208DEF652F47000710D9F466A4C666E2
      09DD74F927A1CEA352B03143E188838ABE5840F690CB0388
      677FA624A3775FD7CBC4E8409EC9816BE32FA474733B0F98
      C27FBAEDBBC9963B9CB5ECC03C3E35B3AFC0B7B35B495DEA
      C0997122EA867F07B8D5EB',
    {
       / A CBOR-encoded byte-string wrapped EAT claims-set. It /
       / contains claims suitable for a TEE                    /
       "TEE" : h'a40a48948f8860d13a463e190106f519010702
                 190111818218795858a60064336132340c0101
                 6b41636d6520544545204f530d65332e312e34
                 0282a2181f6b41636d6520544545204f531821
                 01a2181f6b41636d6520544545204f53182102
                 06a111a118186e61636d655f7465655f332e65
                 7865'
    }
 ])
 
]]></artwork></figure>

<figure><artwork><![CDATA[
/ This example contains submodule that is a detached digest,   /
/ which is the hash of a Claims-Set convey outside this token. /
/ Other than that is is the other example of a token from an   /
/ attestation HW block                                         /

{
    / eat_nonce /       10: h'3515744961254b41a6cf9c02',
    / ueid /           256: h'0198f50a4ff6c05861c8860d13a638ea',
    / oemid /          258: 64242, / Private Enterprise Number /
    / oemboot /        262: true,
    / dbgstat /        263: 3, / disabled-permanently /
    / hwversion /      260: [ "3.1", 1 ], / multipartnumeric /
    / submods/         266: {
                                "TEE": [ / detached digest submod /
                                           -16, / SHA-256 /
                                           h'e5cf95fd24fab7144674
                                             2dd58d43dae178e55fe2
                                             b94291a9291082ffc263
                                             5a0b'
                                       ]
                            }
}

]]></artwork></figure>

</section>
<section anchor="json-encoded-detached-eat-bundle"><name>JSON-encoded Detached EAT Bundle</name>

<t>In this bundle there are two detached Claims-Sets, "Audio Subsystem" and "Graphics Subsystem".
The JWT at the start of the bundle has detached signature submodules with hashes that cover these two Claims-Sets.
The JWT itself is protected using HMAC with a key of "xxxxxx".</t>

<t>This example has its lines wrapped per <xref target="RFC8792"/>.</t>

<figure><artwork><![CDATA[
[
    [
        "JWT",
        "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlYXRfbm9uY2UiOiJ5dT\
c2Tk44SXVWNmUiLCJzdWJtb2RzIjp7IkF1ZGlvIFN1YnN5c3RlbSI6WyJESUdFU1QiLF\
siU0hBLTI1NiIsIkZSRW4yVlR3aTk5cWNNRVFzYmxtTVFnM2I1b2ZYUG5OM1BJYW5CME\
5RT3MiXV0sIkdyYXBoaWNzIFN1YnN5c3RlbSI6WyJESUdFU1QiLFsiU0hBLTI1NiIsIk\
52M3NqUVU3Q1Z0RFRka0RTUlhWcFZDNUNMVFBCWmVQWWhTLUhoVlZWMXMiXV19fQ.FYs\
7R-TKhgAk85NyCOPQlbtGGjFM_3chnhBEOuM6qCo"
    ],
    {
        "Audio Subsystem" : "ewogICAgImVhdF9ub25jZSI6ICJsSStJWU5FNlJ\
qNk8iLAogICAgInVlaWQiOiAiQWROSlU0b1lYdFVwQStIeDNqQTcvRFEiCiAgICAib2V\
taWQiOiAiaVVXdCIsCiAgICAib2VtYm9vdCI6IHRydWUsIAogICAgInN3bmFtZSI6ICJ\
BdWRpbyBQcm9jZXNzb3IgT1MiCn0K",
        "Graphics Subsystem" : "ewogICAgImVhdF9ub25jZSI6ICJZWStJWU5F\
NlJqNk8iLAogICAgInVlaWQiOiAiQWVUTUlRQ1NVMnhWQmtVdGlndHU3bGUiCiAgICAi\
b2VtaWQiOiA3NTAwMCwKICAgICJvZW1ib290IjogdHJ1ZSwgCiAgICAic3duYW1lIjog\
IkdyYXBoaWNzIE9TIgp9Cg"
    }
]

]]></artwork></figure>

</section>
</section>
</section>
<section anchor="UEID-Design"><name>UEID Design Rationale</name>

<section anchor="collision-probability"><name>Collision Probability</name>

<t>This calculation is to determine the probability of a collision of
type 0x01 UEIDs given the total possible entity population and the number of
entities in a particular entity management database.</t>

<t>Three different sized databases are considered. The number of devices
per person roughly models non-personal devices such as traffic lights,
devices in stores they shop in, facilities they work in and so on,
even considering individual light bulbs. A device may have
individually attested subsystems, for example parts of a car or a
mobile phone. It is assumed that the largest database will have at
most 10% of the world's population of devices. Note that databases
that handle more than a trillion records exist today.</t>

<t>The trillion-record database size models an easy-to-imagine reality
over the next decades. The quadrillion-record database is roughly at
the limit of what is imaginable and should probably be accommodated.
The 100 quadrillion database is highly speculative perhaps involving
nanorobots for every person, livestock animal and domesticated
bird. It is included to round out the analysis.</t>

<t>Note that the items counted here certainly do not have IP address and
are not individually connected to the network. They may be connected
to internal buses, via serial links, Bluetooth and so on.  This is
not the same problem as sizing IP addresses.</t>

<texttable title="Entity Database Size Examples" anchor="database-size-examples">
      <ttcol align='left'>People</ttcol>
      <ttcol align='left'>Devices / Person</ttcol>
      <ttcol align='left'>Subsystems / Device</ttcol>
      <ttcol align='left'>Database Portion</ttcol>
      <ttcol align='left'>Database Size</ttcol>
      <c>10 billion</c>
      <c>100</c>
      <c>10</c>
      <c>10%</c>
      <c>trillion (10^12)</c>
      <c>10 billion</c>
      <c>100,000</c>
      <c>10</c>
      <c>10%</c>
      <c>quadrillion (10^15)</c>
      <c>100 billion</c>
      <c>1,000,000</c>
      <c>10</c>
      <c>10%</c>
      <c>100 quadrillion (10^17)</c>
</texttable>

<t>This is conceptually similar to the Birthday Problem where m is the
number of possible birthdays, always 365, and k is the number of
people. It is also conceptually similar to the Birthday Attack where
collisions of the output of hash functions are considered.</t>

<t>The proper formula for the collision calculation is</t>

<figure><artwork><![CDATA[
   p = 1 - e^{-k^2/(2n)}

   p   Collision Probability
   n   Total possible population
   k   Actual population
]]></artwork></figure>

<t>However, for the very large values involved here, this formula requires floating
point precision higher than commonly available in calculators and software so this
simple approximation is used. See <xref target="BirthdayAttack"/>.</t>

<figure><artwork><![CDATA[
   p = k^2 / 2n
]]></artwork></figure>

<t>For this calculation:</t>

<figure><artwork><![CDATA[
   p  Collision Probability
   n  Total population based on number of bits in UEID
   k  Population in a database
]]></artwork></figure>

<texttable title="UEID Size Options" anchor="ueid-size-options">
      <ttcol align='left'>Database Size</ttcol>
      <ttcol align='left'>128-bit UEID</ttcol>
      <ttcol align='left'>192-bit UEID</ttcol>
      <ttcol align='left'>256-bit UEID</ttcol>
      <c>trillion (10^12)</c>
      <c>2 * 10^-15</c>
      <c>8 * 10^-35</c>
      <c>5 * 10^-55</c>
      <c>quadrillion (10^15)</c>
      <c>2 * 10^-09</c>
      <c>8 * 10^-29</c>
      <c>5 * 10^-49</c>
      <c>100 quadrillion (10^17)</c>
      <c>2 * 10^-05</c>
      <c>8 * 10^-25</c>
      <c>5 * 10^-45</c>
</texttable>

<t>Next, to calculate the probability of a collision occurring in one year's
operation of a database, it is assumed that the database size is in
a steady state and that 10% of the database changes per year. For example,
a trillion record database would have 100 billion states per year. Each
of those states has the above calculated probability of a collision.</t>

<t>This assumption is a worst-case since it assumes that each
state of the database is completely independent from the previous state.
In reality this is unlikely as state changes will be the addition or
deletion of a few records.</t>

<t>The following tables gives the time interval until there is a probability of
a collision based on there being one tenth the number of states per year
as the number of records in the database.</t>

<figure><artwork><![CDATA[
  t = 1 / ((k / 10) * p)

  t  Time until a collision
  p  Collision probability for UEID size
  k  Database size
]]></artwork></figure>

<texttable title="UEID Collision Probability" anchor="ueid-collision-probability">
      <ttcol align='left'>Database Size</ttcol>
      <ttcol align='left'>128-bit UEID</ttcol>
      <ttcol align='left'>192-bit UEID</ttcol>
      <ttcol align='left'>256-bit UEID</ttcol>
      <c>trillion (10^12)</c>
      <c>60,000 years</c>
      <c>10^24 years</c>
      <c>10^44 years</c>
      <c>quadrillion (10^15)</c>
      <c>8 seconds</c>
      <c>10^14 years</c>
      <c>10^34 years</c>
      <c>100 quadrillion (10^17)</c>
      <c>8 microseconds</c>
      <c>10^11 years</c>
      <c>10^31 years</c>
</texttable>

<t>Clearly, 128 bits is enough for the near future thus the requirement
that type 0x01 UEIDs be a minimum of 128 bits.</t>

<t>There is no requirement for 256 bits today as quadrillion-record databases
are not expected in the near future and because this time-to-collision
calculation is a very worst case.  A future update of the standard may
increase the requirement to 256 bits, so there is a requirement that
implementations be able to receive 256-bit UEIDs.</t>

</section>
<section anchor="no-use-of-uuid"><name>No Use of UUID</name>

<t>A UEID is not a Universally Unique Identifier (UUID) <xref target="RFC4122"/> by conscious choice for the following reasons.</t>

<t>UUIDs are limited to 128 bits which may not be enough for some future
use cases.</t>

<t>Today, cryptographic-quality random numbers are available from common
CPUs and hardware. This hardware was introduced between 2010 and 2015.
Operating systems and cryptographic libraries give access to this
hardware. Consequently, there is little need for implementations
to construct such random values from multiple sources on their own.</t>

<t>Version 4 UUIDs do allow for use of such cryptographic-quality
random numbers, but do so by mapping into the overall UUID
structure of time and clock values. This structure is of no
value here yet adds complexity. It also slightly reduces the
number of actual bits with entropy.</t>

<t>The design of UUID accommodates the construction of a unique identifier by combination of several identifiers that separately do not provide sufficient uniqueness.
UEID takes the view that this construction is no longer needed, in particular because cryptographic-quality random number generators are readily available.
It takes the view that hardware, software and/or manufacturing process implement UEID in a simple and direct way.</t>

<t>Note also that that a type 2 UEID (EUI/MAC) is only 7 bytes compared to 16 for a UUID.</t>

</section>
</section>
<section anchor="eat-relation-to-ieee8021ar-secure-device-identity-devid"><name>EAT Relation to IEEE.802.1AR Secure Device Identity (DevID)</name>

<t>This section describes several distinct ways in which an IEEE IDevID <xref target="IEEE.802.1AR"/> relates to EAT, particularly to UEID and SUEID.</t>

<t><xref target="IEEE.802.1AR"/> orients around the definition of an implementation called a "DevID Module."
It describes how IDevIDs and LDevIDs are stored, protected and accessed using a DevID Module.
A particular level of defense against attack that should be achieved to be a DevID is defined.
The intent is that IDevIDs and LDevIDs can be used with any network protocol or message format.
In these protocols and message formats the DevID secret is used to sign a nonce or similar to prove the association of the DevID certificates with the device.</t>

<t>By contrast, EAT standardizes a message format that is sent to a relying party, the very thing that is not defined in <xref target="IEEE.802.1AR"/>.
Nor does EAT give details on how keys, data and such are stored protected and accessed.
EAT is intended to work with a variety of different on-device implementations ranging from minimal protection of assets to the highest levels of asset protection.
It does not define any particular level of defense against attack, instead providing a set of security considerations.</t>

<t>EAT and DevID can be viewed as complimentary when used together or as competing to provide a device identity service.</t>

<section anchor="devid-used-with-eat"><name>DevID Used With EAT</name>

<t>As just described, EAT standardizes a message format and <xref target="IEEE.802.1AR"/> doesn't.
Vice versa, EAT doesn't define a an device implementation, but DevID does.</t>

<t>Hence, EAT can be the message format that a DevID is used with.
The DevID secret becomes the attestation key used to sign EATs.
The DevID and its certificate chain become the endorsement sent to the verifier.</t>

<t>In this case, the EAT and the DevID are likely to both provide a device identifier (e.g. a serial number).
In the EAT it is the UEID (or SUEID).
In the DevID (used as an endorsement), it is a device serial number included in the subject field of the DevID certificate.
It is probably a good idea in this use for them to be the same serial number or for the UEID to be a hash of the DevID serial number.</t>

</section>
<section anchor="how-eat-provides-an-equivalent-secure-device-identity"><name>How EAT Provides an Equivalent Secure Device Identity</name>

<t>The UEID, SUEID and other claims like OEM ID are equivalent to the secure device identity put into the subject field of a DevID certificate.
These EAT claims can represent all the same fields and values that can be put in a DevID certificate subject.
EAT explicitly and carefully defines a variety of useful claims.</t>

<t>EAT secures the conveyance of these claims by having them signed on the device by the attestation key when the EAT is generated.
EAT also signs the nonce that gives freshness at this time.
Since these claims are signed for every EAT generated, they can include things that vary over time like GPS location.</t>

<t>DevID secures the device identity fields by having them signed by the manufacturer of the device sign them into a certificate.
That certificate is created once during the manufacturing of the device and never changes so the fields cannot change.</t>

<t>So in one case the signing of the identity happens on the device and the other in a manufacturing facility,
but in both cases the signing of the nonce that proves the binding to the actual device happens on the device.</t>

<t>While EAT does not specify how the signing keys, signature process and storage of the identity values should be secured against attack,
an EAT implementation may have equal defenses against attack.
One reason EAT uses CBOR is because it is simple enough that a basic EAT implementation can be constructed entirely in hardware.
This allows EAT to be implemented with the strongest defenses possible.</t>

</section>
<section anchor="an-x509-format-eat"><name>An X.509 Format EAT</name>

<t>It is possible to define a way to encode EAT claims in an X.509 certificate.
For example, the EAT claims might be mapped to X.509 v3 extensions.
It is even possible to stuff a whole CBOR-encoded unsigned EAT token into a X.509 certificate.</t>

<t>If that X.509 certificate is an IDevID or LDevID, this becomes another way to use EAT and DevID together.</t>

<t>Note that the DevID must still be used with an authentication protocol that has a nonce or equivalent.
The EAT here is not being used as the protocol to interact with the rely party.</t>

</section>
<section anchor="device-identifier-permanence"><name>Device Identifier Permanence</name>

<t>In terms of permanence, an IDevID is similar to a UEID in that they do not change over the life of the device.
They cease to exist only when the device is destroyed.</t>

<t>An SUEID is similar to an LDevID.
They change on device life-cycle events.</t>

<t><xref target="IEEE.802.1AR"/> describes much of this permanence as resistant to attacks that seek to change the ID.
IDevID permanence can be described this way because <xref target="IEEE.802.1AR"/> is oriented around the definition of an implementation with a particular level of defense against attack.</t>

<t>EAT is not defined around a particular implementation and must work on a range of devices that have a range of defenses against attack.
EAT thus can't be defined permanence in terms of defense against attack.
EAT's definition of permanence is in terms of operations and device lifecycle.</t>

</section>
</section>
<section anchor="CDDL_for_CWT"><name>CDDL for CWT and JWT</name>

<t><xref target="RFC8392"/> was published before CDDL was available and thus is specified in prose, not CDDL.
Following is CDDL specifying CWT as it is needed to complete this specification.
This CDDL also covers the Claims-Set for JWT.</t>

<t>Note that <xref target="iat-claim"/> requires that the iat claim be the type ~time-int (<xref target="common-types"/>), not the type ~time when it is used in an EAT as floating-point values are not allowed for the "iat" claim in EAT.</t>

<t>The COSE-related types in this CDDL are defined in <xref target="RFC9052"/>.</t>

<t>This however is NOT a normative or standard definition of CWT or JWT in CDDL.
The prose in CWT and JWT remain the normative definition.</t>

<figure><sourcecode type="CDDL"><![CDATA[
; This is replicated from draft-ietf-rats-uccs

Claims-Set = {
    * $$Claims-Set-Claims
    * Claim-Label .feature "extended-claims-label" => any
}
Claim-Label = int / text
string-or-uri = text

$$Claims-Set-Claims //= ( iss-claim-label => string-or-uri  )
$$Claims-Set-Claims //= ( sub-claim-label => string-or-uri  )
$$Claims-Set-Claims //= ( aud-claim-label => string-or-uri  )
$$Claims-Set-Claims //= ( exp-claim-label => ~time )
$$Claims-Set-Claims //= ( nbf-claim-label => ~time )
$$Claims-Set-Claims //= ( iat-claim-label => ~time )
$$Claims-Set-Claims //= ( cti-claim-label => bytes )

iss-claim-label = JC<"iss", 1>
sub-claim-label = JC<"sub", 2>
aud-claim-label = JC<"aud", 3>
exp-claim-label = JC<"exp", 4>
nbf-claim-label = JC<"nbf", 5>
iat-claim-label = JC<"iat", 6>
cti-claim-label = CBOR-ONLY<7>  ; jti in JWT: different name and text

JSON-ONLY<J> = J .feature "json"
CBOR-ONLY<C> = C .feature "cbor"

JC<J,C> = JSON-ONLY<J> / CBOR-ONLY<C>

]]></sourcecode></figure>

<figure><sourcecode type="CDDL"><![CDATA[
; A JWT message is either a JWS or JWE in compact serialization form
; with the payload a Claims-Set. Compact serialization is the
; protected headers, payload and signature, each b64url encoded and
; separated by a ".". This CDDL simply matches top-level syntax of of
; a JWS or JWE since it is not possible to do more in CDDL.

JWT-Message =
   text .regexp "[A-Za-z0-9_-]+\\.[A-Za-z0-9_-]+\\.[A-Za-z0-9_-]+"


; Note that the payload of a JWT is defined in claims-set.cddl. That 
; definition is common to CBOR and JSON.
]]></sourcecode></figure>

<figure><sourcecode type="CDDL"><![CDATA[
; This is some CDDL describing a CWT at the top level This is
; not normative. RFC 8392 is the normative definition of CWT.

CWT-Messages = CWT-Tagged-Message / CWT-Untagged-Message

; The payload of the COSE_Message is always a Claims-Set

; The contents of a CWT Tag must always be a COSE tag
CWT-Tagged-Message = #6.61(COSE_Tagged_Message)

; An untagged CWT may be a COSE tag or not
CWT-Untagged-Message = COSE_Messages
]]></sourcecode></figure>

</section>
<section anchor="Claim_Characteristics"><name>New Claim Design Considerations</name>

<t>The following are design considerations that may be helpful to take into account when creating new EAT claims.
It is the product of discussion in the working group.</t>

<t>EAT reuses the CWT and JWT claims registries.
There is no registriy exclusively for EAT claims.
This is not an update to the expert review criteria for the JWT and CWT claims registries as that would be an overreach for this document.</t>

<section anchor="interoperability-and-relying-party-orientation"><name>Interoperability and Relying Party Orientation</name>

<t>It is a broad goal that EATs can be processed by relying parties in a general way regardless of the type, manufacturer or technology of the device from which they originate.
It is a goal that there be general-purpose verification implementations that can verify tokens for large numbers of use cases with special cases and configurations for different device types.
This is a goal of interoperability of the semantics of claims themselves, not just of the signing, encoding and serialization formats.</t>

<t>This is a lofty goal and difficult to achieve broadly requiring careful definition of claims in a technology neutral way.
Sometimes it will be difficult to design a claim that can represent the semantics of data from very different device types.
However, the goal remains even when difficult.</t>

</section>
<section anchor="operating-system-and-technology-neutral"><name>Operating System and Technology Neutral</name>

<t>Claims should be defined such that they are not specific to an operating system.
They should be applicable to multiple large high-level operating systems from different vendors.
They should also be applicable to multiple small embedded operating systems from multiple vendors and everything in between.</t>

<t>Claims should not be defined such that they are specific to a software environment or programming language.</t>

<t>Claims should not be defined such that they are specific to a chip or particular hardware.
For example, they should not just be the contents of some HW status register as it is unlikely that the same HW status register with the same bits exists on a chip of a different manufacturer.</t>

<t>The boot and debug state claims in this document are an example of a claim that has been defined in this neutral way.</t>

</section>
<section anchor="security-level-neutral"><name>Security Level Neutral</name>

<t>Many use cases will have EATs generated by some of the most secure hardware and software that exists.
Secure Elements and smart cards are examples of this.
However, EAT is intended for use in low-security use cases the same as high-security use case.
For example, an app on a mobile device may generate EATs on its own.</t>

<t>Claims should be defined and registered on the basis of whether they are useful and interoperable, not based on security level.
In particular, there should be no exclusion of claims because they are just used only in low-security environments.</t>

</section>
<section anchor="reuse-of-extant-data-formats"><name>Reuse of Extant Data Formats</name>

<t>Where possible, claims should use already standardized data items, identifiers and formats.
This takes advantage of the expertise put into creating those formats and improves interoperability.</t>

<t>Often extant claims will not be defined in an encoding or serialization format used by EAT.
It is preferred to define a CBOR and JSON encoding for them so that EAT implementations do not require a plethora of encoders and decoders for serialization formats.</t>

<t>In some cases, it may be better to use the encoding and serialization as is.
For example, signed X.509 certificates and CRLs can be carried as-is in a byte string.
This retains interoperability with the extensive infrastructure for creating and processing X.509 certificates and CRLs.</t>

</section>
<section anchor="proprietary-claims"><name>Proprietary Claims</name>

<t>It is not always possible or convenient to achieve the above goals, so the definition and use of proprietary claims is an option.</t>

<t>For example, a device manufacturer may generate a token with proprietary claims intended only for verification by a service offered by that device manufacturer.
This is a supported use case.</t>

<t>In many cases proprietary claims will be the easiest and most obvious way to proceed, however for better interoperability, use of general standardized claims is preferred.</t>

</section>
</section>
<section anchor="keyid"><name>Endorsements and Verification Keys</name>

<t>The verifier must possess the correct key when it performs the cryptographic part of an EAT verification (e.g., verifying the COSE/JOSE signature).
This section describes several ways to identify the verification key.
There is not one standard method.</t>

<t>The verification key itself may be a public key, a symmetric key or something complicated in the case of a scheme like Direct Anonymous Attestation (DAA).</t>

<t>RATS Architecture <xref target="RFC9334"/> describes what is called an endorsement.
This is an input to the verifier that is usually the basis of the trust placed in an EAT and the attester that generated it.
It may contain the public key for verification of the signature on the EAT.
It may contain implied claims, those that are passed on to the relying party in attestation results.</t>

<t>There is not yet any standard format(s) for an endorsement.
One format that may be used for an endorsement is an X.509 certificate.
Endorsement data like reference values and implied claims can be carried in X.509 v3 extensions.
In this use, the public key in the X.509 certificate becomes the verification key, so identification of the endorsement is also identification of the verification key.</t>

<t>The verification key identification and establishment of trust in the EAT and the attester may also be by some other means than an endorsement.</t>

<t>For the components (attester, verifier, relying party,...) of a particular end-end attestation system to reliably interoperate, its definition should specify how the verification key is identified.
Usually, this will be in the profile document for a particular attestation system.</t>

<t>See also security consideration in <xref target="verfication-key-sc"/>.</t>

<section anchor="identification-methods"><name>Identification Methods</name>

<t>Following is a list of possible methods of key identification. A specific attestation system may employ any one of these or one not listed here.</t>

<t>The following assumes endorsements are X.509 certificates or equivalent and thus does not mention or define any identifier for endorsements in other formats. If such an endorsement format is created, new identifiers for them will also need to be created.</t>

<section anchor="cosejws-key-id"><name>COSE/JWS Key ID</name>

<t>The COSE standard header parameter for Key ID (kid) may be used. See <xref target="RFC9052"/> and <xref target="RFC7515"/></t>

<t>COSE leaves the semantics of the key ID open-ended.
It could be a record locator in a database, a hash of a public key, an input to a Key Derivation Function (KDF), an Authority Key Identifier (AKI) for an X.509 certificate or other.
The profile document should specify what the key ID's semantics are.</t>

</section>
<section anchor="jws-and-cose-x509-header-parameters"><name>JWS and COSE X.509 Header Parameters</name>

<t>COSE X.509 <xref target="COSE.X509.Draft"/> and JSON Web Signature <xref target="RFC7515"/> define several header parameters (x5t, x5u,...) for referencing or carrying X.509 certificates any of which may be used.</t>

<t>The X.509 certificate may be an endorsement and thus carrying additional input to the verifier. It may be just an X.509 certificate, not an endorsement. The same header parameters are used in both cases. It is up to the attestation system design and the verifier to determine which.</t>

</section>
<section anchor="cbor-certificate-cose-header-parameters"><name>CBOR Certificate COSE Header Parameters</name>

<t>Compressed X.509 and CBOR Native certificates are defined by CBOR Certificates <xref target="CBOR.Cert.Draft"/>. These are semantically compatible with X.509 and therefore can be used as an equivalent to X.509 as described above.</t>

<t>These are identified by their own header parameters (c5t, c5u,...).</t>

</section>
<section anchor="claim-based-key-identification"><name>Claim-Based Key Identification</name>

<t>For some attestation systems, a claim may be re-used as a key identifier. For example, the UEID uniquely identifies the entity and therefore can work well as a key identifier or endorsement identifier.</t>

<t>This has the advantage that key identification requires no additional bytes in the EAT and makes the EAT smaller.</t>

<t>This has the disadvantage that the unverified EAT must be substantially decoded to obtain the identifier since the identifier is in the COSE/JOSE payload, not in the headers.</t>

</section>
</section>
</section>
<section anchor="changes-from-previous-drafts"><name>Changes from Previous Drafts</name>

<t><cref anchor="remove_1">RFC editor: please remove this paragraph.</cref></t>

<t>The following is a list of known changes since the immediately previous drafts.  This list is
non-authoritative.  It is meant to help reviewers see the significant
differences. A comprehensive history is available via the IETF Datatracker's record for this document.</t>

<section anchor="from-draft-ietf-rats-eat-21"><name>From draft-ietf-rats-eat-21</name>
<t><list style="symbols">
  <t>Add titles to tables</t>
  <t>Add ABNF to define format of device ID URN</t>
  <t>Fix some nits</t>
  <t>Clarification in 6.1.12 that "receiver accepts token with claims it does not understand"</t>
  <t>Abstract wording improvement</t>
  <t>Clarification of source of verification keys for constrained profile</t>
  <t>IETF is change controller rather than IESG for IANA registrations</t>
  <t>Change "Indicate" to "Indcates"</t>
  <t>Define "partial" and "full" profiles</t>
  <t>Better into wording for type 2 and 3 UEIDs</t>
  <t>Correct the JSON detached eat bundle example</t>
  <t>Wording improvements for manifests claim</t>
  <t>Wording improvements for detached EAT bundle</t>
  <t>Clarify purpose of including manufacturer manifest signatures</t>
  <t>Refer to RFC 9334 instead of RATS.Arch and make ref normative</t>
  <t>Require "oemid" claim for "oemboot" claim and debug state of permanently disabled.</t>
  <t>Improve min and max size of JSON UTF-8 nonce</t>
  <t>Clarify what happens to OEM ID when companies merge</t>
  <t>"OEMID" -&gt; "OEM ID"</t>
  <t>Use "urn:ietf..." for constrained device profile ID</t>
  <t>Clarify that varying MAC addresses can be used as UEIDs</t>
</list></t>

</section>
</section>

    <section anchor="contributors" numbered="false" toc="include" removeInRFC="false">
        <name>Contributors</name>

<t>Many thanks to the following contributors to draft versions of this
document:</t>

    <contact initials="H." surname="Birkholz" fullname="Henk Birkholz">
      <organization abbrev="Fraunhofer SIT">Fraunhofer SIT</organization>
      <address>
        <email>henk.birkholz@sit.fraunhofer.de</email>
      </address>
    </contact>
    <contact initials="T." surname="Fossati" fullname="Thomas Fossati">
      <organization>Arm Limited</organization>
      <address>
        <email>thomas.fossati@arm.com</email>
      </address>
    </contact>
    <contact initials="M." surname="Ballesteros" fullname="Miguel Ballesteros">
      <organization></organization>
      <address>
      </address>
    </contact>
    <contact initials="M." surname="Richardson" fullname="Michael Richardson">
      <organization>Sandelman Software Works</organization>
      <address>
        <email>mcr+ietf@sandelman.ca</email>
      </address>
    </contact>
    <contact initials="P." surname="Uiterwijk" fullname="Patrick Uiterwijk">
      <organization></organization>
      <address>
      </address>
    </contact>
    <contact initials="M." surname="Brossard" fullname="Mathias Brossard">
      <organization></organization>
      <address>
      </address>
    </contact>
    <contact initials="H." surname="Tschofenig" fullname="Hannes Tschofenig">
      <organization>Arm Limited</organization>
      <address>
        <email>hannes.tschofenig@arm.com</email>
      </address>
    </contact>
    <contact initials="P." surname="Crowley" fullname="Paul Crowley">
      <organization></organization>
      <address>
      </address>
    </contact>
    </section>

  </back>

<!-- ##markdown-source:
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
Ybznr04oiD7Bv7C+EvyHrfypCxZmHagWPGAgCCYy9e1zjI4W7x5HwezRZ3HB
WLK10Bw0EwuXw8vresOvf2BDzGsgaeQJw3wNtjH+m8M9ktMqR6ubFJ/hTonF
0tBlUXU6KG8tSLIptKfQ+sh71HcMNa6WYvje1Vrk7CtWD29slTrrcDvoS28Q
2RRLDIxpcZVWKZ1YymglHU8A3I14rpTxQEpNxLE53Ba4WFM+E7jIZaKTG9qK
/o5pO7NHDCEwUTo9V2oR7zKLO9dZMzW3NIvmSCUYg/KQ1axp8qs13KoVO4yt
D5UfXHBG8rbICdreZDXIJkBGSSAG2Nh9++b5HiEPmoh6YdF8Q3bzACw2v9bu
90QgaCZ5TpMkYg17GHBIqRShk1BUDmHTwnTaIQ4PUzQdkxufTKnELXS+AtSv
94tRlrNesJxu75FvkOMSgdPWH5nvvW3cFMwEHlUYP9eKFDyITSf6WmP/2QEE
LudMPED4tPQIAiTA+oftBVHsGKuZb7udd8qgK0Y0d2DM6KsWI14tTZZjc1T3
D3goK2ZWc8rQqkZRXz2nCEnO+tJw/TsR+MhoIgIfde8BWyR1zMpZ16I8MLs1
b8za48fO+iy6TKPKGT3wo7KihL0MwpFq8sv9gIkcBXL3c/I7eiQZ1tHvMvxU
1yx88qst86m6Jo42VR7e67p+pb6fsiOkSEPUwK3Vt4k9ucwxzTntvdBngcIG
/7VtPm6GR5yRrWZzmHSrTj9llEhSkuuGeXCG67rh+MGocUiJZJ2SMG6NOT7Q
uMNQ+7ZZWKeuTFJdc24fe0pBbLfNwuqpwx2snfdM6SYzDLdGE834EVinRbYD
eUzJMKkq44fYPybUXvLV4dDnOcrVwzdMN4qtbOxuj8hT1tx23+o6Xrv8Lp24
CNReoPcaO/xkM3cssnYrahyhDXnZrm6N2RdaJxti4RqKTe2daGyYdLkgNa22
0ABnYsaiblF9DimIq4qlqPspsTFi48WGQhbj+FD1QrWSwTL3aHKq4+NTEFbN
pX2RGn3yabwXWHpasxBRBcL2RL+u6cOULMsS9TvJwijiIsjxJ9RH9AVnuKBg
XC7etQinITxAGkq1moW20TqRsDo67q6H5ciU0TPXoyfj0rExSga2UqOwJ+WP
NbFSllF9HD4Nitv95xfP7TEdkXM17NSqJdoq7lH+8qiS+JZOGklmSqrvE0ci
LLXQ7ml58nrPSsY+kxhfibHkIkOHD6l4kc/uU5QJfuhD0lrZbtL2znACLKX3
oXU/l+SL7HgZxwBNEj6FhXtq19cL8FWei2L9rmhHXRv/rW4DLbW9Ra2Mi8Jm
qdrYM2cIW1y9QuFpa+6IsMAhFX0iBsTiyOguDoPJkl1sybXERZTIzWRFNT3X
YWyzuGhGHxiSypuuL7zvzrEF0D6UG7Pl+gq47RtD9azat4a4FMp7Rzpr1l9Z
q0Bh0+n7dC72DEm9zRyUmW2JVex2L6mC0N3L1CBWJbpdYRldT5yXRk9Mgd47
hpgQSJFHUf/9S6VkUYp62zuImphbYG4COhCx0Qq88HNlK1wl1DhsgEYxjuct
ZRTnzb+Q+G9cw9WCqmTvXr69uNozvgjLBcODsf6O4yo6gq/zTtQQEY+KtGir
pShD2hSS8nQrfL8svRjV6ieyxTCSdXffPCDFNyZOTdYyAN7dyfMa0zSJy5Az
FWm6NJZQWvPYBeaRZVNKjPnl/LLBQeCZwyMNVYqfIN/8O2s14gn8ElrJE2Ov
JY8LffuUfqfrkT4ULBw15GdPSXP9G+t1Us5uOQ58axReqzGFg38HDPig7wVs
gQTt0c+NljOdlvVNPmt/QoHjDzqR41/UNULvr+cFu7N8ccdeamAjHKsgdl+4
X05kcE9NanDP7hUchgkmoiWXxlC4KRq1HSRFvHD2Eb9qCQ2iSTWxEvpA2z/6
T4ryOLbBk2aXo3nZitAEPTBdE/2qItLxoUSGf6k+9Huf5eFbXDfz8HXILuRF
mMltqOXQWhZ/iOncUPYYmmFUeSGq++hc7rN4v7pSWCu/kU1SGGtj+YI2py/o
JmxwEjaYtzQ4ULGrawgdmICYe7sXY04xTKcR0n6nAqAQiID0ECtFJSS6REGI
RYuEcC4PQsEuhlz6dyn0eI/yDn8ZpgCH5Vmg5JkwdLTvLl9NV3hux+n9FejS
3QmHMf1TQ5rth4I3/eOAO7tP/1fhT9/zF+HQzgcej/a//Cwu7Z3EPWhPsR7q
UJ2mJHSDClGsANeLAKU6nEeD8CgKqFYdj4rngWlCpoEtVYRP0B0ckIlUVPUo
EX1EP2L8TjYLZeTFxSXS+bqEVRIzqSVW2F+3TJwvMM+dr6wbHK1NG1K7YaLd
fLnB4DH8gz7fFCy1S5QH8vKN+gWLdBrPXmudJcF3ldQFzkKB37Zj7oYuJrCY
Bc/eVhkvyQrEsWwy6swb47yfre4FokytKKvf8CgczxA9lvJtopODPXl1+XW9
ZXaWZTNf57h08ikuJ1zbmhRVlrwDczRuGp4G6pejedyo+sc8K60iVTvSSqml
lu/r8Toj9TwDRguZxxmR3/EBdYGJwHgLIGEewakCDJIoAZmegYK0EYKpebcR
kjVNBbmQ560LQP2jRVRHULFPY7txUr6y1QyrmXKYS3eLBTQ8CW1L4UwdQoEY
0b5FSjIOdOxVkLUdwabKYod7Z4yO9Sl3MJTB8TkJe1ksLNERcWOYdbXsQRGd
xWmhHF8CJ/Li6zh0kdTH4gVXLyo8H+D8tyjzC50oFryQnPjWsqOLuzo/935y
fpiWU1jgcKRQA0onry4t9Na+b68/WIb4C9iPd5KdqDCdr3cf0Lgd53cxDAKt
np/mirEAto77n9YbqPMqZGFp4V9RDPRwwI4lHXIYCMDEdT7fVKKHDvrxEOUL
CLrgpEEOP4kKOsrf2w61i4kRoWQyGy4jOqHAqijWFcyLPw4fOdLSD5sncY1T
h5mkk93wesSP9iQrHash4jIwqMNSsyEJwnHaqDb22+UeR/lMasMgSGAZAI62
deGXOhuZQlQToYfecTYJgV9XnIA1D6RllzRNEZBzjnUJzQ6foUrTkpxQ3RBO
v9IZmJNMcWSiq8zll6nXIQK6XEMxa62Gfv+h5LXLJcq17QmyNC9yqkVLXTdW
i5f654+6Ges5RAPrmMOkhs69gHmMVR9tsSpClZGzUIBYagsrnNRtnSpNRFNh
tVGGXNI2TNDVqsUYWj8dDA6S0cjDupDE683y6eBpcmGUPDz//M04bPWJlA97
Y5nOHpN9WnIyzST8nPNrcSMzeHqDTmewo9ZgFJy7KbaMJ2+1QpPGp2VVVVJ+
hFnOwrU6MCleQqaHGEQUqWHUYxzVHyQxlo2O6vVhrpHOIP0AO2I5WsIUkeJ9
QSBJW9AS7OLkLRNe0Lzb15KB+JckFsNar1W+8i0YTJ+6pDs93z+lcTvoL/kF
RaTuYx3H7rrkAEkeeG+soWvzNHHtEbCHmBBk4B5Ap2FfRw5623EsrhVJC/e8
R49/TLHWbuJ3gOEgGQz6R0+CSys/NKdTdPptz8X+yTf40HupHsbf6Pyib+Sh
fYauvz0Tjr7hZ2Ek9P6NMusQe4GCp2nd9zBvEj/+JIZWjTTlm4z3/KOIHR8y
xrHGXmEK5JPEFwMXIbQsZ8qbWFQhfR8+1Tu02hRmwBZnyHf56FnOubaz5RKv
4x5GqNyM1iUm0Uo3s7zk7JJAc0qUlm4n6fR9YJqsvjgaGNkPzg0s5hhkBbk8
2yW2zpJzJuMscWbNVLJ1Syx3KfXHhe4JO0Y3jvTYc64XH0cvo/F6m4VDrc9e
NdlbSn7wvdinLT+MCxQmuk/1quao69OCVVZSQGoF4N9aGZCt35RXLarYc01R
uewfag7A5kto9RvzIppyXvTP+rUo/YctA8CKHLBqqlKQr0hH4WdBdWrUeY+J
MyDx9QbH11E5iY+L72WbgnOrpOJGGIEy5SiSui6nnK6UvnV43nWjRDhwnc8B
UlD/OXS8aDynnqX//dOjBt15td0iTtwxOQ0QlnlhX/VyOZNUiM6bPUT7M18U
+sgpcxiLn6hJVke1eD6Wa2s9DhwM9kwcIiqpbtsh/MEQb5QRCzXVjdo5EY7O
QIZGv8ORXZjRWT7vuBhYNi6fVAHzpGccMcTZKgyASLneSKpr64Dv9MCypUad
TRzQZ7Pgw1ByJC7/AnFonAGqmsmsW8eBK1Z/29SLdalmmiZ8Uk1y9My6dWky
cFvIqvwj4LoP6NDqIEFU6BK9HnyMTPEirDBnX8WNJWm1lb7BJmapVMZtLKUs
tSA/9mFyvlckzCIhAAZsw5VN7CAd8uv4ZoSUsOpRQV8ZedCKYW3okZdBQLG6
X2lyvalU6C+xkhOVp46+JvWD619475D2G5qPzEAj4gzNjrxCQ4Fngwv5SLaM
6gf64w9wLkX/ZgTJLL0oyMStTqILodU/1XgBe31+csXTvgzAigwTW4gsIu0l
9TK6on1tNyA6YShGpU1LAJsEi1Nw4Y+8FmASdVcYMd53EI3+LX/rnw0GnUfJ
t8SWkfMDPRhdUEjAiFpyE+bcwoNuE+l4WweaO5u0+L+BVchL1uZLD/dO4Vtm
bQf3FYsiNipw83dYDQolTfg7HNqnPccT4B5Zb8A3d3fnQRyAvBVLCp8XA0gH
INqHG7mc0OHmlNqWku2ItKWXjsvO+B4+AP9HGeVzXw1Uvemwbw3ObNK5yyfF
eZ2jMrZaCH2RLdex92xEJ2AgqXmwFeZoSZfkIFlWcFzR7xGV6oXT2vnp3dUO
bO4Odkd/fP/25dnzc/rz7OKH88urnfa3fyRKBx/Dt6MXuNp51htf3wXFAFq9
H9ipImR+v6F6WPe265z+IJqqima0q0+Tnj0gqYy3dsRb22lGy0Xx7N7l9HkO
/FfekPh4A9Bv3Rqpzh1cUragru0dyGaiJX+ULucgUjSLVSKe0g8SjR4VHK//
nnoh2JylXzpoNp2u1WsJ1KYdQ+88d7T0Ye0tTNSMlzUCRB8CO0Skurt7e3p6
SQH08RS0EApl2QlXdKL+OHSLNYUeMJEzcUule88ymOWukjxGs5kFTCtt5vki
bpmSSMmJj9FncjNfCT3FWfSjZuBhp+9ZQ06Neq40zqT3uvKnKEWRzX+WiXNf
2sF9w4goRmwxkOysWrWgB/PA0u5omZEoxWf0ved8yS4V8ouRYWoolqk0Bu9h
SILdcq00lbO6b+jQN4us0Wj91hTaDHd6D8sdHDctkMT7bsZLpS1znGET/DPl
a4tisXjG//yP/wuw6H/+x/89xD/xxPVvxsPwi+fIqYlGEag3xtygZ08E38PP
r1y9+DWAi/VQzM47zD68F40P+3D20E+Z+u0uXIlL70TvkYFOzPVIugoZimI8
IG6CrOXtLezavghtDo+nxoSdVPyEQLtH3k601bobKIf6WUbD9PHKLPq3AKz1
3X07FDEUW3vosFj4pTcI+C8jHBHdTSo+VWXxQ3UgYgG4f18VAELtaVKX1+uS
5ajPELJ2hK8gXT2Q1qht5kmc1R0+E1MzFwYCLg2/3BTsWJ5eaz0Ev7M3Vbpe
S4xUla3KD73rhf8uyzoSDF13xDJs6yna9FY/neVGjb94ubIUMu/oiHaIUupI
Po4xVQs7YZFN6iS6guWmqa2sspHta0EOgSIqcYZ+EXtBr3ui7PDzcxnZHK4k
9dnn+GRXB5EYXrVzCHaWu4Z3PDhGQzvxRSPzDtDrSuR7iU94ePDk0yfokDjn
z/dI+qdu8TGpRCUVzhD0vO0NgAmm0ZY+TXJGZ+MJoVyYhzDuX7Q2Dyxnvjdh
uu9hu3AP5er+zUN17/T9A56Q3QlvwbLOKFfw0NgrrPYLE2fOymz/1wrlgSog
08UJg14CtBLcRRRBoie0OCATxyabV5HLT6HfUqRRE4mZkrkW3157BVAt5eu/
cm2d0oNusmPuhY8wnzLLRR6pXbbmVqVY+jJjUx1pe2JtIMXNFR/yqixIzT9g
kp83KqRipmEpzTFtgk7NdIlcxcjKQrR1X2NZC7HUXoOYthjA9s7FAfsKBuhj
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
kdu4kplDmwIdxZceOf8HorsSWCp8AgA=

-->

</rfc>

