<?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 2.7.0) -->


<!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-31" 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>Mediatek USA</organization>
      <address>
        <email>giridhar.mandyam@gmail.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="2024" month="September" day="06"/>

    <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 either includes a received nonce or uses 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 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> 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 do not 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 NOT</bcp14> 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 does not 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 product 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 do not 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> 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="RFC9393"/>.
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="RFC9393"/> 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> 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 <xref target="GP-Example"/> and those based on Common Criteria <xref target="CC-Example"/>.
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="RFC9393"/>.</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

]]></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="RFC9393"/>.
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, and multiple
security-oriented subsystems like a TEE and a Secure Element. 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 versus 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 = $JSON-Selector

$JSON-Selector /= [type: "JWT", nested-token: JWT-Message]
$JSON-Selector /= [type: "CBOR", nested-token: 
  CBOR-Token-Inside-JSON-Token]
$JSON-Selector /= [type: "BUNDLE", nested-token: Detached-EAT-Bundle]
$JSON-Selector /= [type: "DIGEST", nested-token: 
  Detached-Submodule-Digest]

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 socket.</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, does not 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.
If detached Claims-Sets are modified in transit then validation can 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 metadata 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.
The possible values are in the EAT Intended Use Registry defined in <xref target="int-use-registry"/>.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //= ( intended-use-label => intended-use-type )

intended-use-type = JC< text, int>
]]></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 does not 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 602 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.602(BUNDLE-Untagged-Message)
BUNDLE-Untagged-Message = Detached-EAT-Bundle

Detached-EAT-Bundle = [
    main-token : Nested-Token,
    detached-claims-sets: {
        + tstr => JC-NEST-SAFE<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 does not 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 does not 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 do not 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.
Full profiles do not need to require the receiver 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 do not have to be standards track and do not 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 to 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 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-1">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 NOT</bcp14> 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 does not 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 cannot (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 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>For CBOR-encoded tokens, OIDs are specified using the CDDL type name "oid" from <xref target="RFC9090"/>.
They are encoded without the tag number.
For JSON-encoded 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="RFC4517"/>.</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"/>.
Note that the JC&lt;&gt; generic uses the CDDL ".feature" control operator defined in <xref target="RFC9165"/>.</t>

<t>This CDDL uses, but does not define Submodule or nested tokens because the definition for these types varies between CBOR and JSON and the JC&lt;&gt; generic cannot 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 = JC< text, int>

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


$$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.602(BUNDLE-Untagged-Message)
BUNDLE-Untagged-Message = Detached-EAT-Bundle

Detached-EAT-Bundle = [
    main-token : Nested-Token,
    detached-claims-sets: {
        + tstr => JC-NEST-SAFE<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 >
uptime-label               = JC< "uptime",       261 >
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 >
boot-count-label           = JC< "bootcount",    267 >
boot-seed-label            = JC< "bootseed",     268 >
dloas-label                = JC< "dloas",        269 >
sw-name-label              = JC< "swname",       270 >
sw-version-label           = JC< "swversion",    271 >
manifests-label            = JC< "manifests",    272 >
measurements-label         = JC< "measurements", 273 >
measurement-results-label  = JC< "measres" ,     274 >
intended-use-label         = JC< "intuse",       275 >


]]></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 = $JSON-Selector

$JSON-Selector /= [type: "JWT", nested-token: JWT-Message]
$JSON-Selector /= [type: "CBOR", nested-token: 
  CBOR-Token-Inside-JSON-Token]
$JSON-Selector /= [type: "BUNDLE", nested-token: Detached-EAT-Bundle]
$JSON-Selector /= [type: "DIGEST", nested-token: 
  Detached-Submodule-Digest]

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 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 does not 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
a 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.
The "Claim Value Type(s)" here all name CDDL definitions and are only for the CWT registry.</t>

<t><cref anchor="to-be-removed-3">RFC editor: please see instructions in followg paragraph and remove for final publication</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): bstr or 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: 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): bstr</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): bstr or int</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): bstr</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: 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 Authorized 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): bool</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): 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: 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: 261</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 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: 267</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: 268</t>
  <t>Claim Value Type(s): bstr</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: 269</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: 270</t>
  <t>Claim Value Type(s): tstr</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: 271</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 Manifests</t>
  <t>Claim Description: Manifests describing the software installed on the entity</t>
  <t>JWT Claim Name: "manifests"</t>
  <t>Claim Key: 272</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: 273</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: 274</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: 275</t>
  <t>Claim Value Type(s): uint</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>602</c>
      <c>array</c>
      <c>Detached EAT Bundle <xref target="DEB"/></c>
