<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.5.12 -->

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?rfc toc="yes"?>
<?rfc tocdepth="4"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc compact="yes"?>
<?rfc subcompact="no"?>
<?rfc rfcedstyle="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-rats-eat-14" category="std">

  <front>
    <title abbrev="EAT">The Entity Attestation Token (EAT)</title>

    <author initials="L." surname="Lundblade" fullname="Laurence Lundblade">
      <organization>Security Theory LLC</organization>
      <address>
        <email>lgl@securitytheory.com</email>
      </address>
    </author>
    <author initials="G." surname="Mandyam" fullname="Giridhar Mandyam">
      <organization>Qualcomm Technologies Inc.</organization>
      <address>
        <postal>
          <street>5775 Morehouse Drive</street>
          <city>San Diego</city>
          <region>California</region>
          <country>USA</country>
        </postal>
        <phone>+1 858 651 7200</phone>
        <email>mandyam@qti.qualcomm.com</email>
      </address>
    </author>
    <author initials="J." surname="O'Donoghue" fullname="Jeremy O'Donoghue">
      <organization>Qualcomm Technologies Inc.</organization>
      <address>
        <postal>
          <street>279 Farnborough Road</street>
          <city>Farnborough</city>
          <code>GU14 7LS</code>
          <country>United Kingdom</country>
        </postal>
        <phone>+44 1252 363189</phone>
        <email>jodonogh@qti.qualcomm.com</email>
      </address>
    </author>

    <date year="2022" month="July" day="10"/>

    <area>Internet</area>
    <workgroup>RATS Working Group</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 phone, IoT device, network equipment or such.  This claims set is used by a
relying party, server or service to determine how much it wishes to trust the entity.</t>

<t>An EAT is either a CBOR Web Token (CWT) or JSON Web Token (JWT) with attestation-oriented
claims. To a large degree, all this document does is extend
CWT and JWT.</t>



    </abstract>


  </front>

  <middle>


<section anchor="introduction" title="Introduction">

<t>EAT provides the definition of a base set of claims that can be made about an entity, a device, some software and/or some hardware.
This claims set is received by a relying party who uses it to decide if and how it will interact with the remote entity.
It may choose to not trust the entity and not interact with it.
It may choose to trust it.
It may partially trust it, for example allowing monetary transactions only up to a limit.</t>

<t>EAT defines the encoding of the claims set in CBOR <xref target="RFC8949"/> and JSON <xref target="RFC7159"/>.
EAT is an extension to CBOR Web Token (CWT) <xref target="RFC8392"/> and JSON Web Token (JWT) <xref target="RFC7519"/>.</t>

<t>The claims set is secured in transit with the same mechanisms used by CWT and JWT, in particular CBOR Object Signing and Encryption (COSE) <xref target="RFC9052"/> and JSON Object Signing
   and Encryption (JOSE) <xref target="RFC7515"/> <xref target="RFC7516"/>.
Authenticity and integrity protection must always be provided.
Privacy (encryption) may additionally be provided.
The key material used to sign and encrypt is specifically created and provisioned for the purpose of attestation.
It is the use of this key material that make the claims set “attested” rather than just some parameters sent to the relying party by the device.</t>

<t>EAT is focused on authenticating, identifying and characterizing implementations where implementations are devices, chips, hardware, software and such.
This is distinct from protocols like TLS <xref target="RFC8446"/> that authenticate and identify servers and services.
It is equally distinct from protocols like SASL <xref target="RFC4422"/> that authenticate and identify persons.</t>

<t>The notion of attestation is large, ranging over a broad variety of use cases and security levels.
Here are a few examples of claims:</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 GPS location</t>
  <t>Formal certifications received</t>
</list></t>

<t>EAT also supports nesting of sets of claims and EAT tokens for use with complex composite devices.</t>

<t>This document uses the terminology and main operational model defined in <xref target="RATS.Architecture"></xref>.
In particular, it can be used for Evidence and Attestation Results.</t>

<section anchor="entity-overview" title="Entity Overview">

<t>The document uses the term “entity” to refer to the target of the attestation token.
The claims defined in this document are claims about an entity.</t>

<t>An entity is an implementation in hardware, software or both.</t>

<t>An entity is the same as the Attester Target Environment defined in RATS Architecture.</t>

<t>An entity may be the whole device or it may be a subsystem, a subsystem of a subsystem and so on.
EAT allows claims to be organized into submodules, nested EATs and so on. See <xref target="submods"/>.
The entity to which a claim applies is the submodule in which it appears, or to the top-level entity if it doesn’t appear in a submodule.</t>

<t>An entity also corresponds to a “system component” as defined in the Internet Security Glossary <xref target="RFC4949"/>.
That glossary also defines “entity” and “system entity” as something that may be a person or organization as well as a system component.
Here “entity” never refers to a person or organization.</t>

<t>The hardware and software that implement a server or service like a web site may be an entity, but the web site itself or the organization that runs the web site are not an entity.</t>

<t>Some examples of entities:</t>

<t><list style="symbols">
  <t>A Secure Element</t>
  <t>A TEE</t>
  <t>A card in a network router</t>
  <t>A network router, perhaps with each card in the router a submodule</t>
  <t>An 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 like 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="cwt-jwt-and-deb" title="CWT, JWT and DEB">

<t>An EAT is primarily a claims set about an entity based on one of the following:</t>

<t><list style="symbols">
  <t>CBOR Web Token (CWT) <xref target="RFC8392"/></t>
  <t>JSON Web Token (JWT) <xref target="RFC7519"/></t>
</list></t>

<t>All definitions, requirements, creation and validation procedures, security considerations, IANA registrations and so on from these carry over to EAT.</t>

<t>This specification extends those specifications by defining additional claims for attestation.
This specification also describes the notion of a “profile” that can narrow the definition of an EAT, ensure interoperability and fill in details for specific usage scenarios.
This specification also adds some considerations for registration of future EAT-related claims.</t>

<t>The identification of a protocol element as an EAT, whether CBOR or JSON encoded, follows the general conventions used by CWT, JWT.
Largely this depends on the protocol carrying the EAT.
In some cases it may be by content type (e.g., MIME type).
In other cases it may be through use of CBOR tags.
There is no fixed mechanism across all use cases.</t>

<t>This specification adds one more top-level token type:</t>

<t><list style="symbols">
  <t>Detached EAT Bundle (DEB), <xref target="DEB"/></t>
</list></t>

<t>A DEB is structure to hold a collection of detached claims sets and the EAT that separately provides integrity and authenticity protection for them.
It can be either CBOR or JSON encoded.</t>

<t>Last, the definition of other token types is allowed.
Of particular use may be a token type that provides no authenticity or integrity protection at all for use with transports like TLS that do provide that.</t>

</section>
<section anchor="cddl-cbor-and-json" title="CDDL, CBOR and JSON">

<t>This document defines Concise Binary Object Representation (CBOR) <xref target="RFC8949"/> and Javascript Object Notation (JSON) <xref target="RFC7159"/> encoding for an EAT.
All claims in an EAT MUST use the same encoding except where otherwise explicitly stated.
It is explicitly allowed for a nested token to be of a different encoding.
Some claims explicitly contain objects and messages that may use a different encoding than the enclosing EAT.</t>

<t>This specification uses Concise Data Definition Language (CDDL) <xref target="RFC8610"/> for all definitions.
The implementor interprets the CDDL to come to either the CBOR or JSON encoding.
In the case of JSON, Appendix E of <xref target="RFC8610"/> is followed.
Additional rules are given in <xref target="jsoninterop"/> where Appendix E is insufficient.</t>

<t>In most cases where the CDDL for CBOR is different than JSON a CDDL Generic named “JC&lt;&gt;” is used.
It is described in <xref target="CDDL_for_CWT"/>.</t>

<t>The CWT and JWT specifications were authored before CDDL was available and did not use CDDL.
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>

</section>
<section anchor="operating-model-and-rats-architecture" title="Operating Model and RATS Architecture">

<t>While it is not required that EAT be used with the RATS operational model described in Figure 1 in <xref target="RATS.Architecture"/>, or even that it be used for attestation, this document is oriented around that model.</t>

<t>To summarize, an Attester generates Evidence.
Evidence is a claims set describing various characteristics of an entity.
Evidence also is usually signed by a key that proves the entity and the evidence it produces are authentic.
The claims set includes a nonce or some other means to provide freshness.
EAT is designed to carry Evidence.
The Evidence goes to a Verifier where the signature is verified.
Some of the claims may also be checked against Reference Values.
The Verifier then produces Attestation Results which is also usually a claims set.</t>

<t>EAT is also designed to carry Attestation Results.
The Attestation Results go to the Relying Party which is the ultimate consumer of the Remote Attestation Procedure.
The Relying Party uses the Attestation Results as needed for the use case, perhaps allowing an entity on the network, allowing a financial transaction or such.</t>

<t>Note that sometimes the Verifier and Relying Party are not separate and thus there is no need for a protocol to carry Attestation Results.</t>

<section anchor="relationship" title="Relationship between Evidence and Attestation Results">

<t>Any claim defined in this document or in the IANA CWT or JWT registry may be used in Evidence or Attestation Results.</t>

<t>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 also modify or transform claims it forwards.
This may be to implement some privacy preservation functionality.</t>

<t>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 a HW OEM ID Claim in the Attestation Results by performing a look up based on a UEID (serial number) it received in Evidence.</t>

<t>This specification does not establish any normative rules for the Verifier to follow.
They are a matter of configured 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" title="Terminology">

<t>The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”,
“SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “NOT RECOMMENDED”, “MAY”, and
“OPTIONAL” in this document are to be interpreted as described in
BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they appear in all
capitals, as shown here.</t>

<t>This document reuses terminology from JWT <xref target="RFC7519"/> and CWT <xref target="RFC8392"/>.</t>

<t><list style="hanging">
  <t hangText="Claim:">
  A piece of information asserted about a subject. A claim is represented as pair with a value and either a name or key to identify it.</t>
  <t hangText="Claim Name:">
  A unique text string that identifies the claim. It is used as the claim name for JSON encoding.</t>
  <t hangText="Claim Key:">
  The CBOR map key used to identify a claim.</t>
  <t hangText="Claim Value:">
  The value portion of the claim. A claim value can be any CBOR data item or JSON value.</t>
  <t hangText="Claims Set:">
  The CBOR map or JSON object that contains the claims conveyed by the CWT or JWT.</t>
</list></t>

<t>This document reuses terminology from RATS Architecure <xref target="RATS.Architecture"/></t>

<t><list style="hanging">
  <t hangText="Attester:">
  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>
  <t hangText="Verifier:">
  A role that appraises the validity of Evidence about an Attester and produces Attestation Results to be used by a Relying Party.</t>
  <t hangText="Relying Party:">
  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>
  <t hangText="Evidence:">
  A set of Claims generated by an Attester to be appraised by a Verifier. Evidence may include configuration data, measurements, telemetry, or inferences.</t>
  <t hangText="Attestation Results:">
  The output generated by a Verifier, typically including information about an Attester, where the Verifier vouches for the validity of the results</t>
  <t hangText="Reference Values:">
  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>
  <t hangText="Endorsement:">
  A secure statement that an Endorser vouches for the integrity of an Attester’s various capabilities such as Claims collection and Evidence signing.</t>
</list></t>

</section>
<section anchor="top-level-token-definition" title="Top-Level Token Definition">

<t>An EAT is a “message”, a “token”, or such whose content is a Claims-Set about an entity or some number of entities.
An EAT MUST always contains a Claims-Set.</t>

<t>An EAT may be encoded in CBOR or JSON as defined here.
While not encouraged, other documents may define EAT encoding in other formats.</t>

<t>EAT as defined here is always integrity and authenticity protected through use of CWT or JWT.
Other token formats using other methods of protection may be defined outside this document.</t>

<t>This document also defines the Detatched EAT Bundle <xref target="DEB"/>, a bundle of some detached Claims-Sets and CWTs or JWTs that provide protection for the detached Claims-Set.</t>

<t>The following CDDL defines the top-levels of an EAT token as a socket indicating future token formats may be defined.
Any new format that plugs into this socket MUST be defined in a IETF standards track document.
See <xref target="CDDL_for_CWT"/> for the CDDL definitions of a CWT and JWT.</t>

<t>Nesting of EATs is allowed and defined in <xref target="Nested-Token"/>.
This nesting includes nesting of a token that is a different format than the enclosing token.
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 MUST also be defined.</t>

<figure><artwork 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 /= DEB-Tagged-Message

$$EAT-CBOR-Untagged-Token /= CWT-Untagged-Message
$$EAT-CBOR-Untagged-Token /= DEB-Untagged-Message
]]></artwork></figure>

<figure><artwork type="CDDL"><![CDATA[
EAT-JSON-Token = $$EAT-JSON-Token-Formats

$$EAT-JSON-Token-Formats /= JWT-Message
$$EAT-JSON-Token-Formats /= DEB-Untagged-Message
]]></artwork></figure>

</section>
<section anchor="the-claims" title="The Claims">

<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>This section also describes how several extant CWT and JWT claims apply in EAT.</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 described has a unique text string and integer that identifies it.
CBOR-encoded tokens MUST use only the integer for Claim Keys.
JSON-encoded tokens MUST use only the text string for Claim Names.</t>

<section anchor="nonce" title="Nonce Claim (nonce)">

<t>All EATs MUST have a nonce to prevent replay attacks.</t>

<t>This claim is either a single byte or text string or an array of byte or text strings.
The array is to accommodate multistage EAT verification and consumption.
See the extensive discussion on attestation freshness in Appendix A of RATS Architecture <xref target="RATS.Architecture"/>.</t>

<t>A claim named “nonce” is previously defined and registered with IANA for JWT, but MUST not be used in an EAT.
It does not support multiple nonces.
No previous nonce claim was defined for CWT.</t>

<t>The nonce MUST have 64 bits of entropy as fewer bits are unlikely to be secure.
A maximum nonce size is set to limit the memory required for an implementation.
All receivers MUST be able to accommodate the maximum size.</t>

<t>In CBOR, the nonce is a byte string.
The minimum size is 8 bytes.
The maximum size is 64 bytes.</t>

<t>In JSON the nonce is a text string.
It is assumed that the only characters represented by the lower 7 bits will be used so the text string must be one-seventh longer because the 8th bit doesn’t contribute to entropy.
The minimum size is 10 bytes.
The maximum size is 74 bytes.</t>

<figure><artwork type="CDDL"><![CDATA[
$$Claims-Set-Claims //= 
    (nonce-label => nonce-type / [ 2* nonce-type ])

nonce-type = JC< tstr .size (10..74), bstr .size (8..64)>

]]></artwork></figure>

</section>
<section anchor="claims-describing-the-entity" title="Claims Describing the Entity">

<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" title="Universal Entity ID Claim (ueid)">

<t>A UEID 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 MUST be universally and globally unique across manufacturers
and countries. UEIDs MUST 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>There are privacy considerations for UEIDs. See <xref target="ueidprivacyconsiderations"/>.</t>

<t>The UEID is permanent. It MUST never change for a given entity.</t>

<t>A UEID is constructed of a single type byte followed by the bytes that are the identifier.
Several types are allowed to accommodate different industries, different manufacturing processes
and to have an alternative that doesn’t require paying a registration fee.</t>

<t>Creation of new types requires a Standards Action <xref target="RFC8126"/>.</t>

<t>UEIDS are variable length to accommodate the types defined here and new types that may be defined in the future.</t>

<t>All implementations MUST 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.
See <xref target="UEID-Design"/>.</t>

<t>UEIDs SHOULD NOT be longer than 33 bytes.
If they are longer, there is no guarantee that a receiver will be able to accept them.</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 MUST NOT be smaller than 128 bits. See the length analysis in <xref target="UEID-Design"/>.</c>
      <c>0x02</c>
      <c>IEEE EUI</c>
      <c>This uses the IEEE company identification registry. 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) <xref target="IEEE.802-2001"/>, <xref target="OUI.Guide"/>.</c>
      <c>0x03</c>
      <c>IMEI</c>
      <c>This is a 14-digit identifier consisting of an 8-digit Type Allocation Code and a 6-digit serial number allocated by the manufacturer, which SHALL 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 SHALL NOT include Luhn checksum or SVN information. See <xref target="ThreeGPP.IMEI"/>.</c>
</texttable>

<t>UEIDs are not designed for direct use by humans (e.g., printing on
the case of a device), so no textual representation is defined.</t>

<t>The consumer of a UEID MUST treat a UEID as a
completely opaque string of bytes and not make any use of its internal
structure. For example, they should not use the OUI part of a type
0x02 UEID to identify the manufacturer of the entity. Instead, they
should use the OEMID claim. See <xref target="oemid"/>. The reasons for
this are:</t>

<t><list style="symbols">
  <t>UEIDs types may vary freely from one manufacturer to the next.</t>
  <t>New types of UEIDs may be created. For example, a type 0x07 UEID may
