<?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.3.17 -->

<!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-12" 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="February" day="23"/>

    <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-uccs-ujcs-and-deb" title="CWT, JWT, UCCS, UJCS and DEB">

<t>An EAT is 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>Unprotected CWT Claims Sets (UCCS) <xref target="UCCS.Draft"/></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 and UCCS.
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 two more top-level messages:</t>

<t><list style="symbols">
  <t>Unprotected JWT Claims Set (UJCS) <xref target="UJCS"/></t>
  <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>

</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>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"/>.</t>

<t>The UCCS specification does not include CDDL.
This specification provides CDDL for it.</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-between-attestation-evidence-and-attestation-results" 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>Many claims in Attestation Evidence simply will pass through the Verifier to the Relying Party without modification.
They will be verified as authentic from the entity by the Verifier just through normal verification of the Attester’s signature.
The UEID, <xref target="UEID"/>, and Location, <xref target="location"/>, are examples of claims that may be passed through.</t>

<t>Some claims in Attestation Evidence will be verified by the Verifier by comparison to Reference Values.
These claims will not likely be conveyed to the Relying Party.
Instead, some claim indicating they were checked may be added to the Attestation Results or it may be tacitly known that the Verifier always does this check.
For example, the Verifier receives the Software Evidence claim, <xref target="swevidence"/>, compares it to Reference Values and conveys the results to the Relying Party in a Software Measurement Results Claim, <xref target="swresults"/>.</t>

<t>In some cases the Verifier may provide privacy-preserving functionality by stripping or modifying claims that do not posses sufficient privacy-preserving characteristics.
For example, the data in the Location claim, <xref target="location"/>, may be modified to have a precision of a few kilometers rather than a few meters.</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="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="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="nonce-claim-nonce" title="Nonce Claim (nonce)">

<t>All EATs should have a nonce to prevent replay attacks. The nonce is
generated by the Relying Party, the end consumer of the token. It is
conveyed to the entity over whatever transport is in use before the
token is generated and then included in the token as the nonce claim.</t>

<t>This documents the nonce claim for registration in the IANA CWT 
claims registry. This is equivalent to the JWT nonce claim that is
already registered.</t>

<t>The nonce must be at least 8 bytes (64 bits) long as fewer bytes are unlikely
to be secure. A maximum of 64 bytes is set to limit the memory
a constrained implementation uses. This size range is not set
for the already-registered JWT nonce, but it should follow
this size recommendation when used in an EAT.</t>

<t>Multiple nonces are allowed to accommodate multistage verification
and consumption.</t>

<figure><artwork type="CDDL"><![CDATA[
$$claims-set-claims //= 
    (nonce-label => nonce-type / [ 2* nonce-type ])

nonce-type = bstr .size (8..64)
]]></artwork></figure>

</section>
<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 (the Relying Party) 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>Entity manufacturers are allowed to change from one type of UEID to
another anytime they want. For example, they may find they can
optimize their manufacturing by switching from type 0x01 to type
0x02 or vice versa. The essential requirement on the manufacturer is
that UEIDs be universally unique.</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 = 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[
oemid-pen = int

oemid-ieee = bstr .size 3

oemid-random = bstr .size 16


$$claims-set-claims //= (
    oemid-label => 
        oemid-random / oemid-ieee / oemid-pen
)
]]></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[
hardware-model-type = bytes .size (1..32)

$$claims-set-claims //= (
    hardware-model-label => hardware-model-type
)
]]></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 ; As defined by CoSWID 
]
]]></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 at forging EATs. This is by
defining four security levels.</t>

<t>This claim describes the security environment and countermeasures
available on the entity where the attestation key
resides and the claims originate.</t>

<t><list style="hanging">
  <t hangText="1 - Unrestricted:">
  There is some expectation that implementor will
protect the attestation signing keys at this level. Otherwise,
the EAT provides no meaningful security assurances.</t>
  <t hangText="2 - Restricted:">
  Entities at this level are not general-purpose
operating environments that host features, such as app download
systems, web browsers and complex applications.
It is akin to the secure-restricted level (see below) without the
security orientation. Examples include a Wi-Fi subsystem,
an IoT camera, or sensor device.
Often these can be considered more secure than unrestricted just because they are much simpler and a smaller attack surface, but this won’t always be the case.
Some unrestricted devices may be implemented in a way that provides poor protection of signing keys.</t>
  <t hangText="3 - Secure-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 against the entity.</t>
  <t hangText="4 - Hardware:">
  Entities at this level must include substantial defense 
against physical or electrical attacks against the entity itself.
It is assumed the potential attacker has captured the entity and can 
disassemble it. Examples include TPMs and Secure Elements.</t>
</list></t>

<t>The entity should claim the highest security level it achieves and no higher.
This set is not extensible so as to provide a common interoperable description of security level to the Relying Party.
If a particular use case 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 security and its own proprietary claim as a refined indication.</t>

<t>This claim is not intended as a replacement for a formal
security certification scheme, such as those based on FIPS 140 <xref target="FIPS-140"/> 
or those based on Common Criteria <xref target="Common.Criteria"/>.
See <xref target="dloas"/>.</t>

