<?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-27" 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="May" day="26"/>

    <area>Security</area>
    <workgroup>RATS</workgroup>
    <keyword>signing attestation cbor</keyword>

    <abstract>


<t>An Entity Attestation Token (EAT) provides an attested claims set
that describes state and characteristics of an entity,
a device like a smartphone, IoT device, network equipment or such.
This claims set is used by a relying party, server or service to determine the type and degree of trust placed in the entity.</t>

<t>An EAT is either a CBOR Web Token (CWT) or JSON Web Token (JWT) with attestation-oriented
claims.</t>



    </abstract>



  </front>

  <middle>


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

<t>An Entity Attestation Token (EAT) is a message made up of claims about an entity.
An entity may be a device, some hardware or some software.
The claims are ultimately used by a relying party who decides if and how it will interact with the entity.
The relying party may choose to trust, not trust or partially trust the entity.
For example, partial trust may be allowing a monetary transaction only up to a limit.</t>

<t>The security model and goal for attestation are unique and are not the same as for other security standards like those for server authentication, user authentication and secured messaging.
To give an example of one aspect of the difference, consider the association and life-cycle of key material.
For authentication, keys are associated with a user or service and set up by actions performed by a user or an operator of a service.
For attestation, the keys are associated with specific devices and are configured by device manufacturers.
The reader is assumed to be familiar with the goals and security model for attestation as described in RATS Architecture <xref target="RFC9334"/> and are not repeated here.</t>

<t>This document defines some common claims that are potentially of broad use.
EAT additionally allows proprietary claims and for further claims to be standardized.
Here are some examples:</t>

<t><list style="symbols">
  <t>Make and model of manufactured consumer device</t>
  <t>Make and model of a chip or processor, particularly for a security-oriented chip</t>
  <t>Identification and measurement of the software running on a device</t>
  <t>Configuration and state of a device</t>
  <t>Environmental characteristics of a device like its Global Positioning Sytem (GPS) location</t>
  <t>Formal certifications received</t>
</list></t>

<t>EAT is constructed to support a wide range of use cases.</t>

<t>No single set of claims can accommodate all use cases so EAT is constructed as a framework for defining specific attestation tokens for specific use cases.
In particular, EAT provides a profile mechanism to be able to clearly specify the claims needed, the cryptographic algorithms that should be used, and other characteristics for a particular token and use case.
<xref target="profiles"/> describes profile contents and provides a profile that is suitable for constrained device use cases.</t>

<t>The entity's EAT implementation generates the claims and typically signs them with an attestation key.
It is responsible for protecting the attestation key.
Some EAT implementations will use components with very high resistance to attack like Trusted Platform Modules or Secure Elements.
Others may rely solely on simple software defenses.</t>

<t>Nesting of tokens and claims sets is accommodated for composite devices that have multiple subsystems.</t>

<t>An EAT may be encoded in either JavaScript Object Notation (JSON) <xref target="RFC8259"/> or Concise Binary Object Representation (CBOR) <xref target="RFC8949"/> as needed for each use case.
EAT is built on CBOR Web Token (CWT) <xref target="RFC8392"/> and JSON Web Token (JWT) <xref target="RFC7519"/> and inherits all their characteristics and their security mechanisms.
Like CWT and JWT, EAT does not imply any message flow.</t>

<t>Following is a very simple example.
It is JSON format for easy reading, but could also be CBOR.
Only the Claims-Set, the payload for the JWT, is shown.</t>

<figure><artwork><![CDATA[
{
    "eat_nonce": "MIDBNH28iioisjPy",
    "ueid":      "AgAEizrK3Q",
    "oemid":     76543, 
    "swname":    "Acme IoT OS",
    "swversion": "3.1.4"
}
]]></artwork></figure>

<t>This example has a nonce for freshness.
This nonce is the base64url encoding of a 12 byte random binary byte string.
The ueid is effectively a serial number uniquely identifying the device.
This ueid is the base64url encoding of a 48-bit MAC address preceded by the type byte 0x02.
The oemid identifies the manufacturer using a Private Enterprise Number <xref target="PEN"/>.
The software is identified by a simple string name and version.
It could be identified by a full manifest, but this is a minimal example.</t>

<section anchor="entity-overview"><name>Entity Overview</name>

<t>This document uses the term "entity" to refer to the target of an EAT.
Most of the claims defined in this document are claims about an entity.
An entity is equivalent to a target environment in an attester as defined in <xref target="RFC9334"></xref>.</t>

<t>Layered attestation and composite devices, as described in <xref target="RFC9334"></xref>, are supported by a submodule mechanism (see <xref target="submods"/>).
Submodules allow nesting of EATs and of claims-sets so that such hierarchies can be modeled.</t>

<t>An entity is the same as a "system component", as defined in the Internet Security Glossary <xref target="RFC4949"/>.</t>

<t>Note that <xref target="RFC4949"/> defines  "entity" and "system entity" as synonyms, and that they may be a person or organization in addition to being a system component.
In the EAT context, "entity" never refers to a person or organization.
The hardware and software that implement a web site server or service may be an entity in the EAT sense, but the organization that operates, maintains or hosts the web site is not an entity.</t>

<t>Some examples of entities:</t>

<t><list style="symbols">
  <t>A Secure Element</t>
  <t>A Trusted Execution Environment (TEE)</t>
  <t>A network card in a router</t>
  <t>A router, perhaps with each network card in the router a submodule</t>
  <t>An Internet of Things (IoT) device</t>
  <t>An individual process</t>
  <t>An app on a smartphone</t>
  <t>A smartphone with many submodules for its many subsystems</t>
  <t>A subsystem in a smartphone like the modem or the camera</t>
</list></t>

<t>An entity may have strong security defenses against hardware invasive attacks.
It may also have low security, having no special security defenses.
There is no minimum security requirement to be an entity.</t>

</section>
<section anchor="eat-as-a-framework"><name>EAT as a Framework</name>

<t>EAT is a framework for defining attestation tokens for specific use cases, not a specific token definition.
While EAT is based on and compatible with CWT and JWT, it can also be described as:</t>

<t><list style="symbols">
  <t>An identification and type system for claims in claims-sets</t>
  <t>Definitions of common attestation-oriented claims</t>
  <t>Claims defined in CDDL and serialized using CBOR or JSON</t>
  <t>Security envelopes based on CBOR Object Signing and Encryption (COSE) and Javascript Object Signing and Encryption (JOSE)</t>
  <t>Nesting of claims sets and tokens to represent complex and compound devices</t>
  <t>A profile mechanism for specifying and identifying specific tokens for specific use cases</t>
</list></t>

<t>EAT uses the name/value pairs the same as CWT and JWT to identify individual claims.
<xref target="theclaims"/> defines common attestation-oriented claims that are added to the CWT and JWT IANA registries.
As with CWT and JWT, no claims are mandatory and claims not recognized should be ignored.</t>

<t>Unlike, but compatible with CWT and JWT, EAT defines claims using Concise Data Definition Language (CDDL) <xref target="RFC8610"/>.
In most cases the same CDDL definition is used for both the CBOR/CWT serialization and the JSON/JWT serialization.</t>

<t>Like CWT and JWT, EAT uses COSE and JOSE to provide authenticity, integrity and optionally confidentiality.
EAT places no new restrictions on cryptographic algorithms, retaining all the cryptographic flexibility of CWT, COSE, JWT and JOSE.</t>

<t>EAT defines a means for nesting tokens and claims sets to accommodate composite devices that have multiple subsystems and multiple attesters.
Tokens with security envelopes or bare claims sets may be embedded in an enclosing token.
The nested token and the enclosing token do not have to use the same encoding (e.g., a CWT may be enclosed in a JWT).</t>

<t>EAT adds the ability to detach claims sets and send them separately from a security-enveloped EAT that contains a digest of the detached claims set.</t>

<t>This document registers no media or content types for the identification of the type of EAT, its serialization encoding or security envelope.
The definition and registration of EAT media types is addressed in <xref target="EAT.media-types"/>.</t>

<t>Finally, the notion of an EAT profile is introduced that facilitates the creation of narrowed definitions of EATs for specific use cases in follow-on documents.
One basic profile for constrained devices is normatively defined.</t>

</section>
<section anchor="operating-model-and-rats-architecture"><name>Operating Model and RATS Architecture</name>

<t>EAT follows the operational model described in Figure 1 in RATS Architecture <xref target="RFC9334"/>. To summarize, an attester generates evidence in the form of a claims set describing various characteristics of an entity.
Evidence is usually signed by a key that proves the attester and the evidence it produces are authentic.
The claims set includes a nonce or some other means to assure freshness.</t>

<t>A verifier confirms an EAT is valid by verifying the signature and may vet some claims using reference values.
The verifier then produces attestation results, which may also be represented as an EAT.
The attestation results are provided to the relying party, which is the ultimate consumer of the Remote Attestation Procedure.
The relying party uses the attestation results as needed for its use case, perhaps allowing an entity to access a network, allowing a financial transaction or such.
In some cases, the verifier and relying party are not distinct entities.</t>

<section anchor="relationship"><name>Relationship between Evidence and Attestation Results</name>

<t>Any claim defined in this document or in the IANA CWT or JWT registry may be used in evidence or attestation results. The relationship of claims in attestation results to evidence is fundamentally governed by the verifier and the verifier's policy.</t>

<t>A common use case is for the verifier and its policy to perform checks, calculations and processing with evidence as the input to produce a summary result in attestation results that indicates the overall health and status of the entity.
For example, measurements in evidence may be compared to reference values the results of which are represented as a simple pass/fail in attestation results.</t>

<t>It is also possible that some claims in the Evidence will be forwarded unmodified to the relying party in attestation results.
This forwarding is subject to the verifier's implementation and policy.
The relying party should be aware of the verifier's policy to know what checks it has performed on claims it forwards.</t>

<t>The verifier may modify claims it forwards, for example, to implement a privacy preservation functionality. It is also possible the verifier will put claims in the attestation results that give details about the entity that it has computed or looked up in a database.
For example, the verifier may be able to put an "oemid" claim in the attestation results by performing a look up based on a "ueid" claim (e.g., serial number) it received in evidence.</t>

<t>This specification does not establish any normative rules for the verifier to follow, as these are a matter of local policy.
It is up to each relying party to understand the processing rules of each verifier to know how to interpret claims in attestation results.</t>

</section>
</section>
</section>
<section anchor="terminology"><name>Terminology</name>

<t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>

<t>In this document, the structure of data is specified in CDDL <xref target="RFC8610"/> <xref target="RFC9165"/>.</t>

<t>The examples in <xref target="examples"/> use CBOR diagnostic notation defined in <xref section="8" sectionFormat="of" target="RFC8949"/> and <xref section="G" sectionFormat="of" target="RFC8610"/>.</t>

<t>This document reuses terminology from JWT <xref target="RFC7519"/> and CWT <xref target="RFC8392"/>:</t>

<dl>
  <dt>base64url-encoded:</dt>
  <dd>
    <t>base64url-encoded is as described in <xref target="RFC7515"/>, i.e., using URL- and filename-safe character set <xref target="RFC4648"/> with all trailing '=' characters omitted and without the inclusion of any line breaks, whitespace, or other additional characters.</t>
  </dd>
  <dt>Claim:</dt>
  <dd>
    <t>A piece of information asserted about a subject. A claim is represented as a value and either a name or key to identify it.</t>
  </dd>
  <dt>Claim Name:</dt>
  <dd>
    <t>A unique text string that identifies the claim. It is used as the claim name for JSON encoding.</t>
  </dd>
  <dt>Claim Key:</dt>
  <dd>
    <t>The CBOR map key used to identify a claim. (The term "Claim Key" comes from CWT. This document, like COSE, uses the term "label" to refer to CBOR map keys to avoid confusion with cryptographic keys.)</t>
  </dd>
  <dt>Claim Value:</dt>
  <dd>
    <t>The value portion of the claim. A claim value can be any CBOR data item or JSON value.</t>
  </dd>
  <dt>Claims Set:</dt>
  <dd>
    <t>The CBOR map or JSON object that contains the claims conveyed by the CWT or JWT.</t>
  </dd>
