<?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-13" 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="May" day="20"/>

    <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="RFC8152"/> 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 RATS Attestation 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 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>An entity is never a server or a service.</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>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 explicitly allowed.
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 Attestation Evidence.
Attestation Evidence is a claims set describing various characteristics of an entity.
Attestation 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 Attestation Evidence.
The Attestation 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.
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 Attestation Evidence and Attestation Results">

<t>Any claim defined in this document or in the IANA CWT or JWT registry may be used in Attestation Evidence or Attestation Results.</t>

<t>The relationship of claims in Attestation Results to Attestation 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 Attestation 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 Attestation 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 Attestation 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 Attestation Evidence.</t>

<t>There are no fixed rules for how a Verifier processes Attestation Evidence to produce Attestation Results.
What is important is the Relying Party understand what the Verifier does and what its policies are.</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="CWT/JWT 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 Attestation 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="Attestation Evidence:">
  A Claims Set generated by an Attester to be appraised by a Verifier.  Attestation 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 Attestation 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>
</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.
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-claim-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 and every bit in the byte string contributes to entropy.
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.
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 Attestation Evidence or occur in Attestation Results.
See <xref target="relationship"/> for discussion on how Attestation Results relate to Attestation 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. All implementations MUST be able to receive
UEIDs that are 33 bytes long (1 type byte and 256 bits).
No UEID longer than 33 bytes SHOULD be sent.</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>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 SEUID is of the same format as a UEID, but it MAY change to a different value on device life-cycle events.
Examples of these events are change of ownership, factory reset and on-boarding into an IoT device management system.
An entity MAY have both a UEID and SUEIDs, neither, one or the other.</t>

<t>There MAY be multiple SUEIDs.
Each one has a text string label the purpose of which is to distinguish it from others in the token.
The label MAY name the purpose, application or type of the SUEID.
Typically, there will be few SUEDs so there is no need for a formal labeling mechanism like a registry.
The EAT profile MAY describe how SUEIDs should be labeled.
If there is only one SUEID, the claim remains a map and there still must be a label.
For example, the label for the SUEID used by FIDO Onboarding Protocol could simply be “FDO”.</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 free-form text claim for the name of the software for the entity or submodule.
A CoSWID manifest or other type of manifest can be used instead if this claim is to limited to correctly characterize the SW for the entity or submodule.</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 entity’s ability to defend against attacks aimed at capturing the signing key, forging claims and forging EATs.</t>

<t>The intent of this claim is only to give the recipient a rough idea of the security the entity is aiming for.
This is via a simple, non-extensible set of three levels.</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 involves minimal SW defenses.
The most secure level involves specialized hardware to defend against hardware-based attacks.</t>

<t>Only through expansive certification programs like Common Criteria and FIDO certification 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 here 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"/>.
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 a broad interoperable description of security level.</t>

<t>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-odometer-claim-odometer" title="The Boot Odometer Claim (odometer)">

<t>The “odometer” claim contains a value that represents the number of
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 //= (odometer-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 MUST contain a random value created at system boot time that will allow differentiation of reports from different boot sessions.</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>

<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 an XML 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.
When this claim is issued by a Verifier, it MUST be because the entity has received the certification in the DLOA.</t>

<t>This claim MAY contain more than one DLOA.
If multiple DLOAs are present, it MUST be because the entity received all of the certifications.</t>

<t>DLOA XML 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 CBOR-encoded EATs the manifest, whatever format it is, MUST be placed in a byte string.</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>