<figure><artwork type="CDDL"><![CDATA[
$$claims-set-claims //= (
    security-level-label => 
        security-level-cbor-type / 
        security-level-json-type
)

security-level-cbor-type = &(
    unrestricted: 1,
    restricted: 2,
    secure-restricted: 3,
    hardware: 4
)

security-level-json-type = 
    "unrestricted" /
    "restricted" /
    "secure-restricted" /
    "hardware"
]]></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-cbor-type / debug-status-json-type
)

debug-status-cbor-type = &(
    enabled: 0,
    disabled: 1,
    disabled-since-boot: 2,
    disabled-permanently: 3,
    disabled-fully-and-permanently: 4
)

debug-status-json-type = 
    "enabled" /
    "disabled" /
    "disabled-since-boot" /
    "disabled-permanently" /
    "disabled-fully-and-permanently"
]]></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 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>When encoding floating-point numbers half-precision SHOULD NOT be used.
They usually do not provide enough precision for a geographic location.</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 = 1 / "latitude"
longitude = 2 / "longitude"
altitude = 3 / "altitude"
accuracy = 4 / "accuracy"
altitude-accuracy = 5 / "altitude-accuracy"
heading = 6 / "heading"
speed = 7 / "speed"
timestamp = 8 / "timestamp"
age = 9 / "age"
]]></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 => bytes)
]]></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-cbor-type / intended-use-json-type
)

intended-use-cbor-type = &(
    generic: 1,
    registration: 2,
    provisioning: 3,
    csr: 4,
    pop: 5
)

intended-use-json-type = 
    "generic" /
    "registration" /
    "provisioning" /
    "csr" /
    "pop" 
]]></artwork></figure>

</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.
In CBOR tokens, the OID MUST be encoded according to <xref target="RFC9090"/> and the URI according to <xref target="RFC8949"/>.
Both are unwrapped and thus not CBOR tags.
In JSON tokens, the OID is a string of the form “X.X.X”, and a URI is a normal URI string.</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 => ~uri / ~oid)
]]></artwork></figure>

</section>
<section anchor="dloas" title="The DLOA (Digital Letter or 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: ~uri
    dloa_platform_label: text 
    ? dloa_application_label: text
]
]]></artwork></figure>

</section>
<section anchor="the-software-manifests-claim-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 CBOR tag.
In many cases, for examples CoSWID, a tag will already be registered with IANA.
If not, a tag MUST be registered.
It can be in the first-come-first-served space which has minimal requirements for registration.</t>

<t>The claim is an array of one or more manifests.
To facilitate hand off of the manifest to a decoding library, each manifest is contained in a byte string.
This occurs for CBOR-format manifests as well as non-CBOR format manifests.</t>

<t>If a particular manifest type uses CBOR encoding, then the item in the array for it MUST be a byte string that contains a CBOR tag.
The EAT decoder must decode the byte string and then the CBOR within it to find the tag number to identify the type of manifest.
The contents of the byte string is then handed to the particular manifest processor for that type of manifest.
CoSWID and SUIT manifest are examples of this.</t>

<t>If a particular manifest type does not use CBOR encoding, then the item in the array for it MUST be a CBOR tag that contains a byte string.
The EAT decoder uses the tag to identify the processor for that type of manifest.
The contents of the tag, the byte string, are handed to the manifest processor.
Note that a byte string is used to contain the manifest whether it is a text based format or not.
An example of this is an XML format ISO/IEC 19770 SWID.</t>

<t>It is not possible to describe the above requirements in CDDL, so the type for an individual manifest is any in the CDDL below.
The above text sets the encoding requirement.</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 multiple 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-formats]

coswid-that-is-a-cbor-tag-xx = tagged-coswid<concise-swid-tag>

$$manifest-formats /= bytes .cbor coswid-that-is-a-cbor-tag-xx
]]></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 uses the same mechanism for identification of the type of the swevidence as is used for the type of the manifest in the manifests claim.
It also uses the same byte string based mechanism for containing the claim and easing the hand off to a processing library.
See the discussion above in the manifests claim.</t>

<t>When the <xref target="CoSWID"/> format is used, it MUST be evidence CoSWIDs, not payload CoSWIDS.</t>

<figure><artwork type="CDDL"><![CDATA[
$$claims-set-claims //= (
    swevidence-label => swevidence-type
)

swevidence-type = [+ $$swevidence-formats]
 
coswid-that-is-a-cbor-tag = tagged-coswid<concise-swid-tag>
$$swevidence-formats /= bytes .cbor coswid-that-is-a-cbor-tag 
]]></artwork></figure>

</section>
<section anchor="swresults" title="The SW Measurement Results Claim (swresults)">

<t>This claims reports the outcome of the comparison of a measurement on some software to the expected Reference Values.
It may report a successful comparison, failed comparison or other.</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 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 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 attestation target or submodule, multiple results can be reported.
For example, it may be desirable to report the results for the kernel and each individual application separately.</t>

<t>For each software objective, the following can be reported. TODO: defined objective</t>

<section anchor="scheme" title="Scheme">
<t>This is the free-form text name of the verification system or scheme that performed the verification.
There is no official registry of schemes or systems.
It may be the name of a commercial product or such.</t>

</section>
<section anchor="objective" title="Objective">
<t>This roughly characterizes the coverage of the software measurement software.
This corresponds to the attestation target or the submodule.
If all of the indicated target is not covered, the measurement must indicate partial.</t>