be created based on some other manufacturer registration scheme.</t>
  <t>The manufacturing process for an entity is allowed to change from
using one type of UEID to another.  For example, a manufacturer
may find they can optimize their process by switching from type 0x01
to type 0x02 or vice versa.</t>
</list></t>

<t>The type byte is needed to distinguish UEIDs of different types that by chance have the same identifier value, but do not identify the same entity.
The type byte MUST be treated as part of the opaque UEID and MUST not be used to make use of the internal structure of the UEID.</t>

<t>A Device Identifier URN is registered for UEIDs. See <xref target="registerueidurn"/>.</t>

<figure><artwork type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (ueid-label => ueid-type)

ueid-type = JC<base64-url-text .size (12..44) , bstr .size (7..33)>
]]></artwork></figure>

</section>
<section anchor="semi-permanent-ueids-sueids" title="Semi-permanent UEIDs (SUEIDs)">

<t>An SUEID has the same format, characteristics and requirements as a UEID, but MAY change to a different value on entity life-cycle events.
An entity MAY 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 MAY provide this specification.</t>

<t>There MAY be multiple SUEIDs.
Each has a text string label the purpose of which is to distinguish it from others.
The label MAY name the purpose, application or type of the SUEID.
For example, the label for the SUEID used by FIDO Onboarding Protocol could be “FDO”.
It is beyond the scope of this document to specify any SUEID labeling schemes.
They are use-case specific and MAY be specified in an EAT profile.</t>

<t>If there is only one SUEID, the claim remains a map and there still MUST 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 Indentifier URN is registered for SUEIDs. See <xref target="registerueidurn"/>.</t>

<figure><artwork type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (sueids-label => sueids-type)

sueids-type = {
    + tstr => ueid-type
}
]]></artwork></figure>

</section>
<section anchor="oemid" title="Hardware OEM Identification (oemid)">

<t>This claim identifies the Original Equipment Manufacturer (OEM) of the hardware.
Any of the three forms described below MAY be used at the convenience of the claim sender.
The receiver of this claim MUST be able to handle all three forms.</t>

<section anchor="random-number-based-oemid" title="Random Number Based OEMID">

<t>The random number based OEMID MUST always 16 bytes (128 bits).</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>The OEM MAY also use a hash function like SHA-256 and truncate the output to 128 bits.
The input to the hash should be somethings that have at least 96 bits of entropy, but preferably 128 bits of entropy.
The input to the hash MAY be something whose uniqueness is managed by a central registry like a domain name.</t>

<t>In JSON format tokens this MUST be base64url encoded.</t>

</section>
<section anchor="ieee-based-oemid" title="IEEE Based OEMID">

<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
SHOULD 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 format tokens, this MUST be base64url encoded and always 4 bytes.</t>

</section>
<section anchor="iana-private-enterprise-number-based-oemid" title="IANA Private Enterprise Number Based OEMID">

<t>IANA maintains a integer-based company registry called the Private Enterprise Number (PEN) <xref target="PEN"/>.</t>

<t>PENs are often used to create an OID.
That is not the case here.
They are used only as an integer.</t>

<t>In CBOR this value MUST be encoded as a major type 0 integer and is typically 3 bytes.
In JSON, this value MUST be encoded as a number.</t>

<figure><artwork 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

]]></artwork></figure>

</section>
</section>
<section anchor="hardware-model-claim-hardware-model" title="Hardware Model Claim (hardware-model)">

<t>This claim differentiates hardware models, products and variants manufactured by a particular OEM, the one identified by OEM ID in <xref target="oemid"/>.</t>

<t>This claim must be unique so as to differentiate the models and products for the OEM ID.
This claim does not have to be globally unique, but it can be.
A receiver of this claim MUST not assume it is globally unique.
To globally identify a particular product, the receiver should concatenate the OEM ID and this claim.</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 purpose of this claim is to identify models within protocols, not for human-readable descriptions.
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 MUST be able to receive this maximum size.</t>

<t>The receiver of this claim MUST 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><artwork 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)>
]]></artwork></figure>

</section>
<section anchor="hardware-version-claims-hardware-version-claims" title="Hardware Version Claims (hardware-version-claims)">

<t>The hardware version is a text string the format of which is set by each manufacturer.
The structure and sorting order of this text string can be specified using the version-scheme item from CoSWID <xref target="CoSWID"/>.
It is useful to know how to sort versions so the newer can be distinguished from the older.</t>

<t>The hardware version can also be given by a 13-digit <xref target="EAN-13"/>.
A new CoSWID version scheme is registered with IANA by this document in <xref target="registerversionscheme"/>.
An EAN-13 is also known as an International Article Number or most commonly as a bar code.</t>

<figure><artwork type="CDDL"><![CDATA[
$$Claims-Set-Claims //=  (
    hardware-version-label => hardware-version-type
)

hardware-version-type = [
    version:  tstr,
    ? scheme:  $version-scheme
]
]]></artwork></figure>

</section>
<section anchor="software-name-claim" title="Software Name Claim">

<t>This is a very simple free-form text claim 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 SW for the entity is needed, the manifests claim <xref target="manifests"/> may be used instead.</t>

<figure><artwork type="CDDL"><![CDATA[
$$Claims-Set-Claims //= ( sw-name-label => tstr )
]]></artwork></figure>

</section>
<section anchor="software-version-claim" title="Software Version Claim">

<t>This makes use of the CoSWID version scheme data type to give a simple version for the software.
A full CoSWID manifest or other type of manifest can be instead if this is too simple.</t>

<figure><artwork type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (sw-version-label => sw-version-type)

sw-version-type = [
    version:  tstr
    ? scheme:  $version-scheme 
]
]]></artwork></figure>

</section>
<section anchor="the-security-level-claim-security-level" title="The Security Level Claim (security-level)">

<t>This claim characterizes the design intent of the entity’s ability to defend against attacks aimed at capturing the signing key, forging claims and forging EATs.</t>

<t>This claim is only to give the recipient a rough idea of the security design the entity is aiming for.
This is via a simple, non-extensible set of three levels.</t>

<t>While this claim may be forwarded in Attestation Results as described in <xref target="relationship"/>, this claim MUST NOT be used to represent the output of a RATS Verifier.</t>

<t>This takes a broad view of the range of defenses because EAT is targeted at a broad range of use cases.
The least secure level may have only minimal SW defenses.
The most secure level may have specialized hardware to defend against hardware-based attacks.</t>

<t>Only through expansive certification programs like Common Criteria is it possible to sharply define security levels.
Sharp definition of security levels is not possible here because the IETF doesn’t define and operate certification programs.
It is also not possible here because any sharp definition of security levels would be a document larger than the EAT specification.
Thus, this definition takes the view that the security level definition possible is a simple, modest, rough characterization.</t>

<t><list style="hanging">
  <t hangText="1 - Unrestricted:">
  An entity is categorized as unrestricted when it doesn’t meet the criteria for any of the higher levels.
This level does not indicate there is no protection at all, just that the entity doesn’t qualify for the higher levels.</t>
  <t hangText="2 - Restricted:">
  Entities at this level MUST meet the criteria defined in Section 4 of FIDO Allowed Restricted Operating Environments <xref target="FIDO.AROE"/>.
(Note only Section 4 is referenced. The other sections, in particularly Section 3 do not apply.)
Examples include TEE’s and schemes using virtualization-based security.
Security at this level is aimed at defending against large-scale network/remote attacks by having a reduced attack surface.</t>
  <t hangText="3 - Hardware:">
  Entities at this level are indicating they have some countermeasures to defend against physical or electrical attacks against the entity.
Security at this level is aimed at defending against attackers that physically capture the entity to attack it.
Examples include TPMs and Secure Elements.</t>
</list></t>

<t>The security level claimed should be for the weakest point in the entity, not the strongest.
For example, if attestation key is protected by hardware, but the rest of the attester is in a TEE, the claim must be for restriced.</t>

<t>This set of three is not extensible so this remains broadly interoperable. In particular use cases, alternate claims may be defined that give finer grained information than this claim.</t>

<t>See also the DLOAs claim in <xref target="dloas"/>, a claim that specifically provides information about certifications received.</t>

<figure><artwork type="CDDL"><![CDATA[
$$Claims-Set-Claims //=
    ( security-level-label => security-level-type ) 

security-level-type = unrestricted /
                      restricted /
                      hardware

unrestricted       = JC< "unrestricted",      1>
restricted         = JC< "restricted",        2>
hardware           = JC< "hardware",          3>
]]></artwork></figure>

</section>
<section anchor="secure-boot-claim-secure-boot" title="Secure Boot Claim (secure-boot)">

<t>The value of true indicates secure boot is enabled. Secure boot is
considered enabled when the firmware and operating
system, are under control of the manufacturer of the entity identified in the
OEMID claim described in <xref target="oemid"/>.
Control by the manufacturer of the firmware and the operating system may be by it being in ROM, being cryptographically authenticated, a combination of the two or similar.</t>

<figure><artwork type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (secure-boot-label => bool)
]]></artwork></figure>

</section>
<section anchor="debug-status-claim-debug-status" title="Debug Status Claim (debug-status)">

<t>This applies to entity-wide or submodule-wide debug facilities of the
entity like JTAG and diagnostic hardware built into
chips. It applies to any software debug facilities related to root,
operating system or privileged software that allow 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 debug level claim means it is not reported.
A conservative interpretation might assume the enabled state.</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 MUST not
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" title="Enabled">

<t>If any debug facility, even manufacturer hardware diagnostics, is
currently enabled, then this level must be indicated.</t>

</section>
<section anchor="disabled" title="Disabled">

<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" title="Disabled Since Boot">

<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" title="Disabled Permanently">

<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.</t>

</section>
<section anchor="disabled-fully-and-permanently" title="Disabled Fully and Permanently">

<t>This level indicates that all debug facilities for the entity are permanently disabled.</t>

<figure><artwork 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 >
]]></artwork></figure>

</section>
</section>
<section anchor="location" title="The Location Claim (location)">

<t>The location claim gives the location of the entity from which the attestation originates.
It is derived from the W3C Geolocation API <xref target="W3C.GeoLoc"/>.
The latitude, longitude, altitude and accuracy must conform to <xref target="WGS84"/>.
The altitude is in meters above the <xref target="WGS84"/> ellipsoid.
The two accuracy values are positive numbers in meters.
The heading is in degrees relative to true north.
If the entity is stationary, the heading is NaN (floating-point not-a-number).
The speed is the horizontal component of the entity velocity in meters per second.</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 GPS 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.</t>

<t>The age data item can be used when the entity doesn’t know what time
it is either because it doesn’t have a clock or it isn’t set. The
entity MUST still have a “ticker” that can measure a time
interval. The age is the interval between acquisition of the location
data and token creation.</t>

<t>See location-related privacy considerations in <xref target="locationprivacyconsiderations"/>.</t>

<figure><artwork 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 >
]]></artwork></figure>

</section>
<section anchor="the-uptime-claim-uptime" title="The Uptime Claim (uptime)">

<t>The “uptime” claim MUST contain a value that represents the number of
seconds that have elapsed since the entity or submod was last booted.</t>

<figure><artwork type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (uptime-label => uint)
]]></artwork></figure>

</section>
<section anchor="the-boot-count-claim-boot-count" title="The Boot Count Claim (boot-count)">

<t>This claim contains a count of the number
times the entity or submod has been booted. Support for this claim
requires a persistent storage on the device.</t>

<figure><artwork type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (boot-count-label => uint)
]]></artwork></figure>

</section>
<section anchor="the-boot-seed-claim-boot-seed" title="The Boot Seed Claim (boot-seed)">

<t>The Boot Seed 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 MUST NOT 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 Boot Seed. See <xref target="bootseedprivacyconsiderations"/>.</t>

<figure><artwork type="CDDL"><![CDATA[
$$Claims-Set-Claims //=  (boot-seed-label => binary-data)
]]></artwork></figure>

</section>
<section anchor="dloas" title="The DLOA (Digital Letter of Approval) Claim (dloas)">

<t>A DLOA (Digital Letter of Approval) <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 MUST NOT issue this claim unless the entity has received the certification indicated by the DLOA.</t>

<t>This claim MAY contain more than one DLOA.
If multiple DLOAs are present, Verifiers MUST NOT 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 URL for fetching the DLOA from the particular registrar.</t>

<t>This claim MUST be encoded as an array with either two or three elements.
The first element MUST be the URI for the registrar.
The second element MUST be a platform label indicating which platform was certified.
If the DLOA applies to an application, then the third element is added which MUST be an application label.
The method of constructing the registrar URI, platform label and possibly application label is specified in <xref target="DLOA"/>.</t>

<figure><artwork type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (
    dloas-label => [ + dloa-type ]
)

dloa-type = [
    dloa_registrar: general-uri
    dloa_platform_label: text 
    ? dloa_application_label: text
]
]]></artwork></figure>

</section>
<section anchor="manifests" title="The Software Manifests Claim (manifests)">

<t>This 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 is they are created by the software manufacturer.
The purpose of these claims in an EAT is to relay them without modification to the Verifier and possibly to the Relying Party.</t>

<t>Some manifests may be signed by their software manufacturer before they are put into this EAT claim.
When such manifests are put into this claim, the manufacturer’s signature SHOULD be included.
For example, the manifest might be a CoSWID signed by the software manufacturer, in which case the full signed CoSWID should be put in this claim.</t>

<t>This claim allows multiple formats for the manifest.
For example, the manifest may be a CBOR-format CoSWID, an XML-format SWID or other.
Identification of the type of manifest is always by a CoAP Content-Format integer <xref target="RFC7252"/>.
If there is no CoAP identifier registered for the manifest format, one should be registered, perhaps in the experimental or first-come-first-served range.</t>

<t>This claim MUST be an array of one or more manifests.
Each manifest in the claim MUST be an array of two.
The first item in the array of two MUST be an integer CoAP Content-Format identifier.
The second item is MUST be the actual manifest.</t>

<t>In JSON-format tokens the manifest, whatever format it is, MUST be placed in a text string.
When a non-text format manifest like a CBOR-encoded CoSWID is put in a JSON-encoded token, the manifest MUST 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 MAY be of different formats.
In some cases EAT submodules may be used instead of the array structure in this claim for multiple manifests.</t>

<t>When the <xref target="CoSWID"/> format is used, it MUST be a payload CoSWID, not an evidence CoSWID.</t>

<t>This document registers CoAP Content Formats for CycloneDX <xref target="CycloneDX"/> and SPDX <xref target="SPDX"/> so they can be used as a manifest.</t>

<figure><artwork type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (
    manifests-label => manifests-type
)

manifests-type = [+ manifest-format]

manifest-format = [
    content-type:   coap-content-format,
    content-format: JC< $$manifest-body-json, 
                        $$manifest-body-cbor >
]

$$manifest-body-cbor /= bytes .cbor untagged-coswid
$$manifest-body-json /= base64-url-text

$$manifest-body-cbor /= bytes .cbor SUIT_Envelope
$$manifest-body-json /= base64-url-text

$$manifest-body-cbor /= spdx-json
$$manifest-body-json /= spdx-json
spdx-json = text

$$manifest-body-cbor /= cyclone-dx-json
$$manifest-body-cbor /= cyclone-dx-xml
$$manifest-body-json /= cyclone-dx-json
$$manifest-body-json /= cyclone-dx-xml
cyclone-dx-json = text
cyclone-dx-xml  = text

suit-directive-process-dependency = 19
]]></artwork></figure>

</section>
<section anchor="swevidence" title="The Software Evidence Claim (swevidence)">

<t>This claim contains descriptions, lists, evidence or measurements of the software that exists on the entity.
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 software manufacturer.</t>

<t>This claim can be a <xref target="CoSWID"/>.
When the CoSWID format is used, it MUST be evidence CoSWIDs, not payload CoSWIDS.</t>

<t>Formats other than CoSWID can be used.
The identification of format is by CoAP Content Format, the same as the manifests claim in <xref target="manifests"/>.</t>

<figure><artwork type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (
    swevidence-label => swevidence-type
)

swevidence-type = [+ swevidence-format]

swevidence-format = [
    content-type:   coap-content-format,
    content-format: JC< $$swevidence-body-json,
                        $$swevidence-body-cbor > 
]

$$swevidence-body-cbor /= bytes .cbor untagged-coswid
$$swevidence-body-json /= base64-url-text

]]></artwork></figure>

</section>
<section anchor="measurementresults" title="The Measurement Results Claim (measurement-results)">

<t>This 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, …</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 MAY 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 swevidence claim, <xref target="swevidence"/>, to Reference Values.</t>

<t>This claim MAY 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 is an array of two, an identifier of the measurement and an enumerated type that is the result.
The range and values of the measurement identifier varies from one measurement scheme to another.</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>