</dl>

<t>This document reuses terminology from RATS Architecure <xref target="RFC9334"/>:</t>

<dl>
  <dt>Attester:</dt>
  <dd>
    <t>A role performed by an entity (typically a device) whose evidence must be appraised in order to infer the extent to which the attester is considered trustworthy, such as when deciding whether it is authorized to perform some operation.</t>
  </dd>
  <dt>Verifier:</dt>
  <dd>
    <t>A role that appraises the validity of evidence about an attester and produces attestation results to be used by a relying party.</t>
  </dd>
  <dt>Relying Party:</dt>
  <dd>
    <t>A role that depends on the validity of information about an attester, for purposes of reliably applying application specific actions. Compare /relying party/ in <xref target="RFC4949"></xref>.</t>
  </dd>
  <dt>Evidence:</dt>
  <dd>
    <t>A set of claims generated by an attester to be appraised by a verifier. Evidence may include configuration data, measurements, telemetry, or inferences.</t>
  </dd>
  <dt>Attestation Results:</dt>
  <dd>
    <t>The output generated by a verifier, typically including information about an attester, where the verifier vouches for the validity of the results</t>
  </dd>
  <dt>Reference Values:</dt>
  <dd>
    <t>A set of values against which values of claims can be compared as part of applying an appraisal policy for evidence.  Reference Values are sometimes referred to in other documents as known-good values, golden measurements, or nominal values, although those terms typically assume comparison for equality, whereas here reference values might be more general and be used in any sort of comparison.</t>
  </dd>
  <dt>Endorsement:</dt>
  <dd>
    <t>A secure statement that an Endorser vouches for the integrity of an attester's various capabilities such as claims collection and evidence signing.</t>
  </dd>
</dl>

<t>This document reuses terminology from CDDL <xref target="RFC8610"/>:</t>

<dl>
  <dt>Group Socket:</dt>
  <dd>
    <t>refers to the mechanism by which a CDDL definition is extended, as described in <xref target="RFC8610"></xref> and <xref target="RFC9165"></xref></t>
  </dd>
</dl>

</section>
<section anchor="top-level-token-definition"><name>Top-Level Token Definition</name>

<t>An "EAT" is an encoded (serialized) message the purpose of which is to transfer a Claims-Set between two parties.
An EAT <bcp14>MUST</bcp14> always contain a Claims-Set.
In this document an EAT is always a CWT or JWT.</t>

<t>An EAT <bcp14>MUST</bcp14> have authenticity and integrity protection.
CWT and JWT provide that in this document.</t>

<t>Further documents may define other encodings and security mechanims for EAT.</t>

<t>The identification of a protocol element as an EAT follows the general conventions used for CWTs and JWTs.
Identification depends on the protocol carrying the EAT.
In some cases it may be by media type (e.g., in a HTTP Content-Type field).
In other cases it may be through use of CBOR tags.
There is no fixed mechanism across all use cases.</t>

<t>This document also defines another message, the detached EAT bundle (see <xref target="DEB"/>), which holds a collection of detached claims sets and an EAT that provides integrity and authenticity protection for them.
Detached EAT bundles can be either CBOR or JSON encoded.</t>

<t>The following CDDL defines the top-level <spanx style="verb">$EAT-CBOR-Tagged-Token</spanx>, <spanx style="verb">$EAT-CBOR-Untagged-Token</spanx> and <spanx style="verb">$EAT-JSON-Token-Formats</spanx> sockets (see <xref section="3.9" sectionFormat="of" target="RFC8610"/>), enabling future token formats to be defined.
Any new format that plugs into one or more of these sockets <bcp14>MUST</bcp14> be defined by an IETF standards action.
Of particular use may be a token type that provides no direct authenticity or integrity protection for use with transports mechanisms that do provide the necessary security services <xref target="UCCS"/>.</t>

<t>Nesting of EATs is allowed and defined in <xref target="Nested-Token"/>.
This includes the nesting of an EAT that is a different format than the enclosing EAT, i.e., the nested EAT may be encoded using CBOR and the enclosing EAT encoded using JSON or vice versa.
The definition of Nested-Token references the CDDL defined in this section.
When new token formats are defined, the means for identification in a nested token <bcp14>MUST</bcp14> also be defined.</t>

<t>The top-level CDDL type for CBOR-encoded EATs is EAT-CBOR-Token and for JSON is EAT-JSON-Token (while CDDL and CDDL tools provide enough support for shared definitions of most items in this document, they don't provide enough support for this sharing at the top level).</t>

<figure><sourcecode type="CDDL"><![CDATA[
EAT-CBOR-Token = $EAT-CBOR-Tagged-Token / $EAT-CBOR-Untagged-Token

$EAT-CBOR-Tagged-Token /= CWT-Tagged-Message
$EAT-CBOR-Tagged-Token /= BUNDLE-Tagged-Message

$EAT-CBOR-Untagged-Token /= CWT-Untagged-Message
$EAT-CBOR-Untagged-Token /= BUNDLE-Untagged-Message
]]></sourcecode></figure>

<figure><sourcecode type="CDDL"><![CDATA[
EAT-JSON-Token = $EAT-JSON-Token-Formats

$EAT-JSON-Token-Formats /= JWT-Message
$EAT-JSON-Token-Formats /= BUNDLE-Untagged-Message
]]></sourcecode></figure>

</section>
<section anchor="theclaims"><name>The Claims</name>

<t>This section describes new claims defined for attestation that are to be added to the CWT <xref target="IANA.CWT.Claims"/> and JWT <xref target="IANA.JWT.Claims"/> IANA registries.</t>

<t>All definitions, requirements, creation and validation procedures, security considerations, IANA registrations and so on from CWT and JWT carry over to EAT.</t>

<t>This section also describes how several extant CWT and JWT claims apply in EAT.</t>

<t>The set of claims that an EAT must contain to be considered valid is context dependent and is outside the scope of this specification.
Specific applications of EATs will require implementations to understand and process some claims in particular ways.
However, in the absence of such requirements, all claims that are not understood by implementations <bcp14>MUST</bcp14> be ignored.</t>

<t>CDDL, along with a text description, is used to define each claim
independent of encoding.  Each claim is defined as a CDDL group.
In <xref target="encoding"/> on encoding, the CDDL groups turn into CBOR map entries and JSON name/value pairs.</t>

<t>Each claim defined in this document is added to the <spanx style="verb">$$Claims-Set-Claims</spanx> group socket. Claims defined by other specifications <bcp14>MUST</bcp14> also be added to the <spanx style="verb">$$Claims-Set-Claims</spanx> group socket.</t>

<t>All claims in an EAT <bcp14>MUST</bcp14> use the same encoding except where otherwise explicitly stated (e.g., in a CBOR-encoded token, all claims must be CBOR-encoded).</t>

<t>This specification includes a CDDL definition of most of what is defined in <xref target="RFC8392"/>.
Similarly, this specification includes CDDL for most of what is defined in <xref target="RFC7519"/>.
These definitions are in <xref target="CDDL_for_CWT"/> and are not normative.</t>

<t>Each claim described has a unique text string and integer that identifies it.
CBOR-encoded tokens <bcp14>MUST</bcp14> use only the integer for claim keys.
JSON-encoded tokens <bcp14>MUST</bcp14> use only the text string for claim names.</t>

<section anchor="nonce"><name>eat_nonce (EAT Nonce) Claim</name>

<t>An EAT nonce is either a byte or text string or an array of byte or text strings.
The array option supports multistage EAT verification and consumption.</t>

<t>A claim named "nonce" was defined and registered with IANA for JWT, but <bcp14>MUST NOT</bcp14> be used because it does not support multiple nonces.
No previous "nonce" claim was defined for CWT.
To distinguish from the previously defined JWT "nonce" claim, this claim is named "eat_nonce" in JSON-encoded EATs. The CWT nonce defined
here is intended for general purpose use and retains the "Nonce" claim name instead of an EAT-specific name.</t>

<t>An EAT nonce <bcp14>MUST</bcp14> have at least 64 bits of entropy.
A maximum EAT nonce size is set to limit the memory required for an implementation.
All receivers <bcp14>MUST</bcp14> be able to accommodate the maximum size.</t>

<t>In CBOR, an EAT nonce is a byte string between 8 and 64 bytes in length.
In JSON, an EAT nonce is a text string between 8 and 88 bytes in length.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //= 
    (nonce-label => nonce-type / [ 2* nonce-type ])

nonce-type = JC< tstr .size (8..88), bstr .size (8..64)>

]]></sourcecode></figure>

</section>
<section anchor="claims-describing-the-entity"><name>Claims Describing the Entity</name>

<t>The claims in this section describe the entity itself.
They describe the entity whether they occur in evidence or occur in attestation results.
See <xref target="relationship"/> for discussion on how attestation results relate to evidence.</t>

<section anchor="UEID"><name>ueid (Universal Entity ID) Claim</name>

<t>The "ueid" claim conveys a UEID, which identifies an individual manufactured entity like a
mobile phone, a water meter, a Bluetooth speaker or a networked
security camera. It may identify the entire entity or a submodule.
It does not identify types, models or classes of
entities. It is akin to a serial number, though it does not have to be
sequential.</t>

<t>UEIDs <bcp14>MUST</bcp14> be universally and globally unique across manufacturers
and countries, as described in <xref target="UEIDCreateRules"/>. UEIDs <bcp14>MUST</bcp14> also be unique across protocols and systems,
as tokens are intended to be embedded in many different protocols and
systems. No two products anywhere, even in completely different
industries made by two different manufacturers in two different
countries should have the same UEID (if they are not global and
universal in this way, then relying parties receiving them will have
to track other characteristics of the entity to keep entities distinct
between manufacturers).</t>

<t>UEIDs are not designed for direct use by humans (e.g., printing on
the case of a device), so no such representation is defined.</t>

<t>There are privacy considerations for UEIDs. See <xref target="ueidprivacyconsiderations"/>.</t>

<t>A Device Identifier URN is registered for UEIDs. See <xref target="registerueidurn"/>.</t>

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

ueid-type = JC<base64-url-text .size (10..44) , bstr .size (7..33)>
]]></sourcecode></figure>

<section anchor="UEIDCreateRules"><name>Rules for Creating UEIDs</name>

<t>These rules are solely for the creation of UEIDs.
The EAT consumer need not have any awareness of them.</t>

<t>A UEID is constructed of a single type byte followed by the unique bytes for that type.
The type byte assures global uniqueness of a UEID even if the unique bytes for different types are accidentally the same.</t>

<t>UEIDS are variable length to accommodate the types defined here and future-defined types.</t>

<t>UEIDs <bcp14>SHOULD NOT</bcp14> be longer than 33 bytes.
If they are longer, there is no guarantee that a receiver will be able to accept them.
See <xref target="UEID-Design"/>.</t>

<t>A UEID is permanent. It <bcp14>MUST</bcp14> never change for a given entity.</t>

<t>The different types of UEIDs 1) accommodate different manufacturing processes, 2) accommodate small UEIDs, 3) provide an option that doesn't require registration fees and central administration.</t>

<t>In the unlikely event that a new UEID type is needed, it <bcp14>MUST</bcp14> be defined in a standards-track update to this document.</t>