</texttable>

</section>
<section anchor="int-use-registry"><name>Intended Use Registry</name>

<t>IANA is requested to create a new registry titled "Entity Attestation Token (EAT) Intended Uses" in a new registry group called "Remote Attestation Procedures (RATS)."
The registry uses the "Expert Review" registration procedure <xref target="RFC8126"/>.</t>

<t>Guidelines for experts:</t>

<t><list style="symbols">
  <t>Each intended use should be clearly described so a user of it can know what it means.</t>
  <t>Each intended use should be distinct from others that are registered.</t>
  <t>Point squatting is discouraged.</t>
</list></t>

<t>The three columns for the registry are:</t>

<dl>
  <dt>Integer:</dt>
  <dd>
    <t>This is a unique integer used to identify the intended use in CBOR-encoded tokens.</t>
  </dd>
  <dt>Name:</dt>
  <dd>
    <t>This is unique short descriptive string that is used to identify the use in JSON-encoded tokens.</t>
  </dd>
  <dt>Description:</dt>
  <dd>
    <t>This is a text paragraph or more that sufficiently defines what the intended use means. It may also be a reference to another document.</t>
  </dd>
</dl>

<t>The following 5 values represent the initial content of the registry.  Note that 0 will be marked as "reserved" for the CBOR value, and the maximum CBOR value for assignment is 255.</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>

</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='RFC4517' target='https://www.rfc-editor.org/info/rfc4517'>
  <front>
    <title>Lightweight Directory Access Protocol (LDAP): Syntaxes and Matching Rules</title>
    <author fullname='S. Legg' initials='S.' role='editor' surname='Legg'/>
    <date month='June' year='2006'/>
    <abstract>
      <t>Each attribute stored in a Lightweight Directory Access Protocol (LDAP) directory, whose values may be transferred in the LDAP protocol, has a defined syntax that constrains the structure and format of its values. The comparison semantics for values of a syntax are not part of the syntax definition but are instead provided through separately defined matching rules. Matching rules specify an argument, an assertion value, which also has a defined syntax. This document defines a base set of syntaxes and matching rules for use in defining attributes for LDAP directories. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='4517'/>
  <seriesInfo name='DOI' value='10.17487/RFC4517'/>
</reference>

<reference anchor='RFC9393' target='https://www.rfc-editor.org/info/rfc9393'>
  <front>
    <title>Concise Software Identification Tags</title>
    <author fullname='H. Birkholz' initials='H.' surname='Birkholz'/>
    <author fullname='J. Fitzgerald-McKay' initials='J.' surname='Fitzgerald-McKay'/>
    <author fullname='C. Schmidt' initials='C.' surname='Schmidt'/>
    <author fullname='D. Waltermire' initials='D.' surname='Waltermire'/>
    <date month='June' 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='RFC' value='9393'/>
  <seriesInfo name='DOI' value='10.17487/RFC9393'/>