<t><list style="hanging">
  <t hangText="1 – comparison successful">
  Indicates successful comparison to reference values.</t>
  <t hangText="2 – comparison fail">
  The comparison was completed and did not compare correctly to the Reference Values.</t>
  <t hangText="3 – comparison not run">
  The comparison was not run. This includes error conditions such as running out of memory.</t>
  <t hangText="4 – measurement absent">
  The particular measurement was not available for comparison.</t>
</list></t>

<figure><artwork type="CDDL"><![CDATA[
$$Claims-Set-Claims //= ( 
    measurement-results-label => 
        [ + measurement-results-group ] )

measurement-results-group = [
    measurement-system: tstr,
    measruement-results: [ + individual-result ]
]

individual-result = [
    results-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 >

]]></artwork></figure>

</section>
<section anchor="submods" title="Submodules (submods)">

<t>Some devices are complex, having many subsystems.  A
mobile phone is a good example. It may have several connectivity
subsystems for communications (e.g., Wi-Fi and cellular). It may have
subsystems for low-power audio and video playback. It may have multiple
security-oriented subsystems like a TEE and a Secure Element.</t>

<t>The claims for a subsystem can be grouped together in a submodule or submod.</t>

<t>The submods are in a single map/object, one entry per submodule.
There is only one submods map/object in a token. It is
identified by its specific label. It is a peer to other claims, but it
is not called a claim because it is a container for a claims set rather
than an individual claim. This submods part of a token allows what
might be called recursion. It allows claims sets inside of claims sets
inside of claims sets…</t>

<section anchor="submodule-types" title="Submodule Types">

<t>The following sections define the three types of submodules:</t>

<t><list style="symbols">
  <t>A submodule Claims-Set</t>
  <t>A nested token, which can be any valid EAT token, CBOR or JSON</t>
  <t>The digest of a detached Claims-Set</t>
</list></t>

<figure><artwork type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (submods-label => { + text => Submodule })

Submodule = Claims-Set / Nested-Token / Detached-Submodule-Digest

]]></artwork></figure>

<section anchor="submodule-claims-set" title="Submodule Claims-Set">

<t>This is a subordinate Claims-Set containing claims about a submodule, a subordinate entity.</t>

<t>The submodule Claims-Set is produced by the same Attester as the surrounding token.
It is secured by the same mechanism as the enclosing token (e.g., it is signed by the same attestation key).
It roughly corresponds to an Attester Target Environment, as described in the RATS architecture.</t>

<t>It may contain claims that are the same as its surrounding token or superior submodules.
For example, the top-level of the token may have a UEID, a submod may have a different UEID and a further subordinate submodule may also have a UEID.</t>

<t>The encoding of a submodule Claims-Set MUST be the same as the encoding as the token it is part of.</t>

<t>The data type for this type of submodule is a map/object.
It is identified when decoding by its type being a map/object.</t>

</section>
<section anchor="Nested-Token" title="Nested Token">

<t>This type of submodule is a fully formed complete token.
It is typically produced by a separate Attester.
It is typically used by a composite device as described in RATS Architecture <xref target="RATS.Architecture"/>
In being a submodule of the surrounding token, it is cryptographically bound 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 does not need to use the same encoding as the enclosing token.
This is to allow composite devices to be built without regards to the encoding supported by their Attesters.
Thus, a CBOR-encoded token like a CWT can have a JWT as a nested token submodule and vice versa.</t>

<section anchor="surrounding-eat-is-cbor-encoded" title="Surrounding EAT is CBOR-Encoded">

<t>This describes the encoding and decoding of CBOR or JSON-encoded tokens nested inside a CBOR-encoded token.</t>

<t>If the nested token is CBOR-encoded, then it MUST be a CBOR tag and MUST be wrapped in a byte string.
The tag identifies whether the nested token is a CWT, a CBOR-encoded DEB, or some other CBOR-format token defined in the future.
A nested CBOR-encoded token that is not a CBOR tag is NOT allowed.</t>

<t>If the nested token is JSON-encoded, then the data item MUST be a text string containing JSON.
The JSON is defined in CDDL by JSON-Nested-Token in the next section.</t>

<t>When decoding, if a byte string is encountered, it is known to be a nested CBOR-encoded token.
The byte string wrapping is removed.
The type of the token is determined by the CBOR tag.</t>

<t>When decoding, if a text string is encountered, it is known to be a JSON-encoded token.
The two-item array is decoded and tells the type of the JSON-encoded token.</t>

<figure><artwork 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 
]]></artwork></figure>

</section>
<section anchor="surrounding-eat-is-json-encoded" title="Surrounding EAT is JSON-Encoded">

<t>This describes the encoding and decoding of CBOR or JSON-encoded tokens nested inside a JSON-encoded token.</t>

<t>The nested token MUST be an array of two, a text string type indicator and the actual token.</t>

<t>The string identifying the JSON-encoded token MUST be one of the following:</t>

<t><list style="hanging">
  <t hangText="“JWT”:">
  The second array item MUST be a JWT formatted according to <xref target="RFC7519"/></t>
  <t hangText="“CBOR”:">
  The second array item must be some base64url-encoded CBOR that is a tag, typically a CWT or CBOR-encoded DEB</t>
  <t hangText="“DEB”:">
  The second array item MUST be a JSON-encoded Detached EAT Bundle as defined in this document.</t>
</list></t>

<t>Additional types may be defined by a standards action.</t>

<t>When decoding, the array of two is decoded.
The first item indicates the type and encoding of the nested token.
If the type string is not “CBOR”, then the token is JSON-encoded and of the type indicated by the string.</t>

<t>If the type string is “CBOR”, then the token is CBOR-encoded.
The base64url encoding is removed.
The CBOR-encoded data is then decoded.
The type of nested token is determined by the CBOR-tag.
It is an error if the CBOR is not a tag.</t>

<figure><artwork type="CDDL"><![CDATA[
Nested-Token = JSON-Nested-Token

JSON-Nested-Token = [
   type : "JWT" / "CBOR" / "DEB",
   nested-token : JWT-Message /
                  CBOR-Token-Inside-JSON-Token /
                  Detached-EAT-Bundle 
]

CBOR-Token-Inside-JSON-Token = base64-url-text
]]></artwork></figure>

</section>
</section>
<section anchor="detached-submodule-digest" title="Detached Submodule Digest">

<t>This is type of submodule equivalent to a Claims-Set submodule, except the Claims-Set is conveyed separately outside of the token.</t>

<t>This type of submodule consists of a digest made using a cryptographic hash of a Claims-Set.
The Claims-Set is not included in the token.
It is conveyed to the Verifier outside of the token.
The submodule containing the digest is called a detached digest.
The separately conveyed Claims-Set is called a detached claims set.</t>

<t>The input to the digest is exactly the byte-string wrapped encoded form of the Claims-Set for the submodule.
That Claims-Set can include other submodules including nested tokens and detached digests.</t>

<t>The primary use for this is to facilitate the implementation of a small and secure attester, perhaps purely in hardware.
This small, secure attester implements COSE signing and only a few claims, perhaps just UEID and hardware identification.
It has inputs for digests of submodules, perhaps 32-byte hardware registers.
Software running on the device constructs larger claim sets, perhaps very large, encodes them and digests them.
The digests are written into the small secure attesters registers.
The EAT produced by the small secure attester only contains the UEID, hardware identification and digests and is thus simple enough to be implemented in hardware.
Probably, every data item in it is of fixed length.</t>

<t>The integrity protection for the larger Claims Sets will not be as secure as those originating in hardware block, but the key material and hardware-based claims will be.
It is possible for the hardware to enforce hardware access control (memory protection)  on the digest registers so that some of the larger claims can be more secure.
For example, one register may be writable only by the TEE, so the detached claims from the TEE will have TEE-level security.</t>

<t>The data type for this type of submodule MUST be an array
It contains two data items, an algorithm identifier and a byte string containing the digest.</t>

<t>When decoding a CBOR format token the detached digest type is distringuished from the other types by it being an array.
In CBOR the none of other submodule types are arrays.</t>

<t>When decoding a JSON format token, a little more work is required because both the nested token and detached digest types are an array.
To distinguish the nested token from the detached digest, the first element in the array is examined.
If it is “JWT” or “DEB”, then the submodule is a nested token.
Otherwise it will contain an algorithm identifier and is a detached digest.</t>

<t>A DEB, described in <xref target="DEB"/>, may be used to convey detached claims sets and the token with their detached digests.
EAT, however, doesn’t require use of a DEB.
Any other protocols may be used to convey detached claims sets and the token with their detached digests.
Note that since detached Claims-Sets are signed, protocols conveying them must make sure they are not modified in transit.</t>

<figure><artwork type="CDDL"><![CDATA[
Detached-Submodule-Digest = [
   algorithm : JC< text, int >
   digest    : binary-data 
]
]]></artwork></figure>

</section>
</section>
<section anchor="no-inheritance" title="No Inheritance">

<t>The subordinate modules do not inherit anything from the containing
token.  The subordinate modules must explicitly include all of their
claims. This is the case even for claims like the nonce.</t>

<t>This rule is in place for simplicity. It avoids complex inheritance
rules that might vary from one type of claim to another.</t>

</section>
<section anchor="security-levels" title="Security Levels">

<t>The security level of the non-token subordinate modules should always
be less than or equal to that of the containing modules in the case of non-token
submodules. It makes no sense for a module of lesser security to be
signing claims of a module of higher security. An example of this is a
TEE signing claims made by the non-TEE parts (e.g. the high-level OS)
of the device.</t>

<t>The opposite may be true for the nested tokens. They usually have
their own more secure key material. An example of this is an embedded
secure element.</t>

</section>
<section anchor="submodule-names" title="Submodule Names">

<t>The label or name for each submodule in the submods map is a text
string naming the submodule. No submodules may have the same name.</t>

</section>
</section>
</section>
<section anchor="claims-describing-the-token" title="Claims Describing the Token">

<t>The claims in this section provide meta data about the token they occur in.
They do not describe the entity.</t>

<t>They may appear in Evidence or Attestation Results.
When these claims appear in Evidence, they SHOULD not be passed through the Verifier into Attestation Results.</t>

<section anchor="token-id-claim-cti-and-jti" title="Token ID Claim (cti and jti)">

<t>CWT defines the “cti” claim. JWT defines the “jti” claim. These are
equivalent in EAT and carry a unique token identifier as
they do in JWT and CWT.  They may be used to defend against re use of
the token but are not a substitute for the nonce described in <xref target="nonce"/> and do not guarantee freshness and defend against replay.</t>

</section>
<section anchor="timestamp-claim-iat" title="Timestamp claim (iat)">

<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 floating-point for this claim. EAT disallows
the use of floating-point. An EAT token MUST NOT contain an iat claim in
floating-point format. Any recipient of a token with a floating-point
format iat claim MUST 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" title="The Profile Claim (profile)">

<t>See <xref target="profiles"/> for the detailed description of a profile.</t>

<t>A profile is identified by either a URL or an 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 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>

<t>Note that this is named “eat_profile” for JWT and is distinct from the already registered “profile” claim in the JWT claims registry.</t>

<figure><artwork type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (profile-label => general-uri / general-oid)
]]></artwork></figure>

</section>
<section anchor="the-intended-use-claim-intended-use" title="The Intended Use Claim (intended-use)">

<t>EAT’s may be used in the context of several different applications.  The intended-use
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 uses EAT.</t>

<t><list style="hanging">
  <t hangText="1 – Generic:">
  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>
  <t hangText="2– Registration:">
  Entities that are registering for a new service may be expected to
provide an attestation as part of the registration process.  This intended-use
setting indicates that the attestation is not intended for any use but registration.</t>
  <t hangText="3 – Provisioning:">
  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>
  <t hangText="4 – Certificate Issuance">
  Certification Authorities (CA’s) may require attestations prior to
the issuance of certificates related to keypairs hosted at the entity.  An
EAT may be used as part of the certificate signing request (CSR).</t>
  <t hangText="5 – Proof-of-Possession:">
  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 necceesary to verify the
security state of the entity storing the private key used in a PoP application.</t>
</list></t>

<figure><artwork 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 >
]]></artwork></figure>

</section>
</section>
<section anchor="claims-that-include-keys" title="Claims That Include Keys">

<t>This document defines no claims that contain cryptographic keys.
When claims are defined that include cryptographic keys, they SHOULD use COSE_Key <xref target="RFC9052"/> in CBOR-encoded tokens or JSON Web Key <xref target="RFC7517"/> in JSON-encoded tokens.</t>

<t><xref target="RFC7800"/> defines a proof-of-possion/confirmation claim named “cnf” that can hold a cryptographic key for JWTs.
<xref target="RFC8747"/> does the same for CWTs with claim key 8.
These particular claims are defined for authentication and authorization.
Their semantics don’t translate to attestation and they SHOULD NOT be used in an EAT.</t>

</section>
</section>
<section anchor="DEB" title="Detached EAT Bundles">

<t>A detached EAT bundle is a structure to convey a fully-formed and signed token plus detached claims set that relate to that token.
It is a top-level EAT message like a CWT or JWT.
It can be occur any place that CWT or JWT messages occur.
It may also be sent as a submodule.</t>

<t>A DEB has two main parts.</t>

<t>The first part is a full top-level token.
This top-level token must have at least one submodule that is a detached digest.
This top-level token may be either CBOR or JSON-encoded.
It may be a CWT, or JWT but not a DEB.
It may also be some future-defined token type.
The same mechanism for distinguishing the type for nested token submodules is used here.</t>

<t>The second part is a map/object containing the detached Claims-Sets corresponding to the detached digests in the full token.
When the DEB is CBOR-encoded, each Claims-Set is wrapped in a byte string.
When the DEB is JSON-encoded, each Claims-Set is base64url encoded.
All the detached Claims-Sets MUST be encoded in the same format as the DEB.
No mixing of encoding formats is allowed for the Claims-Sets in a DEB.</t>

<t>For CBOR-encoded DEBs, tag TBD602 can be used to identify it.
The normal 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 detachedclaims sets.
Since the names are used only in the detached EAT bundle, they can be very short, perhaps one byte.</t>

<figure><artwork type="CDDL"><![CDATA[
DEB-Messages = DEB-Tagged-Message / DEB-Untagged-Message

DEB-Tagged-Message   = #6.TBD(DEB-Untagged-Message)
DEB-Untagged-Message = Detached-EAT-Bundle

Detached-EAT-Bundle = [
    main-token : Nested-Token,
    detached-claims-sets: {
        + tstr => JC<json-wrapped-claims-set,
                     cbor-wrapped-claims-set>
    }
]

json-wrapped-claims-set = base64-url-text

cbor-wrapped-claims-set = bstr .cbor Claims-Set

]]></artwork></figure>

</section>
<section anchor="profiles" title="Profiles">

<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 policy.
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 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" title="Format of a Profile Document">

<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="list-of-profile-issues" title="List of Profile Issues">

<t>The following is a list of EAT, CWT, JWS, COSE, JOSE and CBOR options that a profile should address.</t>

<section anchor="use-of-json-cbor-or-both" title="Use of JSON, CBOR or both">

<t>A profile should specify whether CBOR, JSON or both may be sent.
A profile should specify that the receiver can accept all encoding formats 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" title="CBOR Map and Array Encoding">

<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" title="CBOR String Encoding">

<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" title="CBOR Preferred Serialization">

<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" title="CBOR Tags">

<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="cosejose-protection" title="COSE/JOSE Protection">

<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" title="COSE/JOSE Algorithms">

<t>See the section on “Application Profiling Considerations” in <xref target="RFC9052"/> for a discussion on selection of cryptgraphic algorithms and related issues.</t>

<t>The profile document should list the COSE algorithms that a Verifier must implement.
The Attester will select one of them.
Since there is no negotiation, the Verifier should implement all algorithms listed in the profile.
If detached submodules are used, the COSE algorithms allowed for their digests should also be in the profile.</t>

</section>
<section anchor="deb-support" title="DEB Support">

<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" title="Key Identification">

<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 a 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 certificate are used.
Though not always possible, ideally, a profile should be a complete specification for key identification for both the sender and the receiver such that interoperability is guaranteed.</t>

</section>
<section anchor="endorsement-identification" title="Endorsement Identification">

<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, where as key identification is not.</t>

</section>
<section anchor="freshness" title="Freshness">

<t>A nonce is always required by EAT.</t>

<t>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>

<t>Just about every use case will require some means of knowing the EAT is recent enough and not a replay of an old token.
The profile should describe how freshness is achieved.
The section on Freshness in <xref target="RATS.Architecture"/> describes some of the possible solutions to achieve this.</t>

</section>
<section anchor="claims-requirements" title="Claims Requirements">

<t>A profile may define new claims that are not defined in this document.</t>

<t>This document requires an EAT receiver must accept all 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>By default only the nonce claim is required by EAT.
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 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 and software evidence claims are examples of this, allowing the use of CoSWID, TEEP Manifests and other formats.
A profile should specify which formats are allowed to be sent.
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" title="The Constrained Device Standard Profile">