<t>A manufacturer of entities <bcp14>MAY</bcp14> use different types for different products.
They <bcp14>MAY</bcp14> also change from one type to another for a given product or use one type for some items of a given produce and another type for other.</t>

<texttable title="UEID Composition Types" anchor="ueid-types-table">
      <ttcol align='left'>Type Byte</ttcol>
      <ttcol align='left'>Type Name</ttcol>
      <ttcol align='left'>Specification</ttcol>
      <c>0x01</c>
      <c>RAND</c>
      <c>This is a 128, 192 or 256-bit random number generated once and stored in the entity. This may be constructed by concatenating enough identifiers to make up an equivalent number of random bits and then feeding the concatenation through a cryptographic hash function. It may also be a cryptographic quality random number generated once at the beginning of the life of the entity and stored. It <bcp14>MUST NOT</bcp14> be smaller than 128 bits. See the length analysis in <xref target="UEID-Design"/>.</c>
      <c>0x02</c>
      <c>IEEE EUI</c>
      <c>This makes use of the device identification scheme operated by the IEEE. An EUI is either an EUI-48, EUI-60 or EUI-64 and made up of an OUI, OUI-36 or a CID, different registered company identifiers, and some unique per-entity identifier. EUIs are often the same as or similar to MAC addresses. This type includes MAC-48, an obsolete name for EUI-48. (Note that while entities with multiple network interfaces may have multiple MAC addresses, there is only one UEID for an entity; changeable MAC addresses that don't meet the permanence requirements in this document <bcp14>MUST NOT</bcp14> be used for the UEID or SUEID) <xref target="IEEE.802-2001"/>, <xref target="OUI.Guide"/>.</c>
      <c>0x03</c>
      <c>IMEI</c>
      <c>This makes use of the International Mobile Equipment Identity (IMEI) scheme operated by the GSMA. This is a 14-digit identifier consisting of an 8-digit Type Allocation Code (TAC) and a 6-digit serial number allocated by the manufacturer, which <bcp14>SHALL</bcp14> be encoded as byte string of length 14 with each byte as the digit's value (not the ASCII encoding of the digit; the digit 3 encodes as 0x03, not 0x33). The IMEI value encoded <bcp14>SHALL NOT</bcp14> include Luhn checksum or SVN information. See <xref target="ThreeGPP.IMEI"/>.</c>
</texttable>

</section>
<section anchor="rules-for-consuming-ueids"><name>Rules for Consuming UEIDs</name>

<t>For the consumer, a UEID is solely a globally unique opaque identifier.
The consumer does not and should not have any awareness of the rules and structure used to achieve global uniqueness.</t>

<t>All implementations <bcp14>MUST</bcp14> be able to receive UEIDs up to 33 bytes long.
33 bytes is the longest defined in this document and gives necessary entropy for probabilistic uniqueness.</t>

<t>The consumer of a UEID <bcp14>MUST</bcp14> treat it as a completely opaque string of bytes and <bcp14>MUST NOT</bcp14> make any use of its internal structure.
The reasons for this are:</t>

<t><list style="symbols">
  <t>UEIDs types vary freely from one manufacturer to the next.</t>
  <t>New types of UEIDs may be defined.</t>
  <t>The manufacturer of an entity is allowed to change from one type of UEID to another anytime they want.</t>
</list></t>

<t>For example, when the consumer receives a type 0x02 UEID, they should not use the OUI part to identify the manufacturer of the device because there is no guarantee all UEIDs will be type 0x02.
Different manufacturers may use different types.
A manufacturer may make some of their product with one type and others with a different type or even change to a different type for newer versions of their product.
Instead, the consumer should use the "oemid" claim.</t>

</section>
</section>
<section anchor="sueids-semi-permanent-ueids-claim-sueids"><name>sueids (Semi-permanent UEIDs) Claim (SUEIDs)</name>

<t>The "sueids" claim conveys one or more semi-permanent UEIDs (SUEIDs). An SUEID has the same format, characteristics and requirements as a UEID, but <bcp14>MAY</bcp14> change to a different value on entity life-cycle events.
An entity <bcp14>MAY</bcp14> have both a UEID and SUEIDs, neither, one or the other.</t>

<t>Examples of life-cycle events are change of ownership, factory reset and on-boarding into an IoT device management system.
It is beyond the scope of this document to specify particular types of SUEIDs and the life-cycle events that trigger their change.
An EAT profile <bcp14>MAY</bcp14> provide this specification.</t>

<t>There <bcp14>MAY</bcp14> be multiple SUEIDs.
Each has a text string label the purpose of which is to distinguish it from others.
The label <bcp14>MAY</bcp14> name the purpose, application or type of the SUEID.
For example, the label for the SUEID used by XYZ Onboarding Protocol could thus be "XYZ".
It is beyond the scope of this document to specify any SUEID labeling schemes.
They are use case specific and <bcp14>MAY</bcp14> be specified in an EAT profile.</t>

<t>If there is only one SUEID, the claim remains a map and there still <bcp14>MUST</bcp14> be a label.</t>

<t>An SUEID provides functionality similar to an IEEE LDevID <xref target="IEEE.802.1AR"/>.</t>

<t>There are privacy considerations for SUEIDs. See <xref target="ueidprivacyconsiderations"/>.</t>

<t>A Device Identifier URN is registered for SUEIDs. See <xref target="registerueidurn"/>.</t>

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

sueids-type = {
    + tstr => ueid-type
}
]]></sourcecode></figure>

</section>
<section anchor="oemid"><name>oemid (Hardware OEM Identification) Claim</name>

<t>The "oemid" claim identifies the Original Equipment Manufacturer (OEM) of the hardware.
Any of the three forms described below <bcp14>MAY</bcp14> be used at the convenience of the claim sender.
The receiver of this claim <bcp14>MUST</bcp14> be able to handle all three forms.</t>

<t>Note that the "hwmodel" claim in <xref target="hwmodel"/>, the "oemboot" claim in <xref target="oemboot"/> and "dbgstat" claim in <xref target="dbgstat"/> depend on this claim.</t>

<t>Sometimes one manufacturer will acquire or merge with another.
Depending on the situation and use case newly manfactured devices may continue to use the old OEM ID or switch to a new one.
This is left to the discretion of the manufacturers, but they should consider how it affects the above-mentioned claims and the attestation eco-system for their devices.
The considerations are the same for all three forms of this claim.</t>

<section anchor="random-number-based-oem-id"><name>Random Number Based OEM ID</name>

<t>The random number based OEM ID <bcp14>MUST</bcp14> always be 16 bytes (128 bits) long.</t>

<t>The OEM may create their own ID by using a cryptographic-quality random number generator.
They would perform this only once in the life of the company to generate the single ID for said company.
They would use that same ID in every entity they make.
This uniquely identifies the OEM on a statistical basis and is large enough should there be ten billion companies.</t>

<t>In JSON-encoded tokens this <bcp14>MUST</bcp14> be base64url-encoded.</t>

</section>
<section anchor="ieee-based-oem-id"><name>IEEE Based OEM ID</name>

<t>The IEEE operates a global registry for MAC addresses and company IDs.
This claim uses that database to identify OEMs. The contents of the
claim may be either an IEEE MA-L, MA-M, MA-S or an IEEE CID
<xref target="IEEE-RA"/>.  An MA-L, formerly known as an OUI, is a 24-bit value
used as the first half of a MAC address. MA-M similarly is a 28-bit
value uses as the first part of a MAC address, and MA-S, formerly
known as OUI-36, a 36-bit value.  Many companies already have purchased
one of these. A CID is also a 24-bit value from the same space as an
MA-L, but not for use as a MAC address.  IEEE has published Guidelines
for Use of EUI, OUI, and CID <xref target="OUI.Guide"/> and provides a lookup
service <xref target="OUI.Lookup"/>.</t>

<t>Companies that have more than one of these IDs or MAC address blocks
<bcp14>SHOULD</bcp14> select one and prefer that for all their entities.</t>

<t>Commonly, these are expressed in Hexadecimal Representation as described in
<xref target="IEEE.802-2001"/>. It is also called the Canonical format. When this claim is
encoded the order of bytes in the bstr are the same as the order in the
Hexadecimal Representation. For example, an MA-L like "AC-DE-48" would
be encoded in 3 bytes with values 0xAC, 0xDE, 0x48.</t>

<t>This format is always 3 bytes in size in CBOR.</t>

<t>In JSON-encoded tokens, this <bcp14>MUST</bcp14> be base64url-encoded and always 4 bytes.</t>

</section>
<section anchor="iana-private-enterprise-number-based-oem-id"><name>IANA Private Enterprise Number Based OEM ID</name>

<t>IANA maintains a registry for Private Enterprise Numbers (PEN) <xref target="PEN"/>. A PEN is an integer that identifies an enterprise and may be
used to construct an object identifier (OID) relative to the following OID arc that is managed by IANA:  iso(1) identified-organization(3) dod(6) internet(1) private(4) enterprise(1).</t>

<t>For EAT purposes, only the integer value assigned by IANA as the PEN is relevant, not the full OID value.</t>

<t>In CBOR this value <bcp14>MUST</bcp14> be encoded as a major type 0 integer and is typically 3 bytes.
In JSON, this value <bcp14>MUST</bcp14> be encoded as a number.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (
    oemid-label => oemid-pen / oemid-ieee / oemid-random
)

oemid-pen = int

oemid-ieee = JC<oemid-ieee-json, oemid-ieee-cbor>
oemid-ieee-cbor = bstr .size 3
oemid-ieee-json = base64-url-text .size 4

oemid-random = JC<oemid-random-json, oemid-random-cbor>
oemid-random-cbor = bstr .size 16
oemid-random-json = base64-url-text .size 24

]]></sourcecode></figure>

</section>
</section>
<section anchor="hwmodel"><name>hwmodel (Hardware Model) Claim</name>

<t>The "hwmodel" claim differentiates hardware models, products and variants manufactured by a particular OEM, the one identified by OEM ID in <xref target="oemid"/>.
It <bcp14>MUST</bcp14> be unique within a given OEM ID.
The concatenation of the OEM ID and "hwmodel" give a global identifier of a particular product.
The "hwmodel" claim <bcp14>MUST</bcp14> only be present if an "oemid" claim described in <xref target="oemid"/> is present.</t>

<t>The granularity of the model identification is for each OEM to decide.
It may be very granular, perhaps including some version information.
It may be very general, perhaps only indicating top-level products.</t>

<t>The "hwmodel" claim is for use in protocols and not for human consumption.
The format and encoding of this claim should not be human-readable to discourage use other than in protocols.
If this claim is to be derived from an already-in-use human-readable identifier, it can be run through a hash function.</t>

<t>There is no minimum length so that an OEM with a very small number of models can use a one-byte encoding.
The maximum length is 32 bytes.
All receivers of this claim <bcp14>MUST</bcp14> be able to receive this maximum size.</t>

<t>The receiver of this claim <bcp14>MUST</bcp14> treat it as a completely opaque string of bytes, even if there is some apparent naming or structure.
The OEM is free to alter the internal structure of these bytes as long as the claim continues to uniquely identify its models.</t>

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

hardware-model-type = JC<base64-url-text .size (4..44),
                         bytes .size (1..32)>
]]></sourcecode></figure>

</section>
<section anchor="hwversion-hardware-version-claim"><name>hwversion (Hardware Version) Claim</name>

<t>The "hwversion" claim is a text string the format of which is set by each manufacturer.
The structure and sorting order of this text string can be specified using the version-scheme item from CoSWID <xref target="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> always be provided.
If any other of these values are unknown, they are omitted.</t>