</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="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='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='RFC8126' target='https://www.rfc-editor.org/info/rfc8126'>
  <front>
    <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
    <author fullname='M. Cotton' initials='M.' surname='Cotton'/>
    <author fullname='B. Leiba' initials='B.' surname='Leiba'/>
    <author fullname='T. Narten' initials='T.' surname='Narten'/>
    <date month='June' year='2017'/>
    <abstract>
      <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters. To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper. For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
      <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed. This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
      <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
    </abstract>
  </front>
  <seriesInfo name='BCP' value='26'/>
  <seriesInfo name='RFC' value='8126'/>
  <seriesInfo name='DOI' value='10.17487/RFC8126'/>
</reference>

<reference anchor='RFC9562' target='https://www.rfc-editor.org/info/rfc9562'>
  <front>
    <title>Universally Unique IDentifiers (UUIDs)</title>
    <author fullname='K. Davis' initials='K.' surname='Davis'/>
    <author fullname='B. Peabody' initials='B.' surname='Peabody'/>
    <author fullname='P. Leach' initials='P.' surname='Leach'/>
    <date month='May' year='2024'/>
    <abstract>
      <t>This specification defines UUIDs (Universally Unique IDentifiers) --
also known as GUIDs (Globally Unique IDentifiers) -- and a Uniform
Resource Name namespace for UUIDs. A UUID is 128 bits long and is
intended to guarantee uniqueness across space and time. UUIDs were
originally used in the Apollo Network Computing System (NCS), later
in the Open Software Foundation's (OSF's) Distributed Computing
Environment (DCE), and then in Microsoft Windows platforms.</t>
      <t>This specification is derived from the OSF DCE specification with the
kind permission of the OSF (now known as "The Open Group"). Information from earlier versions of the OSF DCE specification have
been incorporated into this document. This document obsoletes RFC
4122.</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='9562'/>
  <seriesInfo name='DOI' value='10.17487/RFC9562'/>
</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='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-11'>
   <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='8' month='July' year='2024'/>
      <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% while also significantly reducing memory and code size
   compared to ASN.1.  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 Certificate Signing Requests, 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-11'/>
   
</reference>


<reference anchor='UCCS' target='https://datatracker.ietf.org/doc/html/draft-ietf-rats-uccs-10'>
   <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='4' month='July' year='2024'/>
      <abstract>
	 <t>   When transported over secure channels, CBOR Web Token (CWT, RFC 8392)
   Claims Sets may 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-10'/>
   
</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-09'>
   <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>Linaro</organization>
      </author>
      <date day='21' month='August' year='2024'/>
      <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-09'/>
   
</reference>


<reference anchor="CC-Example" target="https://commoncriteriaportal.org/nfs/ccpfiles/files/ppfiles/pp0117V2b_pdf.pdf">
  <front>
    <title>Secure Sub-System in System-on-Chip (3S in SoC) Protection Profile</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
</reference>
<reference anchor="GP-Example" target="https://globalplatform.org/wp-content/uploads/2021/01/GP_TEECertificationProcess_v2.0_PublicRelease.pdf">
  <front>
    <title>GlobalPlatform Technology TEE Certification Process</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