<t>It is anticipated that there will be many profiles defined for EAT for many different use cases.
This section standardizes one profile that is good for many constrained device use cases.</t>

<t>The identifier for this profile is “https://www.rfc-editor.org/rfc/rfcTBD”.</t>

<texttable>
      <ttcol align='left'>Issue</ttcol>
      <ttcol align='left'>Profile Definition</ttcol>
      <c>CBOR/JSON</c>
      <c>CBOR only</c>
      <c>CBOR Encoding</c>
      <c>Only definite length maps and arrays are allowed</c>
      <c>CBOR Encoding</c>
      <c>Only definite length strings are allowed</c>
      <c>CBOR Serialization</c>
      <c>Only preferred serialization is allowed</c>
      <c>COSE Protection</c>
      <c>Only COSE_Sign1 format is used</c>
      <c>Algorithms</c>
      <c>Receiver MUST accept ES256, ES384 and ES512; sender MUST send one of these</c>
      <c>DEB Usage</c>
      <c>DEB may not be sent with this profile</c>
      <c>Verification Key Identification</c>
      <c>Either the COSE kid or the UEID MUST be used to identify the verication key. If both are present, the kid takes precedence</c>
      <c>Endorsements</c>
      <c>This profile contains no endorsement identifier</c>
      <c>Nonce</c>
      <c>A new single unique nonce must be used for every token request</c>
      <c>Claims</c>
      <c>No requirement is made on the presence or absence of claims. The general EAT rules apply. The nonce MUST be present and the receiver MUST not error out on any claims it doesn’t understand.</c>
</texttable>

<t>Strictly speaking, slight modifications such use of a different means of key identification are a divergence from this profile and MUST use a different profile identifier.</t>

<t>A profile that is similar to this can be defined and/or standardized by making normative reference to this and adding other requirements. 
Such a definition MUST have a different profile identifier.</t>

</section>
</section>
<section anchor="encoding" title="Encoding and Collected CDDL">

<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 format.</t>

<section anchor="claims-set-and-cddl-for-cwt-and-jwt" title="Claims-Set and CDDL for CWT and JWT">

<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" title="Encoding Data Types">

<t>This makes use of the types defined in <xref target="RFC8610"/> Appendix D, Standard Prelude.</t>

<section anchor="common-types" title="Common Data Types">

<t>time-int is identical to the epoch-based time, but disallows
floating-point representation.</t>

<t>The OID encoding from <xref target="RFC9090"/> is used without the tag number in CBOR-encoded tokens.
In JSON tokens OIDs are a text string in the common form of “nn.nn.nn…”.</t>

<t>Unless expliclity indicated, URIs are not the URI tag defined in <xref target="RFC8949"/>.
They are just text strings that contain a URI.</t>

<figure><artwork 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

]]></artwork></figure>

</section>
<section anchor="jsoninterop" title="JSON Interoperability">

<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 – must be base64url encoded</t>
  <t>time – must be encoded as NumericDate as described section 2 of <xref target="RFC7519"/>.</t>
  <t>string-or-uri – must be encoded as StringOrURI as described section 2 of <xref target="RFC7519"/>.</t>
  <t>uri – must be a URI <xref target="RFC3986"/>.</t>
  <t>oid – encoded as a string using the well established dotted-decimal notation (e.g., the text “1.2.250.1”).</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" title="Labels">

<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" title="CBOR Interoperability">

<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" title="Collected CDDL">

<section anchor="payload-cddl" title="Payload CDDL">

<t>This CDDL defines all the EAT Claims that are added to the main definition of a Claim-Set in <xref target="CDDL_for_CWT"/>.
Claims-Set is the payload for CWT, JWT and potentially other token types.
This is for both CBOR and JSON.
When there is variation between CBOR and JSON, the JC&lt;&gt; CDDL generic defined in <xref target="CDDL_for_CWT"/>.</t>

<t>This CDDL uses, but doesn’t define Nested-Token because its definition varies between CBOR and JSON and the JC&lt;&gt; generic can’t be used to define it.
Nested-Token is the one place that that a CBOR token can be nested inside a JSON token and vice versa.
Nested-Token is defined in the following sections.</t>

<figure><artwork 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 (10..74), bstr .size (8..64)>


$$Claims-Set-Claims //= (ueid-label => ueid-type)

ueid-type = JC<base64-url-text .size (12..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 //=
    ( security-level-label => security-level-type ) 

security-level-type = unrestricted /
                      restricted /
                      hardware

unrestricted       = JC< "unrestricted",      1>
restricted         = JC< "restricted",        2>
hardware           = JC< "hardware",          3>

$$Claims-Set-Claims //= (secure-boot-label => bool)

$$Claims-Set-Claims //= ( debug-status-label => debug-status-type )

debug-status-type = ds-enabled /
                    disabled /
                    disabled-since-boot /
                    disabled-permanently /
                    disabled-fully-and-permanently

ds-enabled                     = JC< "enabled", 0 >
disabled                       = JC< "disabled", 1 >
disabled-since-boot            = JC< "disabled-since-boot", 2 >
disabled-permanently           = JC< "disabled-permanently", 3 >
disabled-fully-and-permanently = JC< "disabled-fully-and-permanently",
                                      4 >

$$Claims-Set-Claims //= (location-label => location-type)

location-type = {
    latitude => number,
    longitude => number,
    ? altitude => number,
    ? accuracy => number,
    ? altitude-accuracy => number,
    ? heading => number,
    ? speed => number,
    ? timestamp => ~time-int,
    ? age => uint
}

latitude          = JC< "latitude",          1 >
longitude         = JC< "longitude",         2 >
altitude          = JC< "altitude",          3 >
accuracy          = JC< "accuracy",          4 >
altitude-accuracy = JC< "altitude-accuracy", 5 >
heading           = JC< "heading",           6 >
speed             = JC< "speed",             7 >
timestamp         = JC< "timestamp",         8 >
age               = JC< "age",               9 >

$$Claims-Set-Claims //= (uptime-label => uint)

$$Claims-Set-Claims //=  (boot-seed-label => binary-data)

$$Claims-Set-Claims //= (boot-count-label => uint)

$$Claims-Set-Claims //= ( intended-use-label => intended-use-type )

intended-use-type = generic /
                    registration / 
                    provisioning / 
                    csr /
                    pop

generic      = JC< "generic",      1 >
registration = JC< "registration", 2 >
provisioning = JC< "provisioning", 3 >
csr          = JC< "csr",          4 >
pop          = JC< "pop",          5 >

$$Claims-Set-Claims //= (
    dloas-label => [ + dloa-type ]
)

dloa-type = [
    dloa_registrar: general-uri
    dloa_platform_label: text 
    ? dloa_application_label: text
]

$$Claims-Set-Claims //= (profile-label => general-uri / general-oid)

$$Claims-Set-Claims //= (
    manifests-label => manifests-type
)

manifests-type = [+ manifest-format]

manifest-format = [
    content-type:   coap-content-format,
    content-format: JC< $$manifest-body-json, 
                        $$manifest-body-cbor >
]

$$manifest-body-cbor /= bytes .cbor untagged-coswid
$$manifest-body-json /= base64-url-text

$$manifest-body-cbor /= bytes .cbor SUIT_Envelope
$$manifest-body-json /= base64-url-text

$$manifest-body-cbor /= spdx-json
$$manifest-body-json /= spdx-json
spdx-json = text

$$manifest-body-cbor /= cyclone-dx-json
$$manifest-body-cbor /= cyclone-dx-xml
$$manifest-body-json /= cyclone-dx-json
$$manifest-body-json /= cyclone-dx-xml
cyclone-dx-json = text
cyclone-dx-xml  = text

suit-directive-process-dependency = 19

$$Claims-Set-Claims //= (
    swevidence-label => swevidence-type
)

swevidence-type = [+ swevidence-format]

swevidence-format = [
    content-type:   coap-content-format,
    content-format: JC< $$swevidence-body-json,
                        $$swevidence-body-cbor > 
]

$$swevidence-body-cbor /= bytes .cbor untagged-coswid
$$swevidence-body-json /= base64-url-text


$$Claims-Set-Claims //= ( 
    measurement-results-label => 
        [ + measurement-results-group ] )

measurement-results-group = [
    measurement-system: tstr,
    measruement-results: [ + individual-result ]
]

individual-result = [
    results-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 >



$$Claims-Set-Claims //= (submods-label => { + text => Submodule })

Submodule = Claims-Set / Nested-Token / Detached-Submodule-Digest



Detached-Submodule-Digest = [
   algorithm : JC< text, int >
   digest    : binary-data 
]


DEB-Messages = DEB-Tagged-Message / DEB-Untagged-Message

DEB-Tagged-Message   = #6.TBD(DEB-Untagged-Message)
DEB-Untagged-Message = Detached-EAT-Bundle

Detached-EAT-Bundle = [
    main-token : Nested-Token,
    detached-claims-sets: {
        + tstr => JC<json-wrapped-claims-set,
                     cbor-wrapped-claims-set>
    }
]

json-wrapped-claims-set = base64-url-text

cbor-wrapped-claims-set = bstr .cbor Claims-Set



nonce-label            = JC< "eat_nonce",  10 >
ueid-label             = JC< "ueid",       256 >
sueids-label           = JC< "sueids",     257 >
oemid-label            = JC< "oemid",      258 >
hardware-model-label   = JC< "hwmodel",    259 >
hardware-version-label = JC< "hwversion",  260 >
secure-boot-label      = JC< "secboot",    262 >
debug-status-label     = JC< "dbgstat",    263 >
location-label         = JC< "location",   264 >
profile-label          = JC< "eat_profile",265 >
submods-label          = JC< "submods",    266 >

security-level-label   = JC< "seclevel",   TBD >
uptime-label           = JC< "uptime",     TBD >
boot-seed-label        = JC< "bootseed",   TBD >
intended-use-label     = JC< "intuse",     TBD >
dloas-label            = JC< "dloas",      TBD >
sw-name-label          = JC< "swname",     TBD >
sw-version-label       = JC< "swversion",  TBD >
manifests-label        = JC< "manifests",  TBD >
swevidence-label       = JC< "swevidence", TBD >
measurement-results-label = JC< "measres" , TBD >
boot-count-label       = JC< "bootcount",  TBD >


]]></artwork></figure>

</section>
<section anchor="cbor-specific-cddl" title="CBOR-Specific CDDL">

<figure><artwork 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 /= DEB-Tagged-Message

$$EAT-CBOR-Untagged-Token /= CWT-Untagged-Message
$$EAT-CBOR-Untagged-Token /= DEB-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 

]]></artwork></figure>

</section>
<section anchor="json-specific-cddl" title="JSON-Specific CDDL">

<figure><artwork type="CDDL"><![CDATA[
EAT-JSON-Token = $$EAT-JSON-Token-Formats

$$EAT-JSON-Token-Formats /= JWT-Message
$$EAT-JSON-Token-Formats /= DEB-Untagged-Message


Nested-Token = JSON-Nested-Token

JSON-Nested-Token = [
   type : "JWT" / "CBOR" / "DEB",
   nested-token : JWT-Message /
                  CBOR-Token-Inside-JSON-Token /
                  Detached-EAT-Bundle 
]

CBOR-Token-Inside-JSON-Token = base64-url-text

]]></artwork></figure>

</section>
</section>
</section>
<section anchor="privacyconsiderations" title="Privacy Considerations">

<t>Certain EAT claims can be used to track the owner of an entity and
therefore, implementations should consider providing privacy-preserving
options dependent on the intended usage of the EAT.  Examples would
include suppression of location claims for EAT’s provided to
unauthenticated consumers.</t>

<section anchor="ueidprivacyconsiderations" title="UEID and SUEID Privacy Considerations">

<t>A UEID is usually not privacy-preserving. Any set of Relying Parties
that receives tokens that happen to be from a particular entity will be
able to know the tokens are all from the same entity and be able to
track it.</t>

<t>Thus, in many usage situations UEID violates
governmental privacy regulation. 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" title="Location Privacy Considerations">

<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 when before sending location data.</t>

</section>
<section anchor="bootseedprivacyconsiderations" title="Boot Seed Privacy Considerations">

<t>The Boot Seed 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" title="Replay Protection and Privacy">

<t>EAT offers 2 primary mechanisms for token replay protection (also sometimes
known as token “freshness”):  the cti/jti claim and the nonce claim.  The cti/jti claim
in a CWT/JWT is a field that may be optionally included in the EAT and is in general
derived on the same device in which the entity is instantiated.  The nonce claim is based
on a value that is usually derived remotely (outside of the entity).  These claims can be used
to extract and convey personally-identifying information either inadvertently or by intention.  For instance,
an implementor may choose a cti that is 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 (e.g., if the account name is used to derive the nonce).  In order
to avoid the conveyance of privacy-related information in either the cti/jti or nonce claims, these fields
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.</t>

</section>
</section>
<section anchor="securitycons" title="Security Considerations">

<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.  In addition,
implementors should consider the following.</t>

<section anchor="key-provisioning" title="Key Provisioning">

<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" title="Transmission of Key Material">

<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="transport-security" title="Transport Security">

<t>As stated in Section 8 of <xref target="RFC8392"/>, “The security of the CWT relies
upon on the protections offered by COSE”.  Similar considerations
apply to EAT when sent as a CWT.  However, EAT introduces the concept
of a nonce to protect against replay.  Since an EAT may be created by
an entity that may not support the same type of transport security as
the consumer of the EAT, intermediaries may be required to bridge
communications between the entity and consumer.  As a result, it is
RECOMMENDED that both the consumer create a nonce, and the entity
leverage the nonce along with COSE mechanisms for encryption and/or
signing to create the EAT.</t>

<t>Similar considerations apply to the use of EAT as a JWT.  Although the
security of a JWT leverages the JSON Web Encryption (JWE) and JSON Web
Signature (JWS) specifications, it is still recommended to make use of
the EAT nonce.</t>

</section>
<section anchor="multiple-eat-consumers" title="Multiple EAT Consumers">

<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 should leverage a secure protocol (e.g.one that
uses transport-layer security, i.e. TLS),</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 transport 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="deb-security-considerations" title="DEB Security Considerations">

<t>A DEB (detached EAT bundle) is composed of a nested full token appended to
an unsigned claims set as per <xref target="DEB"/> .  The attached claims set is vulnerable to
modification in transit.  Although the nested token does contain digests corresponding
to the unsigned claims set (as a submodule), these digests themselves should be protected
from manipulation during transit so that a verifier can detect tampering of the detached claims
set.  A suitable singing and/or encryption method should be sufficinet to protect the nested token if transport
layer cryptographic protection is not feasible.</t>

</section>
</section>
<section anchor="iana-considerations" title="IANA Considerations">

<section anchor="reuse-of-cbor-and-json-web-token-cwt-and-jwt-claims-registries" title="Reuse of CBOR and JSON Web Token (CWT and JWT) Claims Registries">

<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="claims-registered-by-this-document" title="Claims Registered by This Document">

<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 (except
for the nonce claim which is already registered for JWT, but not registered for CWT).</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>

<section anchor="claims-for-early-assignment" title="Claims for Early Assignment">
<t>RFC Editor: in the final publication this section should be combined with the following
section as it will no longer be necessary to distinguish claims with early assignment.
Also, the following paragraph should be removed.</t>

<t>The claims in this section have been (requested for / given) early assignment according to <xref target="RFC7120"/>.
They have been assigned values and registered before final publication of this document.
While their semantics is not expected to change in final publication, it is possible that they will.
The JWT Claim Names and CWT Claim Keys are not expected to change.</t>

<t>In draft -06 an early allocation was described.
The processing of that early allocation was never correctly completed.
This early allocation assigns different numbers for the CBOR claim labels.
This early allocation will presumably complete correctly</t>