<t><list style="hanging">
  <t hangText="1 – all:">
  Indicates all the software has been verified, for example, all the software in the attestation target or the submodule</t>
  <t hangText="2 – firmware:">
  Indicates all of and only the firmware</t>
  <t hangText="3 – kernel:">
  Refers to all of the most-privileged software, for example the Linux kernel</t>
  <t hangText="4 – privileged:">
  Refers to all of the software used by the root, system or administrative account</t>
  <t hangText="5 – system-libs:">
  Refers to all of the system libraries that are broadly shared and used by applications and such</t>
  <t hangText="6 – partial:">
  Some other partial set of the software</t>
</list></t>

</section>
<section anchor="results" title="Results">
<t>This describes the result of the measurement and also the comparison to Reference Values.</t>

<t><list style="hanging">
  <t hangText="1 – verification-not-run:">
  Indicates that no attempt was made to run the verification</t>
  <t hangText="2 – verification-indeterminite:">
  The verification was attempted, but it did not produce a result; perhaps it ran out of memory, the battery died or such</t>
  <t hangText="3 – verification-failed:">
  The verification ran to completion, the comparison was completed and did not compare correctly to the Reference Values</t>
  <t hangText="4 – fully-verified:">
  The verification ran to completion and all measurements compared correctly to Reference Values</t>
  <t hangText="5 – partially-verified:">
  The verification ran to completion and some, but not all, measurements compared correctly to Reference Values</t>
</list></t>

</section>
<section anchor="objective-name" title="Objective Name">

<t>This is a free-form text string that describes the objective.
For example, “Linux kernel” or “Facebook App”</t>

<figure><artwork type="CDDL"><![CDATA[
$$claims-set-claims //= (swresults-label => [ + swresult-type ])

verification-result-cbor-type = &(
    verification-not-run: 1,
    verification-indeterminate: 2,
    verification-failed: 3,
    fully-verified: 4,
    partially-verified: 5,
)

verification-result-json-type = 
    "verification-not-run" /
    "verification-indeterminate" /
    "verification-failed" /
    "fully-verified" /
    "partially-verified" 


verification-objective-cbor-type = &(
    all: 1,
    firmware: 2,
    kernel: 3,
    privileged: 4,
    system-libs: 5,
    partial: 6,
)

verification-objective-json-type = 
    "all" /
    "firmware" /
    "kernel" /
    "privileged" /
    "system-libs" /
    "partial"


swresult-type = [
    verification-system: tstr,
    objective: verification-objective-cbor-type /
        verification-objective-json-type, 
    result: verification-result-cbor-type / 
        verification-result-json-type, 
    ? objective-name: tstr
]
]]></artwork></figure>

</section>
</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>

<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 or UCCS can have a JWT as a nested token submodule and a JSON-encoded token can have a CWT or UCCS as a nested token submodule.</t>

<t>The following two sections describe how to encode and decode a nested token.</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 UCCS, 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.
The text string MUST contain a JSON-encoded array of two items.
The first item is a string identifying the type of the token.
The second item is the JSON-encoded 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 item MUST be a JWT formatted according to <xref target="RFC7519"/></t>
  <t hangText="“UJCS”:">
  The second item MUST be a UJCS-Message as defined in this document.</t>
  <t hangText="“DEB”:">
  The second item MUST be a JSON-encoded Detached EAT Bundle as defined in this document.</t>
</list></t>

<t>The definition of additional types requires a standards action.</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 =
    tstr / ; A JSON-encoded Nested-Token (see json-nested-token.cddl)
    bstr .cbor Tagged-CBOR-Token


]]></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 in the same format as described in the section above.</t>

<t>A CBOR-encoded token nested inside a JSON-encoded MUST use the same array of two, but with the type as follows:</t>

<t><list style="hanging">
  <t hangText="“CBOR”:">
  Some base64url-encoded CBOR that is a tag, typically a CWT, UCCS or CBOR-encoded DEB</t>
</list></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 = [
   type : "JWT" / "CBOR" / "UJCS" / "DEB",
   nested-token : JWT-Message /
                  B64URL-Tagged-CBOR-Token /
                  DEB-JSON-Message /
                  UJCS-Message
]


B64URL-Tagged-CBOR-Token = tstr .regexp "[A-Za-z0-9_=-]+"
]]></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”, “UJCS” or “DEB”, the 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 usually signed, protocols conveying them must make sure they are not modified in transit.</t>

</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 anchor="cddl-for-submods" title="CDDL for submods">

<t>The submodule type is distinguished in the encoded bytes by its data type, map/object for a Claims-Set, string for nested token and array for a detached submodule. Nested tokens are byte-string wrapped when encoded in CBOR and base64 encoded for JSON.</t>

<figure><artwork type="CDDL"><![CDATA[
$$claims-set-claims //= (submods-label => { + text => Submodule })

Submodule = Claims-Set / Nested-Token / Detached-Submodule-Digest

Detached-Submodule-Digest = [
   algorithm : int / text,
   digest : bstr 
]
]]></artwork></figure>

</section>
</section>
</section>
<section anchor="UJCS" title="Unprotected JWT Claims-Sets">

<t>This is simply the JSON equivalent of an Unprotected CWT Claims-Set <xref target="UCCS.Draft"/>.</t>