<figure><artwork type="CDDL"><![CDATA[
$$Claims-Set-Claims //= (
    manifests-label => manifests-type
)

manifests-type = [+ manifest-format]

manifest-format = [
    content-type:   uint, 
    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

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:   uint, 
    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, {#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 the submodule.</t>

<t>The submodule Claims-Set is produced by the same Attester as the surrounding token.
It is secured using 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>This data type for this type of submodule is a map/object.
It is identified when decoding by it’s 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 Attestation Evidence or Attestation Results.
When these claims appear in Attestation 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 to each other 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 distinct from the nonce that is used by the Relying
Party to 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
float-point format. Any recipient of a token with a floating-point
format iat claim MUST consider it an error.  A 64-bit integer 
representation of epoch time 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="including-keys" title="Including Keys">

<t>An EAT may include a cryptographic key such as a public key.
The signing of the EAT binds the key to all the other claims in the token.</t>

<t>The purpose for inclusion of the key may vary by use case.
For example, the key may be included as part of an IoT device onboarding protocol.
When the FIDO protocol includes a public key in its attestation message, the key represents the binding of a user, device and Relying Party.
This document describes how claims containing keys should be defined for the various use cases.
It does not define specific claims for specific use cases.</t>

<t>Keys in CBOR format tokens SHOULD be the COSE_Key format <xref target="RFC8152"/> and keys in JSON format tokens SHOULD be the JSON Web Key format <xref target="RFC7517"/>.
These two formats support many common key types.
Their use avoids the need to decode other serialization formats.
These two formats can be extended to support further key types through their IANA registries.</t>

<t>The general confirmation claim format <xref target="RFC8747"/>, <xref target="RFC7800"/> may also be used.
It provides key encryption. 
It also allows for inclusion by reference through a key ID.
The confirmation claim format may employed in the definition of some new claim for a a particular use case.</t>

<t>When the actual confirmation claim is included in an EAT, this document associates no use case semantics other than proof of possession.
Different EAT use cases may choose to associate further semantics.
The key in the confirmation claim MUST be protected in the same way as the key used to sign the EAT. 
That is, the same, equivalent or better hardware defenses, access controls, key generation and such must be used.</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="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="RFC8152"/> 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="profiles" title="Profiles">

<t>This EAT specification does not gaurantee that implementations of it will interoperate.
The variability in this specification is necessary to accommodate the widely varying use cases.
An EAT profile narrows the specification for a specific use case.
An ideal EAT profile will guarantee interoperability.</t>

<t>The profile can be named in the token using the profile claim described in <xref target="profile-claim"/>.</t>

<t>A profile can apply to Attestation 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>In some cases CDDL may be created that replaces CDDL in this or other document to express some profile requirements.
For example, to require the altitude data item in the location claim, CDDL can be written that replicates the location claim with the altitude no longer optional.</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>The profile should indicate whether the token format should be CBOR, JSON, both or even some other encoding.
If some other encoding, a specification for how the CDDL described here is serialized in that encoding is necessary.</t>

<t>This should be addressed for the top-level token and for any 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>The profile should indicate whether definite-length arrays/maps, indefinite-length arrays/maps or both are allowed.
A good default is to allow only definite-length arrays/maps.</t>

<t>An alternate is to allow both definite and indefinite-length arrays/maps.
The decoder should accept either.
Encoders that need to fit on very small hardware or be actually implement in hardware can use indefinite-length encoding.</t>

<t>This applies to individual EAT claims, CWT and COSE parts of the implementation.</t>

</section>
<section anchor="cbor-string-encoding" title="CBOR String Encoding">

<t>The profile should indicate whether definite-length strings, indefinite-length strings or both are allowed.
A good default is to allow only definite-length strings.
As with map and array encoding, allowing indefinite-length strings can be beneficial for some smaller implementations.</t>

</section>
<section anchor="cbor-preferred-serialization" title="CBOR Preferred Serialization">

<t>The profile should indicate whether encoders must use preferred serialization.
The profile should indicate whether decoders must accept non-preferred serialization.</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>The profile should list the protections that must be supported by all decoders implementing the profile.
The encoders them must implement a subset of what is listed for the decoders, perhaps only one.</t>

<t>Implementations may choose to sign or MAC before encryption so that the implementation layer doing the signing or MACing can be the smallest.
It is often easier to make smaller implementations more secure, perhaps even implementing in solely in hardware.
The key material for a signature or MAC is a private key, while for encryption it is likely to be a public key.
The key for encryption requires less protection.</t>

</section>
<section anchor="cosejose-algorithms" title="COSE/JOSE Algorithms">

<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 Detatched EAT Bundle <xref target="DEB"/> is a special case message that will not often be used.
A profile may prohibit its use.</t>

</section>
<section anchor="verification-key-identification" title="Verification Key Identification">

<t>Section <xref target="keyid"/> describes a number of methods for identifying a verification key.
The profile document should specify one of these or one that is not described.
The ones described in this document are only roughly described.
The profile document should go into the full detail.</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>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="required-claims" title="Required Claims">

<t>The profile can list claims whose absence results in Verification failure.</t>

</section>
<section anchor="prohibited-claims" title="Prohibited Claims">

<t>The profile can list claims whose presence results in Verification failure.</t>

</section>
<section anchor="additional-claims" title="Additional Claims">
<t>The profile may describe entirely new claims.
These claims can be required or optional.</t>

</section>
<section anchor="refined-claim-definition" title="Refined Claim Definition">

<t>The profile may lock down optional aspects of individual claims.
For example, it may require altitude in the location claim, or it may require that HW Versions always be described using EAN-13.</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 unncessary because the surrounding or carrying protocol identifies the object as an EAT.</t>

</section>
<section anchor="manifests-and-software-evidence-claims" title="Manifests and Software Evidence Claims">

<t>The profile should specify which formats are allowed for the manifests and software evidence claims.
The profile may also go on to say which parts and options of these formats are used, allowed and prohibited.</t>

</section>
</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-9\.]+"

general-uri = JC< text, ~uri >
]]></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>Map labels, including Claims-Keys and Claim-Names, and enumerated-type values are always integers when encoding in CBOR and strings when encoding in JSON.
There is an exception to this for naming submodules and detached claims sets in a DEB.
These are strings in CBOR.</t>