<t>The location may have been cached for a period of time before token
creation. For example, it might have been minutes or hours or more
since the last contact with a GNSS satellite. Either the timestamp or
age data item can be used to quantify the cached period.  The timestamp
data item is preferred as it a non-relative time.
If the entity has no clock or the clock is unset but has a means to measure the time interval between the acquisition of the location and the token creation the age may be reported instead.
The age is in seconds.</t>

<t>See location-related privacy considerations in <xref target="locationprivacyconsiderations"/>.</t>

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

location-type = {
    latitude => number,
    longitude => number,
    ? altitude => number,
    ? accuracy => number,
    ? altitude-accuracy => number,
    ? heading => number,
    ? speed => number,
    ? timestamp => ~time-int,
    ? age => uint
}

latitude          = JC< "latitude",          1 >
longitude         = JC< "longitude",         2 >
altitude          = JC< "altitude",          3 >
accuracy          = JC< "accuracy",          4 >
altitude-accuracy = JC< "altitude-accuracy", 5 >
heading           = JC< "heading",           6 >
speed             = JC< "speed",             7 >
timestamp         = JC< "timestamp",         8 >
age               = JC< "age",               9 >
]]></sourcecode></figure>

</section>
<section anchor="uptime-uptime-claim"><name>uptime (Uptime) Claim</name>

<t>The "uptime" claim contains the number of seconds that have elapsed since the entity or submodule was last booted.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (uptime-label => uint)
]]></sourcecode></figure>

</section>
<section anchor="bootcount-boot-count-claim"><name>bootcount (Boot Count) Claim</name>

<t>The "bootcount" claim contains a count of the number
times the entity or submodule has been booted. Support for this claim
requires a persistent storage on the device.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (boot-count-label => uint)
]]></sourcecode></figure>

</section>
<section anchor="bootseed-boot-seed-claim"><name>bootseed (Boot Seed) Claim</name>

<t>The "bootseed" claim contains a value created at system boot time that allows differentiation of attestation reports from different boot sessions of a particular entity (e.g., a certain UEID).</t>

<t>This value is usually public.
It is not a secret and <bcp14>MUST NOT</bcp14> be used for any purpose that a secret seed is needed, such as seeding a random number generator.</t>

<t>There are privacy considerations for this claim. See <xref target="bootseedprivacyconsiderations"/>.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //=  (boot-seed-label => binary-data)
]]></sourcecode></figure>

</section>
<section anchor="dloas"><name>dloas (Digital Letters of Approval) Claim</name>

<t>The "dloas" claim conveys one or more Digital Letters of Approval (DLOAs). A DLOA <xref target="DLOA"/> is a document that describes a certification that an entity has received.
Examples of certifications represented by a DLOA include those issued by Global Platform and those based on Common Criteria.
The DLOA is unspecific to any particular certification type or those issued by any particular organization.</t>

<t>This claim is typically issued by a verifier, not an attester.
Verifiers <bcp14>MUST NOT</bcp14> issue this claim unless the entity has received the certification indicated by the DLOA.</t>

<t>This claim <bcp14>MAY</bcp14> contain more than one DLOA.
If multiple DLOAs are present, verifiers <bcp14>MUST NOT</bcp14> issue this claim unless the entity has received all of the certifications.</t>

<t>DLOA documents are always fetched from a registrar that stores them.
This claim contains several data items used to construct a Uniform Resource Locator (URL) for fetching the DLOA from the particular registrar.</t>

<t>This claim <bcp14>MUST</bcp14> be encoded as an array with either two or three elements.
The first element <bcp14>MUST</bcp14> be the URL for the registrar.
The second element <bcp14>MUST</bcp14> be a platform label indicating which platform was certified.
If the DLOA applies to an application, then the third element is added which <bcp14>MUST</bcp14> be an application label.
The method of constructing the registrar URL, platform label and possibly application label is specified in <xref target="DLOA"/>.</t>

<t>The retriever of a DLOA <bcp14>MUST</bcp14> follow the recommendation in <xref target="DLOA"/> and use TLS or some other means to be sure the DLOA registrar they are accessing is authentic.
The platform and application labels in the claim indicate the correct DLOA for the entity.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (
    dloas-label => [ + dloa-type ]
)

dloa-type = [
    dloa_registrar: general-uri
    dloa_platform_label: text 
    ? dloa_application_label: text
]
]]></sourcecode></figure>

</section>
<section anchor="manifests"><name>manifests (Software Manifests) Claim</name>

<t>The "manifests" claim contains descriptions of software present on the entity.
These manifests are installed on the entity when the software is installed or are created as part of the installation process.
Installation is anything that adds software to the entity, possibly factory installation, the user installing elective applications and so on.
The defining characteristic of a manifest is that it is created by the software manufacturer.
The purpose of this claim is to relay unmodified manifests to the verifier and possibly to the relying party.</t>

<t>Some manifests are signed by their software manufacturer independently, and some are not either because they do not support signing or the manufacturer chose not to sign them.
For example, a CoSWID might be signed independently before it is included in an EAT.
When signed manifests are put into an EAT, the manufacturer's signature <bcp14>SHOULD</bcp14> be included even though an EAT's signature will also cover the manifest.
This allows the receiver to directly verify the manufacturer-originated manifest.</t>

<t>This claim allows multiple manifest formats.
For example, the manifest may be a CBOR-encoded CoSWID, an XML-encoded SWID or other.
Identification of the type of manifest is always by a Constrained Application Protocol (CoAP) Content-Format integer <xref target="RFC7252"/>.
If there is no CoAP identifier registered for a manifest format, one <bcp14>MUST</bcp14> be registered.</t>

<t>This claim <bcp14>MUST</bcp14> be an array of one or more manifests.
Each manifest in the claim <bcp14>MUST</bcp14> be an array of two.
The first item in the array of two <bcp14>MUST</bcp14> be an integer CoAP Content-Format identifier.
The second item is <bcp14>MUST</bcp14> be the actual manifest.</t>

<t>In JSON-encoded tokens the manifest, whatever encoding it is, <bcp14>MUST</bcp14> be placed in a text string.
When a non-text encoded manifest like a CBOR-encoded CoSWID is put in a JSON-encoded token, the manifest <bcp14>MUST</bcp14> be base-64 encoded.</t>

<t>This claim allows for multiple manifests in one token since multiple software packages are likely to be present.
The multiple manifests <bcp14>MAY</bcp14> be of different encodings.
In some cases EAT submodules may be used instead of the array structure in this claim for multiple manifests.</t>

<t>A CoSWID manifest <bcp14>MUST</bcp14> be a payload CoSWID, not an evidence CoSWID.
These are defined in <xref target="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, multiple
security-oriented subsystems like a TEE and a Secure Element, and etc. The claims for a subsystem can be grouped together in a submodule.</t>

<t>Submodules may be used in either evidence or attestation results.</t>

<t>Because system architecture will vary greatly from use case to use case, there are no set requirements for what a submodule represents either in evidence or in attestation results.
Profiles, <xref target="profiles"/>, may wish to impose requirements.
An attester that outputs evidence with submodules should document the semantics it associates with particular submodules for the verifier.
Likewise, a verifier that outputs attestation results with submodules should document the semantics it associates with the submodules for the relying party.</t>

<t>A submodule claim is a map that holds some number of submodules.
Each submodule is named by its label in the submodule claim map.
The value of each entry in a submodule may be a Claims-Set, nested token or Detached-Submodule-Digest.
This allows for the submodule to serve as its own attester or not and allows for claims
for each submodule to be represented directly or indirectly, i.e., detached.</t>

<t>A submodule may include a submodule, allowing for arbitrary levels of nesting.
However, submodules do not inherit anything from the containing token and must explicitly include all claims.
Submodules may contain claims that are present in any surrounding token or submodule.
For example, the top-level of the token may have a UEID, a submodule may have a different UEID and a further subordinate submodule may also have a UEID.</t>

<t>The following sub-sections define the three types for representing submodules:</t>

<t><list style="symbols">
  <t>A submodule Claims-Set</t>
  <t>The digest of a detached Claims-Set</t>
  <t>A nested token, which can be any EAT</t>
</list></t>

<t>The Submodule type definition and Nested-Token type definition vary with the type of encoding. The definitions for CBOR-encoded EATs are as follows:</t>

<figure><sourcecode type="CDDL"><![CDATA[
Nested-Token = CBOR-Nested-Token

CBOR-Nested-Token =
    JSON-Token-Inside-CBOR-Token /
    CBOR-Token-Inside-CBOR-Token

CBOR-Token-Inside-CBOR-Token = bstr .cbor $EAT-CBOR-Tagged-Token

JSON-Token-Inside-CBOR-Token = tstr 

$$Claims-Set-Claims //= (submods-label => { + text => Submodule })

Submodule = Claims-Set / CBOR-Nested-Token / 
            Detached-Submodule-Digest
]]></sourcecode></figure>

<t>The Submodule and Nested-Token definitions for JSON-encoded EATs is as below. This difference in definitions vs. CBOR is necessary because JSON has no tag mechanism and no byte string type to help indicate the nested token is CBOR.</t>

<figure><sourcecode type="CDDL"><![CDATA[
Nested-Token = JSON-Selector

JSON-Selector = $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, doesn't require use of a detached EAT bundle.
Any other protocols may be used to convey detached claims sets and the EAT containing the corresponding detached digests.
Detached Claims-Sets must not be modified in transit, else validation will fail.</t>

</section>
<section anchor="Nested-Token"><name>Nested Tokens</name>

<t>The CBOR-Nested-Token and JSON-Selector types provide a means of representing claims from a submodule that has its own attesting environment,
i.e., it has keys distinct from the attester producing the surrounding token. Claims are represented in a signed EAT token.</t>

<t>Inclusion of a signed EAT as a claim cryptographically binds the EAT to the surrounding token.
If it was conveyed in parallel with the surrounding token, there would be no such binding and attackers could substitute a good attestation from another device for the attestation of an errant subsystem.</t>

<t>A nested token need not use the same encoding as the enclosing token.
This enables composite devices to be built without regards to the encoding used by components.
Thus, a CBOR-encoded EAT can have a JSON-encoded EAT as a nested token and vice versa.</t>

</section>
</section>
</section>
<section anchor="claims-describing-the-token"><name>Claims Describing the Token</name>

<t>The claims in this section provide meta data about the token they occur in.
They do not describe the entity. They may appear in evidence or attestation results.</t>

<section anchor="iat-claim"><name>iat (Timestamp) Claim</name>

<t>The "iat" claim defined in CWT and JWT is used to indicate the
date-of-creation of the token, the time at which the claims are
collected and the token is composed and signed.</t>

<t>The data for some claims may be held or cached for some period of
time before the token is created. This period may be long, even
days. Examples are measurements taken at boot or a geographic
position fix taken the last time a satellite signal was received.
There are individual timestamps associated with these claims to
indicate their age is older than the "iat" timestamp.</t>

<t>CWT allows the use of floating-point for this claim. EAT disallows
the use of floating-point. An EAT token <bcp14>MUST NOT</bcp14> contain an "iat" claim in
floating-point format. Any recipient of a token with a floating-point
format "iat" claim <bcp14>MUST</bcp14> consider it an error.</t>

<t>A 64-bit integer representation of the CBOR epoch-based time
<xref target="RFC8949"/> used by this claim can represent a range of +/- 500
billion years, so the only point of a floating-point timestamp is to
have precession greater than one second. This is not needed for EAT.</t>

</section>
<section anchor="profile-claim"><name>eat_profile (EAT Profile) Claim</name>

<t>See <xref target="profiles"/> for the detailed description of an EAT profile.</t>

<t>The "eat_profile" claim identifies an EAT profile by either a Uniform Resource Identifier (URI) or an Object Identifier (OID).
Typically, the URI will reference a document describing the profile.
An OID is just a unique identifier for the profile.
It may exist anywhere in the OID tree.
There is no requirement that the named document be publicly accessible.
The primary purpose of the "eat_profile" claim is to uniquely identify the profile even if it is a private profile.</t>

<t>The OID is always absolute and never relative.</t>

<t>See <xref target="common-types"/> for OID and URI encoding.</t>

<figure><sourcecode type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (profile-label => general-uri / general-oid)
]]></sourcecode></figure>