<t><list style="symbols">
  <t>Claim Name: Nonce</t>
  <t>Claim Description: Nonce</t>
  <t>JWT Claim Name: “nonce” (already registered for JWT)</t>
  <t>Claim Key: TBD (requested value 10)</t>
  <t>Claim Value Type(s): byte string</t>
  <t>Change Controller: IESG</t>
  <t>Specification Document(s): <xref target="OpenIDConnectCore"/>, <spanx style="strong">this document</spanx></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: TBD (requested value 256)</t>
  <t>Claim Value Type(s): byte string</t>
  <t>Change Controller: IESG</t>
  <t>Specification Document(s): <spanx style="strong">this document</spanx></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: TBD (requested value 257)</t>
  <t>Claim Value Type(s): map</t>
  <t>Change Controller: IESG</t>
  <t>Specification Document(s): <spanx style="strong">this document</spanx></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: Hardware OEMID</t>
  <t>Claim Description: Hardware OEM ID</t>
  <t>JWT Claim Name: “oemid”</t>
  <t>Claim Key: TBD (requeste value 258)</t>
  <t>Claim Value Type(s): byte string or integer</t>
  <t>Change Controller: IESG</t>
  <t>Specification Document(s): <spanx style="strong">this document</spanx></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: TBD (requested value 259)</t>
  <t>Claim Value Type(s): byte string</t>
  <t>Change Controller: IESG</t>
  <t>Specification Document(s): <spanx style="strong">this document</spanx></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: Hardware Version</t>
  <t>Claim Description: Hardware Version Identifier</t>
  <t>JWT Claim Name: “hwversion”</t>
  <t>Claim Key: TBD (requested value 260)</t>
  <t>Claim Value Type(s): array</t>
  <t>Change Controller: IESG</t>
  <t>Specification Document(s): <spanx style="strong">this document</spanx></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: Secure Boot</t>
  <t>Claim Description: Indicate whether the boot was secure</t>
  <t>JWT Claim Name: “secboot”</t>
  <t>Claim Key: 262</t>
  <t>Claim Value Type(s): Boolean</t>
  <t>Change Controller: IESG</t>
  <t>Specification Document(s): <spanx style="strong">this document</spanx></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: Debug Status</t>
  <t>Claim Description: Indicate status of debug facilities</t>
  <t>JWT Claim Name: “dbgstat”</t>
  <t>Claim Key: 263</t>
  <t>Claim Value Type(s): integer or string</t>
  <t>Change Controller: IESG</t>
  <t>Specification Document(s): <spanx style="strong">this document</spanx></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: TBD (requested value 264)</t>
  <t>Claim Value Type(s): map</t>
  <t>Change Controller: IESG</t>
  <t>Specification Document(s): <spanx style="strong">this document</spanx></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: Profile</t>
  <t>Claim Description: Indicates the EAT profile followed</t>
  <t>JWT Claim Name: “eat_profile”</t>
  <t>Claim Key: TBD (requested value 265)</t>
  <t>Claim Value Type(s): URI or OID</t>
  <t>Change Controller: IESG</t>
  <t>Specification Document(s): <spanx style="strong">this document</spanx></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: TBD (requested value 266)</t>
  <t>Claim Value Type(s): map</t>
  <t>Change Controller: IESG</t>
  <t>Specification Document(s): <spanx style="strong">this document</spanx></t>
</list></t>

</section>
<section anchor="to-be-assigned-claims" title="To be Assigned Claims">

<t>(Early assignment is NOT requested for these claims. Implementers should be aware they may change)</t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: Security Level</t>
  <t>Claim Description: Characterization of the security of an Attester or submodule</t>
  <t>JWT Claim Name: “seclevel”</t>
  <t>Claim Key: TBD</t>
  <t>Claim Value Type(s): integer or string</t>
  <t>Change Controller: IESG</t>
  <t>Specification Document(s): <spanx style="strong">this document</spanx></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: Uptime</t>
  <t>Claim Description: Uptime</t>
  <t>JWT Claim Name: “uptime”</t>
  <t>Claim Key: TBD</t>
  <t>Claim Value Type(s): unsigned integer</t>
  <t>Change Controller: IESG</t>
  <t>Specification Document(s): <spanx style="strong">this document</spanx></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: Boot Seed</t>
  <t>Claim Description: Identifies a boot cycle</t>
  <t>JWT Claim Name: “bootseed”</t>
  <t>Claim Key: TBD</t>
  <t>Claim Value Type(s): bytes</t>
  <t>Change Controller: IESG</t>
  <t>Specification Document(s): <spanx style="strong">this document</spanx></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: Intended Use</t>
  <t>Claim Description: Indicates intended use of the EAT</t>
  <t>JWT Claim Name: “intuse”</t>
  <t>Claim Key: TBD</t>
  <t>Claim Value Type(s): integer or string</t>
  <t>Change Controller: IESG</t>
  <t>Specification Document(s): <spanx style="strong">this document</spanx></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: DLOAs</t>
  <t>Claim Description: Certifications received as Digital Letters of Approval</t>
  <t>JWT Claim Name: “dloas”</t>
  <t>Claim Key: TBD</t>
  <t>Claim Value Type(s): array</t>
  <t>Change Controller: IESG</t>
  <t>Specification Document(s): <spanx style="strong">this document</spanx></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: SW Name</t>
  <t>Claim Description: The name of the SW running in the entity</t>
  <t>JWT Claim Name: “swname”</t>
  <t>Claim Key: TBD</t>
  <t>Claim Value Type(s): map</t>
  <t>Change Controller: IESG</t>
  <t>Specification Document(s): <spanx style="strong">this document</spanx></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: SW Version</t>
  <t>Claim Description: The version of SW running in the entity</t>
  <t>JWT Claim Name: “swversion”</t>
  <t>Claim Key: TBD</t>
  <t>Claim Value Type(s): map</t>
  <t>Change Controller: IESG</t>
  <t>Specification Document(s): <spanx style="strong">this document</spanx></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: SW Manifests</t>
  <t>Claim Description: Manifests describing the SW installed on the entity</t>
  <t>JWT Claim Name: “manifests”</t>
  <t>Claim Key: TBD</t>
  <t>Claim Value Type(s): array</t>
  <t>Change Controller: IESG</t>
  <t>Specification Document(s): <spanx style="strong">this document</spanx></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: SW Evidence</t>
  <t>Claim Description: Measurements of the SW, memory configuration and such on the entity</t>
  <t>JWT Claim Name: “swevidence”</t>
  <t>Claim Key: TBD</t>
  <t>Claim Value Type(s): array</t>
  <t>Change Controller: IESG</t>
  <t>Specification Document(s): <spanx style="strong">this document</spanx></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Claim Name: SW Measurment Results</t>
  <t>Claim Description: The results of comparing SW measurements to reference values</t>
  <t>JWT Claim Name: “swresults”</t>
  <t>Claim Key: TBD</t>
  <t>Claim Value Type(s): array</t>
  <t>Change Controller: IESG</t>
  <t>Specification Document(s): <spanx style="strong">this document</spanx></t>
</list></t>

</section>
<section anchor="registerversionscheme" title="Version Schemes Registered by this Document">

<t>IANA is requested to register a new value in the “Software Tag Version Scheme Values” established by <xref target="CoSWID"/>.</t>

<t>The new value is a version scheme a 13-digit European Article Number <xref target="EAN-13"/>.
An EAN-13 is also known as an International Article Number or most commonly as a bar code.
This version scheme is the ASCII text representation of EAN-13 digits, the same ones often printed with a bar code.
This version scheme must comply with the EAN allocation and assignment rules.
For example, this requires the manufacturer to obtain a manufacture code from GS1.</t>

<texttable>
      <ttcol align='left'>Index</ttcol>
      <ttcol align='left'>Version Scheme Name</ttcol>
      <ttcol align='left'>Specification</ttcol>
      <c>5</c>
      <c>ean-13</c>
      <c>This document</c>
</texttable>

</section>
<section anchor="registerueidurn" title="UEID URN Registered by this Document">

<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>
      <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>

</section>
<section anchor="tag-for-detached-eat-bundle" title="Tag for Detached EAT Bundle">

<t>In the registry <xref target="IANA.cbor-tags"/>, IANA is requested to allocate the
following tag from the  FCFS space, with the present document as the
specification reference.</t>

<texttable>
      <ttcol align='left'>Tag</ttcol>
      <ttcol align='left'>Data Items</ttcol>
      <ttcol align='left'>Semantics</ttcol>
      <c>TBD602</c>
      <c>array</c>
      <c>Detached EAT Bundle <xref target="DEB"/></c>
</texttable>

</section>
<section anchor="media-types-registered-by-this-document" title="Media Types Registered by this Document">

<t>It is requested that the CoAP Content-Format for SPDX and CycloneDX be been registered in the “CoAP Content-Formats” subregistry within the “Constrained RESTful Environments (CoRE) Parameters” registry <xref target="IANA.core-parameters"></xref>:</t>

<t><list style="symbols">
  <t>Media Type: application/spdx+json</t>
  <t>Encoding: binary</t>
  <t>ID: TBD</t>
  <t>Reference: <xref target="SPDX"/></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Media Type: vendor/vnd.cyclonedx+xml</t>
  <t>Encoding: binary</t>
  <t>ID: TBD</t>
  <t>Reference: <xref target="CycloneDX"/></t>
</list></t>

<t> </t>

<t><list style="symbols">
  <t>Media Type: vendor/vnd.cyclonedx+json</t>
  <t>Encoding: binary</t>
  <t>ID: TBD</t>
  <t>Reference: <xref target="CycloneDX"/></t>
</list></t>

</section>
</section>
</section>


  </middle>

  <back>

    <references title='Normative References'>





<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'><organization/></author>
<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='RFC7159' target='https://www.rfc-editor.org/info/rfc7159'>
<front>
<title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
<author fullname='T. Bray' initials='T.' role='editor' surname='Bray'><organization/></author>
<date month='March' year='2014'/>
<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='RFC' value='7159'/>
<seriesInfo name='DOI' value='10.17487/RFC7159'/>
</reference>



<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'><organization/></author>
<author fullname='J. Bradley' initials='J.' surname='Bradley'><organization/></author>
<author fullname='N. Sakimura' initials='N.' surname='Sakimura'><organization/></author>
<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='RFC7516' target='https://www.rfc-editor.org/info/rfc7516'>
<front>
<title>JSON Web Encryption (JWE)</title>
<author fullname='M. Jones' initials='M.' surname='Jones'><organization/></author>
<author fullname='J. Hildebrand' initials='J.' surname='Hildebrand'><organization/></author>
<date month='May' year='2015'/>
<abstract><t>JSON Web Encryption (JWE) represents encrypted content 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 IANA registries defined by that specification.  Related digital signature and Message Authentication Code (MAC) capabilities are described in the separate JSON Web Signature (JWS) specification.</t></abstract>
</front>
<seriesInfo name='RFC' value='7516'/>
<seriesInfo name='DOI' value='10.17487/RFC7516'/>
</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'><organization/></author>
<author fullname='P. Hoffman' initials='P.' surname='Hoffman'><organization/></author>
<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'><organization/></author>
<author fullname='K. Hartke' initials='K.' surname='Hartke'><organization/></author>
<author fullname='C. Bormann' initials='C.' surname='Bormann'><organization/></author>
<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='RFC7517' target='https://www.rfc-editor.org/info/rfc7517'>
<front>
<title>JSON Web Key (JWK)</title>
<author fullname='M. Jones' initials='M.' surname='Jones'><organization/></author>
<date month='May' year='2015'/>
<abstract><t>A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key.  This specification also defines a JWK Set JSON data structure that represents a set of JWKs.  Cryptographic algorithms and identifiers for use with this specification are described in the separate JSON Web Algorithms (JWA) specification and IANA registries established by that specification.</t></abstract>
</front>
<seriesInfo name='RFC' value='7517'/>
<seriesInfo name='DOI' value='10.17487/RFC7517'/>
</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'><organization/></author>
<author fullname='J. Bradley' initials='J.' surname='Bradley'><organization/></author>
<author fullname='N. Sakimura' initials='N.' surname='Sakimura'><organization/></author>
<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='RFC7800' target='https://www.rfc-editor.org/info/rfc7800'>
<front>
<title>Proof-of-Possession Key Semantics for JSON Web Tokens (JWTs)</title>
<author fullname='M. Jones' initials='M.' surname='Jones'><organization/></author>
<author fullname='J. Bradley' initials='J.' surname='Bradley'><organization/></author>
<author fullname='H. Tschofenig' initials='H.' surname='Tschofenig'><organization/></author>
<date month='April' year='2016'/>
<abstract><t>This specification describes how to declare in a JSON Web Token (JWT) that the presenter of the JWT possesses a particular proof-of- possession key and how the recipient can cryptographically confirm proof of possession of the key by the presenter.  Being able to prove possession of a key is also sometimes described as the presenter being a holder-of-key.</t></abstract>
</front>
<seriesInfo name='RFC' value='7800'/>
<seriesInfo name='DOI' value='10.17487/RFC7800'/>
</reference>



<reference anchor='RFC8126' target='https://www.rfc-editor.org/info/rfc8126'>
<front>
<title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
<author fullname='M. Cotton' initials='M.' surname='Cotton'><organization/></author>
<author fullname='B. Leiba' initials='B.' surname='Leiba'><organization/></author>
<author fullname='T. Narten' initials='T.' surname='Narten'><organization/></author>
<date month='June' year='2017'/>
<abstract><t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters.  To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper.  For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t><t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed.  This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t><t>This is the third edition of this document; it obsoletes RFC 5226.</t></abstract>
</front>
<seriesInfo name='BCP' value='26'/>
<seriesInfo name='RFC' value='8126'/>
<seriesInfo name='DOI' value='10.17487/RFC8126'/>
</reference>



<reference anchor='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'><organization/></author>
<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>



<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'><organization/></author>
<author fullname='E. Wahlstroem' initials='E.' surname='Wahlstroem'><organization/></author>
<author fullname='S. Erdtman' initials='S.' surname='Erdtman'><organization/></author>
<author fullname='H. Tschofenig' initials='H.' surname='Tschofenig'><organization/></author>
<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'><organization/></author>
<author fullname='C. Vigano' initials='C.' surname='Vigano'><organization/></author>
<author fullname='C. Bormann' initials='C.' surname='Bormann'><organization/></author>
<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='RFC8747' target='https://www.rfc-editor.org/info/rfc8747'>
<front>
<title>Proof-of-Possession Key Semantics for CBOR Web Tokens (CWTs)</title>
<author fullname='M. Jones' initials='M.' surname='Jones'><organization/></author>
<author fullname='L. Seitz' initials='L.' surname='Seitz'><organization/></author>
<author fullname='G. Selander' initials='G.' surname='Selander'><organization/></author>
<author fullname='S. Erdtman' initials='S.' surname='Erdtman'><organization/></author>
<author fullname='H. Tschofenig' initials='H.' surname='Tschofenig'><organization/></author>
<date month='March' year='2020'/>
<abstract><t>This specification describes how to declare in a CBOR Web Token (CWT) (which is defined by RFC 8392) that the presenter of the CWT possesses a particular proof-of-possession key. Being able to prove possession of a key is also sometimes described as being the holder-of-key. This specification provides equivalent functionality to &quot;Proof-of-Possession Key Semantics for JSON Web Tokens (JWTs)&quot; (RFC 7800) but using Concise Binary Object Representation (CBOR) and CWTs rather than JavaScript Object Notation (JSON) and JSON Web Tokens (JWTs).</t></abstract>
</front>
<seriesInfo name='RFC' value='8747'/>
<seriesInfo name='DOI' value='10.17487/RFC8747'/>
</reference>



<reference anchor='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'><organization/></author>
<author fullname='R. Fielding' initials='R.' surname='Fielding'><organization/></author>
<author fullname='L. Masinter' initials='L.' surname='Masinter'><organization/></author>
<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'> <front> <title>*** BROKEN REFERENCE ***</title> <author> <organization/> </author> <date/> </front> </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'><organization/></author>
<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="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="http://www.iana.org/assignments/cwt">
  <front>
    <title>CBOR Web Token (CWT) Claims</title>
    <author >
      <organization>IANA</organization>
    </author>
    <date />
  </front>
</reference>
<reference anchor="IANA.JWT.Claims" target="https://www.iana.org/assignments/jwt">
  <front>
    <title>JSON Web Token (JWT) Claims</title>
    <author >
      <organization>IANA</organization>
    </author>
    <date />
  </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="FIDO.AROE" target="https://fidoalliance.org/specs/fido-security-requirements/fido-authenticator-allowed-restricted-operating-environments-list-v1.2-fd-20201102.html">
  <front>
    <title>FIDO Authenticator Allowed Restricted Operating Environments List</title>
    <author >
      <organization>The FIDO Alliance</organization>
    </author>
    <date year="2020" month="November"/>
  </front>
</reference>
<reference anchor="EAN-13" target="https://www.gs1.org/standards/barcodes/ean-upc">
  <front>
    <title>International Article Number - EAN/UPC barcodes</title>
    <author >
      <organization>GS1</organization>
    </author>
    <date year="2019"/>
  </front>
</reference>



<reference anchor='CoSWID'>
   <front>
      <title>Concise Software Identification Tags</title>
      <author fullname='Henk Birkholz'>
	 <organization>Fraunhofer SIT</organization>
      </author>
      <author fullname='Jessica Fitzgerald-McKay'>
	 <organization>National Security Agency</organization>
      </author>
      <author fullname='Charles Schmidt'>
	 <organization>The MITRE Corporation</organization>
      </author>
      <author fullname='David Waltermire'>
	 <organization>National Institute of Standards and Technology</organization>
      </author>
      <date day='7' month='March' year='2022'/>
      <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 similar set of
   semantics and features as SWID tags, as well as new semantics that
   allow CoSWIDs to describe additional types of information, all in a
   more memory efficient format.

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-ietf-sacm-coswid-21'/>
   <format target='https://www.ietf.org/archive/id/draft-ietf-sacm-coswid-21.txt' type='TXT'/>