<t>It has no protection of its own so protections must be provided by the protocol carrying it.
These are extensively discussed in <xref target="UCCS.Draft"/>.
All the security discussion and security considerations in <xref target="UCCS.Draft"/> apply to UJCS.</t>

<t>(Note: The EAT author is open to this definition being moved into the UCCS draft, perhaps along with the related CDDL.
It is place here for now so that the current UCCS draft plus this document are complete.
UJCS is needed for the same use cases that a UCCS is needed.
Further, JSON will commonly be used to convey Attestation Results since JSON is common for server to server communications.
Server to server communications will often have established security (e.g., TLS) therefore the signing and encryption from JWS and JWE are unnecssary and burdensome).</t>

</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, JWT, UCCS and UJCS.
It can be used any place that CWT, JWT, UCCS or UJCS messages are used.
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, JWT, UCCS or UJCS, but not a DEB.
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 detached claims 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[
Detached-EAT-Bundle = [
    main-token : Nested-Token,
    detached-claims-sets: {
        + tstr => cbor-wrapped-claims-set / json-wrapped-claims-set
    }
]


json-wrapped-claims-set = tstr .regexp "[A-Za-z0-9_=-]+" 


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, UCCS, JWS, UJCS, 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.
EAT/CWT has the option to have no protection using UCCS and JOSE has a 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, CWT, UCCS and UJCS 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.
Similarly, the profile should specify whether the token should be a UCCS 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 as well as UCCS.
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, JWT and UCCS.
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, JWT or UCCS in CDDL without it.
The CDDL definition of Claims-Set here is applicable to EAT, CWT, JWT and UCCS.</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-data-types" title="Common Data Types">

<t>time-int is identical to the epoch-based time, but disallows
floating-point representation.</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[
string-or-uri = tstr 

time-int = #6.1(int)
]]></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>

</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-common-cddl" title="Collected Common CDDL">

<figure><artwork type="JSON"><![CDATA[
Claims-Set = {
    * $$claims-set-claims,
    * Claim-Label .feature "extended-label" => any
}

Claim-Label = int / text
string-or-uri = tstr 

time-int = #6.1(int)
$$claims-set-claims //= (iss-label => text)
$$claims-set-claims //= (sub-label => text)
$$claims-set-claims //= (aud-label => text)
$$claims-set-claims //= (exp-label => ~time)
$$claims-set-claims //= (nbf-label => ~time)
$$claims-set-claims //= (iat-label => ~time)

$$claims-set-claims //= 
    (nonce-label => nonce-type / [ 2* nonce-type ])

nonce-type = bstr .size (8..64)
$$claims-set-claims //= (ueid-label => ueid-type)

ueid-type = bstr .size (7..33)
$$claims-set-claims //= (sueids-label => sueids-type)

sueids-type = {
    + tstr => ueid-type
}
oemid-pen = int

oemid-ieee = bstr .size 3

oemid-random = bstr .size 16


$$claims-set-claims //= (
    oemid-label => 
        oemid-random / oemid-ieee / oemid-pen
)
$$claims-set-claims //=  (
    hardware-version-label => hardware-version-type
)

hardware-version-type = [
    version:  tstr,
    scheme:  $version-scheme
]
hardware-model-type = bytes .size (1..32)

$$claims-set-claims //= (
    hardware-model-label => hardware-model-type
)
$$claims-set-claims //= ( sw-name-label => tstr )
$$claims-set-claims //= (sw-version-label => sw-version-type)

sw-version-type = [
    version:  tstr,
    scheme:  $version-scheme ; As defined by CoSWID 
]
$$claims-set-claims //= (
    security-level-label => 
        security-level-cbor-type / 
        security-level-json-type
)

security-level-cbor-type = &(
    unrestricted: 1,
    restricted: 2,
    secure-restricted: 3,
    hardware: 4
)

security-level-json-type = 
    "unrestricted" /
    "restricted" /
    "secure-restricted" /
    "hardware"
$$claims-set-claims //= (secure-boot-label => bool)
$$claims-set-claims //=  (
    debug-status-label => 
        debug-status-cbor-type / debug-status-json-type
)

debug-status-cbor-type = &(
    enabled: 0,
    disabled: 1,
    disabled-since-boot: 2,
    disabled-permanently: 3,
    disabled-fully-and-permanently: 4
)

debug-status-json-type = 
    "enabled" /
    "disabled" /
    "disabled-since-boot" /
    "disabled-permanently" /
    "disabled-fully-and-permanently"
$$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 = 1 / "latitude"
longitude = 2 / "longitude"
altitude = 3 / "altitude"
accuracy = 4 / "accuracy"
altitude-accuracy = 5 / "altitude-accuracy"
heading = 6 / "heading"
speed = 7 / "speed"
timestamp = 8 / "timestamp"
age = 9 / "age"
$$claims-set-claims //= (uptime-label => uint)
$$claims-set-claims //=  (boot-seed-label => bytes)
$$claims-set-claims //= (odometer-label => uint)
$$claims-set-claims //= (
    intended-use-label =>
        intended-use-cbor-type / intended-use-json-type
)

intended-use-cbor-type = &(
    generic: 1,
    registration: 2,
    provisioning: 3,
    csr: 4,
    pop: 5
)

intended-use-json-type = 
    "generic" /
    "registration" /
    "provisioning" /
    "csr" /
    "pop" 