</section>
<section anchor="intuse-intended-use-claim"><name>intuse (Intended Use) Claim</name>

<t>EATs may be employed in the context of several different applications.  The "intuse"
claim provides an indication to an EAT consumer about  the intended usage
of the token. This claim can be used as a way for an application using EAT to internally distinguish between different ways it utilizes EAT.
5 possible values for "intuse" are currently defined, but an IANA registry can be created in the future to extend these values  based on new use cases of EAT.</t>

<dl>
  <dt>1 -- Generic:</dt>
  <dd>
    <t>Generic attestation describes an application where the EAT consumer
requires the most up-to-date security assessment of the attesting entity. It
is expected that this is the most commonly-used application of EAT.</t>
  </dd>
  <dt>2-- Registration:</dt>
  <dd>
    <t>Entities that are registering for a new service may be expected to
provide an attestation as part of the registration process.  This "intuse"
setting indicates that the attestation is not intended for any use but registration.</t>
  </dd>
  <dt>3 -- Provisioning:</dt>
  <dd>
    <t>Entities may be provisioned with different values or settings by an EAT
consumer.  Examples include key material or device management trees.  The consumer
may require an EAT to assess entity security state of the entity prior to provisioning.</t>
  </dd>
  <dt>4 -- Certificate Issuance:</dt>
  <dd>
    <t>Certification Authorities (CAs) may require attestation results (which in a background check model might require receiving evidence to be passed to a verifier) to make decisions about the issuance of certificates.
An EAT may be used as part of the certificate signing request (CSR).</t>
  </dd>
  <dt>5 -- Proof-of-Possession:</dt>
  <dd>
    <t>An EAT consumer may require an attestation as part of an accompanying
proof-of-possession (PoP) application. More precisely, a PoP transaction is intended
to provide to the recipient cryptographically-verifiable proof that the sender has possession
of a key.  This kind of attestation may be necessary to verify the
security state of the entity storing the private key used in a PoP application.</t>
  </dd>
</dl>

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

intended-use-type = generic /
                    registration / 
                    provisioning / 
                    csr /
                    pop

generic      = JC< "generic",      1 >
registration = JC< "registration", 2 >
provisioning = JC< "provisioning", 3 >
csr          = JC< "csr",          4 >
pop          = JC< "pop",          5 >
]]></sourcecode></figure>

</section>
</section>
</section>
<section anchor="DEB"><name>Detached EAT Bundles</name>

<t>A detached EAT bundle is a message to convey an EAT plus detached claims sets secured by that EAT.
It is a top-level message like a CWT or JWT.
It can occur in any place that a CWT or JWT occurs, for example as a submodule nested token as defined in <xref target="Nested-Token"/>.</t>

<t>A detached EAT bundle may be either CBOR or JSON-encoded.</t>

<t>A detached EAT bundle consists of two parts.</t>

<t>The first part is an encoded EAT as follows:</t>

<t><list style="symbols">
  <t><bcp14>MUST</bcp14> have at least one submodule that is a detached submodule digest as defined in <xref target="Detached-Submodule-Digest"/></t>
  <t><bcp14>MAY</bcp14> be either CBOR or JSON-encoded and doesn't have to the the same as the encoding of the bundle</t>
  <t><bcp14>MAY</bcp14> be a CWT, or JWT or some future-defined token type, but <bcp14>MUST NOT</bcp14> be a detached EAT bundle</t>
  <t><bcp14>MUST</bcp14> be authenticity and integrity protected</t>
</list></t>

<t>The same mechanism for distinguishing the type for nested token submodules is employed here.</t>

<t>The second part is a map/object as follows:</t>

<t><list style="symbols">
  <t><bcp14>MUST</bcp14> be a Claims-Set</t>
  <t><bcp14>MUST</bcp14> use the same encoding as the bundle</t>
  <t><bcp14>MUST</bcp14> be wrapped in a byte string when the encoding is CBOR and be base64url-encoded when the encoding is JSON</t>
</list></t>

<t>For CBOR-encoded detached EAT bundles, tag 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 doesn't require a particular set of cryptographic algorithms so as to accommodate different usage scenarios and evolution of algorithms over time.
Section 10 of <xref target="RFC9052"/> describes the profiling considerations for COSE.</t>

<t>The use of encryption is optional for both CWT and JWT.
Section 8 of <xref target="RFC7519"/> describes implementation requirement and recommendations for JWT.</t>

<t>Similarly, CBOR provides indefinite length encoding, which is not commonly used, but valuable for very constrained devices.
For EAT itself, in a particular use case some claims will be used and others will not.
Section 4 of <xref target="RFC8949"/> describes serialization considerations for CBOR.</t>

<t>For example a mobile phone use case may require the device make and model, and prohibit UEID and location for privacy reasons.
The general EAT standard retains all this flexibility because it too is aimed to accommodate a broad range of use cases.</t>

<t>It is necessary to explicitly narrow these implementation options to guarantee interoperability.
EAT chooses one general and explicit mechanism, the profile, to indicate the choices made for these implementation options for all aspects of the token.</t>

<t>Below is a list of the various issues that should be addressed by a profile.</t>

<t>The "eat_profile" claim in <xref target="profile-claim"/> provides a unique identifier for the profile a particular token uses.</t>

<t>A profile can apply to evidence or to attestation results or both.</t>

<section anchor="format-of-a-profile-document"><name>Format of a Profile Document</name>

<t>A profile document doesn't have to be in any particular format. It may be simple text, something more formal or a combination.</t>

<t>A profile may define, and possibly register, one or more new claims if needed. A profile may also reuse one or more already defined claims, either as-is or with values constrained to a subset or subrange.</t>

</section>
<section anchor="full-and-partial-profiles"><name>Full and Partial Profiles</name>

<t>For a "full" profile, the receiver will be able to decode and verify every possible EAT sent when a sender and receiver both adhere to it.
For a "partial" profile, there are still some protocol options left undecided.</t>

<t>For example, a profile that allows the use of signing algorithms by the sender that the receiver is not required to support is a partial profile.
The sender might choose a signing algorithm that some receivers don't support.</t>

<t>Full profiles <bcp14>MUST</bcp14> be complete such that a complying receiver can decode, verify and check for freshness every EAT created by a complying sender.
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 don't have to be standards track and don't have to be registered anywhere.
For example, flexibility for post-quantum algorithms can be handled as follows.
First, define a full profile for a set of non-post-quantum algorithms for current use.
Then, when post-quantum algorithms are settled, define another full profile derived from the first.</t>

</section>
<section anchor="list-of-profile-issues"><name>List of Profile Issues</name>

<t>The following is a list of EAT, CWT, JWT, COSE, JOSE and CBOR options that a profile should address.</t>

<section anchor="use-of-json-cbor-or-both"><name>Use of JSON, CBOR or both</name>

<t>A profile should specify whether CBOR, JSON or both may be sent.
A profile should specify that the receiver can accept all encodings that the sender is allowed to send.</t>

<t>This should be specified for the top-level and all nested tokens.
For example, a profile might require all nested tokens to be of the same encoding of the top level token.</t>

</section>
<section anchor="cbor-map-and-array-encoding"><name>CBOR Map and Array Encoding</name>

<t>A profile should specify whether definite-length arrays/maps, indefinite-length arrays/maps or both may be sent.
A profile should specify that the receiver be able to accept all length encodings that the sender is allowed to send.</t>

<t>This applies to individual EAT claims, CWT and COSE parts of the implementation.</t>

<t>For most use cases, specifying that only definite-length arrays/maps may be sent is suitable.</t>

</section>
<section anchor="cbor-string-encoding"><name>CBOR String Encoding</name>

<t>A profile should specify whether definite-length strings, indefinite-length strings or both may be sent.
A profile should specify that the receiver be able to accept all types of string encodings that the sender is allowed to send.</t>

<t>For most use cases, specifying that only definite-length strings may be sent is suitable.</t>

</section>
<section anchor="cbor-preferred-serialization"><name>CBOR Preferred Serialization</name>

<t>A profile should specify whether or not CBOR preferred serialization must be sent or not.
A profile should specify the receiver be able to accept preferred and/or non-preferred serialization so it will be able to accept anything sent by the sender.</t>

</section>
<section anchor="cbor-tags"><name>CBOR Tags</name>

<t>The profile should specify whether the token should be a CWT Tag or not.</t>

<t>When COSE protection is used, the profile should specify whether COSE tags are used or not.
Note that RFC 8392 requires COSE tags be used in a CWT tag.</t>

<t>Often a tag is unnecessary because the surrounding or carrying protocol identifies the object as an EAT.</t>

</section>
<section anchor="message-type"><name>COSE/JOSE Protection</name>

<t>COSE and JOSE have several options for signed, MACed and encrypted messages.
JWT may use the JOSE NULL protection option.
It is possible to implement no protection, sign only, MAC only, sign then encrypt and so on.
All combinations allowed by COSE, JOSE, JWT, and CWT are allowed by EAT.</t>

<t>A profile should specify all signing, encryption and MAC message formats that may be sent.
For example, a profile might allow only COSE_Sign1 to be sent.
For another example, a profile might allow COSE_Sign and COSE_Encrypt to be sent to carry multiple signatures for post quantum cryptography and to use encryption to provide confidentiality.</t>

<t>A profile should specify the receiver accepts all message formats that are allowed to be sent.</t>

<t>When both signing and encryption are allowed, a profile should specify which is applied first.</t>

</section>
<section anchor="cosejose-algorithms"><name>COSE/JOSE Algorithms</name>

<t>See the section on "Application Profiling Considerations" in <xref target="RFC9052"/> for a discussion on selection of cryptographic algorithms and related issues.</t>

<t>The profile <bcp14>MAY</bcp14> require the protocol or system using EAT 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 doesn't understand.</c>
</texttable>

<t>Any profile with different requirements than those above <bcp14>MUST</bcp14> have a different profile identifier.</t>

<t>Note that many claims can be present for tokens conforming to this profile, even claims not defined in this document.
Note also that even slight deviation from the above requirements is considered a different profile that <bcp14>MUST</bcp14> have a different identifier.
For example, if a kid (key identifier) or UEID is not used for key identification, it is not in conformance with this profile.
For another example, requiring the presence of some claim is also not in conformance and requires another profile.</t>

<t>Derivations of this profile are encouraged.
For example another profile may be simply defined as The Constrained Device Standard Profile plus the requirement for the presence of claim xxxx and claim yyyy.</t>

</section>
</section>
<section anchor="encoding"><name>Encoding and Collected CDDL</name>

<t>An EAT is fundamentally defined using CDDL.
This document specifies how to encode the CDDL in CBOR or JSON.
Since CBOR can express some things that JSON can't (e.g., tags) or that are expressed differently (e.g., labels) there is some CDDL that is specific to the encoding.</t>

<section anchor="claims-set-and-cddl-for-cwt-and-jwt"><name>Claims-Set and CDDL for CWT and JWT</name>

<t>CDDL was not used to define CWT or JWT.
It was not available at the time.</t>

<t>This document defines CDDL for both CWT and JWT.
This document does not change the encoding or semantics of anything in a CWT or JWT.</t>