</reference>


<reference anchor="OpenIDConnectCore" target="https://openid.net/specs/openid-connect-core-1_0.html">
  <front>
    <title>OpenID Connect Core 1.0 incorporating errata set 1</title>
    <author fullname="N. Sakimura">
      <organization></organization>
    </author>
    <author fullname="J. Bradley">
      <organization></organization>
    </author>
    <author fullname="M. Jones">
      <organization></organization>
    </author>
    <author fullname="B. de Medeiros">
      <organization></organization>
    </author>
    <author fullname="C. Mortimore">
      <organization></organization>
    </author>
    <date year="2014" month="November"/>
  </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/cbor-tags.xhtml">
  <front>
    <title>IANA CBOR Tags Registry</title>
    <author >
      <organization></organization>
    </author>
    <date year="n.d."/>
  </front>
</reference>
<reference anchor="SPDX" target="https://spdx.dev/wp-content/uploads/sites/41/2020/08/SPDX-specification-2-2.pdf">
  <front>
    <title>Software Package Data Exchange (SPDX)</title>
    <author >
      <organization></organization>
    </author>
    <date year="2020"/>
  </front>
</reference>
<reference anchor="CycloneDX" target="https://cyclonedx.org/specification/overview/">
  <front>
    <title>CycloneDX</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
</reference>
<reference anchor="IANA.core-parameters" target="&lt;https://www.iana.org/assignments/core-parameters&gt;">
  <front>
    <title>IANA Constrained RESTful Environments (CoRE) Parameters</title>
    <author >
      <organization></organization>
    </author>
    <date year="n.d."/>
  </front>
</reference>


    </references>

    <references title='Informative References'>





<reference anchor='RFC4122' target='https://www.rfc-editor.org/info/rfc4122'>
<front>
<title>A Universally Unique IDentifier (UUID) URN Namespace</title>
<author fullname='P. Leach' initials='P.' surname='Leach'><organization/></author>
<author fullname='M. Mealling' initials='M.' surname='Mealling'><organization/></author>
<author fullname='R. Salz' initials='R.' surname='Salz'><organization/></author>
<date month='July' year='2005'/>
<abstract><t>This specification defines a Uniform Resource Name namespace for UUIDs (Universally Unique IDentifier), also known as GUIDs (Globally Unique IDentifier).  A UUID is 128 bits long, and can guarantee uniqueness across space and time.  UUIDs were originally used in the Apollo Network Computing System and later in the Open Software Foundation\'s (OSF) Distributed Computing Environment (DCE), and then in Microsoft Windows platforms.</t><t>This specification is derived from the DCE specification with the kind permission of the OSF (now known as The Open Group).  Information from earlier versions of the DCE specification have been incorporated into this document.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='4122'/>
<seriesInfo name='DOI' value='10.17487/RFC4122'/>
</reference>



<reference anchor='RFC4422' target='https://www.rfc-editor.org/info/rfc4422'>
<front>
<title>Simple Authentication and Security Layer (SASL)</title>
<author fullname='A. Melnikov' initials='A.' role='editor' surname='Melnikov'><organization/></author>
<author fullname='K. Zeilenga' initials='K.' role='editor' surname='Zeilenga'><organization/></author>
<date month='June' year='2006'/>
<abstract><t>The Simple Authentication and Security Layer (SASL) is a framework for providing authentication and data security services in connection-oriented protocols via replaceable mechanisms.  It provides a structured interface between protocols and mechanisms.  The resulting framework allows new protocols to reuse existing mechanisms and allows old protocols to make use of new mechanisms.  The framework also provides a protocol for securing subsequent protocol exchanges within a data security layer.</t><t>This document describes how a SASL mechanism is structured, describes how protocols include support for SASL, and defines the protocol for carrying a data security layer over a connection.  In addition, this document defines one SASL mechanism, the EXTERNAL mechanism.</t><t>This document obsoletes RFC 2222.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='4422'/>
<seriesInfo name='DOI' value='10.17487/RFC4422'/>
</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'><organization/></author>
<date month='August' year='2007'/>
<abstract><t>This Glossary provides definitions, abbreviations, and explanations of terminology for information system security. The 334 pages of entries offer recommendations to improve the comprehensibility of written material that is generated in the Internet Standards Process (RFC 2026). The recommendations follow the principles that such writing should (a) use the same term or definition whenever the same concept is mentioned; (b) use terms in their plainest, dictionary sense; (c) use terms that are already well-established in open publications; and (d) avoid terms that either favor a particular vendor or favor a particular technology or mechanism over other, competing techniques that already exist or could be developed.  This memo provides information for the Internet community.</t></abstract>
</front>
<seriesInfo name='FYI' value='36'/>
<seriesInfo name='RFC' value='4949'/>
<seriesInfo name='DOI' value='10.17487/RFC4949'/>
</reference>



<reference anchor='RFC7120' target='https://www.rfc-editor.org/info/rfc7120'>
<front>
<title>Early IANA Allocation of Standards Track Code Points</title>
<author fullname='M. Cotton' initials='M.' surname='Cotton'><organization/></author>
<date month='January' year='2014'/>
<abstract><t>This memo describes the process for early allocation of code points by IANA from registries for which &quot;Specification Required&quot;, &quot;RFC                        Required&quot;, &quot;IETF Review&quot;, or &quot;Standards Action&quot; policies apply.  This process can be used to alleviate the problem where code point allocation is needed to facilitate desired or required implementation and deployment experience prior to publication of an RFC, which would normally trigger code point allocation.  The procedures in this document are intended to apply only to IETF Stream documents.</t></abstract>
</front>
<seriesInfo name='BCP' value='100'/>
<seriesInfo name='RFC' value='7120'/>
<seriesInfo name='DOI' value='10.17487/RFC7120'/>
</reference>



<reference anchor='RFC8446' target='https://www.rfc-editor.org/info/rfc8446'>
<front>
<title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
<author fullname='E. Rescorla' initials='E.' surname='Rescorla'><organization/></author>
<date month='August' year='2018'/>
<abstract><t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t><t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t></abstract>
</front>
<seriesInfo name='RFC' value='8446'/>
<seriesInfo name='DOI' value='10.17487/RFC8446'/>
</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'><organization/></author>
<author fullname='C. Jennings' initials='C.' surname='Jennings'><organization/></author>
<author fullname='Z. Shelby' initials='Z.' surname='Shelby'><organization/></author>
<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='RATS.Architecture'>
   <front>
      <title>Remote Attestation Procedures Architecture</title>
      <author fullname='Henk Birkholz'>
	 <organization>Fraunhofer SIT</organization>
      </author>
      <author fullname='Dave Thaler'>
	 <organization>Microsoft</organization>
      </author>
      <author fullname='Michael Richardson'>
	 <organization>Sandelman Software Works</organization>
      </author>
      <author fullname='Ned Smith'>
	 <organization>Intel Corporation</organization>
      </author>
      <author fullname='Wei Pan'>
	 <organization>Huawei Technologies</organization>
      </author>
      <date day='14' month='June' year='2022'/>
      <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.
   An attempt is made to provide for a model that is neutral toward
   processor architectures, the content of claims, and protocols.

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-ietf-rats-architecture-18'/>
   <format target='https://www.ietf.org/archive/id/draft-ietf-rats-architecture-18.txt' type='TXT'/>
</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" target="http://standards.ieee.org/findstds/standard/802.1AR-2009.html">
  <front>
    <title>IEEE Standard, "IEEE 802.1AR Secure Device Identifier"</title>
    <author >
      <organization></organization>
    </author>
    <date year="2009" month="December"/>
  </front>
</reference>
<reference anchor="W3C.GeoLoc" target="https://www.w3.org/TR/geolocation-API/#coordinates_interface">
  <front>
    <title>Geolocation API Specification 2nd Edition</title>
    <author >
      <organization>Worldwide Web Consortium</organization>
    </author>
    <date year="2018" month="January"/>
  </front>
</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" target="https://webstore.ansi.org/standards/ieee/ieee8022001r2007">
  <front>
    <title>IEEE Standard For Local And Metropolitan Area Networks Overview And Architecture</title>
    <author >
      <organization></organization>
    </author>
    <date year="2007"/>
  </front>
</reference>
<reference anchor="FIPS-140" target="https://csrc.nist.gov/publications/detail/fips/140/2/final">
  <front>
    <title>Security Requirements for Cryptographic Modules</title>
    <author >
      <organization>National Institue of Standards</organization>
    </author>
    <date year="2001" month="May"/>
  </front>
</reference>
<reference anchor="Common.Criteria" target="https://www.commoncriteriaportal.org/cc/">
  <front>
    <title>Common Criteria for Information Technology Security Evaluation</title>
    <author >
      <organization></organization>
    </author>
    <date year="2017" month="April"/>
  </front>
</reference>



<reference anchor='COSE.X509.Draft'>
   <front>
      <title>CBOR Object Signing and Encryption (COSE): Header parameters for carrying and referencing X.509 certificates</title>
      <author fullname='Jim Schaad'>
	 <organization>August Cellars</organization>
      </author>
      <date day='14' month='December' year='2020'/>
      <abstract>
	 <t>   The CBOR Signing And Encrypted Message (COSE) structure uses
   references to keys in general.  For some algorithms, additional
   properties are defined which 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-08'/>
   <format target='https://www.ietf.org/archive/id/draft-ietf-cose-x509-08.txt' type='TXT'/>
</reference>


<reference anchor='CBOR.Cert.Draft'>
   <front>
      <title>CBOR Encoded X.509 Certificates (C509 Certificates)</title>
      <author fullname='John Preuß Mattsson'>
	 <organization>Ericsson AB</organization>
      </author>
      <author fullname='Göran Selander'>
	 <organization>Ericsson AB</organization>
      </author>
      <author fullname='Shahid Raza'>
	 <organization>RISE AB</organization>
      </author>
      <author fullname='Joel Höglund'>
	 <organization>RISE AB</organization>
      </author>
      <author fullname='Martin Furuhed'>
	 <organization>Nexus Group</organization>
      </author>
      <date day='10' month='July' year='2022'/>
      <abstract>
	 <t>   This document specifies a CBOR encoding of X.509 certificates.  The
   resulting certificates are called C509 Certificates.  The CBOR
   encoding supports a large subset of RFC 5280 and all certificates
   compatible with the RFC 7925, IEEE 802.1AR (DevID), CNSA, RPKI, GSMA
   eUICC, and CA/Browser Forum Baseline Requirements profiles.  When
   used to re-encode DER encoded X.509 certificates, the CBOR encoding
   can in many cases reduce the size of RFC 7925 profiled certificates
   with over 50%.  The CBOR encoded structure can alternatively be
   signed directly (&quot;natively signed&quot;), which does not require re-
   encoding for the signature to be verified.  The document also
   specifies C509 COSE headers, a C509 TLS certificate type, and a C509
   file format.

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-ietf-cose-cbor-encoded-cert-04'/>
   <format target='https://www.ietf.org/archive/id/draft-ietf-cose-cbor-encoded-cert-04.txt' type='TXT'/>
</reference>




    </references>


<section anchor="examples" title="Examples">

<t>Most examples are shown as just a Claims-Set that would be a payload for a CWT, JWT, DEB or future token types.
It is shown this way because the payload is all the claims, the most interesting part and showing full tokens makes it harder to show the claims.</t>

<t>Some examples of full tokens are also given.</t>

<t>WARNING: These examples use tag and label numbers not yet assigned by IANA.</t>

<section anchor="payload-examples" title="Payload Examples">

<section anchor="simple-tee-attestation" title="Simple TEE Attestation">

<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. /

{
    / nonce /           10: h'948f8860d13a463e',
    / security-level / 261: 2, / restricted /
    / secure-boot /    262: true,
    / debug-status /   263: 2, / disabled-since-boot /
    / manfests /       273: [
                           [
                               121, / CoAP Content ID. A     /
                                    / made up one until one  /
                                    / is assigned for CoSWID /

                               / This is byte-string wrapped      /
                               / payload CoSWID. It gives the TEE /
                               / software name, the version and   /
                               / the  name of the file it is in.  /
                               / {0: "3a24",                      /
                               /  12: 1,                          /
                               /   1: "Acme TEE OS",              /
                               /  13: "3.1.4",                    /
                               /   2: [{31: "Acme TEE OS", 33: 1}, /
                               /       {31: "Acme TEE OS", 33: 2}], /
                               /   6: {                           /
                               /       17: {                      /
                               /           24: "acme_tee_3.exe"   /
                               /       }                          /
                               /    }                             /
                               /  }                               /
                               h' a60064336132340c01016b
                                  41636d6520544545204f530d65332e31
                                  2e340282a2181f6b41636d6520544545
                                  204f53182101a2181f6b41636d652054
                                  4545204f5318210206a111a118186e61
                                  636d655f7465655f332e657865'
                            ]
                        ]
}
    

]]></artwork></figure>

<figure><artwork><![CDATA[
/ A payload CoSWID created by the SW vendor. All this really does /
/ is name the TEE SW, its version and lists the one file that     /
/ makes up the TEE. /

1398229316({
    / Unique CoSWID ID /    0: "3a24",
    / tag-version /        12: 1,
    / software-name /       1: "Acme TEE OS",
    / software-version /   13: "3.1.4",
    / entity /              2: [
                                   {
        / entity-name /                31: "Acme TEE OS",
        / role        /                33: 1 / tag-creator /
                                   },
                                   {
        / entity-name /                31: "Acme TEE OS",
        / role        /                33: 2 / software-creator /
                                   }
                               ],
    / payload /                6: {
        / ...file /                17: {
            / ...fs-name /             24: "acme_tee_3.exe"
                                   }
                               }
})
]]></artwork></figure>

</section>
<section anchor="submodules-for-board-and-device" title="Submodules for Board and Device">

<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.         /

{
    / nonce /           10: h'948f8860d13a463e8e',
    / UEID /           256: h'0198f50a4ff6c05861c8860d13a638ea',
    / HW OEM ID /      258: h'894823', / IEEE OUI format OEM ID /
    / HW Model ID /    259: h'549dcecc8b987c737b44e40f7c635ce8'
                              / Hash of chip model name /,
    / HW Version /     260: ["1.3.4", 1], / Multipartnumeric version /
    / SW Name /        271: "Acme OS",
    / SW Version /     272: ["3.5.5", 1],
    / secure-boot /    262: true,
    / debug-status /   263: 3, / permanent-disable  /
    / timestamp (iat) /  6: 1526542894,
    / security-level / 261: 2, / restricted OS /
    / submods / 266: {
        / A submodule to hold some claims about the circuit board /
        "board" :  {
            / HW OEM ID /   258: h'9bef8787eba13e2c8f6e7cb4b1f4619a',
            / HW Model ID / 259: h'ee80f5a66c1fb9742999a8fdab930893'
                                      / Hash of board module name /,
            / HW Version /  260: ["2.0a", 2] / multipartnumeric+suffix /
        },

        / A submodule to hold claims about the overall device /
        "device" :  {
            / HW OEM ID /   258: 61234, / PEN Format OEM ID / 
            / HW Version /  260: ["4012345123456", 5] / EAN-13 format (barcode) /
        }
    }
}
]]></artwork></figure>

</section>
<section anchor="eat-produced-by-attestation-hardware-block" title="EAT Produced by Attestation Hardware Block">

<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). /

{
    / nonce /           10: h'948f8860d13a463e',
    / UEID /           256: h'0198f50a4ff6c05861c8860d13a638ea',
    / OEMID /          258: 64242, / Private Enterprise Number /
    / security-level / 261: 3, / hardware level security /
    / secure-boot /    262: true,
    / debug-status /   263: 3, / disabled-permanently /
    / HW version /     260: [ "3.1", 1 ] / Type is multipartnumeric /
}

]]></artwork></figure>

</section>
<section anchor="key-key-store-attestation" title="Key / Key Store Attestation">

<figure><artwork><![CDATA[
/ This is an EAT payload that describes a simple TEE. /

{
    / nonce /           10: h'948f8860d13a463e',
    / security-level / 261: 2, / restricted /
    / secure-boot /    262: true,
    / debug-status /   263: 2, / disabled-since-boot /
    / manfests /       273: [
                           [
                               121, / CoAP Content ID. A     /
                                    / made up one until one  /
                                    / is assigned for CoSWID /

                               / This is byte-string wrapped      /
                               / payload CoSWID. It gives the TEE /
                               / software name, the version and   /
                               / the  name of the file it is in.  /
                               / {0: "3a24",                      /
                               /  12: 1,                          /
                               /   1: "Acme TEE OS",              /
                               /  13: "3.1.4",                    /
                               /   2: [{31: "Acme TEE OS", 33: 1}, /
                               /       {31: "Acme TEE OS", 33: 2}], /
                               /   6: {                           /
                               /       17: {                      /
                               /           24: "acme_tee_3.exe"   /
                               /       }                          /
                               /    }                             /
                               /  }                               /
                               h' a60064336132340c01016b
                                  41636d6520544545204f530d65332e31
                                  2e340282a2181f6b41636d6520544545
                                  204f53182101a2181f6b41636d652054
                                  4545204f5318210206a111a118186e61
                                  636d655f7465655f332e657865'
                            ]
                        ]
}
    

]]></artwork></figure>