$$claims-set-claims //= (
    dloas-label => [ + dloa-type ]
)

dloa-type = [
    dloa_registrar: ~uri
    dloa_platform_label: text 
    ? dloa_application_label: text
]
$$claims-set-claims //= (profile-label => ~uri / ~oid)
$$claims-set-claims //= (
    manifests-label => manifests-type
)

manifests-type = [+ $$manifest-formats]

coswid-that-is-a-cbor-tag-xx = tagged-coswid<concise-swid-tag>

$$manifest-formats /= bytes .cbor coswid-that-is-a-cbor-tag-xx$$claims-set-claims //= (
    swevidence-label => swevidence-type
)

swevidence-type = [+ $$swevidence-formats]
 
coswid-that-is-a-cbor-tag = tagged-coswid<concise-swid-tag>
$$swevidence-formats /= bytes .cbor coswid-that-is-a-cbor-tag 
$$claims-set-claims //= (swresults-label => [ + swresult-type ])

verification-result-cbor-type = &(
    verification-not-run: 1,
    verification-indeterminate: 2,
    verification-failed: 3,
    fully-verified: 4,
    partially-verified: 5,
)

verification-result-json-type = 
    "verification-not-run" /
    "verification-indeterminate" /
    "verification-failed" /
    "fully-verified" /
    "partially-verified" 


verification-objective-cbor-type = &(
    all: 1,
    firmware: 2,
    kernel: 3,
    privileged: 4,
    system-libs: 5,
    partial: 6,
)

verification-objective-json-type = 
    "all" /
    "firmware" /
    "kernel" /
    "privileged" /
    "system-libs" /
    "partial"


swresult-type = [
    verification-system: tstr,
    objective: verification-objective-cbor-type /
        verification-objective-json-type, 
    result: verification-result-cbor-type / 
        verification-result-json-type, 
    ? objective-name: tstr
]
$$claims-set-claims //= (submods-label => { + text => Submodule })

Submodule = Claims-Set / Nested-Token / Detached-Submodule-Digest

Detached-Submodule-Digest = [
   algorithm : int / text,
   digest : bstr 
]
Detached-EAT-Bundle = [
    main-token : Nested-Token,
    detached-claims-sets: {
        + tstr => cbor-wrapped-claims-set / json-wrapped-claims-set
    }
]


json-wrapped-claims-set = tstr .regexp "[A-Za-z0-9_=-]+" 


cbor-wrapped-claims-set = bstr .cbor Claims-Set
]]></artwork></figure>

</section>
<section anchor="collected-cddl-for-cbor" title="Collected CDDL for CBOR">

<figure><artwork type="CDDL"><![CDATA[
CBOR-Token = Tagged-CBOR-Token / Untagged-CBOR-Token
    

Tagged-CBOR-Token  = CWT-Tagged-Message
Tagged-CBOR-Token /= UCCS-Tagged-Message
Tagged-CBOR-Token /= DEB-Tagged-Message


Untagged-CBOR-Token  = CWT-Untagged-Message
Untagged-CBOR-Token /= UCCS-Untagged-Message
Untagged-CBOR-Token /= DEB-Untagged-Message


CWT-Tagged-Message = COSE_Tagged_Message
CWT-Untagged-Message = COSE_Untagged_Message


UCCS-Message = UCCS-Tagged-Message / UCCS-Untagged-Message

UCCS-Tagged-Message = #6.601(UCCS-Untagged-Message)

UCCS-Untagged-Message = Claims-Set


DEB-Tagged-Message = #6.602(DEB-Untagged-Message)

DEB-Untagged-Message = Detached-EAT-Bundle


Nested-Token =
    tstr / ; A JSON-encoded Nested-Token (see json-nested-token.cddl)
    bstr .cbor Tagged-CBOR-Token


iss-label = 1
sub-label = 2
aud-label = 3
exp-label = 4
nbf-label = 5
iat-label = 6
cti-label = 7nonce-label = 10
ueid-label = 256
sueids-label = 257
oemid-label = 258
hardware-model-label = 259
hardware-version-label = 260
secure-boot-label = 262
debug-status-label = 263
location-label = 264
profile-label = 265
submods-label = 266
security-level-label = <TBD>
uptime-label = <TBD>
boot-seed-label = <TB>
odometer-label = <TBD>
intended-use-label = <TBD>
dloas-label = <TBD>
sw-name-label = <TBD>
sw-version-label = <TBD>
manifests-label = <TBD>
swevidence-label = <TBD>
swresults-label = <TBD>



]]></artwork></figure>

</section>
<section anchor="collected-cddl-for-json" title="Collected CDDL for JSON">