<t>A Claims-Set is the central data structure for EAT, CWT and JWT.
It holds all the claims and is the structure that is secured by signing or other means.
It is not possible to define EAT, CWT, or JWT in CDDL without it.
The CDDL definition of Claims-Set here is applicable to EAT, CWT and JWT.</t>

<t>This document specifies how to encode a Claims-Set in CBOR or JSON.</t>

<t>With the exception of nested tokens and some other externally defined structures (e.g., SWIDs) an entire Claims-Set must be in encoded in either CBOR or JSON, never a mixture.</t>

<t>CDDL for the seven claims defined by <xref target="RFC8392"/> and <xref target="RFC7519"/> is included here.</t>

</section>
<section anchor="encoding-data-types"><name>Encoding Data Types</name>

<t>This makes use of the types defined in <xref target="RFC8610"/> Appendix D, Standard Prelude.</t>

<section anchor="common-types"><name>Common Data Types</name>

<t>time-int is identical to the epoch-based time, but disallows
floating-point representation.</t>

<t>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 doesn't define Submodule or nested tokens because the definition for these types varies between CBOR and JSON and the JC&lt;&gt; generic can't be used to define it.
The submodule claim is the one place where a CBOR token can be nested inside a JSON token and vice versa.
Encoding-specific definitions are provided in the following sections.</t>

<figure><sourcecode type="CDDL"><![CDATA[
time-int = #6.1(int)

binary-data = JC< base64-url-text, bstr>

base64-url-text = tstr .regexp "[A-Za-z0-9_-]+"

general-oid = JC< json-oid, ~oid >

json-oid = tstr .regexp "([0-2])((\\.0)|(\\.[1-9][0-9]*))*"

general-uri = JC< text, ~uri >

coap-content-format = uint .le 65535


$$Claims-Set-Claims //= 
    (nonce-label => nonce-type / [ 2* nonce-type ])

nonce-type = JC< tstr .size (8..88), bstr .size (8..64)>


$$Claims-Set-Claims //= (ueid-label => ueid-type)

ueid-type = JC<base64-url-text .size (10..44) , bstr .size (7..33)>

$$Claims-Set-Claims //= (sueids-label => sueids-type)

sueids-type = {
    + tstr => ueid-type
}

$$Claims-Set-Claims //= (
    oemid-label => oemid-pen / oemid-ieee / oemid-random
)

oemid-pen = int

oemid-ieee = JC<oemid-ieee-json, oemid-ieee-cbor>
oemid-ieee-cbor = bstr .size 3
oemid-ieee-json = base64-url-text .size 4

oemid-random = JC<oemid-random-json, oemid-random-cbor>
oemid-random-cbor = bstr .size 16
oemid-random-json = base64-url-text .size 24


$$Claims-Set-Claims //=  (
    hardware-version-label => hardware-version-type
)

hardware-version-type = [
    version:  tstr,
    ? scheme:  $version-scheme
]

$$Claims-Set-Claims //= (
    hardware-model-label => hardware-model-type
)

hardware-model-type = JC<base64-url-text .size (4..44),
                         bytes .size (1..32)>

$$Claims-Set-Claims //= ( sw-name-label => tstr )

$$Claims-Set-Claims //= (sw-version-label => sw-version-type)

sw-version-type = [
    version:  tstr
    ? scheme:  $version-scheme 
]

$$Claims-Set-Claims //= (oem-boot-label => bool)

$$Claims-Set-Claims //= ( debug-status-label => debug-status-type )

debug-status-type = ds-enabled /
                    disabled /
                    disabled-since-boot /
                    disabled-permanently /
                    disabled-fully-and-permanently

ds-enabled                     = JC< "enabled", 0 >
disabled                       = JC< "disabled", 1 >
disabled-since-boot            = JC< "disabled-since-boot", 2 >
disabled-permanently           = JC< "disabled-permanently", 3 >
disabled-fully-and-permanently = 
                       JC< "disabled-fully-and-permanently", 4 >

$$Claims-Set-Claims //= (location-label => location-type)

location-type = {
    latitude => number,
    longitude => number,
    ? altitude => number,
    ? accuracy => number,
    ? altitude-accuracy => number,
    ? heading => number,
    ? speed => number,
    ? timestamp => ~time-int,
    ? age => uint
}

latitude          = JC< "latitude",          1 >
longitude         = JC< "longitude",         2 >
altitude          = JC< "altitude",          3 >
accuracy          = JC< "accuracy",          4 >
altitude-accuracy = JC< "altitude-accuracy", 5 >
heading           = JC< "heading",           6 >
speed             = JC< "speed",             7 >
timestamp         = JC< "timestamp",         8 >
age               = JC< "age",               9 >

$$Claims-Set-Claims //= (uptime-label => uint)

$$Claims-Set-Claims //=  (boot-seed-label => binary-data)

$$Claims-Set-Claims //= (boot-count-label => uint)

$$Claims-Set-Claims //= ( intended-use-label => intended-use-type )

intended-use-type = generic /
                    registration / 
                    provisioning / 
                    csr /
                    pop

generic      = JC< "generic",      1 >
registration = JC< "registration", 2 >
provisioning = JC< "provisioning", 3 >
csr          = JC< "csr",          4 >
pop          = JC< "pop",          5 >

$$Claims-Set-Claims //= (
    dloas-label => [ + dloa-type ]
)

dloa-type = [
    dloa_registrar: general-uri
    dloa_platform_label: text 
    ? dloa_application_label: text
]

$$Claims-Set-Claims //= (profile-label => general-uri / general-oid)

$$Claims-Set-Claims //= (
    manifests-label => manifests-type
)

manifests-type = [+ manifest-format]

manifest-format = [
    content-type:   coap-content-format,
    content-format: JC< $manifest-body-json,
                        $manifest-body-cbor >
]

$manifest-body-cbor /= bytes .cbor untagged-coswid
$manifest-body-json /= base64-url-text


$$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 that happen to be from a particular entity will be
able to know the tokens are  from the same entity and be able to
identify the entity issuing those tokens.</t>

<t>Thus the use of the claim may violate privacy policies. In other usage situations a UEID will
not be allowed for certain products like browsers that give privacy
for the end user. It will often be the case that tokens will not have
a UEID for these reasons.</t>

<t>An SUEID is also usually not privacy-preserving.  In some cases it may
have fewer privacy issues than a UEID depending on when and how and
when it is generated.</t>

<t>There are several strategies that can be used to still be able to put
UEIDs and SUEIDs in tokens:</t>

<t><list style="symbols">
  <t>The entity obtains explicit permission from the user of the entity
to use the UEID/SUEID. This may be through a prompt. It may also be through
a license agreement.  For example, agreements for some online banking
and brokerage services might already cover use of a UEID/SUEID.</t>
  <t>The UEID/SUEID is used only in a particular context or particular use
case. It is used only by one relying party.</t>
  <t>The entity authenticates the relying party and generates a derived
UEID/SUEID just for that particular relying party.  For example, the relying
party could prove their identity cryptographically to the entity, then
the entity generates a UEID just for that relying party by hashing a
proofed relying party ID with the main entity UEID/SUEID.</t>
</list></t>

<t>Note that some of these privacy preservation strategies result in
multiple UEIDs and SUEIDs per entity. Each UEID/SUEID is used in a
different context, use case or system on the entity. However, from the
view of the relying party, there is just one UEID and it is still
globally universal across manufacturers.</t>

</section>
<section anchor="locationprivacyconsiderations"><name>Location Privacy Considerations</name>

<t>Geographic location is most always considered personally identifiable information.
Implementers should consider laws and regulations governing the transmission of location data from end user devices to servers and services.
Implementers should consider using location management facilities offered by the operating system on the entity generating the attestation.
For example, many mobile phones prompt the user for permission before sending location data.</t>

</section>
<section anchor="bootseedprivacyconsiderations"><name>Boot Seed Privacy Considerations</name>

<t>The "bootseed" claim is effectively a stable entity identifier within a given boot epoch.  Therefore, it is not suitable for use in attestation schemes that are privacy-preserving.</t>

</section>
<section anchor="replayprivacyconsiderations"><name>Replay Protection and Privacy</name>

<t>EAT defines the EAT nonce claim for replay protection and token freshness.
The nonce claim is based on a value usually derived remotely (outside of the entity).
This claim might be used to extract and convey personally identifying information either inadvertently or by intention.
For instance, an implementor may choose a nonce equivalent to a username associated with the device (e.g., account login).
If the token is inspected by a 3rd-party then this information could be used to identify the source of the token or an account associated with the token.
To avoid the conveyance of privacy-related information in the nonce claim, it should be derived using a salt that originates from a true and reliable random number generator or any other source of randomness that would still meet the target system requirements for replay protection and token freshness.</t>

</section>
</section>
<section anchor="securitycons"><name>Security Considerations</name>

<t>The security considerations provided in Section 8 of <xref target="RFC8392"/> and Section 11
of <xref target="RFC7519"/> apply to EAT in its CWT and JWT form, respectively.  Moreover, Chapter 12
of <xref target="RFC9334"/> is also applicable to implementations of EAT.  In addition,
implementors should consider the following.</t>

<section anchor="claim-trustworthiness"><name>Claim Trustworthiness</name>

<t>This specification defines semantics for each claim.
It does not require any particular level of security in the implementation of the claims or even the attester itself.
Such specification is far beyond the scope of this document which is about a message format not the security level of an implementation.</t>

<t>The receiver of an EAT comes to know the trustworthiness of the claims in it by understanding the implementation made by the attester vendor and/or understanding the checks and processing performed by the verifier.</t>

<t>For example, this document says that a UEID is permanent and that it must not change, but it doesn't say what degree of attack to change it must be defended.</t>

<t>The degree of security will vary from use case to use case.
In some cases the receiver may only need to know something of the implementation such as that it was implemented in a TEE.
In other cases the receiver may require the attester be certified by a particular certification program.
Or perhaps the receiver is content with very little security.</t>

</section>
<section anchor="key-provisioning"><name>Key Provisioning</name>

<t>Private key material can be used to sign and/or encrypt the EAT, or
can be used to derive the keys used for signing and/or encryption.  In
some instances, the manufacturer of the entity may create the key
material separately and provision the key material in the entity
itself.  The manufacturer of any entity that is capable of producing
an EAT should take care to ensure that any private key material be
suitably protected prior to provisioning the key material in the
entity itself.  This can require creation of key material in an
enclave (see <xref target="RFC4949"/> for definition of "enclave"), secure
transmission of the key material from the enclave to the entity using
an appropriate protocol, and persistence of the private key material
in some form of secure storage to which (preferably) only the entity
has access.</t>

<section anchor="transmission-of-key-material"><name>Transmission of Key Material</name>

<t>Regarding transmission of key material from the enclave to the entity,
the key material may pass through one or more intermediaries.
Therefore some form of protection ("key wrapping") may be necessary.
The transmission itself may be performed electronically, but can also
be done by human courier.  In the latter case, there should be minimal
to no exposure of the key material to the human (e.g. encrypted
portable memory).  Moreover, the human should transport the key
material directly from the secure enclave where it was created to a
destination secure enclave where it can be provisioned.</t>

</section>
</section>
<section anchor="sec-con-freshness"><name>Freshness</name>

<t>All EAT use <bcp14>MUST</bcp14> provide a freshness mechanism to prevent replay and related attacks.
The extensive discussions on freshness in <xref target="RFC9334"/> including security considerations apply here.
The EAT nonce claim, in <xref target="nonce"/>, is one option to provide freshness.</t>

</section>
<section anchor="multiple-eat-consumers"><name>Multiple EAT Consumers</name>

<t>In many cases, more than one EAT consumer may be required to fully
verify the entity attestation.  Examples include individual consumers
for nested EATs, or consumers for individual claims with an EAT.  When
multiple consumers are required for verification of an EAT, it is
important to minimize information exposure to each consumer.  In
addition, the communication between multiple consumers should be
secure.</t>