</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><cref anchor="to-be-removed-2">RFC Editor: When the IANA values are permanently assigned, please contact the authors so the examples can be regenerated. Regeneration is required because IANA-assigned values are inside hex and based-64 encoded data and some of these are signed.</cref></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 /      272: [
                              [
                               258, / CoAP Content ID 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 /         270: "Acme OS",
    / swversion /      271: ["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 /      272: [
                                [ 258, / CoAP Content ID. /
                                  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 /      272: [
                                [ 258, / CoAP Content ID. /
                                    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 /    273: [
                                   [
                                     258, / CoAP Content ID         /

                                    / 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-8xQk",
   "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. The payload is the    /
/ attestation hardware block above. The main structure   /
/ visible is that of the COSE_Sign1.                     /

61( 18( [
    h'A10126',                           / protected headers  /
    {},                           / empty unprotected headers / 
    h'A60A4CD79B964DDD5471C1393C88881901005001
      98F50A4FF6C05861C8860D13A638EA19010219FA
      F2190106F5190107031901048263332E3101',        / 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. /

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="RFC9562"/> 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 computing platforms.
In particular, hardware randomness sources were introduced in CPUs between 2010 and 2015.
Operating systems and cryptographic libraries make use of this hardware.
Consequently, there is little need for protocols to construct random numbers 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"/> does not.
Vice versa, EAT does not define a 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 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 relying 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 cannot 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>

; Same as JC<> but with unwound generic nesting as it seems to cause
; problems. Perhaps this is the nesting problem described in RFC 
; 8610.
JC-NEST-SAFE<J,C> = J .feature "json" / C .feature "cbor"
]]></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 registry 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-to-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">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-30"><name>From draft-ietf-rats-eat-30</name>

<t><list style="symbols">
  <t>Minor typo fixes</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:
H4sIAAAAAAAAA+y923bb2JUo+s6vwFFljEgJSV3tstW7KlFJskvVvrUlp7p3
7TpukARJxCTBBkDLiuL+lv0t58vOvK+5AFB2ku7zcMb26E6JwMK6zjXvl8Fg
0Pt4mhz3enVeL7LT5GaeJZcr+HGXnNV1VtVpnRer5Kb4kK2S3cuzm71eOhqV
GXwEP3qTYrxKl/DdpEyn9SDP6umgTOtqkKX14PiwN07r06SqJ73euFhV2ara
VKdJXW6yXlWXWbo8Ta4ub5718nVJj6v66ODg6cFRL4WXp8l1Nt6UMJXe7ew0
eXt2c937cAvd5bNVvpolqZvfeFSUvd46P+0lSV2MT5Pf3mXVb/nHJFvXc3hy
gr+rooSBp1VoUd0t4wfjYrlOx7VrsRmFZ6sCH5XTcTap6jvcMm4G/9JNPS/K
094gyVfQ34th8mKzmowW6SSDT3ifXqSbMluNs+hVUc7CYvEIivIuefHiHF5l
yzRfnCaL2eKPlTSo6f0QpqQjPR8mL9PV5C5d2jjP8zKfzNPSvaBRXmaTPK2z
D8m767PQ/UxaD5fc+o8zfO6H+GmYvP7tRbEqZvNNWM1PWZkt7+I3NMy/bNIF
fL1MbrLxfFUsilmeVcnVajzE/YQTyGAvj759mjxLyxWcXbGZzZO3RTrB/Yc1
nvoXdCYTXNS7w5Pk2xfX9GCzqkto926V19kk+WeAiEmBy1zPixW0/f3JSXJ4
9OgoOX58fPjkaVjrn4sJTfaP/1Hnw/+Qefqlng+Tn9PFIh2HdZ6n5cI9pCW+
hVF/hFlMkutiWt8CxPZ1gTLSGL76Y5lN5tiqkkY0Et6GusxHm5rhhUf5MVt9
SH7Iyw/zYvEXHeZZmW5W82Kalcn11Q081evXeiGjzqGX4Uh6+WOV18OptRwC
uOloN/NimVbJs6Kq4A7pcGflMnmRL3FPQ5c1NR1Ouekf01L3i3t6mc822SL5
AfYHLmRWFpV7NZ6n8O4t/reETVgZuAOkZQuAN9u+5Oei/FCFUZfj8veIUP5Y
adPhOLWe36SwgWOAY5hqeZv/+UMYM63nOazshxLnW07C/qarFUDhTTXGzVjl
swcXPafWw9pat9b9Jt0skvOyuF1kd73eqiiXsDsfM8RBb5+df/vo8JH8+eTp
ydNTxlH8CuAytHqqrY4e2Z/HT7XBk8eHB/DtZLKQ39/aq+OnTx7Ln08PrMen
gED1z8PHj/jb9WJT8bOTxydP5PXJo8NvteXx02P78/jktAd///z8+skJPgQs
mpYzvLE787peV6f7+1la1vNBvpoWw9UsHS7zxf56vt6fFLerBdziIfz4wzRf
ZN+Ni6KcDG5n1ZOTHe6K6czPr9++uEieX76+uLy5Ok+u/+365vJlcvj0yUk/
efX8bHh98+pieHBw/Pj94fBgePCeJkMdKJbFvwd8fq+ICKSL5HlWVGv4kS4G
V6s6WyzyGSHbM/zPXbILPe/RhxPAgYCADg5PBgffDg6e4Hqvzl6dDc9/vhme
L9J8CYiAHoxva3v5U/Pln93L89fXl8OzxawAHD0PnxdVhk1u5oDznr95M7x6
eXkVb6ru6RpIU7oYHs/W6yEsa3+SVR/qYr0sJhu4V/vX62ycT/MxrbXx8yKr
AWarYVqtP/2h8m+uJt99e/TU7/xxOYF9WmUlU843cJLwo5rn6+RNWfw5G9f/
xFgbelgk0TDJc8DH6+S8gMv6Kqtv4b4mcDehebnMYf+rf0pebZajrARk3E/S
yaTMqopINTTKJxnwFdrVtqM8hj2KT+gpbt/Fi9dn3bs2WxSjFOA7radwAWnj
btcDxK8w3P5mjeBY7UM/j/YPj/afvzl/f5HPctjoFxnwD+Xr6dl6XRYf08X7
jwhp68nUb5a0TbhxUkwTbe4m+ar4mOGqcbaPejjdN5evtpxxthrm6SqlecKP
/TfZCnpcyK4M1+ks8+O/KfOPMAayZFm5LvMqkx1OdmGMPSBC/7EBnGtAiDhm
UKezCm5wD69njJOeHB4Zxnj0WDHGCaInRR7HT+nyAxmq55P0DpjAdPzh1M9J
XyEDBu861wnLvM0/5GvkNvhM4Ne+fvmevxy6PZwC9NBFubq8vBw+OTgaHp69
hf1/fTU8PBgeHh483cc31zcXQ9jlJ8MnJ0fH3z49ITx1fD6Ei/8C2T78++3l
+WCWAc/Bezo4e3M1gG+ODw+OqP3rd1fD5xsAx2hV9GSRI4GAXUvewU7DaV9+
AjCaAKUHNgN2OrkSIMYDuHx3tddPXpezdJX/RTDQ4q6r5WtqiZfgHPnI1V1y
dZHsnl9deGR0tpkB/4sw9G3nlgKru5ogDR3mWZbRpiqUT9LlPj4cWJvQev82
GwFeHm+W0LLar5HlAPxY7WebnKBdduRFUXzYrKMtwQ0HCJvlwLDx/T+jC0vC
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
TGpQyQ4AB1MAXDZGfdoP+QoRvnz0NlvDbhpI7CL7rJ8+PcFPU700tJAsHc8d
VAsqGG3yRY0b18l9c2/HT4+E5nWy4tQIrQPSKF/BKhFVIvqBFefte0egSm8C
WVaMAFv4AgECJsBj/nzDaGRSwOYjxcUjBlK4ujP+fApUEXb+WaHMJnHvBHYC
EELlFOZpIaxzlM2p7oitIH3wCFj7MeEQ4B4IP5GOo/caeVW8E6xaH1xnNeOj
dXqHsiZ1hb9pznjngStfwcT+E/717kme3AFm4f0KTjTbOU12Xl5d/PDqx6Mn
eV7k1Z/f3O30udEmyyfwnv7tnM3OLvO/lP98/C/6usiW9v7bx49OjvsJv6hu
0eDDb3bOxnBRURx8fa0fVrewKRXACw5+PDwcnuz0PvP0mHFRjnVOdIHmyWwF
wNocGJlKJEd+kzMCGgFEPT7ZlAuGdrlkaXJ4BHxcTURsUiyTEcMvPUK9GTHL
8DkuliRB4IfHqAPG00XmEoWJFSuRmcOHF6Kcv1P0xLdSZqU9PTSpkyeDEQhK
L8/OVe8PGA+I8oS5ThNmaZoHnw6OeJK05WYaEMzreVO4WyzmbNeE39+/uXz1
+TN3aCgK5mvdCsetWIw2iWx4dBXk7AiIx0rjmt9ON3DtYGIgNKAoh7Bc496w
QAuEHZkSuw4gGn+jovDrj8jPZ7dNHnZTyXJR4AcAptY7iMDLDI26KDfiW9LO
iKYC1V69l0Vl/JrgWeaHRR/gByH+/4uyNULJf2xgfxf4DcmMMmwWWLmEtIKq
bymZt7dhfxE2/ldY/Iv0LkO+NpIEkCg0kX6/JSBYN31mpZltswPcjNga5jid
3SpDKYJfAS+xB6RUm1XM2QO+NhoFO8iI0vi7ARGpqhAuZwP4fJ4DH4BSSsbc
H8ADMeLI5sfb5uXhFBABqxCNUu/0G9uE7dEyWYLMHjw+gPtFS/UdI/0TojPE
kNbC6LjnJvsYxOBqdGR7Biu6A2xyt6z6QhdSkt6dIgWEzgpVBSiFBhsGHbMI
R8xG8v1rLo14UlwOEhHi1j7BvbBJrTKU9wmSK4ao7uH41poah0QKvcLM4yk7
hLw70EiCn7bqTFcVDifMDv2OMr2zWbxaGoPlb4THJTCPNfw/MUhzuGh8xDZw
zrTS3SJm3FTcQ7CiN7mIfmcNNoseKVd2+Qne0TScyJTs3lxe7lE7VTSOUUOP
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
ngTayQ+NuiF30ZyL/ZNv8KEnh0fxNzq/6Bt5aJ8hj9Ex4egbfhZGIh7zv7+W
/f/JSyz//n+Vl1jVd4ycGv9Uzkvr99SKYe4QpT2noNvyFbbw7PYjYla9fq3z
M25hHx49QpbV68u6P6MWYbijR8i4dipWos/mt/RKPzx69NR/Fussos/kFX94
9Ji2xPO2/297X97cxpHk+39/ig7O7orcBSB049asHAGCpExZoiQeoqWRR9EA
GiQkXEYDpGhZ77O/PKuqD5DQeMa7L+IxZiwS6K4zKzMrj18WLwk9YefWDHhu
rkmieG5y5ZXX6OabN0tkXhv2r/Br+1qNrkipK2dBbyYlqCSvIX9JK39Fr7nA
fCV8rUHbjayocL/NdtMTdpBIJTnVPfcaPkEP6Aa09DXnrlD8WmJvRWETqcRV
w4v3jZ5wiKuJVJK2ghXO7RYfsNvdqvJrebLKvJYmrhZSSVZlzr9mc6jktTAt
SzZQSSpzqgSvZUVQWn1xX4NvdnxZyRZSScHtKdObFMyxS9Ig4WVDKchHfKYO
IPbjGI8O8nJ6gAtmPvX/zX7CUoG/eOx8YQSG1Anc9MpTdFVmBNM9DxcKMrf1
dL/afk4i3vfCRinqpeqGPs3XEmWXdbq86FMSKORfpw/Kx+STcxeUVSf7Qf4R
aXhTAykxU7x4HAdzTwskXO910bg8BaTwV5TI5J/7wXGffgPl2f711I3we1xQ
fPVx2tC3UZnKhv3cS6t2pkqrztwZvzkRmsl/gRTwHEgmRSnFj21NKKnysrIT
ptosDDHzffpv7OlvfL3bgYHtlMS5y6rUE3ewv9zzKq597l2viOzsZO9rjyef
a7FAAbyvlYPjZ6DJFY1rIyn8UnQYUlueU8/+pUSd2TyhU/+1wNancZWo+AR9
kcYtQPwzSRW2CI3Z8jQMC0shALczxlKRUNrV3V89itDAWp6lDHyjQfA0xRxl
CGWKAl3eIM6iQqwNY4yCo/TnmeTlOgXSCIgsmyJq4fo5TMGA7CI2jI2poQJw
imaznplqSJSkqSXaBB7IlgI4o982LiZqrZsWtGtyQNbJmoJfKEY7N/eKfxoz
MjOhFseJxxlFpnivKfLs4LXzqmtGqacR2Z9nXAHAxFlhNLomxgiO6UrrP1mc
IS+V/iaPIFgWx8hhqpBT7Gedwv42keyU4XEznk+4nCCv2GKORQPihGIaOfhH
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
GoeEy3+XtZ9l5j/mKbh+FDdgwxujYVgfRf1WUK83tw7Alp9wOGy0h/XaMIqD
VjuG4xp/p1Oz36mHnSDqwH+q7XA0GoRbR2HJTyOq9rf2EDxo1/c2mv3uvQyp
essVvZdcMKPgSpOU/J3uejie+8YUI2XSnzG8b+J8wRcWKrYu4L4rBwxZuryO
nKuYvRY42CykP0vIH3EiujJI3iWO0xme7VLUf76CyR19naDg/PFlt6cBxJgo
BOPZ+UI/O5U/YgZly4M1SmVsUmiSypig0GZ02hig/ejz4ue3PTZJTd79fDrq
Tzvrd+EFPtwYnn/wBuH553r97Oe3lyfTC7Rm/Ta8fL7qh6e/HX9atI4/HwXv
n01ujo9Ognezk8agdjrpnx03L++eH55dDI8u0AJ29MFLxhfV6/0X59L55/dn
p5f1u7eT01p0/rkxuDw5OX179Nu76ZfV+duj2cvwOOiH799dPGu8ehnsP393
2ei9PPzgNU7Pay/HP7+tQgvDu3c/78+jy5Pf7u872zO0Er6snfx68fai9iZ4
Xz09Ov0cVU/PLybXl4Oj9wcnFycv3x7t9y6nb99cXl6fv7i4nr+dvL98+TP2
HHRGbypH75IPXuu0fP7T9VX3c7txctd79frNpL969uzT0cuPtcH17Hr/8NX6
ZfPX3pxNbL9kFKwCYsYym7fzq+Ne9+p4+vZ6eNRZ98PGp/cwo+Pe8+TsbPX8
8qJxdDJ5/sH79eRze/yiK0/P3k6iyzewY93xm8vTV2eTi2o/mLwbHr29fXO2
Oo4PTn59cz64OT06HPfGXXxn3A/ffvBW+lb09u3Pw95x4ny7ejft3AyRQH48
vRteXiTHpreTWn96tJJxffD2h5eni/7d/pvBtPPp/c8nv/Vrx1fnwctxb1b9
ySXDgoP6wKTfX8qkP3gw7Xsm/fYC9u/0TXDy9uXs+vLNdPV2+GwyG/54Ues/
uzCT/uDhxOSt2sl59/Zl7/Ynaq33/Ob9ZQAT76Dl9Wr44/Pg/dntlb45qA3X
7y6DCX73wUsR32Hn/Phq0eld7YhO9YvlhFyk5yBG7uKfkkISYU2Yv+DnZf6c
S7v04HZLiO+IV9KP+lhX9054wiCaoO9RERIIRBnk/hRYgyR8mzdYJxqYxuYj
j8oyVb9UAy4xrknnlCGBpRUR7Jwsn4qrP19oZwr8IMU3obFYCwoQTIPjFpWX
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

-->

</rfc>