<figure><artwork><![CDATA[
/ A payload CoSWID created by the SW vendor. All this really does /
/ is name the TEE SW, its version and lists the one file that     /
/ makes up the TEE. /

1398229316({
    / Unique CoSWID ID /    0: "3a24",
    / tag-version /        12: 1,
    / software-name /       1: "Acme TEE OS",
    / software-version /   13: "3.1.4",
    / entity /              2: [
                                   {
        / entity-name /                31: "Acme TEE OS",
        / role        /                33: 1 / tag-creator /
                                   },
                                   {
        / entity-name /                31: "Acme TEE OS",
        / role        /                33: 2 / software-creator /
                                   }
                               ],
    / payload /                6: {
        / ...file /                17: {
            / ...fs-name /             24: "acme_tee_3.exe"
                                   }
                               }
})
]]></artwork></figure>

</section>
<section anchor="submodules-for-board-and-device-1" title="Submodules for Board and Device">

<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.         /

{
    / nonce /           10: h'948f8860d13a463e8e',
    / UEID /           256: h'0198f50a4ff6c05861c8860d13a638ea',
    / HW OEM ID /      258: h'894823', / IEEE OUI format OEM ID /
    / HW Model ID /    259: h'549dcecc8b987c737b44e40f7c635ce8'
                              / Hash of chip model name /,
    / HW Version /     260: ["1.3.4", 1], / Multipartnumeric version /
    / SW Name /        271: "Acme OS",
    / SW Version /     272: ["3.5.5", 1],
    / secure-boot /    262: true,
    / debug-status /   263: 3, / permanent-disable  /
    / timestamp (iat) /  6: 1526542894,
    / security-level / 261: 2, / restricted OS /
    / submods / 266: {
        / A submodule to hold some claims about the circuit board /
        "board" :  {
            / HW OEM ID /   258: h'9bef8787eba13e2c8f6e7cb4b1f4619a',
            / HW Model ID / 259: h'ee80f5a66c1fb9742999a8fdab930893'
                                      / Hash of board module name /,
            / HW Version /  260: ["2.0a", 2] / multipartnumeric+suffix /
        },

        / A submodule to hold claims about the overall device /
        "device" :  {
            / HW OEM ID /   258: 61234, / PEN Format OEM ID / 
            / HW Version /  260: ["4012345123456", 5] / EAN-13 format (barcode) /
        }
    }
}
]]></artwork></figure>

</section>
<section anchor="eat-produced-by-attestation-hardware-block-1" title="EAT Produced by Attestation Hardware Block">

<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). /

{
    / nonce /           10: h'948f8860d13a463e',
    / UEID /           256: h'0198f50a4ff6c05861c8860d13a638ea',
    / OEMID /          258: 64242, / Private Enterprise Number /
    / security-level / 261: 3, / hardware level security /
    / secure-boot /    262: true,
    / debug-status /   263: 3, / disabled-permanently /
    / HW version /     260: [ "3.1", 1 ] / Type is multipartnumeric /
}

]]></artwork></figure>

</section>
<section anchor="key-key-store-attestation-1" title="Key / Key Store Attestation">

<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, for example a   /
/ 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.                    /
/                                                              /
/ This is similar to Android Key Attestation.                  /


{
    / nonce /           10: h'948f8860d13a463e',
    / security-level / 261: 2, / restricted /
    / secure-boot /    262: true,
    / debug-status /   263: 2, / disabled-since-boot /
    / manifests /      273: [
                                [ 121, / CoAP Content ID. A      /
                                       / made up one until one   /
                                       / is assigned for CoSWID  /
                                  h'a600683762623334383766
                                    0c000169436172626f6e6974650d6331
                                    2e320e0102a2181f75496e6475737472
                                    69616c204175746f6d6174696f6e1821
                                    02'
                                 ]
                                 / Above is an encoded CoSWID     /
                                 / with the following data        /
                                 /   SW Name: "Carbonite"         /
                                 /   SW Vers: "1.2"               /
                                 /   SW Creator:                  /
                                 /      "Industrial Automation"   /
                            ],
    / expiration /       4: 1634324274, / 2021-10-15T18:57:54Z /
    / creation time /    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 /
         / nonce /             10: h'948f8860d13a463e',
           / security-level / 261: 1, / unrestricted /
           / secure-boot /    262: true,
           / manifests /      273: [ 
                                [ 121, / CoAP Content ID. A      /
                                       / made up one until one   /
                                       / is assigned for CoSWID  /
                                    h'a600687337
                                      6537346b78380c000168
                                      44726f6964204f530d65
                                      52322e44320e0302a218
                                      1F75496E647573747269
                                      616c204175746f6d6174
                                      696f6e182102' 
                                  ]
                                  / Above is an encoded CoSWID /
                                  / with the following data:   /
                                  /   SW Name: "Droid OS"      /
                                  /   SW Vers: "R2.D2"         /
                                  /   SW Creator:              /
                                  /     "Industrial Automation"/
                               ]
                           }
                       }
}
           
   
]]></artwork></figure>

</section>
<section anchor="sw-measurements-of-an-iot-device" title="SW Measurements of an IoT Device">

<t>This is a simple token that might be for and 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.            /

{
    / nonce /           10: h'948f8860d13a463e',
    / security-level / 261: 2, / restricted /
    / secure-boot /    262: true,
    / debug-status /   263: 2, / disabled-since-boot /
    / OEMID /          258: h'8945ad', / IEEE CID based /
    / UEID /           256: h'0198f50a4ff6c05861c8860d13a638ea', 
    / sumods /         266: {
                            "OS" : {
        / security-level /     261: 2, / restricted /
        / secure-boot /        262: true,
        / debug-status /       263: 2, / disabled-since-boot /
        / swevidence /         274: [
                                   [
                                       121, / CoAP Content ID. A     /
                                            / made up one until one  /
                                            / is assigned for CoSWID /

                                    / This is a byte-string wrapped /
                                    / evidence CoSWID. It has       /
                                    / hashes of the main files of   /
                                    / the IoT OS.  /
                                    h'a600663463613234350c
                                      17016d41636d6520522d496f542d4f
                                      530d65332e312e3402a2181f724163
                                      6d6520426173652041747465737465
                                      7218210103a11183a318187161636d
                                      655f725f696f745f6f732e65786514
                                      1a0044b349078201582005f6b327c1
                                      73b4192bd2c3ec248a292215eab456
                                      611bf7a783e25c1782479905a31818
                                      6d7265736f75726365732e72736314
                                      1a000c38b10782015820c142b9aba4
                                      280c4bb8c75f716a43c99526694caa
                                      be529571f5569bb7dc542f98a31818
                                      6a636f6d6d6f6e2e6c6962141a0023
                                      3d3b0782015820a6a9dcdfb3884da5
                                      f884e4e1e8e8629958c2dbc7027414
                                      43a913e34de9333be6'
                                    ]
                                ]
                            }
                        }
}

]]></artwork></figure>

<figure><artwork><![CDATA[
/ An evidence CoSWID created for the "Acme R-IoT-OS" created by /
/ the "Acme Base Attester" (both fictious names).  It provides  /
/ measurements of the SW (other than the attester SW) on the    /
/ device. /

1398229316({
    / Unique CoSWID ID /    0: "4ca245",
    / tag-version /        12: 23, / Attester-maintained counter /
    / software-name /       1: "Acme R-IoT-OS",
    / software-version /   13: "3.1.4",
    / entity /              2: {
        / entity-name /        31: "Acme Base Attester",
        / role        /        33: 1 / tag-creator /
                            },
    / evidence /            3: {
        / ...file /             17: [
                                    {
            / ...fs-name /              24: "acme_r_iot_os.exe",
            / ...size    /              20: 4502345,
            / ...hash    /               7: [
                                             1, / SHA-256 /
                                             h'05f6b327c173b419
                                               2bd2c3ec248a2922
                                               15eab456611bf7a7
                                               83e25c1782479905'
                                         ]
                                    },
                                    {
            / ...fs-name /              24: "resources.rsc",
            / ...size    /              20: 800945,
            / ...hash    /               7: [
                                              1, / SHA-256 /
                                             h'c142b9aba4280c4b
                                               b8c75f716a43c995
                                               26694caabe529571
                                               f5569bb7dc542f98'
                                         ]
                                    },
                                    {
            / ...fs-name /              24: "common.lib",
            / ...size    /              20: 2309435,
            / ...hash    /               7: [
                                             1, / SHA-256 /
                                             h'a6a9dcdfb3884da5
                                               f884e4e1e8e86299
                                               58c2dbc702741443
                                               a913e34de9333be6'
                                         ]
                                    }
                                ]
                            }
})
]]></artwork></figure>

</section>
<section anchor="attestation-results-in-json-format" title="Attestation Results in JSON format">

<t>This is a JSON-format 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 security level directly through to the Relying Party.
The Verifier also knows the Reference Values for the measured SW components and is able to check them.
It informs the Relying Party that they were correct in the swresults claim.
“Trustus Verifications” is the name of the services that verifies the SW component measurements.</t>

<figure><artwork><![CDATA[
{
    "eat_nonce" : "jkd8KL-8=Qlzg4",
    "seclevel" : "restricted",
    "secboot" :  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-sumodules" title="JSON-encoded Token with Sumodules">

<figure><artwork><![CDATA[
{
    "eat_nonce": "lI-IYNE6Rj6O",
    "ueid":     "AJj1Ck_2wFhhyIYNE6Y46g==",
    "secboot":  true,
    "dbgstat":  "disabled-permanently",
    "iat":      1526542894,
    "seclevel": "restricted", 
    "submods": {
        "Android App Foo" :  {
            "seclevel": "unrestricted"
        },

        "Secure Element Eat" : [
            "CBOR",
            "2D3ShEOhASagWGaoCkiUj4hg0TpGPhkBAFABmPUKT_bAWGHIhg0TpjjqGQECGfryGQEFBBkBBvUZAQcDGQEEgmMzLjEBGQEKoWNURUWCL1gg5c-V_ST6txRGdC3VjUPa4XjlX-K5QpGpKRCC_8JjWgtYQPaQywOIZ3-mJKN3X9fLxOhAnsmBa-MvpHRzOw-Ywn-67bvJljuctezAPD41s6_At7NbSV3qwJlxIuqGfwe41es="
        ],

        "Linux Android": {
            "seclevel": "unrestricted"
        },

        "Subsystem J": [ 
            "JWT",
            "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJKLUF0dGVzdGVyIiwiaWF0IjoxNjUxNzc0ODY4LCJleHAiOm51bGwsImF1ZCI6IiIsInN1YiI6IiJ9.gjw4nFMhLpJUuPXvMPzK1GMjhyJq2vWXg1416XKszwQ"
        ] 
    }
}
]]></artwork></figure>

</section>
</section>
<section anchor="full-token-examples" title="Full Token Examples">

<section anchor="basic-cwt-example" title="Basic CWT Example">

<t>This is a simple ECDSA signed CWT-format token.</t>

<figure><artwork><![CDATA[
/ This is a full CWT-format token with a very simple payloal. / 
/ The main structure visible here is that of the COSE_Sign1.  /

61( 18( [
    h'A10126',                           / protected headers  /
    {},                           / empty unprotected headers / 
    h'A20B46024A6B0978DE0A49000102030405060708',    / payload /
    h'9B9B2F5E470000F6A20C8A4157B5763FC45BE759
      9A5334028517768C21AFFB845A56AB557E0C8973
      A07417391243A79C478562D285612E292C622162
      AB233787'                                   / signature / 
] ) )
]]></artwork></figure>

</section>
<section anchor="detached-eat-bundle" title="Detached EAT Bundle">

<t>In this DEB 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 DEB itself can be assembled by untrusted SW.</t>

<figure><artwork><![CDATA[
/ This is a detached EAT bundle (DEB) tag.  /
/ Note that 602, the tag identifying a DEB is not yet registered with IANA /

602([

    / First part is a full EAT token with claims like nonce and /
    / UEID. Most importantly, it includes a submodule that is a /
    / detached digest which is the hash of the "TEE" claims set /
    / in the next section. The COSE payload follows:            /
    / { /
    /      10: h'948F8860D13A463E', /
    /     256: h'0198F50A4FF6C05861C8860D13A638EA', /
    /     258: 64242, /
    /     261: 4,  /
    /     262: true, /
    /     263: 3, /
    /     260: ["3.1", 1], /
    /     266: { /
    /         "TEE": [ /
    /             -16, /
    /              h'E5CF95FD24FAB71446742DD58D43DAE1 /
    /                78E55FE2B94291A9291082FFC2635A0B' /
    /         ] /
    /     } /
    /   }  /
    h'D83DD28443A10126A05866A80A48948F8860D13A463E1901
      00500198F50A4FF6C05861C8860D13A638EA19010219FAF2
      19010504190106F5190107031901048263332E310119010A
      A163544545822F5820E5CF95FD24FAB71446742DD58D43DA
      E178E55FE2B94291A9291082FFC2635A0B5840F690CB0388
      677FA624A3775FD7CBC4E8409EC9816BE32FA474733B0F98
      C27FBAEDBBC9963B9CB5ECC03C3E35B3AFC0B7B35B495DEA
      C0997122EA867F07B8D5EB',
    {
       / A CBOR-encoded byte-string wrapped EAT claims-set. It /
       / contains claims suitable for a TEE                    /
       "TEE" : h'a50a48948f8860d13a463e19010503190106
                 f519010702190111818218795858a6006433
                 6132340c01016b41636d6520544545204f53
                 0d65332e312e340282a2181f6b41636d6520
                 544545204f53182101a2181f6b41636d6520
                 544545204f5318210206a111a118186e6163
                 6d655f7465655f332e657865'
    }
 ])
 
]]></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                                         /

{
    / nonce /           10: h'948f8860d13a463e',
    / UEID /           256: h'0198f50a4ff6c05861c8860d13a638ea',
    / OEMID /          258: 64242, / Private Enterprise Number /
    / security-level / 261: 3, / hardware level security /
    / secure-boot /    262: true,
    / debug-status /   263: 3, / disabled-permanently /
    / hw version /     260: [ "3.1", 1 ], / multipartnumeric /
    / submods/         266: {
                                "TEE": [ / detached digest submod /
                                    -16, / SHA-256 /
                                    h'e5cf95fd24fab7144674
                                      2dd58d43dae178e55fe2
                                      b94291a9291082ffc2635
                                      a0b'
                                ]
                            }
}

]]></artwork></figure>

</section>
<section anchor="json-encoded-detached-eat-bundle" title="JSON-encoded Detached EAT Bundle">

<t>In this bundle there are two detached Claims-Sets, “CS1” and “CS2”.
The JWT at the start of the bundle has detached signature submodules with hashes of “CS1” and “CS2”.
TODO: make the JWT actually be correct verifiable JWT.</t>

<figure><artwork><![CDATA[
[
    [ "JWT",
      "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJKLUF0dGVzdGVyIiwiaWF0IjoxNjUxNzc0ODY4LCJleHAiOm51bGwsImF1ZCI6IiIsInN1YiI6IiJ9.gjw4nFMhLpJUuPXvMPzK1GMjhyJq2vWXg1416XKszwQ"
    ],
    {
        "Audio Subsystem Claims": "ewogICAgICAgICAgICAibm9uY2UiOiAgICAgImxJK0lZTkU2Umo2TyIsCiAgICAgICAgICAgICJpYXQiOiAgICAgIDE1MjY1NDI4OTQKICAgICAgICAgfQo=",
        "Graphics Subsystem Claims": "ewogICAgICAgICAgICAibm9uY2UiOiAgICJsSStJWU5FNlJqNk8iLAogICAgICAgICAgICAiaWF0IjogICAgIDE1MjY1NDI4OTQKICAgICAgICB9"
    }
]
]]></artwork></figure>

</section>
</section>
</section>
<section anchor="UEID-Design" title="UEID Design Rationale">

<section anchor="collision-probability" title="Collision Probability">

<t>This calculation is to determine the probability of a collision of
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 datadbase 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>
      <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 SW 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>
      <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>
      <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 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" title="No Use of UUID">

<t>A UEID is not a UUID <xref target="RFC4122"/> by conscious choice for the following
reasons.</t>

<t>UUIDs are limited to 128 bits which may not be enough for some future
use cases.</t>

<t>Today, cryptographic-quality random numbers are available from common
CPUs and hardware. This hardware was introduced between 2010 and 2015.
Operating systems and cryptographic libraries give access to this
hardware. Consequently, there is little need for implementations
to construct such random values from multiple sources on their own.</t>

<t>Version 4 UUIDs do allow for use of such cryptographic-quality
random numbers, but do so by mapping into the overall UUID
structure of time and clock values. This structure is of no
value here yet adds complexity. It also slightly reduces the
number of actual bits with entropy.</t>

<t>The design of UUID accommodates the construction of a unique identifier by combination of several identifiers that separately do not provide sufficient uniqueness.
UEID takes the view that this construction is no longer needed, in particular because cryptographic-quality random number generators are readily available.
It takes the view that hardware, software and/or manufacturing process implement UEID in a simple and direct way.</t>

</section>
</section>
<section anchor="eat-relation-to-ieee8021ar-secure-device-identity-devid" title="EAT Relation to IEEE.802.1AR Secure Device Identity (DevID)">

<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 defines a message format for proving trustworthiness 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" title="DevID Used With EAT">

<t>As just described, EAT defines a network protocol and <xref target="IEEE.802.1AR"/> doesn’t.
Vice versa, EAT doesn’t define a an device implementation and DevID does.</t>

<t>Hence, EAT can be the network protocol 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" title="How EAT Provides an Equivalent Secure Device Identity">

<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" title="An X.509 Format EAT">

<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" title="Device Identifier Permanence">

<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" title="CDDL for CWT and JWT">

<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>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><artwork 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"

; Be sure to have cddl 0.8.29 or higher for this to work
JC<J,C> = JSON-ONLY<J> / CBOR-ONLY<C>

]]></artwork></figure>