<t>For instance, consider the example of an encrypted and signed EAT with
multiple claims.  A consumer may receive the EAT (denoted as the
"receiving consumer"), decrypt its payload, verify its signature, but
then pass specific subsets of claims to other consumers for evaluation
("downstream consumers").  Since any COSE encryption will be removed
by the receiving consumer, the communication of claim subsets to any
downstream consumer <bcp14>MUST</bcp14> leverage an equivalent communication security protocol
(e.g. Transport Layer Security).</t>

<t>However, assume the EAT of the previous example is hierarchical and
each claim subset for a downstream consumer is created in the form of
a nested EAT.  Then the nested EAT is itself encrypted and cryptographically verifiable (due to its
COSE envelope)
by a downstream consumer (unlike the previous example where a claims set
without a COSE envelope is sent to a downstream consumer).  Therefore, Transport Layer Security between the receiving and
downstream consumers is not strictly required.  Nevertheless,
downstream consumers of a nested EAT should provide a nonce unique to
the EAT they are consuming.</t>

</section>
<section anchor="detached-eat-bundle-digest-security-considerations"><name>Detached EAT Bundle Digest Security Considerations</name>

<t>A detached EAT bundle is composed of a nested EAT and
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>


  </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='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-09'>
   <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='4' month='March' 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-09'/>
   
</reference>


<reference anchor='UCCS' target='https://datatracker.ietf.org/doc/html/draft-ietf-rats-uccs-09'>
   <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='March' 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-09'/>
   
</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-07'>
   <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='2' month='April' 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-07'/>
   
</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
CPUs and hardware. This hardware was introduced between 2010 and 2015.
Operating systems and cryptographic libraries give access to this
hardware. Consequently, there is little need for implementations
to construct such random values from multiple sources on their own.</t>

<t>Version 4 UUIDs do allow for use of such cryptographic-quality
random numbers, but do so by mapping into the overall UUID
structure of time and clock values. This structure is of no
value here yet adds complexity. It also slightly reduces the
number of actual bits with entropy.</t>

<t>The design of UUID accommodates the construction of a unique identifier by combination of several identifiers that separately do not provide sufficient uniqueness.
UEID takes the view that this construction is no longer needed, in particular because cryptographic-quality random number generators are readily available.
It takes the view that hardware, software and/or manufacturing process implement UEID in a simple and direct way.</t>

<t>Note also that that a type 2 UEID (EUI/MAC) is only 7 bytes compared to 16 for a UUID.</t>

</section>
</section>
<section anchor="eat-relation-to-ieee8021ar-secure-device-identity-devid"><name>EAT Relation to IEEE.802.1AR Secure Device Identity (DevID)</name>

<t>This section describes several distinct ways in which an IEEE IDevID <xref target="IEEE.802.1AR"/> relates to EAT, particularly to UEID and SUEID.</t>

<t><xref target="IEEE.802.1AR"/> orients around the definition of an implementation called a "DevID Module."
It describes how IDevIDs and LDevIDs are stored, protected and accessed using a DevID Module.
A particular level of defense against attack that should be achieved to be a DevID is defined.
The intent is that IDevIDs and LDevIDs can be used with any network protocol or message format.
In these protocols and message formats the DevID secret is used to sign a nonce or similar to prove the association of the DevID certificates with the device.</t>

<t>By contrast, EAT standardizes a message format that is sent to a relying party, the very thing that is not defined in <xref target="IEEE.802.1AR"/>.
Nor does EAT give details on how keys, data and such are stored protected and accessed.
EAT is intended to work with a variety of different on-device implementations ranging from minimal protection of assets to the highest levels of asset protection.
It does not define any particular level of defense against attack, instead providing a set of security considerations.</t>

<t>EAT and DevID can be viewed as complimentary when used together or as competing to provide a device identity service.</t>

<section anchor="devid-used-with-eat"><name>DevID Used With EAT</name>

<t>As just described, EAT standardizes a message format and <xref target="IEEE.802.1AR"/> doesn't.
Vice versa, EAT doesn't define a an device implementation, but DevID does.</t>

<t>Hence, EAT can be the message format that a DevID is used with.
The DevID secret becomes the attestation key used to sign EATs.
The DevID and its certificate chain become the endorsement sent to the verifier.</t>

<t>In this case, the EAT and the DevID are likely to both provide a device identifier (e.g. a serial number).
In the EAT it is the UEID (or SUEID).
In the DevID (used as an endorsement), it is a device serial number included in the subject field of the DevID certificate.
It is probably a good idea in this use for them to be the same serial number or for the UEID to be a hash of the DevID serial number.</t>

</section>
<section anchor="how-eat-provides-an-equivalent-secure-device-identity"><name>How EAT Provides an Equivalent Secure Device Identity</name>

<t>The UEID, SUEID and other claims like OEM ID are equivalent to the secure device identity put into the subject field of a DevID certificate.
These EAT claims can represent all the same fields and values that can be put in a DevID certificate subject.
EAT explicitly and carefully defines a variety of useful claims.</t>

<t>EAT secures the conveyance of these claims by having them signed on the device by the attestation key when the EAT is generated.
EAT also signs the nonce that gives freshness at this time.
Since these claims are signed for every EAT generated, they can include things that vary over time like GPS location.</t>

<t>DevID secures the device identity fields by having them signed by the manufacturer of the device sign them into a certificate.
That certificate is created once during the manufacturing of the device and never changes so the fields cannot change.</t>

<t>So in one case the signing of the identity happens on the device and the other in a manufacturing facility,
but in both cases the signing of the nonce that proves the binding to the actual device happens on the device.</t>

<t>While EAT does not specify how the signing keys, signature process and storage of the identity values should be secured against attack,
an EAT implementation may have equal defenses against attack.
One reason EAT uses CBOR is because it is simple enough that a basic EAT implementation can be constructed entirely in hardware.
This allows EAT to be implemented with the strongest defenses possible.</t>

</section>
<section anchor="an-x509-format-eat"><name>An X.509 Format EAT</name>

<t>It is possible to define a way to encode EAT claims in an X.509 certificate.
For example, the EAT claims might be mapped to X.509 v3 extensions.
It is even possible to stuff a whole CBOR-encoded unsigned EAT token into a X.509 certificate.</t>

<t>If that X.509 certificate is an IDevID or LDevID, this becomes another way to use EAT and DevID together.</t>

<t>Note that the DevID must still be used with an authentication protocol that has a nonce or equivalent.
The EAT here is not being used as the protocol to interact with the rely party.</t>

</section>
<section anchor="device-identifier-permanence"><name>Device Identifier Permanence</name>

<t>In terms of permanence, an IDevID is similar to a UEID in that they do not change over the life of the device.
They cease to exist only when the device is destroyed.</t>

<t>An SUEID is similar to an LDevID.
They change on device life-cycle events.</t>

<t><xref target="IEEE.802.1AR"/> describes much of this permanence as resistant to attacks that seek to change the ID.
IDevID permanence can be described this way because <xref target="IEEE.802.1AR"/> is oriented around the definition of an implementation with a particular level of defense against attack.</t>

<t>EAT is not defined around a particular implementation and must work on a range of devices that have a range of defenses against attack.
EAT thus can't be defined permanence in terms of defense against attack.
EAT's definition of permanence is in terms of operations and device lifecycle.</t>

</section>
</section>
<section anchor="CDDL_for_CWT"><name>CDDL for CWT and JWT</name>

<t><xref target="RFC8392"/> was published before CDDL was available and thus is specified in prose, not CDDL.
Following is CDDL specifying CWT as it is needed to complete this specification.
This CDDL also covers the Claims-Set for JWT.</t>

<t>Note that <xref target="iat-claim"/> requires that the iat claim be the type ~time-int (<xref target="common-types"/>), not the type ~time when it is used in an EAT as floating-point values are not allowed for the "iat" claim in EAT.</t>

<t>The COSE-related types in this CDDL are defined in <xref target="RFC9052"/>.</t>

<t>This however is NOT a normative or standard definition of CWT or JWT in CDDL.
The prose in CWT and JWT remain the normative definition.</t>