<figure><artwork type="JSON"><![CDATA[
JWT-Message = text .regexp [A-Za-z0-9_=-]+\.[A-Za-z0-9_=-]+\.[A-Za-z0-9_=-]+

UJCS-Message = Claims-Set

Nested-Token = [
   type : "JWT" / "CBOR" / "UJCS" / "DEB",
   nested-token : JWT-Message /
                  B64URL-Tagged-CBOR-Token /
                  DEB-JSON-Message /
                  UJCS-Message
]


B64URL-Tagged-CBOR-Token = tstr .regexp "[A-Za-z0-9_=-]+"
iss-label = "iss"
sub-label = "sub"
aud-label = "aud"
exp-label = "exp"
nbf-label = "nbf"
iat-label = "iat"
cti-label = "cti"nonce-label /= "nonce"


ueid-label /= "ueid"
sueids-label /= "sueids"
oemid-label /= "oemid"
hardware-model-label /= "hwmodel"
hardware-version-label /= "hwversion"
security-level-label /= "seclevel"
secure-boot-label /= "secboot"
debug-status-label /= "dbgstat"
location-label /= "location"
profile-label /= "eat-profile"
uptime-label /= "uptime"
boot-seed-label /= "bootseed"
odometer-label /= "odometer"
intended-use-label /= "intuse"
dloas-label /= "dloas"
sw-name-label /= "swname"
sw-version-label /= "swversion"
manifests-label /= "manifests"
swevidence-label /= "swevidence"
swresults-label /= "swresults"
submods-label /= "submods"


latitude /= "lat"
longitude /= "long"
altitude /= "alt"
accuracy /= "accry"
altitude-accuracy /= "alt-accry"
heading /= "heading"
speed /= "speed"
]]></artwork></figure>