<t>The CDDL in most cases gives both the integer label and the string label as it is not convenient to have conditional CDDL for such.</t>

</section>
</section>
<section anchor="cbor-interoperability" title="CBOR Interoperability">

<t>CBOR allows data items to be serialized in more than one form.
If the sender uses a form that the receiver can’t decode, there will not be interoperability.</t>

<t>This specification gives no blanket requirements to narrow CBOR serialization for all uses of EAT.
This allows individual uses to tailor serialization to the environment.
It also may result in EAT implementations that don’t interoperate.</t>

<t>One way to guarantee interoperability is to clearly specify CBOR serialization in a profile document.
See <xref target="profiles"/> for a list of serialization issues that should be addressed.</t>

<t>EAT will be commonly used where the entity generating the attestation is constrained and the receiver/Verifier of the attestation is a capacious server.
Following is a set of serialization requirements that work well for that use case and are guaranteed to interoperate.
Use of this serialization is recommended where possible, but not required.
An EAT profile may just reference the following section rather than spell out serialization details.</t>

<section anchor="eat-constrained-device-serialization" title="EAT Constrained Device Serialization">

<t><list style="symbols">
  <t>Preferred serialization described in section 4.1 of <xref target="RFC8949"/> is not required.
The EAT decoder must accept all forms of number serialization.
The EAT encoder may use any form it wishes.</t>
  <t>The EAT decoder must accept indefinite length arrays and maps as described in section 3.2.2 of <xref target="RFC8949"/>.
The EAT encoder may use indefinite length arrays and maps if it wishes.</t>
  <t>The EAT decoder must accept indefinite length strings as described in section 3.2.3 of <xref target="RFC8949"/>.
The EAT encoder may use indefinite length strings if it wishes.</t>
  <t>Sorting of maps by key is not required.
The EAT decoder must not rely on sorting.</t>
  <t>Deterministic encoding described in Section 4.2 of <xref target="RFC8949"/> is not required.</t>
  <t>Basic validity described in section 5.3.1 of <xref target="RFC8949"/> must be followed.
The EAT encoder must not send duplicate map keys/labels or invalid UTF-8 strings.</t>
</list></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-9\.]+"

general-uri = JC< text, ~uri >

$$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 //= (odometer-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:   uint, 
    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

suit-directive-process-dependency = 19

$$Claims-Set-Claims //= (
    swevidence-label => swevidence-type
)

swevidence-type = [+ swevidence-format]