<figure><artwork 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.
]]></artwork></figure>

<figure><artwork 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
]]></artwork></figure>

</section>
<section anchor="Claim_Characteristics" title="Claim Characteristics">

<t>The following is design guidance for creating new EAT claims, particularly those to be registered with IANA.</t>

<t>Much of this guidance is generic and could also be considered when designing new CWT or JWT claims.</t>

<section anchor="interoperability-and-relying-party-orientation" title="Interoperability and Relying Party Orientation">

<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" title="Operating System and Technology Neutral">

<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 SW 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" title="Security Level Neutral">

<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" title="Reuse of Extant Data Formats">

<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 format 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" title="Proprietary Claims">

<t>EAT allows the definition and use of proprietary claims.</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" title="Endorsements and Verification Keys">

<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="RATS.Architecture"/> 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 Reference Values to which EAT claims are compared as part of the verification process.
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>

<section anchor="identification-methods" title="Identification Methods">

<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" title="COSE/JWS Key ID">

<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 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" title="JWS and COSE X.509 Header Parameters">

<t>COSE X.509 <xref target="COSE.X509.Draft"/> and JSON Web Siganture <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" title="CBOR Certificate COSE Header Parameters">

<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" title="Claim-Based Key Identification">

<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 anchor="other-considerations" title="Other Considerations">

<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="changes-from-previous-drafts" title="Changes from Previous Drafts">

<t>The following is a list of known changes from the previous drafts.  This list is
non-authoritative.  It is meant to help reviewers see the significant
differences.</t>

<section anchor="from-draft-rats-eat-01" title="From draft-rats-eat-01">

<t><list style="symbols">
  <t>Added UEID design rationale appendix</t>
</list></t>

</section>
<section anchor="from-draft-mandyam-rats-eat-00" title="From draft-mandyam-rats-eat-00">

<t>This is a fairly large change in the orientation of the document, but
no new claims have been added.</t>

<t><list style="symbols">
  <t>Separate information and data model using CDDL.</t>
  <t>Say an EAT is a CWT or JWT</t>
  <t>Use a map to structure the boot_state and location claims</t>
</list></t>

</section>
<section anchor="from-draft-ietf-rats-eat-01" title="From draft-ietf-rats-eat-01">

<t><list style="symbols">
  <t>Clarifications and corrections for OEMID claim</t>
  <t>Minor spelling and other fixes</t>
  <t>Add the nonce claim, clarify jti claim</t>
</list></t>

</section>
<section anchor="from-draft-ietf-rats-eat-02" title="From draft-ietf-rats-eat-02">

<t><list style="symbols">
  <t>Roll all EUIs back into one UEID type</t>
  <t>UEIDs can be one of three lengths, 128, 192 and 256.</t>
  <t>Added appendix justifying UEID design and size.</t>
  <t>Submods part now includes nested eat tokens so they can be named and
there can be more tha one of them</t>
  <t>Lots of fixes to the CDDL</t>
  <t>Added security considerations</t>
</list></t>

</section>
<section anchor="from-draft-ietf-rats-eat-03" title="From draft-ietf-rats-eat-03">

<t><list style="symbols">
  <t>Split boot_state into secure-boot and debug-disable claims</t>
  <t>Debug disable is an enumerated type rather than Booleans</t>
</list></t>

</section>
<section anchor="from-draft-ietf-rats-eat-04" title="From draft-ietf-rats-eat-04">

<t><list style="symbols">
  <t>Change IMEI-based UEIDs to be encoded as a 14-byte string</t>
  <t>CDDL cleaned up some more</t>
  <t>CDDL allows for JWTs and UCCSs</t>
  <t>CWT format submodules are byte string wrapped</t>
  <t>Allows for JWT nested in CWT and vice versa</t>
  <t>Allows UCCS (unsigned CWTs) and JWT unsecured tokens</t>
  <t>Clarify tag usage when nesting tokens</t>
  <t>Add section on key inclusion</t>
  <t>Add hardware version claims</t>
  <t>Collected CDDL is now filled in. Other CDDL corrections.</t>
  <t>Rename debug-disable to debug-status; clarify that it is not extensible</t>
  <t>Security level claim is not extensible</t>
  <t>Improve specification of location claim and added a location privacy section</t>
  <t>Add intended use claim</t>
</list></t>

</section>
<section anchor="from-draft-ietf-rats-eat-05" title="From draft-ietf-rats-eat-05">

<t><list style="symbols">
  <t>CDDL format issues resolved</t>
  <t>Corrected reference to Location Privacy section</t>
</list></t>

</section>
<section anchor="from-draft-ietf-rats-eat-06" title="From draft-ietf-rats-eat-06">

<t><list style="symbols">
  <t>Added boot-seed claim</t>
  <t>Rework CBOR interoperability section</t>
  <t>Added profiles claim and section</t>
</list></t>

</section>
<section anchor="from-draft-ietf-rats-eat-07" title="From draft-ietf-rats-eat-07">

<t><list style="symbols">
  <t>Filled in IANA and other sections for possible preassignment of Claim Keys for well understood claims</t>
</list></t>

</section>
<section anchor="from-draft-ietf-rats-eat-08" title="From draft-ietf-rats-eat-08">

<t><list style="symbols">
  <t>Change profile claim to be either a URL or an OID rather than a test string</t>
</list></t>

</section>
<section anchor="from-draft-ietf-rats-eat-09" title="From draft-ietf-rats-eat-09">

<t><list style="symbols">
  <t>Add SUEIDs</t>
  <t>Add appendix comparing IDevID to EAT</t>
  <t>Added section on use for Evidence and Attestation Results</t>
  <t>Fill in the key ID and endorsements identificaiton section</t>
  <t>Remove origination claim as it is replaced by key IDs and endorsements</t>
  <t>Added manifests and software evidence claims</t>
  <t>Add string labels non-claim labels for use with JSON (e.g. labels for members of location claim)</t>
  <t>EAN-13 HW versions are no longer a separate claim. Now they are folded in as a CoSWID version scheme.</t>
</list></t>

</section>
<section anchor="from-draft-ietf-rats-eat-10" title="From draft-ietf-rats-eat-10">

<t><list style="symbols">
  <t>Hardware version is made into an array of two rather than two claims</t>
  <t>Corrections and wording improvements for security levels claim</t>
  <t>Add swresults claim</t>
  <t>Add dloas claim – Digitial Letter of Approvals, a list of certifications</t>
  <t>CDDL for each claim no longer in a separate sub section</t>
  <t>Consistent use of terminology from RATS architecture document</t>
  <t>Consistent use of terminology from CWT and JWT documents</t>
  <t>Remove operating model and procedures; refer to CWT, JWT and RATS architecture instead</t>
  <t>Some reorganization of Section 1</t>
  <t>Moved a few references, including RATS Architecture, to informative.</t>
  <t>Add detached submodule digests and detached eat bundles (DEBs)</t>
  <t>New simpler and more universal scheme for identifying the encoding of a nested token</t>
  <t>Made clear that CBOR and JSON are only mixed when nesting a token in another token</t>
  <t>Clearly separate CDDL for JSON and CBOR-specific data items</t>
  <t>Define UJCS (unsigned JWTs)</t>
  <t>Add CDDL for a general Claims-Set used by UCCS, UJCS, CWT, JWT and EAT</t>
  <t>Top level CDDL for CWT correctly refers to COSE</t>
  <t>OEM ID is specifically for HW, not for SW</t>
  <t>HW OEM ID can now be a PEN</t>
  <t>HW OEM ID can now be a 128-bit random number</t>
  <t>Expand the examples section</t>
  <t>Add software and version claims as easy / JSON alternative to CoSWID</t>
</list></t>

</section>
<section anchor="from-draft-ietf-rats-eat-11" title="From draft-ietf-rats-eat-11">

<t><list style="symbols">
  <t>Add HW model claim</t>
  <t>Change reference for CBOR OID draft to RFC 9090</t>
  <t>Correct the iat claim in some examples</t>
  <t>Make HW Version just one claim rather than 3 (device, board and chip)</t>
  <t>Remove CDDL comments from CDDL blocks</t>
  <t>More clearly define “entity” and use it more broadly, particularly instead of “device”</t>
  <t>Re do early allocation of CBOR labels since last one didn’t complete correctly</t>
  <t>Lots of rewording and tightening up of section 1</t>
  <t>Lots of wording improvements in section 3, particularly better use of normative language</t>
  <t>Improve wording in submodules section, particularly how to distinguish types when decoding</t>
  <t>Remove security-level from early allocation</t>
  <t>Add boot odometer claim</t>
  <t>Add privacy considerations for replay protection</t>
</list></t>

</section>
<section anchor="from-draft-ietf-rats-eat-12" title="From draft-ietf-rats-eat-12">

<t><list style="symbols">
  <t>Make use of the JC&lt;&gt; generic to express CDDL for both JSON and CBOR</t>
  <t>Reorganize claims into 4 sections, particularly claims about the entity and about the token</t>
  <t>Nonce wording – say nonce is required and other improvements</t>
  <t>Clarify relationship of claims in evidence to results when forwarding</t>
  <t>Clarify manufacturer switching UEID types</t>
  <t>Add new section on the top-level token type that has CBOR-specific and JSON-specific CDDL since the top-level can’t be handled with JC&lt;&gt;</t>
  <t>Remove definition of UCCS and UJCS, replacing it with a CDDL socket and mention of future token types</t>
  <t>Split the examples into payload and top level tokens since UCCS can’t be used for examples any more (It was nice because you could see the payload claims in it easily, where you can’t with CWT)</t>
  <t>DEB tag number is TBD rather than hard coded</t>
  <t>Add appendix with non-normative CDDL for a Claims-Set, CWT and JWT</t>
  <t>(Large reorganization of the document build and example verification makefile)</t>
  <t>Use CoAP content format ID to distinguish manifest and evidence formats instead of CBOR tag</t>
  <t>Added more examples, both CBOR and JSON</t>
  <t>All CDDL is validating against all examples</t>
  <t>Unassigned IANA requests are clearly TBD in the document (and have real values as is necessary in the example validation process)</t>
  <t>Improve security-level claim</t>
  <t>swresults claim is now measurement results claim</t>
  <t>substantial redesign of measurement results claim</t>
</list></t>

</section>
<section anchor="from-draft-ietf-rats-eat-13" title="From draft-ietf-rats-eat-13">

<t><list style="symbols">
  <t>UEID length and type clarifications</t>
  <t>Address comments on SUEIDs</t>
  <t>“Attestation Evidence” -&gt; “Evidence”</t>
  <t>Wording clarification for “entity”</t>
  <t>Wording clarifications for DLOAs claim</t>
  <t>CDDL type for CoAP Content Format</t>
  <t>Move Claim Characteristics to an Appendix</t>
  <t>Rename odometer to boot-count</t>
  <t>Correct/clarify section on JSON/CBOR labels (Carl’s comment)</t>
  <t>Wording clarifications in Appendix C (Carl’s comment)</t>
  <t>xxx encoded -&gt; xxx-encoded</t>
  <t>Clarifications for cti and jti claims</t>
  <t>The 8th bit in a 7 bit text string doesn’t contribute to entro</t>
  <t>Improve SW Name Claim description</t>
  <t>Update commentary on UUID vs UEID</t>
  <t>Remove most of section 8.3 on CBOR Serialization, redundant with profiles</t>
  <t>The 8th bit in a 7 bit text string doesn’t contribute to entropy</t>
  <t>Improve SW Name description</t>
  <t>Don’t capitalize composite device</t>
  <t>Reword encoding exception sentence</t>
  <t>Wording improvements in section 1 related to Attestation Results</t>
  <t>Lots of rewording to make profile issues more prescriptive</t>
  <t>Sync terminology definitions with RATS Architecture, include Endorsement definition</t>
  <t>Plug-ins to the EAT format socket must be an IETF standard</t>
  <t>Link to RFC 9052 instead of 8152</t>
  <t>Improve introduction to profiles</t>
  <t>Improve CDDL for OID in JSON</t>
  <t>Move Endorsements and Verification Keys to a new Appendix</t>
  <t>Move privacy and security considerations to before IANA section</t>
  <t>Clarify that security-level is only the intended design</t>
  <t>Clarify that security-level only references section four of FIDO AROE</t>
  <t>Remove requirement that manifests be a byte string in CBOR-encoded tokens</t>
  <t>Add manifests for SPDX and CycloneDX</t>
  <t>Add a standard constrained device profile</t>
  <t>Added DEB security considerations</t>
</list></t>

</section>
</section>


  </back>

<!-- ##markdown-source:
H4sIAHujy2IAA+y9aXPcSHYo+h2/AsHuiBZnqoqLqNVu+bJJdg/b2q5ITdtv
XocCrAJJjKqAMoAiVaORf/s7e54EUCTt8Y14H26HPWIBiVxPnn0Zj8dJ02bl
7FM2r8r8ZdrWqzwpljX91bT7u7svdveTada+TJt2liSzalpmC2g4q7PLdlzk
7eW4ztpmnGfteO8gSW6vXqYfDs/P0t+q+nNRXqW/1NVqmXyXTquyyctm1bxM
f1jnzQ/wqFldLIqmKaqyXS+hz9OT85+TZfEySdO2mmo7+jHLl+01PDnA301V
t3V+2YQWzXoRP5hWi2U2bV2L1UV4Vlb4qL6c5rOmXc9zbdYWLf44v87TkxJ+
rNPDts1hg1qYY3pefc7L9NHJ4fl2kl1c1PnNyxR+JFmdZzD5ss3rMm+Tz7ew
V8VViYvP3OfTi6qGRc+yFobY3917PN7bTbJVe13VL5NxWpQw/deT9PWqnF3M
s1kOM+Stfp2t6ryc5tGrqoaNPsunqxqnCTOu6nX6+vURvMoXWTF/mc6v5v+r
kQYtvZ/ADuhIv0zSN3Du62xh4/xS1MXsOqvdCxrlf6+yOXy5SM/z6XVZzaur
Im9gvdMJ7iucRA57+uTZsyfpm6rOr6tVk6fHdXGD05zC4DDPrEyPi/yqwl3P
r2A3XqZH2by4rOqyyOi4VmVbQ8uPZ4fwc3lNwLj1x730+ZPn6dMne+kzAMWt
sLgFT/F//UdbTP5D5ueX9+skfffDcVVWV9ersJO/5nW+WMdvHr7E/Wcv0p+z
uoRzrFZX1+mHKpvZEt0LWs8MN/Tj3kH67PVZtMCyaPNZ+q8AHbNqEdb6x4OD
dG//yX76+Onjvecvwkr/Ws1osv2lJmVVLwC2bnK8MR9+Ptrf23shfz7be2J/
Ptl7Ev58Kn8+f3FgDWDY0OBZ+NMaPN/d1c/29q2HvWcH+ufjF9rD86d71vbZ
gXb2+MVz/ezFro32ApDLywT+/u2Xs+fUF9z1rL7Czd66bttl83JnJ8/q9npc
lJfVpLzKJotivrO8Xu7MqttyDgcwgR//clnM8x+nVVXPxrdXzfODLe6Kb/Nv
7z68Pk5/OXl3fHJ+epSe/fvZ+cmbdO/F84NR+vaXw8nZ+dvjye7u46ef9ia7
k91PNBnqQC8n/j1mQHlLdzmbp7/kVbOEH9l8jDd/Pi+u6I4e4j/r9BH0vE0f
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
AZmrrZbG/w/jXiJJN6kCAA==

-->

</rfc>