</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 (requested 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: TBD (requested value 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: TBD (requested value 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 initials='S.' surname='Bradner' fullname='S. Bradner'><organization /></author>
<date year='1997' month='March' />
<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 initials='T.' surname='Bray' fullname='T. Bray' role='editor'><organization /></author>
<date year='2014' month='March' />
<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 initials='M.' surname='Jones' fullname='M. Jones'><organization /></author>
<author initials='J.' surname='Bradley' fullname='J. Bradley'><organization /></author>
<author initials='N.' surname='Sakimura' fullname='N. Sakimura'><organization /></author>
<date year='2015' month='May' />
<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 initials='M.' surname='Jones' fullname='M. Jones'><organization /></author>
<author initials='J.' surname='Hildebrand' fullname='J. Hildebrand'><organization /></author>
<date year='2015' month='May' />
<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 initials='C.' surname='Bormann' fullname='C. Bormann'><organization /></author>
<author initials='P.' surname='Hoffman' fullname='P. Hoffman'><organization /></author>
<date year='2020' month='December' />
<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="RFC7517" target='https://www.rfc-editor.org/info/rfc7517'>
<front>
<title>JSON Web Key (JWK)</title>
<author initials='M.' surname='Jones' fullname='M. Jones'><organization /></author>
<date year='2015' month='May' />
<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 initials='M.' surname='Jones' fullname='M. Jones'><organization /></author>
<author initials='J.' surname='Bradley' fullname='J. Bradley'><organization /></author>
<author initials='N.' surname='Sakimura' fullname='N. Sakimura'><organization /></author>
<date year='2015' month='May' />
<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 initials='M.' surname='Jones' fullname='M. Jones'><organization /></author>
<author initials='J.' surname='Bradley' fullname='J. Bradley'><organization /></author>
<author initials='H.' surname='Tschofenig' fullname='H. Tschofenig'><organization /></author>
<date year='2016' month='April' />
<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 initials='M.' surname='Cotton' fullname='M. Cotton'><organization /></author>
<author initials='B.' surname='Leiba' fullname='B. Leiba'><organization /></author>
<author initials='T.' surname='Narten' fullname='T. Narten'><organization /></author>
<date year='2017' month='June' />
<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 initials='B.' surname='Leiba' fullname='B. Leiba'><organization /></author>
<date year='2017' month='May' />
<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 initials='M.' surname='Jones' fullname='M. Jones'><organization /></author>
<author initials='E.' surname='Wahlstroem' fullname='E. Wahlstroem'><organization /></author>
<author initials='S.' surname='Erdtman' fullname='S. Erdtman'><organization /></author>
<author initials='H.' surname='Tschofenig' fullname='H. Tschofenig'><organization /></author>
<date year='2018' month='May' />
<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 initials='H.' surname='Birkholz' fullname='H. Birkholz'><organization /></author>
<author initials='C.' surname='Vigano' fullname='C. Vigano'><organization /></author>
<author initials='C.' surname='Bormann' fullname='C. Bormann'><organization /></author>
<date year='2019' month='June' />
<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 initials='M.' surname='Jones' fullname='M. Jones'><organization /></author>
<author initials='L.' surname='Seitz' fullname='L. Seitz'><organization /></author>
<author initials='G.' surname='Selander' fullname='G. Selander'><organization /></author>
<author initials='S.' surname='Erdtman' fullname='S. Erdtman'><organization /></author>
<author initials='H.' surname='Tschofenig' fullname='H. Tschofenig'><organization /></author>
<date year='2020' month='March' />
<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 initials='T.' surname='Berners-Lee' fullname='T. Berners-Lee'><organization /></author>
<author initials='R.' surname='Fielding' fullname='R. Fielding'><organization /></author>
<author initials='L.' surname='Masinter' fullname='L. Masinter'><organization /></author>
<date year='2005' month='January' />
<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 initials='J.' surname='Schaad' fullname='J. Schaad'><organization /></author>
<date year='2017' month='July' />
<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 initials='C.' surname='Bormann' fullname='C. Bormann'><organization /></author>
<date year='2021' month='July' />
<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="UCCS.Draft">
   <front>
      <title>A CBOR Tag for Unprotected CWT Claims Sets</title>
      <author fullname="Henk Birkholz">
	 <organization>Fraunhofer SIT</organization>
      </author>
      <author fullname="Jeremy O&#39;Donoghue">
	 <organization>Qualcomm Technologies Inc.</organization>
      </author>
      <author fullname="Nancy Cam-Winget">
	 <organization>Cisco Systems</organization>
      </author>
      <author fullname="Carsten Bormann">
	 <organization>Universität Bremen TZI</organization>
      </author>
      <date month="January" day="12" year="2022" />
      <abstract>
	 <t>   CBOR Web Token (CWT, RFC 8392) Claims Sets sometimes do not need the
   protection afforded by wrapping them into COSE, as is required for a
   true CWT.  This specification defines a CBOR tag for such unprotected
   CWT Claims Sets (UCCS) and discusses conditions for its proper use.


   // The present version (-01) has a few editorial improvements over
   // -00 and attempts to address points from Thomas Fossati&#39;s
   // 2021-03-16 review, for further discussion at IETF 111.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-rats-uccs-02" />
   <format type="TXT" target="https://www.ietf.org/archive/id/draft-ietf-rats-uccs-02.txt" />
</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 month="January" day="26" 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-20" />
   <format type="TXT" target="https://www.ietf.org/archive/id/draft-ietf-sacm-coswid-20.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 initials='P.' surname='Leach' fullname='P. Leach'><organization /></author>
<author initials='M.' surname='Mealling' fullname='M. Mealling'><organization /></author>
<author initials='R.' surname='Salz' fullname='R. Salz'><organization /></author>
<date year='2005' month='July' />
<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 initials='A.' surname='Melnikov' fullname='A. Melnikov' role='editor'><organization /></author>
<author initials='K.' surname='Zeilenga' fullname='K. Zeilenga' role='editor'><organization /></author>
<date year='2006' month='June' />
<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 initials='R.' surname='Shirey' fullname='R. Shirey'><organization /></author>
<date year='2007' month='August' />
<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 initials='M.' surname='Cotton' fullname='M. Cotton'><organization /></author>
<date year='2014' month='January' />
<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 initials='E.' surname='Rescorla' fullname='E. Rescorla'><organization /></author>
<date year='2018' month='August' />
<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 initials='J.' surname='Arkko' fullname='J. Arkko'><organization /></author>
<author initials='C.' surname='Jennings' fullname='C. Jennings'><organization /></author>
<author initials='Z.' surname='Shelby' fullname='Z. Shelby'><organization /></author>
<date year='2021' month='June' />
<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 month="February" day="8" 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 type="TXT" target="https://www.ietf.org/archive/id/draft-ietf-rats-architecture-15.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 initials='J' surname='Schaad' fullname='Jim Schaad'>
<organization />
</author>
<date year='2020' month='December' day='14' />
<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 type='TXT' target='https://www.ietf.org/internet-drafts/draft-ietf-cose-x509-08.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 month="January" day="10" 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 type="TXT" target="https://www.ietf.org/archive/id/draft-ietf-cose-cbor-encoded-cert-03.txt" />
</reference>




    </references>


<section anchor="examples" title="Examples">

<t>These examples are either UCCS, shown as CBOR diagnostic, or UJCS messages.
Full CWT and JWT examples with signing and encryption are not given.</t>

<t>All UCCS examples can be the payload of a CWT.
To do so, they must be converted from the UCCS message to a Claims-Set, which is achieve by “removing” the tag.</t>

<t>UJCS messages can be directly used as the payload of a JWT.</t>

<t>WARNING: These examples use tag and label numbers not yet assigned by IANA.</t>

<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 a UCCS EAT that describes a simple TEE. /

601({
    / nonce /           10: h'948f8860d13a463e',
    / security-level / 261: 3, / secure-restricted /
    / secure-boot /    262: true,
    / debug-status /   263: 2, / disabled-since-boot /
    / manfests /       273: [
                               / This is byte-string wrapped      /
                               / payload CoSWID. It gives the TEE /
                               / software name, the version and   /
                               / the  name of the file it is in.  /
                               h' da53574944a60064336132340c01016b
                                  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: 3, / secure 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). /

601({
    / nonce /           10: h'948f8860d13a463e',
    / UEID /           256: h'0198f50a4ff6c05861c8860d13a638ea',
    / OEMID /          258: 64242, / Private Enterprise Number /
    / security-level / 261: 4, / 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="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.  /

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.                                      /
    /                                                           /
    / This token here is in UCCS format (unsigned). In a more   /
    / realistic example, it would be a signed CWT.              /
    h'd90259a80a48948f8860d13a463e190100500198
    f50a4ff6c05861c8860d13a638ea19010219faf2
    19010504190106f5190107031901048263332e31
    0119010aa163544545822f5820e5cf95fd24fab7
    1446742dd58d43dae178e55fe2b94291a9291082
    ffc2635a0b',
    {
       / A CBOR-encoded byte-string wrapped EAT claims-set. It /
       / contains claims suitable for a TEE                    /
       "TEE" : h'a50a48948f8860d13a463e19010503190106f519
                 01070219011181585dda53574944a60064336132
                 340c01016b41636d6520544545204f530d65332e
                 312e340282a2181f6b41636d6520544545204f53
                 182101a2181f6b41636d6520544545204f531821
                 0206a111a118186e61636d655f7465655f332e65
                 7865'
    }
 ])
 
]]></artwork></figure>

<figure><artwork><![CDATA[
/ This example contains submodule that is a detached digest,   /
/ which is the hash of a Claims-Set convey outside this token. /
/ Other than that is is the other example of a token from an   /
/ attestation HW block                                         /

601({
    / nonce /           10: h'948f8860d13a463e',
    / UEID /           256: h'0198f50a4ff6c05861c8860d13a638ea',
    / OEMID /          258: 64242, / Private Enterprise Number /
    / security-level / 261: 4, / 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="key-key-store-attestation" 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.                  /


601({
    / nonce /           10: h'948f8860d13a463e',
    / security-level / 261: 3, / secure-restricted /
    / secure-boot /    262: true,
    / debug-status /   263: 2, / disabled-since-boot /
    / manifests /      273: [
                                h'da53574944a600683762623334383766
                                  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: [
                                    h'da53574944a600687337
                                      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 UCCS 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.           /

601({
    / nonce /           10: h'948f8860d13a463e',
    / security-level / 261: 3, / secure-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: [
                                    / This is a byte-string wrapped /
                                    / evidence CoSWID. It has       /
                                    / hashes of the main files of   /
                                    / the IoT OS.  /
                                    h'da53574944a600663463613234350c
                                      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 UJCS format token 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>

<t>This UJCS is identical to JSON-encoded Claims-Set that could be a JWT payload.</t>

<figure><artwork><![CDATA[
{
    "nonce" : "lI+IYNE6Rj4=",
    "seclevel" : "secure-restricted",
    "secboot" : true,
    "dbgstat" : "disabled-since-boot",
    "OEMID" : "iUWt",
    "UEID" : "AZj1Ck/2wFhhyIYNE6Y4",
    "submods" : {
        "seclevel" : "restricted",
        "secboot" : true,
        "dbgstat" : "disabled-since-boot",
        "swname" : "Acme R-IoT-OS",
        "sw-version" : [
            "3.1.4"
        ],
        "swresults" : [
            [
                "Trustus Verifications",
                "all",
                "fully-verified"
            ]
       ]
}
    
]]></artwork></figure>

</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="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>


  </back>

<!-- ##markdown-source:
H4sIAF60FmIAA+y9a3PbWJYg+B2/AqGs2LSqSMp6+NmT3aOUlFnKti2PJZe7
t6IiAyJBCmUSYAOgZLUn67fPed9zAVBWdc3E7kZsdUdaBC7u89zzfozH46Rp
s3L2a7asyvx12tabPCnWNf3VtAdPn756epBMs/Z12rSzJJlV0zJbQcNZnc3b
cZG383Gdtc04z9rx/kGS3C1epx+Ory7TT1X9uSgX6c91tVkn36XTqmzystk0
r9Pv7/Pme3jUbK5XRdMUVdner6HP87Orn5J18TpJ07aaajv6McvX7Q08OcLf
TVW3dT5vQovmfhU/mFardTZtXYvNdXhWVvionk/zWdPeL3Nt1hYt/ri6ydOz
En7cp8dtm8MGtTDH9Kr6nJfpk7Pjq90ku76u89vXKfxIsjrPYPJlm9dl3iaf
72CvikWJi8/c59PrqoZFz7IWhjh4un843n+aZJv2pqpfJ+O0KGH6bybpm005
u15msxxmyFv9JtvUeTnNo1dVDRt9mU83NU4TZlzV9+mbNyfwKl9lxfJ1ulws
/3sjDVp6P4Ed0JF+nqRv4dzvs5WN83NRF7ObrHYvaJT/scmW8OUqvcqnN2W1
rBZF3sB6pxPcVziJHPb02YsXz9K3VZ3fVJsmT0/r4hanOYXBYZ5ZmZ4W+aLC
Xc8XsBuv05NsWcyruiwyOq5N2dbQ8uPlMfxc3xAw7vxhP3357GX6/Nl++gJA
cScsbsVT/O//0RaT/5D5+eX9Mkkvvj+tympxswk7+Ute56v7+M3jl3jw4lX6
U1aXcI7VZnGTfqiymS3RvaD1zHBDP+4fpS/eXEYLLIs2n6X/CtAxq1ZhrX84
Okr3D54dpIfPD/dfvgor/Ws1o8n2l5qUVb0C2LrN8cZ8+OnkYH//lfz5Yv+Z
/fls/1n487n8+fLVkWvwIvxpT18+fapt9w/ss/0XR/rn4asD/fP5vrV9caSd
Hb56GT57pm1fAUbBP/F/8M+nny9fHvHvNqsXuM87N227bl7v7eVZ3d6Mi3Je
TcpFNlkVy731zXpvVt2VS9j7Cfz4l3mxzH+YVlU9G98tmpdHO9wVX+RPFx/e
nKY/n12cnl2dn6SX/355dfY23X/18miUvvv5eHJ59e508vTp4fNf9ydPJ09/
pclQB3ov8e8xw8g7usbZMv05r5o1/MiWY7z0y2WxoOt5jP/cp0+g51360K76
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
hZftrLsgvib5fwwW84uQSAIA

-->

</rfc>