swevidence-format = [
    content-type:   uint, 
    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< "hwvers",     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 >
odometer-label         = JC< "odometer",   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="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>

</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="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>
</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="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 manfuacturer 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>


  </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='RFC8152' target='https://www.rfc-editor.org/info/rfc8152'>
<front>
<title>CBOR Object Signing and Encryption (COSE)</title>
<author fullname='J. Schaad' initials='J.' surname='Schaad'><organization/></author>
<date month='July' year='2017'/>
<abstract><t>Concise Binary Object Representation (CBOR) is a data format designed for small code size and small message size.  There is a need for the ability to have basic security services defined for this data format. This document defines the CBOR Object Signing and Encryption (COSE) protocol.  This specification describes how to create and process signatures, message authentication codes, and encryption using CBOR for serialization.  This specification additionally describes how to represent cryptographic keys using CBOR.</t></abstract>
</front>
<seriesInfo name='RFC' value='8152'/>
<seriesInfo name='DOI' value='10.17487/RFC8152'/>
</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>


    </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='8' month='February' 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-15'/>
   <format target='https://www.ietf.org/archive/id/draft-ietf-rats-architecture-15.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='January' 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-03'/>
   <format target='https://www.ietf.org/archive/id/draft-ietf-cose-cbor-encoded-cert-03.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>UUIDs seem to have been designed for scenarios where the implementor
does not have full control over the environment and uniqueness has to
be constructed from identifiers at hand. UEID takes the view that
hardware, software and/or manufacturing process directly implement
UEID in a simple and direct way. It takes the view that cryptographic
quality random number generators are readily available as they are
implemented in commonly used CPU hardware.</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 are used with an open set of network protocols for authentication and such.
In these protocols the DevID secret is used to sign a nonce or similar to proof the association of the DevID certificates with the device.</t>

<t>By contrast, EAT defines network protocol for proving trustworthiness to a Relying Party, the very thing that is not defined in <xref target="IEEE.802.1AR"/>.
Nor does not 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>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="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>


  </back>

<!-- ##markdown-source:
H4sIAEnwh2IAA+y9aXPcVpYg+h2/AkE7wmJVZlJctPbYNTRJu+iWRI1Itbtf
vQoHmAkmUcoEsgEkqSyN+7fP2e+5AJJidc9ETMR7iooyE8Ddzz37Mh6Pk6bN
ytlv2aIq89dpW6/zpFjV9FfTHjx9+urpQTLN2tdp086SZFZNy2wJH87q7KYd
F3l7M66zthnnWTveP0yS+/nr9MPx1WX6a1V/Ksp5+nNdrVfJN+m0Kpu8bNbN
6/S7Td58B4+a9fWyaJqiKtvNCvo8P7v6KVkVr5M0baupfkc/ZvmqvYUnR/i7
qeq2zm+a8EWzWcYPptVylU1b98X6OjwrK3xU30zzWdNuFrl+1hYt/ri6zdOz
En5s0uO2zWGDWphjelV9ysv0ydnx1W6SXV/X+d3rFH4kWZ1nMPmyzesyb5NP
97BXxbzExWeu+fS6qmHRs6yFIQ6e7h+O958m2bq9rerXyTgtSpj+m0n6Zl3O
rhfZLIcZ8la/ydZ1Xk7z6FVVw0Zf5tN1jdOEGVf1Jn3z5gRe5cusWLxOF/PF
f2/kg5beT2AHdKSfJ+lbOPdNtrRxfi7qYnab1e4FjfI/1tkCWi7Tq3x6W1aL
al7kDax3OsF9hZPIYU+fvXjxLH1b1flttW7y9LQu7nCaUxgc5pmV6WmRzyvc
9XwOu/E6PckWxU1Vl0VGx7Uu2xq+/Hh5DD9XtwSMO3/cT18+e5k+f7afvgBQ
3AmLW/IU//u/t8Xk32V+fnm/TNKL706rsprfrsNO/pLX+XITv3n8Eg9evEp/
yuoSzrFaz2/TD1U2syW6F7SeGW7ox/2j9MWby2iBZdHms/SfATpm1TKs9Y9H
R+n+wbOD9PD54f7LV2Glf6tmNNn+UpOyqpcAW3c53pgPP50c7O+/kj9f7D+z
P5/tPwt/Ppc/X746sg9g2PDBi/CnffDy6VNttn9gPey/ONI/D19pDy+f79u3
L460s8NXL0MzG+0VIBf8E//Bf379+fLlEf9us3qOW75z27ar5vXeXp7V7e24
KG+qSTnPJstisbe6Xe3NqvtyAccwgR9/uikW+ffTqqpn4/t58/Joh7viO/3r
xYc3p+nPZxenZ1fnJ+nlv11enb1N91+9PBql734+nlxevTudPH16+Py3/cnT
ydPfaDLUgV5R/HvM4PKObnS2SH/Oq2YFP7LFGO//YlHM6aYe43826RPoeZca
2q0/Gj99MX76MoGn58fvjicnv15NThZZsWzilePCYd339/eTIiuzCYy7lzWI
V5Z52TZ70/vWL+/kx4sP6a/5tSIp6HY35X79IlK/ChzfTe4mWzS5zeuXzryi
iTUPzexvMjOd2i+XF+/81H7pTC2eW29y3dld3cJt/Pn9+8n527Pz/p7h1FZA
H7LF5HC+WtHsZnnzqa1Wy2q2XuTN3uUqnxY3xZQOsfPzNG/h1jWTrFl9/lPj
35zPvn9x8Mrv+WE9AwAo85rx+3sAUfjR3Bar9H1d/S2ftv/E+AR6WKTRMEwV
0xPAl+m7vL0HWpkCRoPP62UBgNX8U/puvbzOa0ATozSbzeocdhgJCnxUzGCf
rattMHoIexSD3qsU9++n89OLyfGHi7PXfi34ND2GXrBr6Liq0+PForoHVPUB
KFhdTBFrXaxosTCPs/KuqCs+8fRN0bSDB3FTzKoMLkUGd4JOAne0ocdjJU3j
Ov/3dQF4mYCHXmV+HuOM5wHf6TzGlc5jnLt5jBcwj/Hd/uRgfDMbHzyFJe8/
PZjctsvFtk1CSs9Ll1m6HXtX3eV4BCn2hDt3dvwOWJxhkMPbMG/2eZHIUGX1
rNm7zmqkBA2gr3K8Xk39jjO/oIjkuIblLnI5dZgeDLb38f1Jql1sW8HPl/ud
U8apnlSXv56fwiDj0wnxaE02XY6nVXNfzPA9HGR5fnpSlSVAKULh8Kpgn8ti
NgGuRk6OH0BH1BD+W+fj/d+ehj2WxXH/qQzAcA54FWgzNIHryUCU1/BHljZ5
m+4PbfxLQphD+OtmvVgwSX83Ae7iU7Fc11nvHTABP9bZbJFveq/eTtJfgO42
vRc/TtJZnr7NZznAVf/1yQSZnLZYwooSolqnby6Oh3dvvqius8VqkbXA5ywJ
NO5XuHctQOveeoWEq9mDJT7b2z/Y+/n9yW+nxbwAzPUmB7axvrg5Xq3q6i5b
/HaHNGk1u/FbLN+m/HFa3aT6+TAM7z9L8OTfn73bgjTzMuBz+LH3Pi+hx4Wg
mckqm+d+/PfA4cEYyCjn9aouGgPeJzDGLqCNf1/DjU2MoiD/O26zeRMhHnzF
1OsKXkGrOVzierP1kg0TQ+06/DX5TDAJ/5BpiPmko/0DZUGOjsKfjiPaPzAm
5ujoubErh/AB/g3yzeS4nt4CKzdtgTl3F42Eocy9wwY/FsC9zLINSBPZ9FO0
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
NzT+kSIYCV1FFIWpOBH8/sFRjiZWUgs41fk4uALFmGKS9sx1FMTb1SEUcSXo
/oZR6Np9jji7P0oaU4yo8BcLEZYKfnaXocgufPAAs2RuQWXl7xRX6uiwSxwC
ok8oxrY/JHq5xqPi03XJLIioPSxfCGYHQ3BiP6lcc5xEZRjCukNlcPewsHkG
YVVqxozEJYfeMqg0HIeTXrBOV9xc2WuEKpWhOZcNHHQicWoTqqagaxpkqlg0
tcUS1bckFUx1iRWFA25vN840Eh+L9INiB3kfcqyxiIhCy7nknmNW1y36fVzT
UZne2OeaCjeM2Z4esAZFA4O6prJX1RvQW3Tk7hA/VCATC40L6dZeEPSXzWAL
2F2A6l9f3LQUcjlMTjvon8WXxtUdJpQ+LCPElQuGBnCFDNichKDKGkIAOtHJ
dKbg2vTTiIfSzC4aLZjHHbAqNJmHbzB4CSpjJob4bil8RKxfq0VGvpryjyRw
VSUUmEyuzENWP+eWS29Vi/M8ZdVTl2dXo7VwECLsOw4CMay6TDfBR9pK6hCq
EHZdPBeVNZ5nawne4NVFGRmIBdTYVS/zTCRffV1oBQoLM4qGobuDmgJxFiI3
qWU10wQQ93AsC/a4QIbC2f3FbUQZuRKgT1394yEkt3LXdYB6gN6zRdQPrSQE
rIQ18TIsg4U4ODPZZE9h707i8rXGztCd8NzYWf33yON8Kj6jtDHb4qWG45bI
kFq1zKVIzSxmsNVv/lQYXz9gcPCQSF4OLqtEzOwUTtdQhsDCScoFDmQNCj1C
CDds8OCszdXymrIckA9XXPWQ8topYpOaa2I4JY2ZfKHQpFy9K3NP9ZyQ1ZJA
Glmcv1NdpGqO8EyPF5gLc5bHWSDwDQkwZg8f8VQEBjQxhk3WJY6K24V7biMB
XceIHcQsKybufHJvROjWU0O3y36q6Eg+J+8CMnKCdDIicgt/Ir01jrOSytCs
drMd0lDV2awmN1txHP/IuldEMCExNAJXfBWktQXr+ESOEnLPYBgcg7CzkXRM
jDoeCgYCOLVO8NA/vxl6PnJ3O9x3VanQAcUElU1o7ESjlxYLB7rsV4aRlG0K
U5bNcSbCrj0ad1ndijsGtU65Ht05plrmRYoJQqJMOnwBVZcb5Ug1b/hVGpne
nXDyNlvRnI4pe8GZtHzc2YnOKh9zzhPJ8rC3zFYNRqo/8FphhG2DmivzmJPL
QrtMyrRYElcyvj3QIRe3gQuD/vptHrWlgbQtK1gfmpvWg0Q+tjaon1KmKyb5
qMylt3JHVBtzU1DpdLb9UfaaUEStJvAgNyAUIZRMRmlcEFVQOvve9FwgCkEc
ubmyEt4FzQVN/MiiHU+Yla6DjTYm0REwXHJw8X8NCti6PwgB8up/z+lLZ9Cw
YZS5FFDmRBwOAxgi3DohQdLXeQkfTNGr3iItRUTqcjbRvr0nbQpy2Jfe/+5x
+5crLBFfiee/su4id77JI4/Ddydwix4DW3v1mkOElveWw0eUU6SCwj+iyhtK
JjjzAqfKeHt8Ij5P4rGXz8zDaJKQv1G2sYTO1Oe7j2/e+OxI3G0vKRFCul2a
snItRuxDhjBCE5C/1LGs1Kmkrj7XMeVSMTYjeHagNsVIItJITCjMUdIeWvE7
DoAZOBIitcLatVqmgW1HJjK7pNKIJ+zQbI29kL+r2zyASmvpR8KmcIGQvLUK
fEWjCvIQ0sjtvU8CF/NARqvDuse+gbzHNW2wRBsHp0zL6NTHL+ki2xD/ZekK
1B2b+iKLLl8+ekmXrbHc8xVJmHnWiJaNk60M30ifvyEskCMH/a6iwMS11DoJ
4DpxNSIYBOMoLz6KPyRF9P1tIVmz3I4Usv+u+HffNV2tsq6d6XIoEUiAoP41
PdYEMU3yoM7awJHvsrVS/i52TLCt4hmatZkEnybH6HZnjlkCG2gOMxY2Wubz
qi2kdF6sSBCkFYCWtCA2JYHX2GhFvJ153Di3ONXkjgaX13HWKkJePUu60lR9
E5luNPqkXfI9JYdHGL/tJqSV/EniDIpsZsaKJ/PNpD22rG4MzqY+D6IV3jX4
+7aguOyWjLg6ka5jSU/xeSmY88sX9jfx3gpZWq6X11y3Ty1y5DDt8hNnw34d
XzWCDFnlBjVV3F2FKS46hUAiJ+daosa1zEin/bbpzKuQbZAcFTlwW7fPK4B6
O1csC5RV24p8PhVnGCOdNV/b/VEkw+Mx3lM+sSoy3/ZskCI0O+vtnzlNFm6c
7OL2iRNmFEFwJLGiWTOogqSTEAX6T5pdI0l+Id6Aomg5o6H5lEssOgsbxACx
5RzNuCWzUao8LjiLQ9lqFkUKtCZ/Wc7VIV5K1SJKqt6hlpYSBjcqJADBKzW9
LXJLM6xKLvjfT+Gr8qv+Oj7JoHETFBnOdLnScQgcFWo+aLo59v7qq3UIq2oi
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
15GVNW2aeIo8cuomuBV+DWbAvNI028jMFjVUWVovXDWszEOlKpypgWyZXpka
UAWGWudGnC1xzHtII2OTjPYhBYsv9ksToAoPK61Jzbc0CFsmIYntkdtAf1e2
cKJzESRHbXmrVU9lo67fUv7WNaUItYK3hCciezPhzD6aowlWWepWSyzbJEdG
7sKjYZjLg1xmLoy5HzZDS3lYxvZTLObkN1o9YoF48+Ym3d21G1hqUpgpeaWV
o5RQ1YzTBkkpWqkKBcwMd4N3o9iI9z9zpC/VKpmrSFnDaG0cW7mtKwJeVH9s
Lqk6oo5tp4OxoXbnHvnPEVWaZw56s6/ym/0InTnQSubvbceo+6ZHOItHZOty
4JbgzA9a9iuLwQCBPXL5JPykiGQf+afHZ48xGLcSzVIXnz69WMaL0yNoBfd3
fZhiMsu6/+5dDmTfvfO8f1+Ms+Vfi/uChaqqtwVh4c0ioVjDuX/MUf/0cWmj
yIyPvbiguWU7wm7vz9yPnRd+hivPqpd+Fl8m1mff1y9L6xZvhJ1X3t+68sto
+aev+FtVA7w4frbt0N1vthw2e1TcAvhmuYNdDprDpyljyh+2A/6dW/AMfTyq
t4BeFUt1miCmig1Rj5EdcEHYHf5Lgf/ujZB0pndAg3xlsgrTWVVshDov7LIV
ve14kZIo/PmbIDqvgzRdV6//tKr2DOkHkQCydq0SL4iHT34bwl64bcEwhXkc
Lf50FHBEKs0z0pvesWRRrqI1gRqBiIlyHFpnK1asLkrFFbe3rViTJKFy41+D
8J8K87Cd2p3HWl/NBFNVrdV4V+0E5Z3/UpwvdZ5uP2tb3VHT02hSjKrlu75i
O+1Ad+sOYFI2AIAXTI3+XHJvk4BJhpHtcKDCiCQszOcQq+YD2Btup+3Yzv78
sQCBYuZrMmKNVPBR/dfecVGIgrbPX7z28zLX2snl3fRNtQ/k2B07nBgTqBDG
jYge+7eiXGPlqD4C65vwa64wvNF0c5J4U2iCUqPJ8WzBxux5WDqefz1yQlec
raw4OTxW74l5V+a92U1y57VtFgIMusg//eohfcWi4NMtWMim+o6YuE5uJtUn
aTw8d14thYf86Ss8VS3um+xOVGs0vk6yW0C9VcsV/9T/BmC7lZ94+mK0hZGw
1aXJ8CHJ3yjN5lFynqxBpnxKmmLiMUZLtPJE80regrxud96FP5Z53IrI3tIv
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

-->

</rfc>