<figure><sourcecode type="CDDL"><![CDATA[
; This is replicated from draft-ietf-rats-uccs

Claims-Set = {
    * $$Claims-Set-Claims
    * Claim-Label .feature "extended-claims-label" => any
}
Claim-Label = int / text
string-or-uri = text

$$Claims-Set-Claims //= ( iss-claim-label => string-or-uri  )
$$Claims-Set-Claims //= ( sub-claim-label => string-or-uri  )
$$Claims-Set-Claims //= ( aud-claim-label => string-or-uri  )
$$Claims-Set-Claims //= ( exp-claim-label => ~time )
$$Claims-Set-Claims //= ( nbf-claim-label => ~time )
$$Claims-Set-Claims //= ( iat-claim-label => ~time )
$$Claims-Set-Claims //= ( cti-claim-label => bytes )

iss-claim-label = JC<"iss", 1>
sub-claim-label = JC<"sub", 2>
aud-claim-label = JC<"aud", 3>
exp-claim-label = JC<"exp", 4>
nbf-claim-label = JC<"nbf", 5>
iat-claim-label = JC<"iat", 6>
cti-claim-label = CBOR-ONLY<7>  ; jti in JWT: different name and text

JSON-ONLY<J> = J .feature "json"
CBOR-ONLY<C> = C .feature "cbor"

JC<J,C> = JSON-ONLY<J> / CBOR-ONLY<C>

; 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 registriy exclusively for EAT claims.
This is not an update to the expert review criteria for the JWT and CWT claims registries as that would be an overreach for this document.</t>

<section anchor="interoperability-and-relying-party-orientation"><name>Interoperability and Relying Party Orientation</name>

<t>It is a broad goal that EATs can be processed by relying parties in a general way regardless of the type, manufacturer or technology of the device from which they originate.
It is a goal that there be general-purpose verification implementations that can verify tokens for large numbers of use cases with special cases and configurations for different device types.
This is a goal of interoperability of the semantics of claims themselves, not just of the signing, encoding and serialization formats.</t>

<t>This is a lofty goal and difficult to achieve broadly requiring careful definition of claims in a technology neutral way.
Sometimes it will be difficult to design a claim that can represent the semantics of data from very different device types.
However, the goal remains even when difficult.</t>

</section>
<section anchor="operating-system-and-technology-neutral"><name>Operating System and Technology Neutral</name>

<t>Claims should be defined such that they are not specific to an operating system.
They should be applicable to multiple large high-level operating systems from different vendors.
They should also be applicable to multiple small embedded operating systems from multiple vendors and everything in between.</t>

<t>Claims should not be defined such that they are specific to a software environment or programming language.</t>

<t>Claims should not be defined such that they are specific to a chip or particular hardware.
For example, they should not just be the contents of some HW status register as it is unlikely that the same HW status register with the same bits exists on a chip of a different manufacturer.</t>

<t>The boot and debug state claims in this document are an example of a claim that has been defined in this neutral way.</t>

</section>
<section anchor="security-level-neutral"><name>Security Level Neutral</name>

<t>Many use cases will have EATs generated by some of the most secure hardware and software that exists.
Secure Elements and smart cards are examples of this.
However, EAT is intended for use in low-security use cases the same as high-security use case.
For example, an app on a mobile device may generate EATs on its own.</t>

<t>Claims should be defined and registered on the basis of whether they are useful and interoperable, not based on security level.
In particular, there should be no exclusion of claims because they are just used only in low-security environments.</t>

</section>
<section anchor="reuse-of-extant-data-formats"><name>Reuse of Extant Data Formats</name>

<t>Where possible, claims should use already standardized data items, identifiers and formats.
This takes advantage of the expertise put into creating those formats and improves interoperability.</t>

<t>Often extant claims will not be defined in an encoding or serialization format used by EAT.
It is preferred to define a CBOR and JSON encoding for them so that EAT implementations do not require a plethora of encoders and decoders for serialization formats.</t>

<t>In some cases, it may be better to use the encoding and serialization as is.
For example, signed X.509 certificates and CRLs can be carried as-is in a byte string.
This retains interoperability with the extensive infrastructure for creating and processing X.509 certificates and CRLs.</t>

</section>
<section anchor="proprietary-claims"><name>Proprietary Claims</name>

<t>It is not always possible or convenient to achieve the above goals, so the definition and use of proprietary claims is an option.</t>

<t>For example, a device manufacturer may generate a token with proprietary claims intended only for verification by a service offered by that device manufacturer.
This is a supported use case.</t>

<t>In many cases proprietary claims will be the easiest and most obvious way to proceed, however for better interoperability, use of general standardized claims is preferred.</t>

</section>
</section>
<section anchor="keyid"><name>Endorsements and Verification Keys</name>

<t>The verifier must possess the correct key when it performs the cryptographic part of an EAT verification (e.g., verifying the COSE/JOSE signature).
This section describes several ways to identify the verification key.
There is not one standard method.</t>

<t>The verification key itself may be a public key, a symmetric key or something complicated in the case of a scheme like Direct Anonymous Attestation (DAA).</t>

<t>RATS Architecture <xref target="RFC9334"/> describes what is called an endorsement.
This is an input to the verifier that is usually the basis of the trust placed in an EAT and the attester that generated it.
It may contain the public key for verification of the signature on the EAT.
It may contain implied claims, those that are passed on to the relying party in attestation results.</t>

<t>There is not yet any standard format(s) for an endorsement.
One format that may be used for an endorsement is an X.509 certificate.
Endorsement data like reference values and implied claims can be carried in X.509 v3 extensions.
In this use, the public key in the X.509 certificate becomes the verification key, so identification of the endorsement is also identification of the verification key.</t>

<t>The verification key identification and establishment of trust in the EAT and the attester may also be by some other means than an endorsement.</t>

<t>For the components (attester, verifier, relying party,...) of a particular end-end attestation system to reliably interoperate, its definition should specify how the verification key is identified.
Usually, this will be in the profile document for a particular attestation system.</t>

<t>See also security consideration in <xref target="verfication-key-sc"/>.</t>

<section anchor="identification-methods"><name>Identification Methods</name>

<t>Following is a list of possible methods of key identification. A specific attestation system may employ any one of these or one not listed here.</t>

<t>The following assumes endorsements are X.509 certificates or equivalent and thus does not mention or define any identifier for endorsements in other formats. If such an endorsement format is created, new identifiers for them will also need to be created.</t>

<section anchor="cosejws-key-id"><name>COSE/JWS Key ID</name>

<t>The COSE standard header parameter for Key ID (kid) may be used. See <xref target="RFC9052"/> and <xref target="RFC7515"/></t>

<t>COSE leaves the semantics of the key ID open-ended.
It could be a record locator in a database, a hash of a public key, an input to a Key Derivation Function (KDF), an Authority Key Identifier (AKI) for an X.509 certificate or other.
The profile document should specify what the key ID's semantics are.</t>

</section>
<section anchor="jws-and-cose-x509-header-parameters"><name>JWS and COSE X.509 Header Parameters</name>

<t>COSE X.509 <xref target="COSE.X509.Draft"/> and JSON Web Signature <xref target="RFC7515"/> define several header parameters (x5t, x5u,...) for referencing or carrying X.509 certificates any of which may be used.</t>

<t>The X.509 certificate may be an endorsement and thus carrying additional input to the verifier. It may be just an X.509 certificate, not an endorsement. The same header parameters are used in both cases. It is up to the attestation system design and the verifier to determine which.</t>

</section>
<section anchor="cbor-certificate-cose-header-parameters"><name>CBOR Certificate COSE Header Parameters</name>

<t>Compressed X.509 and CBOR Native certificates are defined by CBOR Certificates <xref target="CBOR.Cert.Draft"/>. These are semantically compatible with X.509 and therefore can be used as an equivalent to X.509 as described above.</t>

<t>These are identified by their own header parameters (c5t, c5u,...).</t>

</section>
<section anchor="claim-based-key-identification"><name>Claim-Based Key Identification</name>

<t>For some attestation systems, a claim may be re-used as a key identifier. For example, the UEID uniquely identifies the entity and therefore can work well as a key identifier or endorsement identifier.</t>

<t>This has the advantage that key identification requires no additional bytes in the EAT and makes the EAT smaller.</t>

<t>This has the disadvantage that the unverified EAT must be substantially decoded to obtain the identifier since the identifier is in the COSE/JOSE payload, not in the headers.</t>

</section>
</section>
</section>
<section anchor="changes-from-previous-drafts"><name>Changes from Previous Drafts</name>

<t><cref anchor="remove">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-24"><name>From draft-ietf-rats-eat-24</name>
<t>The changes from draft-24, not draft 25, are listed here as draft-24 is what was accepted after IETF last call and draft-25 was kind of a false start.</t>

<t><list style="symbols">
  <t>Address some small claim data type naming issues that came to light when IANA completed the registrations requested by this document. In particular, the CDDL type names are used.</t>
  <t>Remove all dependence on SUIT Manifest to break schedule interlock with RFC Editor. Use of SUIT-Manifest is peripheral to the core of EAT. It was mostly a content type pre-registration. The modification consisted of the removal of one sentence, a few more words and two lines of CDDL.</t>
  <t>Reworded full profiles description to convey intent without using "may not"</t>
  <t>Upated references for UUIDs and LDAP to non-obsolete documents.</t>
  <t>Removed some non-ascii quote marks</t>
  <t>"<bcp14>MAY</bcp14> not" -&gt; "<bcp14>MAY</bcp14> NOT"</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+o6vwFFljJISkpYs2WWruypRSbKjat/aktvd
u3adCkhCJGKKYAOgZUZxf8v+lvNlZ97XXAAoO8nuM87D9uhOicDCus4175fh
cJh8PE4Pk6QpmkV+nF7N8/R8CT826UnT5HWTNUW5TK/KD/ky3T0/udpLsvG4
yuEj+JFMy8kyu4HvplV23QyLvLkeVllTD/OsGT78LplkzXFaN9MkmZTLOl/W
6/o4bap1ntRNlWc3x+nF+dWzpFhV9LhuHu7vP91/mGTw8ji9zCfrCqaS3M6O
07cnV5fJh1vorpgti+Uszdz8JuOySpJVcZykaVNOjtNvN3n9Lf+Y5qtmDk+O
8HddVjDwdR1a1Jub+MGkvFllk8a1WI/Ds2WJj6rrST6tmw1uGTeDf9m6mZfV
cTJMiyX092KUvlgvp+NFNs3hE96nF9m6ypeTPHpVVrOwWDyCstqkL16cwqv8
JisWx+litvhDLQ0aej+CKelIz0fpy2w53WQ3Ns7zoiqm86xyL2iUl/m0yJr8
Q/ru8iR0P5PWoxtu/YcZPvdD/DRKX397Vi7L2XwdVvNTXuU3m/gNDfOv62wB
X9+kV/lkviwX5azI6/RiORnhfsIJ5LCXD797mj7LqiWcXbmezdO3ZTbF/Yc1
HvsXdCZTXNS7g6P0uxeX9GC9bCpo925ZNPk0/ReAiGmJy1zNyyW0/d3RUXrw
8NHD9PDx4cGTp2Gtfy6nNNk//GdTjP5T5umXejpK32eLRTYJ6zzNqoV7SEt8
C6P+EWYxTS/L6+YWIHagC5SRJvDVH6p8OsdWtTSikfA2NFUxXjcMLzzKH/Pl
h/THovowLxd/0WGeVdl6OS+v8yq9vLiCp3r9Oi9k1Dn0MhpLL3+oi2Z0bS1H
AG462tW8vMnq9FlZ13CHdLiT6iZ9UdzgnoYuG2o6uuamf8gq3S/u6WUxW+eL
9EfYH7iQeVXW7tVknsG7t/jfCjZhaeAOkJYvAN5s+9L3ZfWhDqPeTKrfIUL5
Q61NR5PMen6TwQZOAI5hqtVt8ecPYcysmRewsh8rnG81DfubLZcAhVf1BDdj
WczuXfScWo8aa91Z95tsvUhPq/J2kW+SZFlWN7A7H3PEQW+fnX736OCR/Pnk
6dHTY8ZR/ArgMrR6qq0ePrI/D59qgyePD/bh2+l0Ib+/s1eHT588lj+f7luP
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
w53rJC1SxxxvX6znSwkmXJOn++W/vfIesMrvRyWCGA7ujtNvjG0H4s08FJZy
+H6HwOpUsnzg3uNZ1Dufu+w5cdDGnycUnCcEgFjrgbKsqDlixjzrSPDlKsP/
OMzBiifLMq0KA0I7LJ3ey62rNEAYXsOF1FKWYZo8+LDDYItBZ5ttTplM4T6F
5+OIOmVmiX8dJfZTgt6Jq62b7SYu0msUH8m6rf45omDVXLxj8jmlgKRoytFO
BRGBZo11ECm4MmOnM1MbyI4HaOfp4jQM19xwSu+NooWiYS10hRjBttUysdcq
vdLK4DwodRZvEjNzH3FV1wCImuUEkWjEEortbQkyI8a5pa/QdSbmsYWpCRL1
b+m2tDnLzOc8VM+lZgurKJ17lhHWja7ULJjcZuy56QNPKdTBQ7rCBWmHsVei
/qwSpF4c4Kp1EFAzu3/7aJ02zmpxCWr26JeQTH4w2cjmMkrOtuiCcE97uO9R
m2OnwGOECo7aoGkVlbHUhCdtUy3bdq3267j7lDza86UeCekMW004NdEtumlz
ytO6Mypq6cmqMYhPQ3ZbdzoKAlalb434r053L+Hd0MRB3j/V++5e8k9R/PIn
bdWvdxysezqzXohxo7/JLmkMESPsQW+C5Ig1yIKemYxiIAL17x9TjnIZVMxW
PILkvdqnU8VuCJlSRi3BIDj2pciiS+YyB7pSnLiKPucukWRnFM7nOtfs9eWt
1IMbYNadhk1BaCTieNjhuNQA/SVdRlfFBkExm7EzM+tKNah5nG9KcfaLvUcM
vTalZZL3Sd4Vs1yKWlA66S6ClTVVMWPthaSyhjWZM7pm9MGdDO6WXQ8WUQBi
s7HjNS9FM0UWbLZYewsT69ya7d7z3liJyQAIvdHlY/zMHeCoxDO7ngZRqFFZ
GUbENjStnoh77k6ZUIZnDaL69//4H+nrpR3kG/MLp/vYzNd4YOkONNv5uw4Q
KRKPSLOgrH/EfapaIKtCEn0XO4WkjXc9ChaO00OhduS6h9W/NDwuN7/CSp6U
gQs9XQRyKNIE0a6xDDxHNqzypM3dN8q64GUh8ioGifHFWf4RPgg8PVaw0wjm
LyuRL/9btMhxr3+fGplxaFAky29RJbtf6fcpJ0v/HRs2vdLZ0pUTJues3Lt/
1Oyor89ftuqHBDsetVVDXpwbIo7OfQ0XniKfgtzz0pPDXRhlT6+KJmZlJ3PN
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
oS1mjurgE+f/AFH/GKlDegIA

-->

</rfc>

