<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.5.12 -->
<?rfc toc="yes"?>
<?rfc tocdepth="4"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc compact="yes"?>
<?rfc subcompact="no"?>
<?rfc rfcedstyle="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-rats-eat-15" category="std" obsoletes="" updates="" submissionType="IETF" xml:lang="en" tocInclude="true" tocDepth="4" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.15.0 -->
  <front>
    <title abbrev="EAT">The Entity Attestation Token (EAT)</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-rats-eat-15"/>
    <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>
    <author initials="C." surname="Wallace" fullname="Carl Wallace">
      <organization>Red Hound Software, Inc.</organization>
      <address>
        <email>carl@redhoundsoftware.com</email>
      </address>
    </author>
    <date year="2022" month="September" day="30"/>
    <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 smartphone, 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.</t>
    </abstract>
  </front>
  <middle>
    <section anchor="introduction" numbered="true" toc="default">
      <name>Introduction</name>
      <t>An Entity Attestation Token (EAT) is a message or token made up of claims about an entity.
An entity may be a device, some hardware or some software.
The claims are ultimately used by a relying party who decides if and how it will interact with the entity.
The relying party may choose to trust, not trust or partially trust the entity.
For example, partial trust may be allowing a monetary transaction only up to a limit.</t>
      <t>The security model and goal for attestation are unique and are not the same as for other security standards like those for server authentication, user authentication and secured messaging.
The reader is assumed to be familiar with the goals and security model for attestation as described in <xref target="RATS.Architecture" format="default"/>.</t>
      <t>This document defines some common claims that are potentially of broad use.
EAT additionally allows proprietary claims and for further claims to be standardized.
Here are some examples:</t>
      <ul spacing="normal">
        <li>Make and model of manufactured consumer device</li>
        <li>Make and model of a chip or processor, particularly for a security-oriented chip</li>
        <li>Identification and measurement of the software running on a device</li>
        <li>Configuration and state of a device</li>
        <li>Environmental characteristics of a device like its GPS location</li>
        <li>Formal certifications received</li>
      </ul>
      <t>EAT is constructed to support a wide range of use cases.</t>
      <t>No single set of claims can accommodate all use cases so EAT is constructed as a framework for defining specific attestation tokens for specific use cases.
In particular, EAT provides a profile mechanism to be able to clearly specify the claims needed, the cryptographic algorithms that should be used and other for a particular token and use case.</t>
      <t>The entity side of an EAT implementation generates the claims and typically signs them with an attestation key.
It is responsible for protecting the attestation key.
Some EAT implementations will use components with very high resistance to attack like TPMs or secure elements.
Other may rely solely on simple SW defenses.</t>
      <t>Nesting of tokens and claims sets is accommodated for composite devices that have multiple subsystems.</t>
      <t>An EAT may be encoded in either JSON <xref target="RFC8259" format="default"/> or CBOR <xref target="RFC8949" format="default"/> as needed for each use case.
EAT is built on CBOR Web Token (CWT) <xref target="RFC8392" format="default"/> and JSON Web Token (JWT) <xref target="RFC7519" format="default"/> and inherits all their characteristics and their security mechanisms.</t>
      <section anchor="entity-overview" numbered="true" toc="default">
        <name>Entity Overview</name>
        <t>The document uses the term "entity" to refer to the target of an EAT. Many of the claims defined in this document are claims about an entity, which is equivalent to an attesting environment as defined in <xref target="RATS.Architecture" format="default"/>. An entity may be the whole device, a subsystem, a subsystem of a subsystem, etc.
Correspondingly, the EAT format allows claims to be organized using mechanisms like submodules and nested EATs (see <xref target="submods" format="default"/>).
The entity to which a claim applies is the submodule in which it appears, or to the top-level entity if it doesn't appear in a submodule.</t>
        <t>An entity also corresponds to a "system component", as defined in the Internet Security Glossary <xref target="RFC4949" format="default"/>.
That glossary also defines "entity" and "system entity" as something that may be a person or organization as well as a system component.
In the EAT context, "entity" never refers to a person or organization. The hardware and software that implement a server or service used by a web site may be an entity, but the organization that runs the web site is not an entity nor is the web site itself. An entity is an implementation in hardware, software or both.</t>
        <t>Some examples of entities:</t>
        <ul spacing="normal">
          <li>A Secure Element</li>
          <li>A TEE</li>
          <li>A card in a network router</li>
          <li>A network router, perhaps with each card in the router a submodule</li>
          <li>An IoT device</li>
          <li>An individual process</li>
          <li>An app on a smartphone</li>
          <li>A smartphone with many submodules for its many subsystems</li>
          <li>A subsystem in a smartphone like the modem or the camera</li>
        </ul>
        <t>An entity may have strong security defenses against hardware invasive attacks.
It may also have low security, having no special security defenses.
There is no minimum security requirement to be an entity.</t>
      </section>
      <section anchor="eat-as-a-framework" numbered="true" toc="default">
        <name>EAT as a Framework</name>
        <t>EAT is a framework for defining attestation tokens for specific use cases, not a specific token definition.
While EAT is based on and compatible with CWT and JWT, it can also be described as:</t>
        <ul spacing="normal">
          <li>An identification and type system for claims in claims-sets</li>
          <li>Definitions of common attestation-oriented claims</li>
          <li>Claims are defined in CDDL and serialized using CBOR or JSON</li>
          <li>Security envelopes based on COSE and JOSE</li>
          <li>Nesting of claims sets and tokens to represent complex and compound devices</li>
          <li>A profile mechanism for specifying and identifying specific token formats for specific use cases</li>
        </ul>
        <t>EAT uses the name/value pairs the same as CWT and JWT to identify individual claims.
<xref target="theclaims" format="default"/> defines common attestation-oriented claims that are added to the CWT and JWT IANA registries.
As with CWT and JWT, no claims are mandatory and claims not recognized should be ignored.</t>
        <t>Unlike, but compatible with CWT and JWT, EAT defines claims using Concise Data Definition Language (CDDL) <xref target="RFC8610" format="default"/>.
In most cases the same CDDL definition is used for both the CBOR/CWT serialization and the JSON/JWT serialization.</t>
        <t>Like CWT and JWT, EAT uses COSE and JOSE to provide authenticity, integrity and optionally confidentiality.
EAT places no new restrictions on cryptographic algorithms, retaining all the cryptographic flexibility of CWT, COSE, JWT and JOSE.</t>
        <t>EAT defines a means for nesting tokens and claims sets to accommodate composite devices that have multiple subsystems and multiple attesters.
Full tokens with security envelopes may be embedded in an enclosing token.
The nested token and the enclosing token do not have to use the same encoding (e.g., a CWT may be enclosed in a JWT).</t>
        <t>EAT adds the ability to detach claims sets and send them separately from a security enveloped EAT that contains a digest of the detached claims set.</t>
        <t>This document registers no media or content types for the identification of the type of EAT, its serialization format or security envelope.
That is left for a follow-on document.</t>
        <t>Finally, the notion of an EAT profile is introduced that facilitates the creation of narrowed definitions of EAT tokens for specific use cases in follow-on documents.</t>
      </section>
      <section anchor="operating-model-and-rats-architecture" numbered="true" toc="default">
        <name>Operating Model and RATS Architecture</name>
        <t>The EAT format follows the operational model described in Figure 1 in <xref target="RATS.Architecture" format="default"/>. To summarize, an attester generates evidence in the form of a claims set describing various characteristics of an entity.
Evidence is usually signed by a key that proves the attester and the evidence it produces are authentic.
The claims set includes a nonce or some other means to assure freshness.</t>
        <t>A verifier confirms an EAT is valid by verifying the signature and may vet some claims using reference values.
The verifier then produces attestation results, which may also be represented as an EAT.
The attestation results are provided to the relying party, which is the ultimate consumer of the Remote Attestation Procedure.
The relying party uses the attestation results as needed for its use case, perhaps allowing an entity to access a network, allowing a financial transaction or such.
In some cases, the verifier and relying party are not distinct entities.</t>
        <section anchor="relationship" numbered="true" toc="default">
          <name>Relationship between Evidence and Attestation Results</name>
          <t>Any claim defined in this document or in the IANA CWT or JWT registry may be used in evidence or attestation results. The relationship of claims in attestation results to evidence is fundamentally governed by the verifier and the verifier's policy.</t>
          <t>A common use case is for the verifier and its policy to perform checks, calculations and processing with evidence as the input to produce a summary result in attestation results that indicates the overall health and status of the entity.
For example, measurements in evidence may be compared to reference values the results of which are represented as a simple pass/fail in attestation results.</t>
          <t>It is also possible that some claims in the Evidence will be forwarded unmodified to the relying party in attestation results.
This forwarding is subject to the verifier's implementation and policy.
The relying party should be aware of the verifier's policy to know what checks it has performed on claims it forwards.</t>
          <t>The verifier may modify claims it forwards, for example, to implement a privacy preservation functionality. It is also possible the verifier will put claims in the attestation results that give details about the entity that it has computed or looked up in a database.
For example, the verifier may be able to put an "oemid" claim in the attestation results by performing a look up based on a UEID (serial number) it received in evidence.</t>
          <t>This specification does not establish any normative rules for the verifier to follow, as these are a matter of local policy.
It is up to each relying party to understand the processing rules of each verifier to know how to interpret claims in attestation results.</t>
        </section>
      </section>
    </section>
    <section anchor="terminology" numbered="true" toc="default">
      <name>Terminology</name>
      <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" format="default"/> <xref target="RFC8174" format="default"/> when, and only when, they appear in all
capitals, as shown here.</t>
      <t>This document reuses terminology from JWT <xref target="RFC7519" format="default"/> and CWT <xref target="RFC8392" format="default"/>.</t>
      <dl newline="false" spacing="normal">
        <dt>Claim:</dt>
        <dd>
  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.</dd>
        <dt>Claim Name:</dt>
        <dd>
  A unique text string that identifies the claim. It is used as the claim name for JSON encoding.</dd>
        <dt>Claim Key:</dt>
        <dd>
  The CBOR map key used to identify a claim.</dd>
        <dt>Claim Value:</dt>
        <dd>
  The value portion of the claim. A claim value can be any CBOR data item or JSON value.</dd>
        <dt>Claims Set:</dt>
        <dd>
  The CBOR map or JSON object that contains the claims conveyed by the CWT or JWT.</dd>
      </dl>
      <t>This document reuses terminology from RATS Architecure <xref target="RATS.Architecture" format="default"/></t>
      <dl newline="false" spacing="normal">
        <dt>Attester:</dt>
        <dd>
  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.</dd>
        <dt>Verifier:</dt>
        <dd>
  A role that appraises the validity of evidence about an attester and produces attestation results to be used by a relying party.</dd>
        <dt>Relying Party:</dt>
        <dd>
  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" format="default"/>.</dd>
        <dt>Evidence:</dt>
        <dd>
  A set of claims generated by an attester to be appraised by a verifier. Evidence may include configuration data, measurements, telemetry, or inferences.</dd>
        <dt>Attestation Results:</dt>
        <dd>
  The output generated by a verifier, typically including information about an attester, where the verifier vouches for the validity of the results</dd>
        <dt>Reference Values:</dt>
        <dd>
  A set of values against which values of claims can be compared as part of applying an appraisal policy for evidence.  Reference Values are sometimes referred to in other documents as known-good values, golden measurements, or nominal values, although those terms typically assume comparison for equality, whereas here reference values might be more general and be used in any sort of comparison.</dd>
        <dt>Endorsement:</dt>
        <dd>
  A secure statement that an Endorser vouches for the integrity of an attester's various capabilities such as claims collection and evidence signing.</dd>
      </dl>
    </section>
    <section anchor="top-level-token-definition" numbered="true" toc="default">
      <name>Top-Level Token Definition</name>
      <t>An EAT is a "message", a "token", or such whose content is a Claims-Set about an entity or some number of entities. An EAT MUST always contains a Claims-Set.</t>
      <t>Authenticity and integrity protection MUST be provided for EATs. This document relies on CWT or JWT for this purpose.
Extensions to this specification MAY use other methods of protection.</t>
      <t>The identification of a protocol element as an EAT follows the general conventions used for CWTs and JWTs.
Identification depends on the protocol carrying the EAT.
In some cases it may be by media type (e.g., in a HTTP Content-Type field).
In other cases it may be through use of CBOR tags.
There is no fixed mechanism across all use cases.</t>
      <t>This document also defines a new top-level message, the detached EAT bundle (see <xref target="DEB" format="default"/>), which holds a collection of detached claims sets and an EAT that provides integrity and authenticity protection for them.
Detached EAT bundles can be either CBOR or JSON encoded.</t>
      <t>The following CDDL defines the top-level <tt>$$EAT-CBOR-Tagged-Token</tt>, <tt>$$EAT-CBOR-Untagged-Token</tt> and <tt>$$EAT-JSON-Token-Formats</tt> sockets, enabling future token formats to be defined.
Any new format that plugs into one or more of these sockets MUST be defined by an IETF standards action.
Of particular use may be a token type that provides no direct authenticity or integrity protection for use with transports mechanisms that do provide the necessary security services <xref target="UCCS" format="default"/>.</t>
      <t>Nesting of EATs is allowed and defined in <xref target="Nested-Token" format="default"/>.
This includes the nesting of an EAT that is a different format than the enclosing EAT.
The definition of Nested-Token references the CDDL defined in this section.
When new token formats are defined, the means for identification in a nested token MUST also be defined.</t>
      <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
EAT-CBOR-Token = $$EAT-CBOR-Tagged-Token / $$EAT-CBOR-Untagged-Token 

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

$$EAT-CBOR-Untagged-Token /= CWT-Untagged-Message
$$EAT-CBOR-Untagged-Token /= BUNDLE-Untagged-Message
]]></artwork>
      <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
EAT-JSON-Token = $$EAT-JSON-Token-Formats

$$EAT-JSON-Token-Formats /= JWT-Message
$$EAT-JSON-Token-Formats /= BUNDLE-Untagged-Message
]]></artwork>
    </section>
    <section anchor="theclaims" numbered="true" toc="default">
      <name>The Claims</name>
      <t>This section describes new claims defined for attestation that are to be added to the CWT <xref target="IANA.CWT.Claims" format="default"/> and JWT <xref target="IANA.JWT.Claims" format="default"/> IANA registries.</t>
      <t>All definitions, requirements, creation and validation procedures, security considerations, IANA registrations and so on from CWT and JWT carry over to EAT.</t>
      <t>This section also describes how several extant CWT and JWT claims apply in EAT.</t>
      <t>The set of claims that an EAT must contain to be considered valid is context dependent and is outside the scope of this specification.
Specific applications of EATs will require implementations to understand and process some claims in particular ways.
However, in the absence of such requirements, all claims that are not understood by implementations MUST be ignored.</t>
      <t>CDDL, along with a text description, is used to define each claim
independent of encoding.  Each claim is defined as a CDDL group.
In <xref target="encoding" format="default"/> on encoding, the CDDL groups turn into CBOR map entries and JSON name/value pairs.</t>
      <t>Each claim defined in this document is added to the <tt>$$Claims-Set-Claims</tt> socket group. Claims defined by other specifications MUST also be added to the <tt>$$Claims-Set-Claims</tt> socket group.</t>
      <t>All claims in an EAT MUST use the same encoding except where otherwise explicitly stated (e.g., in a CBOR-encoded token, all claims must be CBOR-encoded).</t>
      <t>This specification includes a CDDL definition of most of what is defined in <xref target="RFC8392" format="default"/>.
Similarly, this specification includes CDDL for most of what is defined in <xref target="RFC7519" format="default"/>.
These definitions are in <xref target="CDDL_for_CWT" format="default"/> and are not normative.</t>
      <t>Each claim described has a unique text string and integer that identifies it.
CBOR-encoded tokens MUST use only the integer for claim keys.
JSON-encoded tokens MUST use only the text string for claim names.</t>
      <section anchor="nonce" numbered="true" toc="default">
        <name>eat_nonce (EAT Nonce) Claim</name>
        <t>An EAT nonce is either a byte or text string or an array of byte or text strings.
The array option supports multistage EAT verification and consumption.</t>
        <t>A claim named "nonce" was defined and registered with IANA for JWT, but MUST NOT be used because it does not support multiple nonces.
No previous "nonce" claim was defined for CWT.
To distinguish from the previously defined JWT "nonce" claim, this claim is named "eat_nonce" in JSON-encoded EATs. The CWT nonce defined
here is intended for general purpose use and retains the "Nonce" claim name instead of an EAT-specific name.</t>
        <t>An EAT nonce MUST have at least 64 bits of entropy.
A maximum EAT nonce size is set to limit the memory required for an implementation.
All receivers MUST be able to accommodate the maximum size.</t>
        <t>In CBOR, an EAT nonce is a byte string.
The minimum size is 8 bytes.
The maximum size is 64 bytes.</t>
        <t>In JSON, an EAT nonce is a text string.
It is assumed that only characters represented by the lower 7 bits of each byte will be used, so the text string must be one-seventh longer because the 8th bit doesn't contribute to entropy.
The minimum size for JSON-encoded EATs is 10 bytes and the maximum size is 74 bytes.</t>
        <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
$$Claims-Set-Claims //= 
    (nonce-label => nonce-type / [ 2* nonce-type ])

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

]]></artwork>
      </section>
      <section anchor="claims-describing-the-entity" numbered="true" toc="default">
        <name>Claims Describing the Entity</name>
        <t>The claims in this section describe the entity itself.
They describe the entity whether they occur in evidence or occur in attestation results.
See <xref target="relationship" format="default"/> for discussion on how attestation results relate to evidence.</t>
        <section anchor="UEID" numbered="true" toc="default">
          <name>ueid (Universal Entity ID) Claim</name>
          <t>The "ueid" claim conveys a UEID, which identifies an individual manufactured entity like a
mobile phone, a water meter, a Bluetooth speaker or a networked
security camera. It may identify the entire entity or a submodule.
It does not identify types, models or classes of
entities. It is akin to a serial number, though it does not have to be
sequential.</t>
          <t>UEIDs 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" format="default"/>.</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" format="default"/>.</t>
          <t>UEIDS are variable length to accommodate the types defined here and new types that may be defined in the future.</t>
          <t>All implementations MUST be able to receive UEIDs up to 33 bytes long.
33 bytes is the longest defined in this document and gives necessary entropy for probabilistic uniqueness.
See <xref target="UEID-Design" format="default"/>.</t>
          <t>UEIDs SHOULD NOT be longer than 33 bytes.
If they are longer, there is no guarantee that a receiver will be able to accept them.</t>
          <table anchor="ueid-types-table" align="center">
            <name>UEID Composition Types</name>
            <thead>
              <tr>
                <th align="left">Type Byte</th>
                <th align="left">Type Name</th>
                <th align="left">Specification</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">0x01</td>
                <td align="left">RAND</td>
                <td align="left">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" format="default"/>.</td>
              </tr>
              <tr>
                <td align="left">0x02</td>
                <td align="left">IEEE EUI</td>
                <td align="left">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" format="default"/>, <xref target="OUI.Guide" format="default"/>.</td>
              </tr>
              <tr>
                <td align="left">0x03</td>
                <td align="left">IMEI</td>
                <td align="left">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" format="default"/>.</td>
              </tr>
            </tbody>
          </table>
          <t>UEIDs are not designed for direct use by humans (e.g., printing on
the case of a device), so no textual representation is defined.</t>
          <t>The consumer of a UEID MUST treat a UEID as a
completely opaque string of bytes and not make any use of its internal
structure. For example, they should not use the OUI part of a type
0x02 UEID to identify the manufacturer of the entity. Instead, they
should use the "oemid" claim. See <xref target="oemid" format="default"/>. The reasons for
this are:</t>
          <ul spacing="normal">
            <li>UEIDs types may vary freely from one manufacturer to the next.</li>
            <li>New types of UEIDs may be created. For example, a type 0x07 UEID may
be created based on some other manufacturer registration scheme.</li>
            <li>The manufacturing process for an entity is allowed to change from
using one type of UEID to another.  For example, a manufacturer
may find they can optimize their process by switching from type 0x01
to type 0x02 or vice versa.</li>
          </ul>
          <t>The type byte is needed to distinguish UEIDs of different types that by chance have the same identifier value, but do not identify the same entity.
The type byte MUST be treated as part of the opaque UEID and MUST not be used to make use of the internal structure of the UEID.</t>
          <t>A Device Identifier URN is registered for UEIDs. See <xref target="registerueidurn" format="default"/>.</t>
          <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
$$Claims-Set-Claims //= (ueid-label => ueid-type)

ueid-type = JC<base64-url-text .size (12..44) , bstr .size (7..33)>
]]></artwork>
        </section>
        <section anchor="sueids-semi-permanent-ueids-claim-sueids" numbered="true" toc="default">
          <name>sueids (Semi-permanent UEIDs) Claim (SUEIDs)</name>
          <t>The "sueids" claim conveys one or more semi-permanent UEIDs (SUEIDs). An SUEID has the same format, characteristics and requirements as a UEID, but MAY change to a different value on entity life-cycle events.
An entity MAY have both a UEID and SUEIDs, neither, one or the other.</t>
          <t>Examples of life-cycle events are change of ownership, factory reset and on-boarding into an IoT device management system.
It is beyond the scope of this document to specify particular types of SUEIDs and the life-cycle events that trigger their change.
An EAT profile MAY provide this specification.</t>
          <t>There MAY be multiple SUEIDs.
Each has a text string label the purpose of which is to distinguish it from others.
The label MAY name the purpose, application or type of the SUEID.
For example, the label for the SUEID used by FIDO Onboarding Protocol could be "FDO".
It is beyond the scope of this document to specify any SUEID labeling schemes.
They are use-case specific and MAY be specified in an EAT profile.</t>
          <t>If there is only one SUEID, the claim remains a map and there still MUST be a label.</t>
          <t>An SUEID provides functionality similar to an IEEE LDevID <xref target="IEEE.802.1AR" format="default"/>.</t>
          <t>There are privacy considerations for SUEIDs. See <xref target="ueidprivacyconsiderations" format="default"/>.</t>
          <t>A Device Indentifier URN is registered for SUEIDs. See <xref target="registerueidurn" format="default"/>.</t>
          <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
$$Claims-Set-Claims //= (sueids-label => sueids-type)

sueids-type = {
    + tstr => ueid-type
}
]]></artwork>
        </section>
        <section anchor="oemid" numbered="true" toc="default">
          <name>oemid (Hardware OEM Identification) Claim</name>
          <t>The "oemid" claim identifies the Original Equipment Manufacturer (OEM) of the hardware.
Any of the three forms described below 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" numbered="true" toc="default">
            <name>Random Number Based OEMID</name>
            <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" numbered="true" toc="default">
            <name>IEEE Based OEMID</name>
            <t>The IEEE operates a global registry for MAC addresses and company IDs.
This claim uses that database to identify OEMs. The contents of the
claim may be either an IEEE MA-L, MA-M, MA-S or an IEEE CID
<xref target="IEEE.RA" format="default"/>.  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" format="default"/> and provides a lookup
service <xref target="OUI.Lookup" format="default"/>.</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" format="default"/>. 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" numbered="true" toc="default">
            <name>IANA Private Enterprise Number Based OEMID</name>
            <t>IANA maintains a registry for Private Enterprise Numbers (PEN) <xref target="PEN" format="default"/>. A PEN is an integer that identifies an enterprise and may be
used to construct an object identifier (OID) relative to the following OID arc that is managed by IANA:  iso(1) identified-organization(3) dod(6) internet(1) private(4) enterprise(1).</t>
            <t>For EAT purposes, only the integer value assigned by IANA as the PEN is relevant, not the full OID value.</t>
            <t>In CBOR this value 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>
            <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
$$Claims-Set-Claims //= (
    oemid-label => oemid-pen / oemid-ieee / oemid-random
)

oemid-pen = int

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

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

]]></artwork>
          </section>
        </section>
        <section anchor="hwmodel-hardware-model-claim" numbered="true" toc="default">
          <name>hwmodel (Hardware Model) Claim</name>
          <t>The "hwmodel" claim differentiates hardware models, products and variants manufactured by a particular OEM, the one identified by OEM ID in <xref target="oemid" format="default"/>.</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>
          <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
$$Claims-Set-Claims //= (
    hardware-model-label => hardware-model-type
)

hardware-model-type = JC<base64-url-text .size (4..44),
                         bytes .size (1..32)>
]]></artwork>
        </section>
        <section anchor="hwversion-hardware-version-claim" numbered="true" toc="default">
          <name>hwversion (Hardware Version) Claim</name>
          <t>The "hwversion" claim is a text string the format of which is set by each manufacturer.
The structure and sorting order of this text string can be specified using the version-scheme item from CoSWID <xref target="CoSWID" format="default"/>.
It is useful to know how to sort versions so the newer can be distinguished from the older.</t>
          <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
$$Claims-Set-Claims //=  (
    hardware-version-label => hardware-version-type
)

hardware-version-type = [
    version:  tstr,
    ? scheme:  $version-scheme
]
]]></artwork>
        </section>
        <section anchor="swname-software-name-claim" numbered="true" toc="default">
          <name>swname (Software Name) Claim</name>
          <t>The "swname" claim contains a very simple free-form text value for naming the software used by the entity.
Intentionally, no general rules or structure are set.
This will make it unsuitable for use cases that wish precise naming.</t>
          <t>If precise and rigourous naming of the software for the entity is needed, the "manifests" claim <xref target="manifests" format="default"/> may be used instead.</t>
          <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
$$Claims-Set-Claims //= ( sw-name-label => tstr )
]]></artwork>
        </section>
        <section anchor="swversion-software-version-claim" numbered="true" toc="default">
          <name>swversion (Software Version) Claim</name>
          <t>The "swversion" claim 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>
          <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
$$Claims-Set-Claims //= (sw-version-label => sw-version-type)

sw-version-type = [
    version:  tstr
    ? scheme:  $version-scheme 
]
]]></artwork>
        </section>
        <section anchor="secboot-secure-boot-claim" numbered="true" toc="default">
          <name>secboot (Secure Boot) Claim</name>
          <t>A "secboot" claim with 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" format="default"/>.
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>
          <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
$$Claims-Set-Claims //= (secure-boot-label => bool)
]]></artwork>
        </section>
        <section anchor="dbgstat-debug-status-claim" numbered="true" toc="default">
          <name>dbgstat (Debug Status) Claim</name>
          <t>The "dbgstat" claim 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 "dbgstat" 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" numbered="true" toc="default">
            <name>Enabled</name>
            <t>If any debug facility, even manufacturer hardware diagnostics, is
currently enabled, then this level must be indicated.</t>
          </section>
          <section anchor="disabled" numbered="true" toc="default">
            <name>Disabled</name>
            <t>This level indicates all debug facilities are currently disabled. It
may be possible to enable them in the future. It may also be
that they were enabled in the past, but they are currently disabled.</t>
          </section>
          <section anchor="disabled-since-boot" numbered="true" toc="default">
            <name>Disabled Since Boot</name>
            <t>This level indicates all debug facilities are currently disabled and
have been so since the entity booted/started.</t>
          </section>
          <section anchor="disabled-permanently" numbered="true" toc="default">
            <name>Disabled Permanently</name>
            <t>This level indicates all non-manufacturer facilities are permanently
disabled such that no end user or developer can enable them. Only
the manufacturer indicated in the "oemid" claim can enable them. This
also indicates that all debug facilities are currently disabled and
have been so since boot/start.</t>
          </section>
          <section anchor="disabled-fully-and-permanently" numbered="true" toc="default">
            <name>Disabled Fully and Permanently</name>
            <t>This level indicates that all debug facilities for the entity are permanently disabled.</t>
            <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
$$Claims-Set-Claims //= ( debug-status-label => debug-status-type )

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

ds-enabled                     = JC< "enabled", 0 >
disabled                       = JC< "disabled", 1 >
disabled-since-boot            = JC< "disabled-since-boot", 2 >
disabled-permanently           = JC< "disabled-permanently", 3 >
disabled-fully-and-permanently = JC< "disabled-fully-and-permanently",
                                      4 >
]]></artwork>
          </section>
        </section>
        <section anchor="location" numbered="true" toc="default">
          <name>location (Location) Claim</name>
          <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" format="default"/>.
The latitude, longitude, altitude and accuracy must conform to <xref target="WGS84" format="default"/>.
The altitude is in meters above the <xref target="WGS84" format="default"/> ellipsoid.
The two accuracy values are positive numbers in meters.
The heading is in degrees relative to true north.
If the entity is stationary, the heading is NaN (floating-point not-a-number).
The speed is the horizontal component of the entity velocity in meters per second.</t>
          <t>The location may have been cached for a period of time before token
creation. For example, it might have been minutes or hours or more
since the last contact with a GPS satellite. Either the timestamp or
age data item can be used to quantify the cached period.  The timestamp
data item is preferred as it a non-relative time.</t>
          <t>The age data item can be used when the entity doesn't know what time
it is either because it doesn't have a clock or it isn't set. The
entity MUST still have a "ticker" that can measure a time
interval. The age is the interval between acquisition of the location
data and token creation.</t>
          <t>See location-related privacy considerations in <xref target="locationprivacyconsiderations" format="default"/>.</t>
          <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
$$Claims-Set-Claims //= (location-label => location-type)

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

latitude          = JC< "latitude",          1 >
longitude         = JC< "longitude",         2 >
altitude          = JC< "altitude",          3 >
accuracy          = JC< "accuracy",          4 >
altitude-accuracy = JC< "altitude-accuracy", 5 >
heading           = JC< "heading",           6 >
speed             = JC< "speed",             7 >
timestamp         = JC< "timestamp",         8 >
age               = JC< "age",               9 >
]]></artwork>
        </section>
        <section anchor="uptime-uptime-claim" numbered="true" toc="default">
          <name>uptime (Uptime) Claim</name>
          <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>
          <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
$$Claims-Set-Claims //= (uptime-label => uint)
]]></artwork>
        </section>
        <section anchor="bootcount-boot-count-claim" numbered="true" toc="default">
          <name>bootcount (Boot Count) Claim</name>
          <t>The "bootcount" claim contains a count of the number
times the entity or submod has been booted. Support for this claim
requires a persistent storage on the device.</t>
          <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
$$Claims-Set-Claims //= (boot-count-label => uint)
]]></artwork>
        </section>
        <section anchor="bootseed-boot-seed-claim" numbered="true" toc="default">
          <name>bootseed (Boot Seed) Claim</name>
          <t>The "bootseed" claim contains a value created at system boot time that allows differentiation of attestation reports from different boot sessions of a particular entity (e.g., a certain UEID).</t>
          <t>This value is usually public.
It is not a secret and MUST NOT be used for any purpose that a secret seed is needed, such as seeding a random number generator.</t>
          <t>There are privacy considerations for Boot Seed. See <xref target="bootseedprivacyconsiderations" format="default"/>.</t>
          <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
$$Claims-Set-Claims //=  (boot-seed-label => binary-data)
]]></artwork>
        </section>
        <section anchor="dloas" numbered="true" toc="default">
          <name>dloas (Digital Letters of Approval) Claim</name>
          <t>The "dloas" claim conveys one or more Digital Letters of Approval (DLOAs)). A DLOA <xref target="DLOA" format="default"/> is a document that describes a certification that an entity has received.
Examples of certifications represented by a DLOA include those issued by Global Platform and those based on Common Criteria.
The DLOA is unspecific to any particular certification type or those issued by any particular organization.</t>
          <t>This claim is typically issued by a verifier, not an attester.
Verifiers MUST NOT issue this claim unless the entity has received the certification indicated by the DLOA.</t>
          <t>This claim MAY contain more than one DLOA.
If multiple DLOAs are present, verifiers MUST NOT issue this claim unless the entity has received all of the certifications.</t>
          <t>DLOA documents are always fetched from a registrar that stores them.
This claim contains several data items used to construct a URL for fetching the DLOA from the particular registrar.</t>
          <t>This claim MUST be encoded as an array with either two or three elements.
The first element MUST be the URI for the registrar.
The second element MUST be a platform label indicating which platform was certified.
If the DLOA applies to an application, then the third element is added which MUST be an application label.
The method of constructing the registrar URI, platform label and possibly application label is specified in <xref target="DLOA" format="default"/>.</t>
          <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
$$Claims-Set-Claims //= (
    dloas-label => [ + dloa-type ]
)

dloa-type = [
    dloa_registrar: general-uri
    dloa_platform_label: text 
    ? dloa_application_label: text
]
]]></artwork>
        </section>
        <section anchor="manifests" numbered="true" toc="default">
          <name>manifests (Software Manifests) Claim</name>
          <t>The "manifests" claim contains descriptions of software present on the entity.
These manifests are installed on the entity when the software is installed or are created as part of the installation process.
Installation is anything that adds software to the entity, possibly factory installation, the user installing elective applications and so on.
The defining characteristic is they are created by the software manufacturer.
The purpose of these claims in an EAT is to relay them without modification to the verifier and possibly to the relying party.</t>
          <t>Some manifests may be signed by their software manufacturer before they are put into this EAT claim.
When such manifests are put into this claim, the manufacturer's signature SHOULD be included.
For example, the manifest might be a CoSWID signed by the software manufacturer, in which case the full signed CoSWID should be put in this claim.</t>
          <t>This claim allows multiple formats for the manifest.
For example, the manifest may be a CBOR-format CoSWID, an XML-format SWID or other.
Identification of the type of manifest is always by a CoAP Content-Format integer <xref target="RFC7252" format="default"/>.
If there is no CoAP identifier registered for the manifest format, one should be registered, perhaps in the experimental or first-come-first-served range.</t>
          <t>This claim MUST be an array of one or more manifests.
Each manifest in the claim MUST be an array of two.
The first item in the array of two MUST be an integer CoAP Content-Format identifier.
The second item is MUST be the actual manifest.</t>
          <t>In JSON-format tokens the manifest, whatever format it is, MUST be placed in a text string.
When a non-text format manifest like a CBOR-encoded CoSWID is put in a JSON-encoded token, the manifest MUST be base-64 encoded.</t>
          <t>This claim allows for multiple manifests in one token since multiple software packages are likely to be present.
The multiple manifests MAY be of different formats.
In some cases EAT submodules may be used instead of the array structure in this claim for multiple manifests.</t>
          <t>When the <xref target="CoSWID" format="default"/> format is used, it MUST be a payload CoSWID, not an evidence CoSWID.</t>
          <t>A <xref target="SUIT.Manifest" format="default"/> may be used as a manifest.</t>
          <t>This document registers CoAP Content Formats for CycloneDX <xref target="CycloneDX" format="default"/> and SPDX <xref target="SPDX" format="default"/> so they can be used as a manifest.</t>
          <t>This claim is extensible for use of manifest formats beyond those mentioned in this document.
No particular manifest format is preferred.
For manifest interoperability, an EAT profile, <xref target="profiles" format="default"/>, should be used that specifies what manifest format(s) are allowed.</t>
          <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
$$Claims-Set-Claims //= (
    manifests-label => manifests-type
)

manifests-type = [+ manifest-format]

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

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

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

$manifest-body-cbor /= spdx-json
$manifest-body-json /= spdx-json

spdx-json = text

$manifest-body-cbor /= cyclone-dx-json
$manifest-body-cbor /= cyclone-dx-xml
$manifest-body-json /= cyclone-dx-json
$manifest-body-json /= cyclone-dx-xml
cyclone-dx-json = text
cyclone-dx-xml  = text

suit-directive-process-dependency = 19
]]></artwork>
        </section>
        <section anchor="measurements" numbered="true" toc="default">
          <name>measurements (Measurements) Claim</name>
          <t>The "measurements" claim contains descriptions, lists, evidence or measurements of the software that exists on the entity or any other measurable
subsystem of the entity (e.g. hash of sections of a file system or non-volatile memory).
The defining characteristic of this claim is that its contents are created by processes on the entity that inventory, measure or otherwise characterize the software on the entity.
The contents of this claim do not originate from the manufacturer of the measurable subsystem (e.g. developer of a software library).</t>
          <t>This claim can be a <xref target="CoSWID" format="default"/>.
When the CoSWID format is used, it MUST be evidence CoSWIDs, not payload CoSWIDS.</t>
          <t>Formats other than CoSWID can be used.
The identification of format is by CoAP Content Format, the same as the "manifests" claim in <xref target="manifests" format="default"/>.</t>
          <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
$$Claims-Set-Claims //= (
    measurements-label => measurements-type
)

measurements-type = [+ measurements-format]

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

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

]]></artwork>
        </section>
        <section anchor="measurementresults" numbered="true" toc="default">
          <name>measres (Software Measurement Results) Claim</name>
          <t>The "measres" claim is a general-purpose structure for reporting comparison of measurements to expected reference values.
This claim provides a simple standard way to report the result of a comparison as success, failure, fail to run, ...</t>
          <t>It is the nature of measurement systems that they are specific to the operating system, software and hardware of the entity that is being measured.
It is not possible to standardize what is measured and how it is measured across platforms, OS's, software and hardware.
The recipient must obtain the information about what was measured and what it indicates for the characterization of the security of the entity from the provider of the measurement system.
What this claim provides is a standard way to report basic success or failure of the measurement.
In some use cases it is valuable to know if measurements succeeded or failed in a general way even if the details of what was measured is not characterized.</t>
          <t>This claim MAY be generated by the verifier and sent to the relying party.
For example, it could be the results of the verifier comparing the contents of the "measurements" claim, <xref target="measurements" format="default"/>, to reference values.</t>
          <t>This claim MAY also be generated on the entity if the entity has the ability for one subsystem to measure and evaluate another subsystem.
For example, a TEE might have the ability to measure the software of the rich OS and may have the reference values for the rich OS.</t>
          <t>Within an entity, attestation target or submodule, multiple results can be reported.
For example, it may be desirable to report the results for measurements of the file system, chip configuration, installed software, running software and so on.</t>
          <t>Note that this claim is not for reporting the overall result of a verifier.
It is solely for reporting the result of comparison to reference values.</t>
          <t>An individual measurement result is an array of two, an identifier of the measurement and an enumerated type that is the result.
The range and values of the measurement identifier varies from one measurement scheme to another.</t>
          <t>Each individual measurement result is part of a group that may contain many individual results.
Each group has a text string that names it, typically the name of the measurement scheme or system.</t>
          <t>The claim itself consists of one or more groups.</t>
          <t>The values for the results enumerated type are as follows:</t>
          <dl newline="false" spacing="normal">
            <dt>1 - comparison successful</dt>
            <dd>
  Indicates successful comparison to reference values.</dd>
            <dt>2 - comparison fail</dt>
            <dd>
  The comparison was completed and did not compare correctly to the reference values.</dd>
            <dt>3 - comparison not run</dt>
            <dd>
  The comparison was not run. This includes error conditions such as running out of memory.</dd>
            <dt>4 - measurement absent</dt>
            <dd>
  The particular measurement was not available for comparison.</dd>
          </dl>
          <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
$$Claims-Set-Claims //= ( 
    measurement-results-label => 
        [ + measurement-results-group ] )

measurement-results-group = [
    measurement-system: tstr,
    measruement-results: [ + individual-result ]
]

individual-result = [
    results-id: tstr / binary-data,
    result:     result-type, 
]

result-type = comparison-successful /
              comparison-fail /
              comparison-not-run /
              measurement-absent 

comparison-successful    = JC< "success",       1 >
comparison-fail          = JC< "fail",          2 >
comparison-not-run       = JC< "not-run",       3 >
measurement-absent       = JC< "absent",        4 >

]]></artwork>
        </section>
        <section anchor="submods" numbered="true" toc="default">
          <name>submods (Submodules)</name>
          <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" numbered="true" toc="default">
            <name>Submodule Types</name>
            <t>The following sections define the three types of submodules:</t>
            <ul spacing="normal">
              <li>A submodule Claims-Set</li>
              <li>A nested token, which can be any valid EAT token, CBOR or JSON</li>
              <li>The digest of a detached Claims-Set</li>
            </ul>
            <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
$$Claims-Set-Claims //= (submods-label => { + text => Submodule })

Submodule = Claims-Set / Nested-Token / Detached-Submodule-Digest

]]></artwork>
            <section anchor="submodule-claims-set" numbered="true" toc="default">
              <name>Submodule Claims-Set</name>
              <t>This is a subordinate Claims-Set containing claims about a submodule, a subordinate entity.</t>
              <t>The submodule Claims-Set is produced by the same attester as the surrounding token.
It is secured by the same mechanism as the enclosing token (e.g., it is signed by the same attestation key).
It roughly corresponds to an attesting environment, as described in the RATS architecture.</t>
              <t>It may contain claims that are the same as its surrounding token or superior submodules.
For example, the top-level of the token may have a UEID, a submod may have a different UEID and a further subordinate submodule may also have a UEID.</t>
              <t>The encoding of a submodule Claims-Set MUST be the same as the encoding as the token it is part of.</t>
              <t>The data type for this type of submodule is a map/object.
It is identified when decoding by its type being a map/object.</t>
            </section>
            <section anchor="Nested-Token" numbered="true" toc="default">
              <name>Nested Token</name>
              <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" format="default"/>
In being a submodule of the surrounding token, it is cryptographically bound to the surrounding token.
If it was conveyed in parallel with the surrounding token, there would be no such binding and attackers could substitute a good attestation from another device for the attestation of an errant subsystem.</t>
              <t>A nested token does not need to use the same encoding as the enclosing token.
This is to allow composite devices to be built without regards to the encoding supported by their attesters.
Thus, a CBOR-encoded token like a CWT can have a JWT as a nested token submodule and vice versa.</t>
              <section anchor="surrounding-eat-is-cbor-encoded" numbered="true" toc="default">
                <name>Surrounding EAT is CBOR-Encoded</name>
                <t>This describes the encoding and decoding of CBOR or JSON-encoded tokens nested inside a CBOR-encoded token.</t>
                <t>If the nested token is CBOR-encoded, then it MUST be a CBOR tag and MUST be wrapped in a byte string.
The tag identifies whether the nested token is a CWT, a CBOR-encoded detached EAT bundle, or some other CBOR-format token defined in the future.
A nested CBOR-encoded token that is not a CBOR tag is NOT allowed.</t>
                <t>If the nested token is JSON-encoded, then the data item MUST be a text string containing JSON.
The JSON is defined in CDDL by JSON-Nested-Token in the next section.</t>
                <t>When decoding, if a byte string is encountered, it is known to be a nested CBOR-encoded token.
The byte string wrapping is removed.
The type of the token is determined by the CBOR tag.</t>
                <t>When decoding, if a text string is encountered, it is known to be a JSON-encoded token.
The two-item array is decoded and tells the type of the JSON-encoded token.</t>
                <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
Nested-Token = CBOR-Nested-Token

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

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

JSON-Token-Inside-CBOR-Token = tstr 
]]></artwork>
              </section>
              <section anchor="surrounding-eat-is-json-encoded" numbered="true" toc="default">
                <name>Surrounding EAT is JSON-Encoded</name>
                <t>This describes the encoding and decoding of CBOR or JSON-encoded tokens nested inside a JSON-encoded token.</t>
                <t>The nested token MUST be an array of two, a text string type indicator and the actual token.</t>
                <t>The string identifying the JSON-encoded token MUST be one of the following:</t>
                <dl newline="false" spacing="normal">
                  <dt>"JWT":</dt>
                  <dd>
  The second array item MUST be a JWT formatted according to <xref target="RFC7519" format="default"/></dd>
                  <dt>"CBOR":</dt>
                  <dd>
  The second array item must be some base64url-encoded CBOR that is a tag, typically a CWT or CBOR-encoded detached EAT bundle</dd>
                  <dt>"BUNDLE":</dt>
                  <dd>
  The second array item MUST be a JSON-encoded detached EAT bundle as defined in this document.</dd>
                </dl>
                <t>Additional types may be defined by a standards action.</t>
                <t>When decoding, the array of two is decoded.
The first item indicates the type and encoding of the nested token.
If the type string is not "CBOR", then the token is JSON-encoded and of the type indicated by the string.</t>
                <t>If the type string is "CBOR", then the token is CBOR-encoded.
The base64url encoding is removed.
The CBOR-encoded data is then decoded.
The type of nested token is determined by the CBOR-tag.
It is an error if the CBOR is not a tag.</t>
                <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
Nested-Token = JSON-Nested-Token

JSON-Nested-Token = [
   type : "JWT" / "CBOR" / "BUNDLE",
   nested-token : JWT-Message /
                  CBOR-Token-Inside-JSON-Token /
                  Detached-EAT-Bundle 
]

CBOR-Token-Inside-JSON-Token = base64-url-text
]]></artwork>
              </section>
            </section>
            <section anchor="detached-submodule-digest" numbered="true" toc="default">
              <name>Detached Submodule Digest</name>
              <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.
A detached Claims-Set can include other submodules including nested tokens and detached digests.</t>
              <t>The input to the digest algorithm is directly the CBOR or JSON-encoded Claims-Set of the submodule.
There is no byte-string wrapping or base 64 encoding.</t>
              <t>The encoding type of the detached claims set is part of the carrying protocol and varies from protocol to protocol.
For example, a detached EAT bundle uses mechanisms defined in this document.
Other use cases may use a content/media type.</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 data type for this type of submodule MUST be an array
It contains two data items, a hash algorithm identifier and a byte string containing the digest.</t>
              <t>The hash algorithm identifier is always from the COSE Algorithm registry, <xref target="IANA.COSE.Algorithms" format="default"/>.
Either the integer or string identifier may be used.
The hash algorithm identifier is never from the JOSE Algorithm registry.</t>
              <t>When decoding a CBOR format token, the detached digest type is distinguished from the other types by it being an array.
In CBOR encoded tokens none of other submodule types are arrays.</t>
              <t>When decoding a JSON format token, a little more work is required because both the nested token and detached digest types are an array.
To distinguish the nested token from the detached digest, the first element in the array is examined.
If it is "JWT" or "BUNDLE", then the submodule is a nested token.
Otherwise it will contain an algorithm identifier and is a detached digest.</t>
              <t>A detached EAT bundle, described in <xref target="DEB" format="default"/>, may be used to convey detached claims sets and the token with their detached digests.
EAT, however, doesn't require use of a detached EAT bundle.
Any other protocols may be used to convey detached claims sets and the token with their detached digests.
Note that since detached Claims-Sets are signed, protocols conveying them must make sure they are not modified in transit.</t>
              <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
Detached-Submodule-Digest = [
   hash-algorithm : text / int,
   digest         : binary-data
]
]]></artwork>
            </section>
          </section>
          <section anchor="no-inheritance" numbered="true" toc="default">
            <name>No Inheritance</name>
            <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 an EAT nonce (<xref target="nonce" format="default"/>).</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" numbered="true" toc="default">
            <name>Security Levels</name>
            <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" numbered="true" toc="default">
            <name>Submodule Names</name>
            <t>The label or name for each submodule in the submods map is a text
string naming the submodule. No submodules may have the same name.</t>
          </section>
        </section>
      </section>
      <section anchor="claims-describing-the-token" numbered="true" toc="default">
        <name>Claims Describing the Token</name>
        <t>The claims in this section provide meta data about the token they occur in.
They do not describe the entity.</t>
        <t>They may appear in evidence or attestation results.
When these claims appear in evidence, they SHOULD not be passed through the verifier into attestation results.</t>
        <section anchor="iat-timestamp-claim" numbered="true" toc="default">
          <name>iat (Timestamp) Claim</name>
          <t>The "iat" claim defined in CWT and JWT is used to indicate the
date-of-creation of the token, the time at which the claims are
collected and the token is composed and signed.</t>
          <t>The data for some claims may be held or cached for some period of
time before the token is created. This period may be long, even
days. Examples are measurements taken at boot or a geographic
position fix taken the last time a satellite signal was received.
There are individual timestamps associated with these claims to
indicate their age is older than the "iat" timestamp.</t>
          <t>CWT allows the use floating-point for this claim. EAT disallows
the use of floating-point. An EAT token MUST NOT contain an "iat" claim in
floating-point format. Any recipient of a token with a floating-point
format "iat" claim MUST consider it an error.</t>
          <t>A 64-bit integer representation of the CBOR epoch-based time
<xref target="RFC8949" format="default"/> used by this claim can represent a range of +/- 500
billion years, so the only point of a floating-point timestamp is to
have precession greater than one second. This is not needed for EAT.</t>
        </section>
        <section anchor="profile-claim" numbered="true" toc="default">
          <name>eat_profile (EAT Profile) Claim</name>
          <t>See <xref target="profiles" format="default"/> for the detailed description of an EAT profile.</t>
          <t>The "eat_profile" claim identifies an EAT profile 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 "eat_profile" claim is to uniquely identify the profile even if it is a private profile.</t>
          <t>The OID is always absolute and never relative.</t>
          <t>See <xref target="common-types" format="default"/> for OID and URI encoding.</t>
          <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
$$Claims-Set-Claims //= (profile-label => general-uri / general-oid)
]]></artwork>
        </section>
        <section anchor="intuse-intended-use-claim" numbered="true" toc="default">
          <name>intuse (Intended Use) Claim</name>
          <t>EAT's may be used in the context of several different applications.  The "intuse"
claim provides an indication to an EAT consumer about  the intended usage
of the token. This claim can be used as a way for an application using EAT to internally distinguish between different ways it uses EAT.</t>
          <dl newline="false" spacing="normal">
            <dt>1 - Generic:</dt>
            <dd>
  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.</dd>
            <dt>2- Registration:</dt>
            <dd>
  Entities that are registering for a new service may be expected to
provide an attestation as part of the registration process.  This "intuse"
setting indicates that the attestation is not intended for any use but registration.</dd>
            <dt>3 - Provisioning:</dt>
            <dd>
  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.</dd>
            <dt>4 - Certificate Issuance</dt>
            <dd>
  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).</dd>
            <dt>5 - Proof-of-Possession:</dt>
            <dd>
  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.</dd>
          </dl>
          <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
$$Claims-Set-Claims //= ( intended-use-label => intended-use-type )

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

generic      = JC< "generic",      1 >
registration = JC< "registration", 2 >
provisioning = JC< "provisioning", 3 >
csr          = JC< "csr",          4 >
pop          = JC< "pop",          5 >
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="DEB" numbered="true" toc="default">
      <name>Detached EAT Bundles</name>
      <t>A detached EAT bundle is a structure to convey a fully-formed and signed token plus detached claims set that relate to that token.
It is a top-level EAT message like a CWT or JWT.
It can be occur any place that CWT or JWT messages occur.
It may also be sent as a submodule.</t>
      <t>A detached EAT bundle has two main parts.</t>
      <t>The first part is a full top-level token.
This top-level token must have at least one submodule that is a detached digest.
This top-level token may be either CBOR or JSON-encoded.
It may be a CWT, or JWT but not a detached EAT bundle.
It may also be some future-defined token type.
The same mechanism for distinguishing the type for nested token submodules is used here.</t>
      <t>The second part is a map/object containing the detached Claims-Sets corresponding to the detached digests in the full token.
When the detached EAT bundle is CBOR-encoded, each Claims-Set is wrapped in a byte string.
When the detached EAT bundle is JSON-encoded, each Claims-Set is base64url encoded.
All the detached Claims-Sets MUST be encoded in the same format as the detached EAT bundle.
No mixing of encoding formats is allowed for the Claims-Sets in a detached EAT bundle.</t>
      <t>For CBOR-encoded detached EAT bundles, tag TBD602 can be used to identify it.
The normal rules apply for use or non-use of a tag.
When it is sent as a submodule, it is always sent as a tag to distinguish it from the other types of nested tokens.</t>
      <t>The digests of the detached claims sets are associated with detached Claims-Sets by label/name.
It is up to the constructor of the detached EAT bundle to ensure the names uniquely identify the detachedclaims sets.
Since the names are used only in the detached EAT bundle, they can be very short, perhaps one byte.</t>
      <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
BUNDLE-Messages = BUNDLE-Tagged-Message / BUNDLE-Untagged-Message

BUNDLE-Tagged-Message   = #6.TBD(BUNDLE-Untagged-Message)
BUNDLE-Untagged-Message = Detached-EAT-Bundle

Detached-EAT-Bundle = [
    main-token : Nested-Token,
    detached-claims-sets: {
        + tstr => JC<json-wrapped-claims-set,
                     cbor-wrapped-claims-set>
    }
]

json-wrapped-claims-set = base64-url-text

cbor-wrapped-claims-set = bstr .cbor Claims-Set

]]></artwork>
    </section>
    <section anchor="profiles" numbered="true" toc="default">
      <name>Profiles</name>
      <t>EAT makes normative use of CBOR, JSON, COSE, JOSE, CWT and JWT.
Most of these have implementation options to accommodate a range of use cases.</t>
      <t>For example, COSE doesn't require a particular set of cryptographic algorithms so as to accommodate different usage scenarios and evolution of algorithms over time.
Section 10 of <xref target="RFC9052" format="default"/> describes the profiling considerations for COSE.</t>
      <t>The use of encryption is optional for both CWT and JWT.
Section 8 of <xref target="RFC7519" format="default"/> describes implementation requirement and recommendations for JWT.</t>
      <t>Similarly, CBOR provides indefinite length encoding which is not commonly used, but valuable for very constrained devices.
For EAT itself, in a particular use case some claims will be used and others will not.
Section 4 of <xref target="RFC8949" format="default"/> describes serialization considerations for CBOR.</t>
      <t>For example a mobile phone use case may require the device make and model, and prohibit UEID and location for privacy policy.
The general EAT standard retains all this flexibility because it too is aimed to accommodate a broad range of use cases.</t>
      <t>It is necessary to explicitly narrow these implementation options to guarantee interoperability.
EAT chooses one general and explicit mechanism, the profile, to indicate the choices made for these implementation options for all aspects of the token.</t>
      <t>Below is a list of the various issues that should be addressed by a profile.</t>
      <t>The "eat_profile" claim in <xref target="profile-claim" format="default"/> provides a unique identifier for the profile a particular token uses.</t>
      <t>A profile can apply to evidence or to attestation results or both.</t>
      <section anchor="format-of-a-profile-document" numbered="true" toc="default">
        <name>Format of a Profile Document</name>
        <t>A profile document doesn't have to be in any particular format. It may be simple text, something more formal or a combination.</t>
        <t>A profile may define, and possibly register, one or more new claims if needed. A profile may also reuse one or more already defined claims, either as-is or with values constrained to a subset or subrange.</t>
      </section>
      <section anchor="list-of-profile-issues" numbered="true" toc="default">
        <name>List of Profile Issues</name>
        <t>The following is a list of EAT, CWT, JWT, COSE, JOSE and CBOR options that a profile should address.</t>
        <section anchor="use-of-json-cbor-or-both" numbered="true" toc="default">
          <name>Use of JSON, CBOR or both</name>
          <t>A profile should specify whether CBOR, JSON or both may be sent.
A profile should specify that the receiver can accept all encoding formats that the sender is allowed to send.</t>
          <t>This should be specified for the top-level and all nested tokens.
For example, a profile might require all nested tokens to be of the same encoding of the top level token.</t>
        </section>
        <section anchor="cbor-map-and-array-encoding" numbered="true" toc="default">
          <name>CBOR Map and Array Encoding</name>
          <t>A profile should specify whether definite-length arrays/maps, indefinite-length arrays/maps or both may be sent.
A profile should specify that the receiver be able to accept all length encodings that the sender is allowed to send.</t>
          <t>This applies to individual EAT claims, CWT and COSE parts of the implementation.</t>
          <t>For most use cases, specifying that only definite-length arrays/maps may be sent is suitable.</t>
        </section>
        <section anchor="cbor-string-encoding" numbered="true" toc="default">
          <name>CBOR String Encoding</name>
          <t>A profile should specify whether definite-length strings, indefinite-length strings or both may be sent.
A profile should specify that the receiver be able to accept all types of string encodings that the sender is allowed to send.</t>
          <t>For most use cases, specifying that only definite-length strings may be sent is suitable.</t>
        </section>
        <section anchor="cbor-preferred-serialization" numbered="true" toc="default">
          <name>CBOR Preferred Serialization</name>
          <t>A profile should specify whether or not CBOR preferred serialization must be sent or not.
A profile should specify the receiver be able to accept preferred and/or non-preferred serialization so it will be able to accept anything sent by the sender.</t>
        </section>
        <section anchor="cbor-tags" numbered="true" toc="default">
          <name>CBOR Tags</name>
          <t>The profile should specify whether the token should be a CWT Tag or not.</t>
          <t>When COSE protection is used, the profile should specify whether COSE tags are used or not.
Note that RFC 8392 requires COSE tags be used in a CWT tag.</t>
          <t>Often a tag is unnecessary because the surrounding or carrying protocol identifies the object as an EAT.</t>
        </section>
        <section anchor="cosejose-protection" numbered="true" toc="default">
          <name>COSE/JOSE Protection</name>
          <t>COSE and JOSE have several options for signed, MACed and encrypted messages.
JWT may use the JOSE NULL protection option.
It is possible to implement no protection, sign only, MAC only, sign then encrypt and so on.
All combinations allowed by COSE, JOSE, JWT, and CWT are allowed by EAT.</t>
          <t>A profile should specify all signing, encryption and MAC message formats that may be sent.
For example, a profile might allow only COSE_Sign1 to be sent.
For another example, a profile might allow COSE_Sign and COSE_Encrypt to be sent to carry multiple signatures for post quantum cryptography and to use encryption to provide confidentiality.</t>
          <t>A profile should specify the receiver accepts all message formats that are allowed to be sent.</t>
          <t>When both signing and encryption are allowed, a profile should specify which is applied first.</t>
        </section>
        <section anchor="cosejose-algorithms" numbered="true" toc="default">
          <name>COSE/JOSE Algorithms</name>
          <t>See the section on "Application Profiling Considerations" in <xref target="RFC9052" format="default"/> for a discussion on selection of cryptgraphic algorithms and related issues.</t>
          <t>The profile document should list the COSE algorithms that a verifier must implement.
The attester will select one of them.
Since there is no negotiation, the verifier should implement all algorithms listed in the profile.
If detached submodule digests are used, the COSE algorithms allowed for their digests should also be in the profile.</t>
        </section>
        <section anchor="detached-eat-bundle-support" numbered="true" toc="default">
          <name>Detached EAT Bundle Support</name>
          <t>A profile should specify whether or not a detached EAT bundle (<xref target="DEB" format="default"/>) can be sent.
A profile should specify that a receiver be able to accept a detached EAT bundle if the sender is allowed to send it.</t>
        </section>
        <section anchor="key-identification" numbered="true" toc="default">
          <name>Key Identification</name>
          <t>A profile should specify what must be sent to identify the verification, decryption or MAC key or keys.
If multiple methods of key identification may be sent, a profile should require the receiver support them all.</t>
          <t><xref target="keyid" format="default"/> describes a number of methods for identifying verification keys.
When encryption is used, there are further considerations.
In some cases key identification may be very simple and in others involve a multiple components.
For example, it may be simple through use of COSE key ID or it may be complex through use of an X.509 certificate hierarchy.</t>
          <t>While not always possible, a profile should specify, or make reference to, a full end-end specification for key identification.
For example, a profile should specify in full detail how COSE key IDs are to be created, their lifecycle and such rather than just specifying that a COSE key ID be used.
For example, a profile should specify the full details of an X.509 hierarchy including extension processing, algorithms allowed and so on rather than just saying X.509 certificate are used.
Though not always possible, ideally, a profile should be a complete specification for key identification for both the sender and the receiver such that interoperability is guaranteed.</t>
        </section>
        <section anchor="endorsement-identification" numbered="true" toc="default">
          <name>Endorsement Identification</name>
          <t>Similar to, or perhaps the same as verification key identification, the profile may wish to specify how endorsements are to be identified.
However note that endorsement identification is optional, where as key identification is not.</t>
        </section>
        <section anchor="freshness" numbered="true" toc="default">
          <name>Freshness</name>
          <t>Security considerations <xref target="sec-con-freshness" format="default"/> requires a mechanism to provide freshness.
This may be the EAT nonce claim in <xref target="nonce" format="default"/>, or some claim or mechanism defined outside this document.
The section on freshness in <xref target="RATS.Architecture" format="default"/> describes several options.
A profile should specify which freshness mechanism or mechanisms can be used.</t>
          <t>If the EAT nonce claim is used, a profile should specify whether multiple nonces may be sent.
If a profile allows multiple nonces to be sent, it should require the receiver to process multiple nonces.</t>
        </section>
        <section anchor="claims-requirements" numbered="true" toc="default">
          <name>Claims Requirements</name>
          <t>A profile may define new claims that are not defined in this document.</t>
          <t>This document requires an EAT receiver must accept all claims it does not understand.
A profile for a specific use case may reverse this and allow a receiver to reject tokens with claims it does not understand.
A profile for a specific use case may specify that specific claims are prohibited.</t>
          <t>A profile for a specific use case may modify this and specify that some claims are required.</t>
          <t>A profile may constrain the definition of claims that are defined in this document or elsewhere.
For example, a profile may require the EAT nonce be a certain length or the "location" claim always include the altitude.</t>
          <t>Some claims are "pluggable" in that they allow different formats for their content.
The "manifests" claim (<xref target="manifests" format="default"/>) along with the measurement and "measurements" (<xref target="measurements" format="default"/>)) claims are examples of this, allowing the use of CoSWID, TEEP Manifests and other formats.
A profile should specify which formats are allowed to be sent, with the assumption that the corresponding COAP content types have been registered.
A profile should require the receiver to accept all formats that are allowed to be sent.</t>
          <t>Further, if there is variation within a format that is allowed, the profile should specify which variations can be sent.
For example, there are variations in the CoSWID format.
A profile that require the receiver to accept all variations that are allowed to be sent.</t>
        </section>
      </section>
      <section anchor="the-constrained-device-standard-profile" numbered="true" toc="default">
        <name>The Constrained Device Standard Profile</name>
        <t>It is anticipated that there will be many profiles defined for EAT for many different use cases.
This section standardizes one profile that is good for many constrained device use cases.</t>
        <t>The identifier for this profile is "https://www.rfc-editor.org/rfc/rfcTBD".</t>
        <table align="center">
          <thead>
            <tr>
              <th align="left">Issue</th>
              <th align="left">Profile Definition</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">CBOR/JSON</td>
              <td align="left">CBOR only</td>
            </tr>
            <tr>
              <td align="left">CBOR Encoding</td>
              <td align="left">Only definite length maps and arrays are allowed</td>
            </tr>
            <tr>
              <td align="left">CBOR Encoding</td>
              <td align="left">Only definite length strings are allowed</td>
            </tr>
            <tr>
              <td align="left">CBOR Serialization</td>
              <td align="left">Only preferred serialization is allowed</td>
            </tr>
            <tr>
              <td align="left">COSE Protection</td>
              <td align="left">Only COSE_Sign1 format is used</td>
            </tr>
            <tr>
              <td align="left">Algorithms</td>
              <td align="left">Receiver MUST accept ES256, ES384 and ES512; sender MUST send one of these</td>
            </tr>
            <tr>
              <td align="left">Detached EAT Bundle Usage</td>
              <td align="left">Detached EAT bundles may not be sent with this profile</td>
            </tr>
            <tr>
              <td align="left">Verification Key Identification</td>
              <td align="left">Either the COSE kid or the UEID MUST be used to identify the verication key. If both are present, the kid takes precedence</td>
            </tr>
            <tr>
              <td align="left">Endorsements</td>
              <td align="left">This profile contains no endorsement identifier</td>
            </tr>
            <tr>
              <td align="left">Nonce</td>
              <td align="left">A new single unique nonce MUST be used for every token request</td>
            </tr>
            <tr>
              <td align="left">Claims</td>
              <td align="left">No requirement is made on the presence or absence of claims other than requiring an EAT nonce. As per general EAT rules, the receiver MUST not error out on claims it doesn't understand.</td>
            </tr>
          </tbody>
        </table>
        <t>Strictly speaking, slight modifications such use of a different means of key identification are a divergence from this profile and MUST use a different profile identifier.</t>
        <t>A profile that is similar to this can be defined and/or standardized by making normative reference to this and adding other requirements. 
Such a definition MUST have a different profile identifier.</t>
      </section>
    </section>
    <section anchor="encoding" numbered="true" toc="default">
      <name>Encoding and Collected CDDL</name>
      <t>An EAT is fundamentally defined using CDDL.
This document specifies how to encode the CDDL in CBOR or JSON.
Since CBOR can express some things that JSON can't (e.g., tags) or that are expressed differently (e.g., labels) there is some CDDL that is specific to the encoding format.</t>
      <section anchor="claims-set-and-cddl-for-cwt-and-jwt" numbered="true" toc="default">
        <name>Claims-Set and CDDL for CWT and JWT</name>
        <t>CDDL was not used to define CWT or JWT.
It was not available at the time.</t>
        <t>This document defines CDDL for both CWT and JWT.
This document does not change the encoding or semantics of anything in a CWT or JWT.</t>
        <t>A Claims-Set is the central data structure for EAT, CWT and JWT.
It holds all the claims and is the structure that is secured by signing or other means.
It is not possible to define EAT, CWT, or JWT in CDDL without it.
The CDDL definition of Claims-Set here is applicable to EAT, CWT and JWT.</t>
        <t>This document specifies how to encode a Claims-Set in CBOR or JSON.</t>
        <t>With the exception of nested tokens and some other externally defined structures (e.g., SWIDs) an entire Claims-Set must be in encoded in either CBOR or JSON, never a mixture.</t>
        <t>CDDL for the seven claims defined by <xref target="RFC8392" format="default"/> and <xref target="RFC7519" format="default"/> is included here.</t>
      </section>
      <section anchor="encoding-data-types" numbered="true" toc="default">
        <name>Encoding Data Types</name>
        <t>This makes use of the types defined in <xref target="RFC8610" format="default"/> Appendix D, Standard Prelude.</t>
        <section anchor="common-types" numbered="true" toc="default">
          <name>Common Data Types</name>
          <t>time-int is identical to the epoch-based time, but disallows
floating-point representation.</t>
          <t>The OID encoding from <xref target="RFC9090" format="default"/> is used without the tag number in CBOR-encoded tokens.
In JSON tokens OIDs are a text string in the common form of "nn.nn.nn...".</t>
          <t>Unless expliclity indicated, URIs are not the URI tag defined in <xref target="RFC8949" format="default"/>.
They are just text strings that contain a URI.</t>
          <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
time-int = #6.1(int)

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

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

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

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

general-uri = JC< text, ~uri >

coap-content-format = uint .le 65535

]]></artwork>
        </section>
        <section anchor="jsoninterop" numbered="true" toc="default">
          <name>JSON Interoperability</name>
          <t>JSON should be encoded per <xref target="RFC8610" format="default"/> Appendix E. In addition, the
following CDDL types are encoded in JSON as follows:</t>
          <ul spacing="normal">
            <li>bstr - must be base64url encoded</li>
            <li>time - must be encoded as NumericDate as described section 2 of <xref target="RFC7519" format="default"/>.</li>
            <li>string-or-uri - must be encoded as StringOrURI as described section 2 of <xref target="RFC7519" format="default"/>.</li>
            <li>uri - must be a URI <xref target="RFC3986" format="default"/>.</li>
            <li>oid - encoded as a string using the well established dotted-decimal notation (e.g., the text "1.2.250.1").</li>
          </ul>
          <t>The CDDL generic "JC&lt; &gt;" is used in most places where there is a variance between CBOR and JSON.
The first argument is the CDDL for JSON and the second is CDDL for CBOR.</t>
        </section>
        <section anchor="labels" numbered="true" toc="default">
          <name>Labels</name>
          <t>Most map labels, Claims-Keys, Claim-Names and enumerated-type values are integers for CBOR-encoded tokens and strings for JSON-encoded tokens.
When this is the case the "JC &lt; &gt;" CDDL construct is used to give both the integer and string values.</t>
        </section>
        <section anchor="cbor-interoperability" numbered="true" toc="default">
          <name>CBOR Interoperability</name>
          <t>CBOR allows data items to be serialized in more than one form to accommodate a variety of use cases.
This is addressed in <xref target="profiles" format="default"/>.</t>
        </section>
      </section>
      <section anchor="collected-cddl" numbered="true" toc="default">
        <name>Collected CDDL</name>
        <section anchor="payload-cddl" numbered="true" toc="default">
          <name>Payload CDDL</name>
          <t>This CDDL defines all the EAT Claims that are added to the main definition of a Claim-Set in <xref target="CDDL_for_CWT" format="default"/>.
Claims-Set is the payload for CWT, JWT and potentially other token types.
This is for both CBOR and JSON.
When there is variation between CBOR and JSON, the JC&lt;&gt; CDDL generic defined in <xref target="CDDL_for_CWT" format="default"/>.</t>
          <t>This CDDL uses, but doesn't define Nested-Token because its definition varies between CBOR and JSON and the JC&lt;&gt; generic can't be used to define it.
Nested-Token is the one place that that a CBOR token can be nested inside a JSON token and vice versa.
Nested-Token is defined in the following sections.</t>
          <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
time-int = #6.1(int)

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

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

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

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

general-uri = JC< text, ~uri >

coap-content-format = uint .le 65535


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

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


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

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

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

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

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

oemid-pen = int

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

manifests-type = [+ manifest-format]

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

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

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

$manifest-body-cbor /= spdx-json
$manifest-body-json /= spdx-json

spdx-json = text

$manifest-body-cbor /= cyclone-dx-json
$manifest-body-cbor /= cyclone-dx-xml
$manifest-body-json /= cyclone-dx-json
$manifest-body-json /= cyclone-dx-xml
cyclone-dx-json = text
cyclone-dx-xml  = text

suit-directive-process-dependency = 19

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

measurements-type = [+ measurements-format]

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

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


$$Claims-Set-Claims //= ( 
    measurement-results-label => 
        [ + measurement-results-group ] )

measurement-results-group = [
    measurement-system: tstr,
    measruement-results: [ + individual-result ]
]

individual-result = [
    results-id: tstr / binary-data,
    result:     result-type, 
]

result-type = comparison-successful /
              comparison-fail /
              comparison-not-run /
              measurement-absent 

comparison-successful    = JC< "success",       1 >
comparison-fail          = JC< "fail",          2 >
comparison-not-run       = JC< "not-run",       3 >
measurement-absent       = JC< "absent",        4 >



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

Submodule = Claims-Set / Nested-Token / Detached-Submodule-Digest



Detached-Submodule-Digest = [
   hash-algorithm : text / int,
   digest         : binary-data
]


BUNDLE-Messages = BUNDLE-Tagged-Message / BUNDLE-Untagged-Message

BUNDLE-Tagged-Message   = #6.TBD(BUNDLE-Untagged-Message)
BUNDLE-Untagged-Message = Detached-EAT-Bundle

Detached-EAT-Bundle = [
    main-token : Nested-Token,
    detached-claims-sets: {
        + tstr => JC<json-wrapped-claims-set,
                     cbor-wrapped-claims-set>
    }
]

json-wrapped-claims-set = base64-url-text

cbor-wrapped-claims-set = bstr .cbor Claims-Set



nonce-label            = JC< "eat_nonce",  10 >
ueid-label             = JC< "ueid",       256 >
sueids-label           = JC< "sueids",     257 >
oemid-label            = JC< "oemid",      258 >
hardware-model-label   = JC< "hwmodel",    259 >
hardware-version-label = JC< "hwversion",  260 >
secure-boot-label      = JC< "secboot",    262 >
debug-status-label     = JC< "dbgstat",    263 >
location-label         = JC< "location",   264 >
profile-label          = JC< "eat_profile",265 >
submods-label          = JC< "submods",    266 >

uptime-label           = JC< "uptime",     TBD >
boot-seed-label        = JC< "bootseed",   TBD >
intended-use-label     = JC< "intuse",     TBD >
dloas-label            = JC< "dloas",      TBD >
sw-name-label          = JC< "swname",     TBD >
sw-version-label       = JC< "swversion",  TBD >
manifests-label        = JC< "manifests",  TBD >
measurements-label     = JC< "measurements", TBD >
measurement-results-label = JC< "measres" , TBD >
boot-count-label       = JC< "bootcount",  TBD >


]]></artwork>
        </section>
        <section anchor="cbor-specific-cddl" numbered="true" toc="default">
          <name>CBOR-Specific CDDL</name>
          <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
EAT-CBOR-Token = $$EAT-CBOR-Tagged-Token / $$EAT-CBOR-Untagged-Token 

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

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


Nested-Token = CBOR-Nested-Token

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

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

JSON-Token-Inside-CBOR-Token = tstr 

]]></artwork>
        </section>
        <section anchor="json-specific-cddl" numbered="true" toc="default">
          <name>JSON-Specific CDDL</name>
          <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
EAT-JSON-Token = $$EAT-JSON-Token-Formats

$$EAT-JSON-Token-Formats /= JWT-Message
$$EAT-JSON-Token-Formats /= BUNDLE-Untagged-Message


Nested-Token = JSON-Nested-Token

JSON-Nested-Token = [
   type : "JWT" / "CBOR" / "BUNDLE",
   nested-token : JWT-Message /
                  CBOR-Token-Inside-JSON-Token /
                  Detached-EAT-Bundle 
]

CBOR-Token-Inside-JSON-Token = base64-url-text

]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="privacyconsiderations" numbered="true" toc="default">
      <name>Privacy Considerations</name>
      <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" numbered="true" toc="default">
        <name>UEID and SUEID Privacy Considerations</name>
        <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>
        <ul spacing="normal">
          <li>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.</li>
          <li>The UEID/SUEID is used only in a particular context or particular use
case. It is used only by one relying party.</li>
          <li>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.</li>
        </ul>
        <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" numbered="true" toc="default">
        <name>Location Privacy Considerations</name>
        <t>Geographic location is most always considered personally identifiable information.
Implementers should consider laws and regulations governing the transmission of location data from end user devices to servers and services.
Implementers should consider using location management facilities offered by the operating system on the entity generating the attestation.
For example, many mobile phones prompt the user for permission when before sending location data.</t>
      </section>
      <section anchor="bootseedprivacyconsiderations" numbered="true" toc="default">
        <name>Boot Seed Privacy Considerations</name>
        <t>The "bootseed" claim is effectively a stable entity identifier within a given boot epoch.  Therefore, it is not suitable for use in attestation schemes that are privacy-preserving.</t>
      </section>
      <section anchor="replayprivacyconsiderations" numbered="true" toc="default">
        <name>Replay Protection and Privacy</name>
        <t>EAT defines the nonce claim for token replay protection (also sometimes known as token "freshness"). The nonce claim is based on a value that is usually derived remotely (outside of the entity). This claim can be used to extract and convey personally-identifying information either inadvertently or by intention. For instance, an implementor may choose a nonce 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. In order to avoid the conveyance of privacy-related information in the nonce claim, it should be derived using a salt that originates from a true and reliable random number generator or any other source of randomness that would still meet the target system requirements for replay protection.</t>
      </section>
    </section>
    <section anchor="securitycons" numbered="true" toc="default">
      <name>Security Considerations</name>
      <t>The security considerations provided in Section 8 of <xref target="RFC8392" format="default"/> and Section 11
of <xref target="RFC7519" format="default"/> apply to EAT in its CWT and JWT form, respectively.  Moreover, Chapter 12
of <xref target="RATS.Architecture" format="default"/> is also applicable to implementations of EAT.  In addition,
implementors should consider the following.</t>
      <section anchor="claim-trustworthiness" numbered="true" toc="default">
        <name>Claim Trustworthiness</name>
        <t>This specification defines semantics for each claim.
It does not require any particular level of security in the implementation of the claims or even the attester itself.
Such specification is far beyond the scope of this document which is about a message format not the security level of an implementation.</t>
        <t>The receiver of an EAT comes to know the trustworthiness of the claims in it by understanding the implementation made by the attester vendor and/or understanding the checks and processing performed by the verifier.</t>
        <t>For example, this document says that a UEID is permanent and that it must not change, but it doesn't say what degree of attack to change it must be defended.</t>
        <t>The degree of security will vary from use case to use case.
In some cases the receiver may only need to know something of the implementation such as that it was implemented in a TEE.
In other cases the receiver may require the attester be certified by a particular certification program.
Or perhaps the receiver is content with very little security.</t>
      </section>
      <section anchor="key-provisioning" numbered="true" toc="default">
        <name>Key Provisioning</name>
        <t>Private key material can be used to sign and/or encrypt the EAT, or
can be used to derive the keys used for signing and/or encryption.  In
some instances, the manufacturer of the entity may create the key
material separately and provision the key material in the entity
itself.  The manufacturer of any entity that is capable of producing
an EAT should take care to ensure that any private key material be
suitably protected prior to provisioning the key material in the
entity itself.  This can require creation of key material in an
enclave (see <xref target="RFC4949" format="default"/> 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" numbered="true" toc="default">
          <name>Transmission of Key Material</name>
          <t>Regarding transmission of key material from the enclave to the entity,
the key material may pass through one or more intermediaries.
Therefore some form of protection ("key wrapping") may be necessary.
The transmission itself may be performed electronically, but can also
be done by human courier.  In the latter case, there should be minimal
to no exposure of the key material to the human (e.g. encrypted
portable memory).  Moreover, the human should transport the key
material directly from the secure enclave where it was created to a
destination secure enclave where it can be provisioned.</t>
        </section>
      </section>
      <section anchor="sec-con-freshness" numbered="true" toc="default">
        <name>Freshness</name>
        <t>All EAT use must provide a freshness mechanism to prevent replay and related attacks.
The extensive discussions on freshness in <xref target="RATS.Architecture" format="default"/> including security considerations apply here.
The EAT nonce claim, in <xref target="nonce" format="default"/>, is one option to provide freshness.</t>
      </section>
      <section anchor="multiple-eat-consumers" numbered="true" toc="default">
        <name>Multiple EAT Consumers</name>
        <t>In many cases, more than one EAT consumer may be required to fully
verify the entity attestation.  Examples include individual consumers
for nested EATs, or consumers for individual claims with an EAT.  When
multiple consumers are required for verification of an EAT, it is
important to minimize information exposure to each consumer.  In
addition, the communication between multiple consumers should be
secure.</t>
        <t>For instance, consider the example of an encrypted and signed EAT with
multiple claims.  A consumer may receive the EAT (denoted as the
"receiving consumer"), decrypt its payload, verify its signature, but
then pass specific subsets of claims to other consumers for evaluation
("downstream consumers").  Since any COSE encryption will be removed
by the receiving consumer, the communication of claim subsets to any
downstream consumer should leverage a secure protocol (e.g.one that
uses transport-layer security, i.e. TLS),</t>
        <t>However, assume the EAT of the previous example is hierarchical and
each claim subset for a downstream consumer is created in the form of
a nested EAT.  Then transport security between the receiving and
downstream consumers is not strictly required.  Nevertheless,
downstream consumers of a nested EAT should provide a nonce unique to
the EAT they are consuming.</t>
      </section>
      <section anchor="detached-eat-bundle-digest-security-considerations" numbered="true" toc="default">
        <name>Detached EAT Bundle Digest Security Considerations</name>
        <t>A detached EAT bundle is composed of a nested full token appended to
an unsigned claims set as per <xref target="DEB" format="default"/> .  Although the attached claims set is vulnerable to
modification in transit, any modification can be detected by the receiver through the associated
digest, which is a claim fully contained within an EAT.  Moreover, the digest itself can only be derived using
an appropriate COSE hash algorithm, implying that an attacker cannot induce false detection
of a modifie detached claims because the algorithms in the COSE registry are assumed to be
of sufficient cryptographic strength.</t>
      </section>
    </section>
    <section anchor="iana-considerations" numbered="true" toc="default">
      <name>IANA Considerations</name>
      <section anchor="reuse-of-cbor-and-json-web-token-cwt-and-jwt-claims-registries" numbered="true" toc="default">
        <name>Reuse of CBOR and JSON Web Token (CWT and JWT) Claims Registries</name>
        <t>Claims defined for EAT are compatible with those of CWT and JWT
so the CWT and JWT Claims Registries, <xref target="IANA.CWT.Claims" format="default"/> and <xref target="IANA.JWT.Claims" format="default"/>, are re used. No new IANA registry
is created.</t>
        <t>All EAT claims defined in this document are placed in both registries.
All new EAT claims defined subsequently should be placed in both registries.</t>
        <t><xref target="Claim_Characteristics" format="default"/> describes some considerations when defining new claims.</t>
      </section>
      <section anchor="claims-registered-by-this-document" numbered="true" toc="default">
        <name>Claims Registered by This Document</name>
        <t>This specification adds the following values to the "JSON Web Token
Claims" registry established by <xref target="RFC7519" format="default"/> and the "CBOR Web Token Claims Registry"
established by <xref target="RFC8392" format="default"/>.
Each entry below is an addition to both registries.</t>
        <t>The "Claim Description", "Change Controller" and "Specification Documents" are common and equivalent for the JWT and CWT registries.
The "Claim Key" and "Claim Value Types(s)" are for the CWT registry only.
The "Claim Name" is as defined for the CWT registry, not the JWT registry.
The "JWT Claim Name" is equivalent to the "Claim Name" in the JWT registry.</t>
        <section anchor="claims-for-early-assignment" numbered="true" toc="default">
          <name>Claims for Early Assignment</name>
          <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" format="default"/>.
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>
          <ul spacing="normal">
            <li>Claim Name: Nonce</li>
            <li>Claim Description: Nonce</li>
            <li>JWT Claim Name: "eat_nonce"</li>
            <li>Claim Key: TBD (requested value 10)</li>
            <li>Claim Value Type(s): byte string</li>
            <li>Change Controller: IESG</li>
            <li>Specification Document(s): <strong>this document</strong></li>
          </ul>
          <t> </t>
          <ul spacing="normal">
            <li>Claim Name: UEID</li>
            <li>Claim Description: The Universal Entity ID</li>
            <li>JWT Claim Name: "ueid"</li>
            <li>CWT Claim Key: TBD (requested value 256)</li>
            <li>Claim Value Type(s): byte string</li>
            <li>Change Controller: IESG</li>
            <li>Specification Document(s): <strong>this document</strong></li>
          </ul>
          <t> </t>
          <ul spacing="normal">
            <li>Claim Name: SUEIDs</li>
            <li>Claim Description: Semi-permanent UEIDs</li>
            <li>JWT Claim Name: "sueids"</li>
            <li>CWT Claim Key: TBD (requested value 257)</li>
            <li>Claim Value Type(s): map</li>
            <li>Change Controller: IESG</li>
            <li>Specification Document(s): <strong>this document</strong></li>
          </ul>
          <t> </t>
          <ul spacing="normal">
            <li>Claim Name: Hardware OEMID</li>
            <li>Claim Description: Hardware OEM ID</li>
            <li>JWT Claim Name: "oemid"</li>
            <li>Claim Key: TBD (requeste value 258)</li>
            <li>Claim Value Type(s): byte string or integer</li>
            <li>Change Controller: IESG</li>
            <li>Specification Document(s): <strong>this document</strong></li>
          </ul>
          <t> </t>
          <ul spacing="normal">
            <li>Claim Name: Hardware Model</li>
            <li>Claim Description: Model identifier for hardware</li>
            <li>JWT Claim Name: "hwmodel"</li>
            <li>Claim Key: TBD (requested value 259)</li>
            <li>Claim Value Type(s): byte string</li>
            <li>Change Controller: IESG</li>
            <li>Specification Document(s): <strong>this document</strong></li>
          </ul>
          <t> </t>
          <ul spacing="normal">
            <li>Claim Name: Hardware Version</li>
            <li>Claim Description: Hardware Version Identifier</li>
            <li>JWT Claim Name: "hwversion"</li>
            <li>Claim Key: TBD (requested value 260)</li>
            <li>Claim Value Type(s): array</li>
            <li>Change Controller: IESG</li>
            <li>Specification Document(s): <strong>this document</strong></li>
          </ul>
          <t> </t>
          <ul spacing="normal">
            <li>Claim Name: Secure Boot</li>
            <li>Claim Description: Indicate whether the boot was secure</li>
            <li>JWT Claim Name: "secboot"</li>
            <li>Claim Key: 262</li>
            <li>Claim Value Type(s): Boolean</li>
            <li>Change Controller: IESG</li>
            <li>Specification Document(s): <strong>this document</strong></li>
          </ul>
          <t> </t>
          <ul spacing="normal">
            <li>Claim Name: Debug Status</li>
            <li>Claim Description: Indicate status of debug facilities</li>
            <li>JWT Claim Name: "dbgstat"</li>
            <li>Claim Key: 263</li>
            <li>Claim Value Type(s): integer or string</li>
            <li>Change Controller: IESG</li>
            <li>Specification Document(s): <strong>this document</strong></li>
          </ul>
          <t> </t>
          <ul spacing="normal">
            <li>Claim Name: Location</li>
            <li>Claim Description: The geographic location</li>
            <li>JWT Claim Name: "location"</li>
            <li>Claim Key: TBD (requested value 264)</li>
            <li>Claim Value Type(s): map</li>
            <li>Change Controller: IESG</li>
            <li>Specification Document(s): <strong>this document</strong></li>
          </ul>
          <t> </t>
          <ul spacing="normal">
            <li>Claim Name: EAT Profile</li>
            <li>Claim Description: Indicates the EAT profile followed</li>
            <li>JWT Claim Name: "eat_profile"</li>
            <li>Claim Key: TBD (requested value 265)</li>
            <li>Claim Value Type(s): URI or OID</li>
            <li>Change Controller: IESG</li>
            <li>Specification Document(s): <strong>this document</strong></li>
          </ul>
          <t> </t>
          <ul spacing="normal">
            <li>Claim Name: Submodules Section</li>
            <li>Claim Description: The section containing submodules</li>
            <li>JWT Claim Name: "submods"</li>
            <li>Claim Key: TBD (requested value 266)</li>
            <li>Claim Value Type(s): map</li>
            <li>Change Controller: IESG</li>
            <li>Specification Document(s): <strong>this document</strong></li>
          </ul>
        </section>
        <section anchor="to-be-assigned-claims" numbered="true" toc="default">
          <name>To be Assigned Claims</name>
          <t>(Early assignment is NOT requested for these claims. Implementers should be aware they may change)</t>
          <t> </t>
          <ul spacing="normal">
            <li>Claim Name: Uptime</li>
            <li>Claim Description: Uptime</li>
            <li>JWT Claim Name: "uptime"</li>
            <li>Claim Key: TBD</li>
            <li>Claim Value Type(s): unsigned integer</li>
            <li>Change Controller: IESG</li>
            <li>Specification Document(s): <strong>this document</strong></li>
          </ul>
          <t> </t>
          <ul spacing="normal">
            <li>Claim Name: Boot Seed</li>
            <li>Claim Description: Identifies a boot cycle</li>
            <li>JWT Claim Name: "bootseed"</li>
            <li>Claim Key: TBD</li>
            <li>Claim Value Type(s): bytes</li>
            <li>Change Controller: IESG</li>
            <li>Specification Document(s): <strong>this document</strong></li>
          </ul>
          <t> </t>
          <ul spacing="normal">
            <li>Claim Name: Intended Use</li>
            <li>Claim Description: Indicates intended use of the EAT</li>
            <li>JWT Claim Name: "intuse"</li>
            <li>Claim Key: TBD</li>
            <li>Claim Value Type(s): integer or string</li>
            <li>Change Controller: IESG</li>
            <li>Specification Document(s): <strong>this document</strong></li>
          </ul>
          <t> </t>
          <ul spacing="normal">
            <li>Claim Name: DLOAs</li>
            <li>Claim Description: Certifications received as Digital Letters of Approval</li>
            <li>JWT Claim Name: "dloas"</li>
            <li>Claim Key: TBD</li>
            <li>Claim Value Type(s): array</li>
            <li>Change Controller: IESG</li>
            <li>Specification Document(s): <strong>this document</strong></li>
          </ul>
          <t> </t>
          <ul spacing="normal">
            <li>Claim Name: Software Name</li>
            <li>Claim Description: The name of the software running in the entity</li>
            <li>JWT Claim Name: "swname"</li>
            <li>Claim Key: TBD</li>
            <li>Claim Value Type(s): map</li>
            <li>Change Controller: IESG</li>
            <li>Specification Document(s): <strong>this document</strong></li>
          </ul>
          <t> </t>
          <ul spacing="normal">
            <li>Claim Name: Software Version</li>
            <li>Claim Description: The version of software running in the entity</li>
            <li>JWT Claim Name: "swversion"</li>
            <li>Claim Key: TBD</li>
            <li>Claim Value Type(s): map</li>
            <li>Change Controller: IESG</li>
            <li>Specification Document(s): <strong>this document</strong></li>
          </ul>
          <t> </t>
          <ul spacing="normal">
            <li>Claim Name: Software Manifests</li>
            <li>Claim Description: Manifests describing the software installed on the entity</li>
            <li>JWT Claim Name: "manifests"</li>
            <li>Claim Key: TBD</li>
            <li>Claim Value Type(s): array</li>
            <li>Change Controller: IESG</li>
            <li>Specification Document(s): <strong>this document</strong></li>
          </ul>
          <t> </t>
          <ul spacing="normal">
            <li>Claim Name: Measurements</li>
            <li>Claim Description: Measurements of the software, memory configuration and such on the entity</li>
            <li>JWT Claim Name: "measurements"</li>
            <li>Claim Key: TBD</li>
            <li>Claim Value Type(s): array</li>
            <li>Change Controller: IESG</li>
            <li>Specification Document(s): <strong>this document</strong></li>
          </ul>
          <t> </t>
          <ul spacing="normal">
            <li>Claim Name: Software Measurement Results</li>
            <li>Claim Description: The results of comparing software measurements to reference values</li>
            <li>JWT Claim Name: "measres"</li>
            <li>Claim Key: TBD</li>
            <li>Claim Value Type(s): array</li>
            <li>Change Controller: IESG</li>
            <li>Specification Document(s): <strong>this document</strong></li>
          </ul>
          <t> </t>
          <ul spacing="normal">
            <li>Claim Name: Boot Count</li>
            <li>Claim Description: The number times the entity or submodule has been booted</li>
            <li>JWT Claim Name: "bootcount"</li>
            <li>Claim Key: TBD</li>
            <li>Claim Value Type(s): uint</li>
            <li>Change Controller: IESG</li>
            <li>Specification Document(s): <strong>this document</strong></li>
          </ul>
        </section>
        <section anchor="registerueidurn" numbered="true" toc="default">
          <name>UEID URN Registered by this Document</name>
          <t>IANA is requested to register the following new subtypes in the "DEV URN Subtypes" registry under "Device Identification". See <xref target="RFC9039" format="default"/>.</t>
          <table align="center">
            <thead>
              <tr>
                <th align="left">Subtype</th>
                <th align="left">Description</th>
                <th align="left">Reference</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">ueid</td>
                <td align="left">Universal Entity Identifier</td>
                <td align="left">This document</td>
              </tr>
              <tr>
                <td align="left">sueid</td>
                <td align="left">Semi-permanent Universal Entity Identifier</td>
                <td align="left">This document</td>
              </tr>
            </tbody>
          </table>
        </section>
        <section anchor="tag-for-detached-eat-bundle" numbered="true" toc="default">
          <name>Tag for Detached EAT Bundle</name>
          <t>In the registry <xref target="IANA.cbor-tags" format="default"/>, IANA is requested to allocate the
following tag from the  FCFS space, with the present document as the
specification reference.</t>
          <table align="center">
            <thead>
              <tr>
                <th align="left">Tag</th>
                <th align="left">Data Items</th>
                <th align="left">Semantics</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">TBD602</td>
                <td align="left">array</td>
                <td align="left">Detached EAT Bundle <xref target="DEB" format="default"/></td>
              </tr>
            </tbody>
          </table>
        </section>
        <section anchor="media-types-registered-by-this-document" numbered="true" toc="default">
          <name>Media Types Registered by this Document</name>
          <t>It is requested that the CoAP Content-Format for SPDX and CycloneDX be been registered in the "CoAP Content-Formats" subregistry within the "Constrained RESTful Environments (CoRE) Parameters" registry <xref target="IANA.core-parameters" format="default"/>:</t>
          <ul spacing="normal">
            <li>Media Type: application/spdx+json</li>
            <li>Encoding: binary</li>
            <li>ID: TBD</li>
            <li>Reference: <xref target="SPDX" format="default"/></li>
          </ul>
          <t> </t>
          <ul spacing="normal">
            <li>Media Type: vendor/vnd.cyclonedx+xml</li>
            <li>Encoding: binary</li>
            <li>ID: TBD</li>
            <li>Reference: <xref target="CycloneDX" format="default"/></li>
          </ul>
          <t> </t>
          <ul spacing="normal">
            <li>Media Type: vendor/vnd.cyclonedx+json</li>
            <li>Encoding: binary</li>
            <li>ID: TBD</li>
            <li>Reference: <xref target="CycloneDX" format="default"/></li>
          </ul>
        </section>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC7515" target="https://www.rfc-editor.org/info/rfc7515">
          <front>
            <title>JSON Web Signature (JWS)</title>
            <author fullname="M. Jones" initials="M." surname="Jones">
              <organization/>
            </author>
            <author fullname="J. Bradley" initials="J." surname="Bradley">
              <organization/>
            </author>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura">
              <organization/>
            </author>
            <date month="May" year="2015"/>
            <abstract>
              <t>JSON Web Signature (JWS) represents content secured with digital signatures or Message Authentication Codes (MACs) using JSON-based data structures.  Cryptographic algorithms and identifiers for use with this specification are described in the separate JSON Web Algorithms (JWA) specification and an IANA registry defined by that specification.  Related encryption capabilities are described in the separate JSON Web Encryption (JWE) specification.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7515"/>
          <seriesInfo name="DOI" value="10.17487/RFC7515"/>
        </reference>
        <reference anchor="RFC8949" target="https://www.rfc-editor.org/info/rfc8949">
          <front>
            <title>Concise Binary Object Representation (CBOR)</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman">
              <organization/>
            </author>
            <date month="December" year="2020"/>
            <abstract>
              <t>The Concise Binary Object Representation (CBOR) is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation. These design goals make it different from earlier binary serializations such as ASN.1 and MessagePack.</t>
              <t>This document obsoletes RFC 7049, providing editorial improvements, new details, and errata fixes while keeping full compatibility with the interchange format of RFC 7049.  It does not create a new version of the format.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="94"/>
          <seriesInfo name="RFC" value="8949"/>
          <seriesInfo name="DOI" value="10.17487/RFC8949"/>
        </reference>
        <reference anchor="RFC7252" target="https://www.rfc-editor.org/info/rfc7252">
          <front>
            <title>The Constrained Application Protocol (CoAP)</title>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby">
              <organization/>
            </author>
            <author fullname="K. Hartke" initials="K." surname="Hartke">
              <organization/>
            </author>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <date month="June" year="2014"/>
            <abstract>
              <t>The Constrained Application Protocol (CoAP) is a specialized web transfer protocol for use with constrained nodes and constrained (e.g., low-power, lossy) networks.  The nodes often have 8-bit microcontrollers with small amounts of ROM and RAM, while constrained networks such as IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs) often have high packet error rates and a typical throughput of 10s of kbit/s.  The protocol is designed for machine- to-machine (M2M) applications such as smart energy and building automation.</t>
              <t>CoAP provides a request/response interaction model between application endpoints, supports built-in discovery of services and resources, and includes key concepts of the Web such as URIs and Internet media types.  CoAP is designed to easily interface with HTTP for integration with the Web while meeting specialized requirements such as multicast support, very low overhead, and simplicity for constrained environments.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7252"/>
          <seriesInfo name="DOI" value="10.17487/RFC7252"/>
        </reference>
        <reference anchor="RFC7519" target="https://www.rfc-editor.org/info/rfc7519">
          <front>
            <title>JSON Web Token (JWT)</title>
            <author fullname="M. Jones" initials="M." surname="Jones">
              <organization/>
            </author>
            <author fullname="J. Bradley" initials="J." surname="Bradley">
              <organization/>
            </author>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura">
              <organization/>
            </author>
            <date month="May" year="2015"/>
            <abstract>
              <t>JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred between two parties.  The claims in a JWT are encoded as a JSON object that is used as the payload of a JSON Web Signature (JWS) structure or as the plaintext of a JSON Web Encryption (JWE) structure, enabling the claims to be digitally signed or integrity protected with a Message Authentication Code (MAC) and/or encrypted.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7519"/>
          <seriesInfo name="DOI" value="10.17487/RFC7519"/>
        </reference>
        <reference anchor="RFC8126" target="https://www.rfc-editor.org/info/rfc8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton">
              <organization/>
            </author>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <author fullname="T. Narten" initials="T." surname="Narten">
              <organization/>
            </author>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters.  To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper.  For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed.  This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
        <reference anchor="RFC8174" target="https://www.rfc-editor.org/info/rfc8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC8259" target="https://www.rfc-editor.org/info/rfc8259">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author fullname="T. Bray" initials="T." role="editor" surname="Bray">
              <organization/>
            </author>
            <date month="December" year="2017"/>
            <abstract>
              <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format.  It was derived from the ECMAScript Programming Language Standard.  JSON defines a small set of formatting rules for the portable representation of structured data.</t>
              <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="90"/>
          <seriesInfo name="RFC" value="8259"/>
          <seriesInfo name="DOI" value="10.17487/RFC8259"/>
        </reference>
        <reference anchor="RFC8392" target="https://www.rfc-editor.org/info/rfc8392">
          <front>
            <title>CBOR Web Token (CWT)</title>
            <author fullname="M. Jones" initials="M." surname="Jones">
              <organization/>
            </author>
            <author fullname="E. Wahlstroem" initials="E." surname="Wahlstroem">
              <organization/>
            </author>
            <author fullname="S. Erdtman" initials="S." surname="Erdtman">
              <organization/>
            </author>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig">
              <organization/>
            </author>
            <date month="May" year="2018"/>
            <abstract>
              <t>CBOR Web Token (CWT) is a compact means of representing claims to be transferred between two parties.  The claims in a CWT are encoded in the Concise Binary Object Representation (CBOR), and CBOR Object Signing and Encryption (COSE) is used for added application-layer security protection.  A claim is a piece of information asserted about a subject and is represented as a name/value pair consisting of a claim name and a claim value.  CWT is derived from JSON Web Token (JWT) but uses CBOR rather than JSON.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8392"/>
          <seriesInfo name="DOI" value="10.17487/RFC8392"/>
        </reference>
        <reference anchor="RFC8610" target="https://www.rfc-editor.org/info/rfc8610">
          <front>
            <title>Concise Data Definition Language (CDDL): A Notational Convention to Express Concise Binary Object Representation (CBOR) and JSON Data Structures</title>
            <author fullname="H. Birkholz" initials="H." surname="Birkholz">
              <organization/>
            </author>
            <author fullname="C. Vigano" initials="C." surname="Vigano">
              <organization/>
            </author>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <date month="June" year="2019"/>
            <abstract>
              <t>This document proposes a notational convention to express Concise Binary Object Representation (CBOR) data structures (RFC 7049).  Its main goal is to provide an easy and unambiguous way to express structures for protocol messages and data formats that use CBOR or JSON.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8610"/>
          <seriesInfo name="DOI" value="10.17487/RFC8610"/>
        </reference>
        <reference anchor="RFC3986" target="https://www.rfc-editor.org/info/rfc3986">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee">
              <organization/>
            </author>
            <author fullname="R. Fielding" initials="R." surname="Fielding">
              <organization/>
            </author>
            <author fullname="L. Masinter" initials="L." surname="Masinter">
              <organization/>
            </author>
            <date month="January" year="2005"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource.  This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet.  The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier.  This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="66"/>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="DOI" value="10.17487/RFC3986"/>
        </reference>
        <reference anchor="RFC9052" target="https://www.rfc-editor.org/info/rfc9052">
          <front>
            <title>CBOR Object Signing and Encryption (COSE): Structures and Process</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad">
              <organization/>
            </author>
            <date month="August" year="2022"/>
            <abstract>
              <t>Concise Binary Object Representation (CBOR) is a data format designed for small code size and small message size.  There is a need to be able to define basic security services for this data format.  This document defines the CBOR Object Signing and Encryption (COSE) protocol.  This specification describes how to create and process signatures, message authentication codes, and encryption using CBOR for serialization.  This specification additionally describes how to represent cryptographic keys using CBOR.  </t>
              <t>This document, along with RFC 9053, obsoletes RFC 8152.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="96"/>
          <seriesInfo name="RFC" value="9052"/>
          <seriesInfo name="DOI" value="10.17487/RFC9052"/>
        </reference>
        <reference anchor="RFC9090" target="https://www.rfc-editor.org/info/rfc9090">
          <front>
            <title>Concise Binary Object Representation (CBOR) Tags for Object Identifiers</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <date month="July" year="2021"/>
            <abstract>
              <t>The Concise Binary Object Representation (CBOR), defined in RFC 8949, is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation.</t>
              <t>This document defines CBOR tags for object identifiers (OIDs) and is the reference document for the IANA registration of the CBOR tags so defined.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9090"/>
          <seriesInfo name="DOI" value="10.17487/RFC9090"/>
        </reference>
        <reference anchor="WGS84" target="https://earth-info.nga.mil/php/download.php?file=coord-wgs84">
          <front>
            <title>WORLD GEODETIC SYSTEM 1984, NGA.STND.0036_1.0.0_WGS84</title>
            <author>
              <organization>National Geospatial-Intelligence Agency (NGA)</organization>
            </author>
            <date year="2014" month="July" day="08"/>
          </front>
        </reference>
        <reference anchor="IANA.CWT.Claims" target="http://www.iana.org/assignments/cwt">
          <front>
            <title>CBOR Web Token (CWT) Claims</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="IANA.JWT.Claims" target="https://www.iana.org/assignments/jwt">
          <front>
            <title>JSON Web Token (JWT) Claims</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="IANA.COSE.Algorithms" target="https://www.iana.org/assignments/cose/">
          <front>
            <title>COSE Algorithms</title>
            <author>
              <organization/>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="ThreeGPP.IMEI" target="https://portal.3gpp.org/desktopmodules/Specifications/SpecificationDetails.aspx?specificationId=729">
          <front>
            <title>3rd Generation Partnership Project; Technical Specification Group Core Network and Terminals; Numbering, addressing and identification</title>
            <author>
              <organization>3GPP</organization>
            </author>
            <date year="2019"/>
          </front>
        </reference>
        <reference anchor="CoSWID" target="https://www.ietf.org/archive/id/draft-ietf-sacm-coswid-22.txt">
          <front>
            <title>Concise Software Identification Tags</title>
            <author fullname="Henk Birkholz" initials="H." surname="Birkholz">
              <organization>Fraunhofer SIT</organization>
            </author>
            <author fullname="Jessica Fitzgerald-McKay" initials="J." surname="Fitzgerald-McKay">
              <organization>National Security Agency</organization>
            </author>
            <author fullname="Charles Schmidt" initials="C." surname="Schmidt">
              <organization>The MITRE Corporation</organization>
            </author>
            <author fullname="David Waltermire" initials="D." surname="Waltermire">
              <organization>National Institute of Standards and Technology</organization>
            </author>
            <date day="20" month="July" 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-22"/>
        </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/>
            </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/>
            </author>
            <date>n.d.</date>
          </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/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="SPDX" target="https://spdx.dev/wp-content/uploads/sites/41/2020/08/SPDX-specification-2-2.pdf">
          <front>
            <title>Software Package Data Exchange (SPDX)</title>
            <author>
              <organization/>
            </author>
            <date year="2020"/>
          </front>
        </reference>
        <reference anchor="CycloneDX" target="https://cyclonedx.org/specification/overview/">
          <front>
            <title>CycloneDX</title>
            <author>
              <organization/>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="IANA.core-parameters" target="&lt;https://www.iana.org/assignments/core-parameters&gt;">
          <front>
            <title>IANA Constrained RESTful Environments (CoRE) Parameters</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="SUIT.Manifest" target="https://www.ietf.org/archive/id/draft-ietf-suit-manifest-19.txt">
          <front>
            <title>A Concise Binary Object Representation (CBOR)-based Serialization Format for the Software Updates for Internet of Things (SUIT) Manifest</title>
            <author fullname="Brendan Moran" initials="B." surname="Moran">
              <organization>Arm Limited</organization>
            </author>
            <author fullname="Hannes Tschofenig" initials="H." surname="Tschofenig">
              <organization>Arm Limited</organization>
            </author>
            <author fullname="Henk Birkholz" initials="H." surname="Birkholz">
              <organization>Fraunhofer SIT</organization>
            </author>
            <author fullname="Koen Zandberg" initials="K." surname="Zandberg">
              <organization>Inria</organization>
            </author>
            <date day="9" month="August" year="2022"/>
            <abstract>
              <t>   This specification describes the format of a manifest.  A manifest is
   a bundle of metadata about code/data obtained by a recipient (chiefly
   the firmware for an IoT device), where to find the that code/data,
   the devices to which it applies, and cryptographic information
   protecting the manifest.  Software updates and Trusted Invocation
   both tend to use sequences of common operations, so the manifest
   encodes those sequences of operations, rather than declaring the
   metadata.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-suit-manifest-19"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC4122" target="https://www.rfc-editor.org/info/rfc4122">
          <front>
            <title>A Universally Unique IDentifier (UUID) URN Namespace</title>
            <author fullname="P. Leach" initials="P." surname="Leach">
              <organization/>
            </author>
            <author fullname="M. Mealling" initials="M." surname="Mealling">
              <organization/>
            </author>
            <author fullname="R. Salz" initials="R." surname="Salz">
              <organization/>
            </author>
            <date month="July" year="2005"/>
            <abstract>
              <t>This specification defines a Uniform Resource Name namespace for UUIDs (Universally Unique IDentifier), also known as GUIDs (Globally Unique IDentifier).  A UUID is 128 bits long, and can guarantee uniqueness across space and time.  UUIDs were originally used in the Apollo Network Computing System and later in the Open Software Foundation\'s (OSF) Distributed Computing Environment (DCE), and then in Microsoft Windows platforms.</t>
              <t>This specification is derived from the DCE specification with the kind permission of the OSF (now known as The Open Group).  Information from earlier versions of the DCE specification have been incorporated into this document.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4122"/>
          <seriesInfo name="DOI" value="10.17487/RFC4122"/>
        </reference>
        <reference anchor="RFC4949" target="https://www.rfc-editor.org/info/rfc4949">
          <front>
            <title>Internet Security Glossary, Version 2</title>
            <author fullname="R. Shirey" initials="R." surname="Shirey">
              <organization/>
            </author>
            <date month="August" year="2007"/>
            <abstract>
              <t>This Glossary provides definitions, abbreviations, and explanations of terminology for information system security. The 334 pages of entries offer recommendations to improve the comprehensibility of written material that is generated in the Internet Standards Process (RFC 2026). The recommendations follow the principles that such writing should (a) use the same term or definition whenever the same concept is mentioned; (b) use terms in their plainest, dictionary sense; (c) use terms that are already well-established in open publications; and (d) avoid terms that either favor a particular vendor or favor a particular technology or mechanism over other, competing techniques that already exist or could be developed.  This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="FYI" value="36"/>
          <seriesInfo name="RFC" value="4949"/>
          <seriesInfo name="DOI" value="10.17487/RFC4949"/>
        </reference>
        <reference anchor="RFC7120" target="https://www.rfc-editor.org/info/rfc7120">
          <front>
            <title>Early IANA Allocation of Standards Track Code Points</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton">
              <organization/>
            </author>
            <date month="January" year="2014"/>
            <abstract>
              <t>This memo describes the process for early allocation of code points by IANA from registries for which "Specification Required", "RFC                        Required", "IETF Review", or "Standards Action" 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="RFC9039" target="https://www.rfc-editor.org/info/rfc9039">
          <front>
            <title>Uniform Resource Names for Device Identifiers</title>
            <author fullname="J. Arkko" initials="J." surname="Arkko">
              <organization/>
            </author>
            <author fullname="C. Jennings" initials="C." surname="Jennings">
              <organization/>
            </author>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby">
              <organization/>
            </author>
            <date month="June" year="2021"/>
            <abstract>
              <t>This document describes a new Uniform Resource Name (URN) namespace for hardware device identifiers. A general representation of device identity can be useful in many applications, such as in sensor data streams and storage or in equipment inventories. A URN-based representation can be passed along in applications that need the information.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9039"/>
          <seriesInfo name="DOI" value="10.17487/RFC9039"/>
        </reference>
        <reference anchor="RATS.Architecture" target="https://www.ietf.org/archive/id/draft-ietf-rats-architecture-22.txt">
          <front>
            <title>Remote Attestation Procedures Architecture</title>
            <author fullname="Henk Birkholz" initials="H." surname="Birkholz">
              <organization>Fraunhofer SIT</organization>
            </author>
            <author fullname="Dave Thaler" initials="D." surname="Thaler">
              <organization>Microsoft</organization>
            </author>
            <author fullname="Michael Richardson" initials="M." surname="Richardson">
              <organization>Sandelman Software Works</organization>
            </author>
            <author fullname="Ned Smith" initials="N." surname="Smith">
              <organization>Intel Corporation</organization>
            </author>
            <author fullname="Wei Pan" initials="W." surname="Pan">
              <organization>Huawei Technologies</organization>
            </author>
            <date day="28" month="September" 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-22"/>
        </reference>
        <reference anchor="BirthdayAttack" target="https://en.wikipedia.org/wiki/Birthday_attack.">
          <front>
            <title>Birthday attack</title>
            <author>
              <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/>
            </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/>
            </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/>
            </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/>
            </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/>
            </author>
            <date year="2007"/>
          </front>
        </reference>
        <reference anchor="COSE.X509.Draft" target="https://www.ietf.org/archive/id/draft-ietf-cose-x509-08.txt">
          <front>
            <title>CBOR Object Signing and Encryption (COSE): Header parameters for carrying and referencing X.509 certificates</title>
            <author fullname="Jim Schaad" initials="J." surname="Schaad">
              <organization>August Cellars</organization>
            </author>
            <date day="14" month="December" year="2020"/>
            <abstract>
              <t>   The CBOR Signing And Encrypted Message (COSE) structure uses
   references to keys in general.  For some algorithms, additional
   properties are defined which carry parameters relating to keys as
   needed.  The COSE Key structure is used for transporting keys outside
   of COSE messages.  This document extends the way that keys can be
   identified and transported by providing attributes that refer to or
   contain X.509 certificates.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-cose-x509-08"/>
        </reference>
        <reference anchor="CBOR.Cert.Draft" target="https://www.ietf.org/archive/id/draft-ietf-cose-cbor-encoded-cert-04.txt">
          <front>
            <title>CBOR Encoded X.509 Certificates (C509 Certificates)</title>
            <author fullname="John Preuß Mattsson" initials="J. P." surname="Mattsson">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="Göran Selander" initials="G." surname="Selander">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="Shahid Raza" initials="S." surname="Raza">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Joel Höglund" initials="J." surname="Höglund">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Martin Furuhed" initials="M." surname="Furuhed">
              <organization>Nexus Group</organization>
            </author>
            <date day="10" month="July" year="2022"/>
            <abstract>
              <t>   This document specifies a CBOR encoding of X.509 certificates.  The
   resulting certificates are called C509 Certificates.  The CBOR
   encoding supports a large subset of RFC 5280 and all certificates
   compatible with the RFC 7925, IEEE 802.1AR (DevID), CNSA, RPKI, GSMA
   eUICC, and CA/Browser Forum Baseline Requirements profiles.  When
   used to re-encode DER encoded X.509 certificates, the CBOR encoding
   can in many cases reduce the size of RFC 7925 profiled certificates
   with over 50%.  The CBOR encoded structure can alternatively be
   signed directly ("natively signed"), which does not require re-
   encoding for the signature to be verified.  The document also
   specifies C509 COSE headers, a C509 TLS certificate type, and a C509
   file format.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-cose-cbor-encoded-cert-04"/>
        </reference>
        <reference anchor="UCCS" target="https://www.ietf.org/archive/id/draft-ietf-rats-uccs-03.txt">
          <front>
            <title>A CBOR Tag for Unprotected CWT Claims Sets</title>
            <author fullname="Henk Birkholz" initials="H." surname="Birkholz">
              <organization>Fraunhofer SIT</organization>
            </author>
            <author fullname="Jeremy O'Donoghue" initials="J." surname="O'Donoghue">
              <organization>Qualcomm Technologies Inc.</organization>
            </author>
            <author fullname="Nancy Cam-Winget" initials="N." surname="Cam-Winget">
              <organization>Cisco Systems</organization>
            </author>
            <author fullname="Carsten Bormann" initials="C." surname="Bormann">
              <organization>Universität Bremen TZI</organization>
            </author>
            <date day="11" month="July" 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.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-rats-uccs-03"/>
        </reference>
      </references>
    </references>
    <section anchor="examples" numbered="true" toc="default">
      <name>Examples</name>
      <t>Most examples are shown as just a Claims-Set that would be a payload for a CWT, JWT, detached EAT bundle or future token types.
It is shown this way because the payload is all the claims, the most interesting part and showing full tokens makes it harder to show the claims.</t>
      <t>Some examples of full tokens are also given.</t>
      <t>WARNING: These examples use tag and label numbers not yet assigned by IANA.</t>
      <section anchor="payload-examples" numbered="true" toc="default">
        <name>Payload Examples</name>
        <section anchor="simple-tee-attestation" numbered="true" toc="default">
          <name>Simple TEE Attestation</name>
          <t>This is a simple attestation of a TEE that includes a manifest that is a payload CoSWID to describe the TEE's software.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
/ This is an EAT payload that describes a simple TEE. /

{
    / eat_nonce /       10: h'948f8860d13a463e',
    / secboot /        262: true,
    / dbgstat /        263: 2, / disabled-since-boot /
    / manifests /      273: [
                           [
                               121, / CoAP Content ID. A     /
                                    / made up one until one  /
                                    / is assigned for CoSWID /

                               / This is byte-string wrapped      /
                               / payload CoSWID. It gives the TEE /
                               / software name, the version and   /
                               / the  name of the file it is in.  /
                               / {0: "3a24",                      /
                               /  12: 1,                          /
                               /   1: "Acme TEE OS",              /
                               /  13: "3.1.4",                    /
                               /   2: [{31: "Acme TEE OS", 33: 1}, /
                               /       {31: "Acme TEE OS", 33: 2}], /
                               /   6: {                           /
                               /       17: {                      /
                               /           24: "acme_tee_3.exe"   /
                               /       }                          /
                               /    }                             /
                               /  }                               /
                               h' a60064336132340c01016b
                                  41636d6520544545204f530d65332e31
                                  2e340282a2181f6b41636d6520544545
                                  204f53182101a2181f6b41636d652054
                                  4545204f5318210206a111a118186e61
                                  636d655f7465655f332e657865'
                            ]
                        ]
}
    

]]></artwork>
          <artwork name="" type="" align="left" alt=""><![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>
        </section>
        <section anchor="submodules-for-board-and-device" numbered="true" toc="default">
          <name>Submodules for Board and Device</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
/ This example shows use of submodules to give information  /
/ about the chip, board and overall device.                 /
/                                                           /
/ The main attestation is associated with the chip with the /
/ CPU and running the main OS. It is what has the keys and  /
/ produces the token.                                       /
/                                                           /
/ The board is made by a different vendor than the chip.    /
/ Perhaps it is some generic IoT board.                     /
/                                                           /
/ The device is some specific appliance that is made by a   /
/ different vendor than either the chip or the board.       /
/                                                           /
/ Here the board and device submodules aren't the typical   /
/ target environments as described by the RATS architecture /
/ document, but they are a valid use of submodules.         /

{
    / eat_nonce /       10: h'948f8860d13a463e8e',
    / ueid /           256: h'0198f50a4ff6c05861c8860d13a638ea',
    / oemid /          258: h'894823', / IEEE OUI format OEM ID /
    / hwmodel /        259: h'549dcecc8b987c737b44e40f7c635ce8'
                              / Hash of chip model name /,
    / hwversion /      260: ["1.3.4", 1], / Multipartnumeric version /
    / swname /         271: "Acme OS",
    / swversion /      272: ["3.5.5", 1],
    / secboot /        262: true,
    / dbgstat /        263: 3, / permanent-disable  /
    / timestamp (iat) /  6: 1526542894,
    / submods / 266: {
        / A submodule to hold some claims about the circuit board /
        "board" :  {
            / oemid /       258: h'9bef8787eba13e2c8f6e7cb4b1f4619a',
            / hwmodel /     259: h'ee80f5a66c1fb9742999a8fdab930893'
                                      / Hash of board module name /,
            / hwversion /   260: ["2.0a", 2] / multipartnumeric+suffix /
        },

        / A submodule to hold claims about the overall device /
        "device" :  {
            / oemid /       258: 61234, / PEN Format OEM ID / 
            / hwversion /   260: ["4.0", 1] / Multipartnumeric version /
        }
    }
}
]]></artwork>
        </section>
        <section anchor="eat-produced-by-attestation-hardware-block" numbered="true" toc="default">
          <name>EAT Produced by Attestation Hardware Block</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
/ This is an example of a token produced by a HW block            /
/ purpose-built for attestation.  Only the nonce claim changes    /
/ from one attestation to the next as the rest  either come       /
/ directly from the hardware or from one-time-programmable memory /
/ (e.g. a fuse). 47 bytes encoded in CBOR (8 byte nonce, 16 byte  /
/ UEID). /

{
    / eat_nonce /       10: h'948f8860d13a463e',
    / ueid /           256: h'0198f50a4ff6c05861c8860d13a638ea',
    / oemid /          258: 64242, / Private Enterprise Number /
    / secboot /        262: true,
    / dbgstat /        263: 3, / disabled-permanently /
    / hwversion /      260: [ "3.1", 1 ] / Type is multipartnumeric /
}

]]></artwork>
        </section>
        <section anchor="key-key-store-attestation" numbered="true" toc="default">
          <name>Key / Key Store Attestation</name>
          <artwork name="" type="" align="left" alt=""><![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.                  /


{
    / eat_nonce /       10: h'948f8860d13a463e',
    / secboot /        262: true,
    / dbgstat /        263: 2, / disabled-since-boot /
    / manifests /      273: [
                                [ 121, / CoAP Content ID. A      /
                                       / made up one until one   /
                                       / is assigned for CoSWID  /
                                  h'a600683762623334383766
                                    0c000169436172626f6e6974650d6331
                                    2e320e0102a2181f75496e6475737472
                                    69616c204175746f6d6174696f6e1821
                                    02'
                                 ]
                                 / Above is an encoded CoSWID     /
                                 / with the following data        /
                                 /   SW Name: "Carbonite"         /
                                 /   SW Vers: "1.2"               /
                                 /   SW Creator:                  /
                                 /      "Industrial Automation"   /
                            ],
    / exp /              4: 1634324274, / 2021-10-15T18:57:54Z /
    / iat /              6: 1634317080, / 2021-10-15T16:58:00Z /
                   -80000 : "fingerprint",
                   -80001 : { / The key -- A COSE_Key  / 
                / kty /       1: 2, / EC2, eliptic curve with x & y /
                / kid /       2: h'36675c206f96236c3f51f54637b94ced',
                / curve /    -1: 2, / curve is P-256 /
                / x-coord /  -2: h'65eda5a12577c2bae829437fe338701a
                                   10aaa375e1bb5b5de108de439c08551d',
                / y-coord /  -3: h'1e52ed75701163f7f9e40ddf9f341b3d
                                   c9ba860af7e0ca7ca7e9eecd0084d19c'
             },

    / submods /        266 : { 
                           "HLOS" : { / submod for high-level OS /
         / eat_nonce /         10: h'948f8860d13a463e',
           / secboot /        262: true,
           / manifests /      273: [ 
                                [ 121, / CoAP Content ID. A      /
                                       / made up one until one   /
                                       / is assigned for CoSWID  /
                                    h'a600687337
                                      6537346b78380c000168
                                      44726f6964204f530d65
                                      52322e44320e0302a218
                                      1F75496E647573747269
                                      616c204175746f6d6174
                                      696f6e182102' 
                                  ]
                                  / Above is an encoded CoSWID /
                                  / with the following data:   /
                                  /   SW Name: "Droid OS"      /
                                  /   SW Vers: "R2.D2"         /
                                  /   SW Creator:              /
                                  /     "Industrial Automation"/
                               ]
                           }
                       }
}
           
   
]]></artwork>
        </section>
        <section anchor="software-measurements-of-an-iot-device" numbered="true" toc="default">
          <name>Software Measurements of an IoT Device</name>
          <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>
          <artwork name="" type="" align="left" alt=""><![CDATA[
/ This EAT payload is for an IoT device with a TEE. The attestation /
/ is produced by the TEE. There is a submodule for the IoT OS (the  /
/ main OS of the IoT device that is not as secure as the TEE). The  /
/ submodule contains claims for the IoT OS. The TEE also measures   /
/ the IoT OS and puts the measurements in the submodule.            /

{
    / eat_nonce /       10: h'948f8860d13a463e',
    / secboot /        262: true,
    / dbgstat /        263: 2, / disabled-since-boot /
    / oemid /          258: h'8945ad', / IEEE CID based /
    / ueid /           256: h'0198f50a4ff6c05861c8860d13a638ea', 
    / submods /        266: {
                            "OS" : {
        / secboot /            262: true,
        / dbgstat /            263: 2, / disabled-since-boot /
        / measurements         274: [
                                   [
                                       121, / CoAP Content ID. A     /
                                            / made up one until one  /
                                            / is assigned for CoSWID /

                                    / This is a byte-string wrapped /
                                    / evidence CoSWID. It has       /
                                    / hashes of the main files of   /
                                    / the IoT OS.  /
                                    h'a600663463613234350c
                                      17016d41636d6520522d496f542d4f
                                      530d65332e312e3402a2181f724163
                                      6d6520426173652041747465737465
                                      7218210103a11183a318187161636d
                                      655f725f696f745f6f732e65786514
                                      1a0044b349078201582005f6b327c1
                                      73b4192bd2c3ec248a292215eab456
                                      611bf7a783e25c1782479905a31818
                                      6d7265736f75726365732e72736314
                                      1a000c38b10782015820c142b9aba4
                                      280c4bb8c75f716a43c99526694caa
                                      be529571f5569bb7dc542f98a31818
                                      6a636f6d6d6f6e2e6c6962141a0023
                                      3d3b0782015820a6a9dcdfb3884da5
                                      f884e4e1e8e8629958c2dbc7027414
                                      43a913e34de9333be6'
                                    ]
                                ]
                            }
                        }
}

]]></artwork>
          <artwork name="" type="" align="left" alt=""><![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>
        </section>
        <section anchor="attestation-results-in-json-format" numbered="true" toc="default">
          <name>Attestation Results in JSON format</name>
          <t>This is a JSON-format payload that might be the output of a verifier that evaluated the IoT Attestation example immediately above.</t>
          <t>This particular verifier knows enough about the TEE attester to be able to pass claims like debug status directly through to the relying party.
The verifier also knows the reference values for the measured software components and is able to check them.
It informs the relying party that they were correct in the "measres" claim.
"Trustus Verifications" is the name of the services that verifies the software component measurements.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
{
    "eat_nonce" : "jkd8KL-8=Qlzg4",
    "secboot" :  true,
    "dbgstat" :  "disabled-since-boot",
    "oemid" :    "iUWt",
    "ueid" :     "AZj1Ck_2wFhhyIYNE6Y4",
    "swname" :   "Acme R-IoT-OS",
    "swversion" : [
            "3.1.4"
        ],
    "measres" : [
        [
            "Trustus Measurements",
            [
                [ "all" , "success" ]
            ]
       ]
    ]
}
]]></artwork>
        </section>
        <section anchor="json-encoded-token-with-sumodules" numbered="true" toc="default">
          <name>JSON-encoded Token with Sumodules</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
{
    "eat_nonce": "lI-IYNE6Rj6O",
    "ueid":     "AJj1Ck_2wFhhyIYNE6Y46g==",
    "secboot":  true,
    "dbgstat":  "disabled-permanently",
    "iat":      1526542894,
    "submods": {
        "Android App Foo" :  {
            "swname": "Foo.app"
        },

        "Secure Element Eat" : [
            "CBOR",
            "2D3ShEOhASagWGaoCkiUj4hg0TpGPhkBAFABmPUKT_bAWGHIhg0TpjjqGQECGfryGQEFBBkBBvUZAQcDGQEEgmMzLjEBGQEKoWNURUWCL1gg5c-V_ST6txRGdC3VjUPa4XjlX-K5QpGpKRCC_8JjWgtYQPaQywOIZ3-mJKN3X9fLxOhAnsmBa-MvpHRzOw-Ywn-67bvJljuctezAPD41s6_At7NbSV3qwJlxIuqGfwe41es="
        ],

        "Linux Android": {
            "swname": "Android"
        },

        "Subsystem J": [ 
            "JWT",
            "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJKLUF0dGVzdGVyIiwiaWF0IjoxNjUxNzc0ODY4LCJleHAiOm51bGwsImF1ZCI6IiIsInN1YiI6IiJ9.gjw4nFMhLpJUuPXvMPzK1GMjhyJq2vWXg1416XKszwQ"
        ] 
    }
}
]]></artwork>
        </section>
      </section>
      <section anchor="full-token-examples" numbered="true" toc="default">
        <name>Full Token Examples</name>
        <section anchor="basic-cwt-example" numbered="true" toc="default">
          <name>Basic CWT Example</name>
          <t>This is a simple ECDSA signed CWT-format token.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
/ This is a full CWT-format token with a very simple payloal. / 
/ The main structure visible here is that of the COSE_Sign1.  /

61( 18( [
    h'A10126',                           / protected headers  /
    {},                           / empty unprotected headers / 
    h'A20B46024A6B0978DE0A49000102030405060708',    / payload /
    h'9B9B2F5E470000F6A20C8A4157B5763FC45BE759
      9A5334028517768C21AFFB845A56AB557E0C8973
      A07417391243A79C478562D285612E292C622162
      AB233787'                                   / signature / 
] ) )
]]></artwork>
        </section>
        <section anchor="detached-eat-bundle" numbered="true" toc="default">
          <name>Detached EAT Bundle</name>
          <t>In this detached EAT bundle, the main token is produced by a HW attestation block.
The detached Claims-Set is produced by a TEE and is largely identical to the Simple TEE examples above.
The TEE digests its Claims-Set and feeds that digest to the HW block.</t>
          <t>In a better example the attestation produced by the HW block would be a CWT and thus signed and secured by the HW block.
Since the signature covers the digest from the TEE that Claims-Set is also secured.</t>
          <t>The detached EAT bundle itself can be assembled by untrusted software.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
/ This is a detached EAT bundle tag.  /
/ Note that 602, the tag identifying a detached EAT bundle is not yet registered with IANA /

602([

    / First part is a full EAT token with claims like nonce and /
    / UEID. Most importantly, it includes a submodule that is a /
    / detached digest which is the hash of the "TEE" claims set /
    / in the next section. The COSE payload follows:            /
    / { /
    /      10: h'948F8860D13A463E', /
    /     256: h'0198F50A4FF6C05861C8860D13A638EA', /
    /     258: 64242, /
    /     262: true, /
    /     263: 3, /
    /     260: ["3.1", 1], /
    /     266: { /
    /         "TEE": [ /
    /             -16, /
    /              h'8DEF652F47000710D9F466A4C666E209  /
    /                DD74F927A1CEA352B03143E188838ABE' /
    /         ] /
    /     } /
    /   }  /
    h'D83DD28443A10126A05866A80A48948F8860D13A463E1901
      00500198F50A4FF6C05861C8860D13A638EA19010219FAF2
      19010504190106F5190107031901048263332E310119010A
      A163544545822F58208DEF652F47000710D9F466A4C666E2
      09DD74F927A1CEA352B03143E188838ABE5840F690CB0388
      677FA624A3775FD7CBC4E8409EC9816BE32FA474733B0F98
      C27FBAEDBBC9963B9CB5ECC03C3E35B3AFC0B7B35B495DEA
      C0997122EA867F07B8D5EB',
    {
       / A CBOR-encoded byte-string wrapped EAT claims-set. It /
       / contains claims suitable for a TEE                    /
       "TEE" : h'a40a48948f8860d13a463e190106f519010702
                 190111818218795858a60064336132340c0101
                 6b41636d6520544545204f530d65332e312e34
                 0282a2181f6b41636d6520544545204f531821
                 01a2181f6b41636d6520544545204f53182102
                 06a111a118186e61636d655f7465655f332e65
                 7865'
    }
 ])
 
]]></artwork>
          <artwork name="" type="" align="left" alt=""><![CDATA[
/ This example contains submodule that is a detached digest,   /
/ which is the hash of a Claims-Set convey outside this token. /
/ Other than that is is the other example of a token from an   /
/ attestation HW block                                         /

{
    / eat_nonce /       10: h'948f8860d13a463e',
    / ueid /           256: h'0198f50a4ff6c05861c8860d13a638ea',
    / oemid /          258: 64242, / Private Enterprise Number /
    / secboot /        262: true,
    / dbgstat /        263: 3, / disabled-permanently /
    / hwversion /      260: [ "3.1", 1 ], / multipartnumeric /
    / submods/         266: {
                                "TEE": [ / detached digest submod /
                                    -16, / SHA-256 /
                                    h'e5cf95fd24fab7144674
                                      2dd58d43dae178e55fe2
                                      b94291a9291082ffc2635
                                      a0b'
                                ]
                            }
}

]]></artwork>
        </section>
        <section anchor="json-encoded-detached-eat-bundle" numbered="true" toc="default">
          <name>JSON-encoded Detached EAT Bundle</name>
          <t>In this bundle there are two detached Claims-Sets, "CS1" and "CS2".
The JWT at the start of the bundle has detached signature submodules with hashes of "CS1" and "CS2".
TODO: make the JWT actually be correct verifiable JWT.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
[
    [ "JWT",
      "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJKLUF0dGVzdGVyIiwiaWF0IjoxNjUxNzc0ODY4LCJleHAiOm51bGwsImF1ZCI6IiIsInN1YiI6IiJ9.gjw4nFMhLpJUuPXvMPzK1GMjhyJq2vWXg1416XKszwQ"
    ],
    {
        "Audio Subsystem Claims": "ewogICAgICAgICAgICAibm9uY2UiOiAgICAgImxJK0lZTkU2Umo2TyIsCiAgICAgICAgICAgICJpYXQiOiAgICAgIDE1MjY1NDI4OTQKICAgICAgICAgfQo=",
        "Graphics Subsystem Claims": "ewogICAgICAgICAgICAibm9uY2UiOiAgICJsSStJWU5FNlJqNk8iLAogICAgICAgICAgICAiaWF0IjogICAgIDE1MjY1NDI4OTQKICAgICAgICB9"
    }
]
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="UEID-Design" numbered="true" toc="default">
      <name>UEID Design Rationale</name>
      <section anchor="collision-probability" numbered="true" toc="default">
        <name>Collision Probability</name>
        <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>
        <table align="center">
          <thead>
            <tr>
              <th align="left">People</th>
              <th align="left">Devices / Person</th>
              <th align="left">Subsystems / Device</th>
              <th align="left">Database Portion</th>
              <th align="left">Database Size</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">10 billion</td>
              <td align="left">100</td>
              <td align="left">10</td>
              <td align="left">10%</td>
              <td align="left">trillion (10^12)</td>
            </tr>
            <tr>
              <td align="left">10 billion</td>
              <td align="left">100,000</td>
              <td align="left">10</td>
              <td align="left">10%</td>
              <td align="left">quadrillion (10^15)</td>
            </tr>
            <tr>
              <td align="left">100 billion</td>
              <td align="left">1,000,000</td>
              <td align="left">10</td>
              <td align="left">10%</td>
              <td align="left">100 quadrillion (10^17)</td>
            </tr>
          </tbody>
        </table>
        <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>
        <artwork name="" type="" align="left" alt=""><![CDATA[
   p = 1 - e^{-k^2/(2n)}

   p   Collision Probability
   n   Total possible population
   k   Actual population
]]></artwork>
        <t>However, for the very large values involved here, this formula requires floating
point precision higher than commonly available in calculators and software so this
simple approximation is used. See <xref target="BirthdayAttack" format="default"/>.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
   p = k^2 / 2n
]]></artwork>
        <t>For this calculation:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
   p  Collision Probability
   n  Total population based on number of bits in UEID
   k  Population in a database
]]></artwork>
        <table align="center">
          <thead>
            <tr>
              <th align="left">Database Size</th>
              <th align="left">128-bit UEID</th>
              <th align="left">192-bit UEID</th>
              <th align="left">256-bit UEID</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">trillion (10^12)</td>
              <td align="left">2 * 10^-15</td>
              <td align="left">8 * 10^-35</td>
              <td align="left">5 * 10^-55</td>
            </tr>
            <tr>
              <td align="left">quadrillion (10^15)</td>
              <td align="left">2 * 10^-09</td>
              <td align="left">8 * 10^-29</td>
              <td align="left">5 * 10^-49</td>
            </tr>
            <tr>
              <td align="left">100 quadrillion (10^17)</td>
              <td align="left">2 * 10^-05</td>
              <td align="left">8 * 10^-25</td>
              <td align="left">5 * 10^-45</td>
            </tr>
          </tbody>
        </table>
        <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>
        <artwork name="" type="" align="left" alt=""><![CDATA[
  t = 1 / ((k / 10) * p)

  t  Time until a collision
  p  Collision probability for UEID size
  k  Database size
]]></artwork>
        <table align="center">
          <thead>
            <tr>
              <th align="left">Database Size</th>
              <th align="left">128-bit UEID</th>
              <th align="left">192-bit UEID</th>
              <th align="left">256-bit UEID</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">trillion (10^12)</td>
              <td align="left">60,000 years</td>
              <td align="left">10^24 years</td>
              <td align="left">10^44 years</td>
            </tr>
            <tr>
              <td align="left">quadrillion (10^15)</td>
              <td align="left">8 seconds</td>
              <td align="left">10^14 years</td>
              <td align="left">10^34 years</td>
            </tr>
            <tr>
              <td align="left">100 quadrillion (10^17)</td>
              <td align="left">8 microseconds</td>
              <td align="left">10^11 years</td>
              <td align="left">10^31 years</td>
            </tr>
          </tbody>
        </table>
        <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" numbered="true" toc="default">
        <name>No Use of UUID</name>
        <t>A UEID is not a UUID <xref target="RFC4122" format="default"/> by conscious choice for the following
reasons.</t>
        <t>UUIDs are limited to 128 bits which may not be enough for some future
use cases.</t>
        <t>Today, cryptographic-quality random numbers are available from common
CPUs and hardware. This hardware was introduced between 2010 and 2015.
Operating systems and cryptographic libraries give access to this
hardware. Consequently, there is little need for implementations
to construct such random values from multiple sources on their own.</t>
        <t>Version 4 UUIDs do allow for use of such cryptographic-quality
random numbers, but do so by mapping into the overall UUID
structure of time and clock values. This structure is of no
value here yet adds complexity. It also slightly reduces the
number of actual bits with entropy.</t>
        <t>The design of UUID accommodates the construction of a unique identifier by combination of several identifiers that separately do not provide sufficient uniqueness.
UEID takes the view that this construction is no longer needed, in particular because cryptographic-quality random number generators are readily available.
It takes the view that hardware, software and/or manufacturing process implement UEID in a simple and direct way.</t>
      </section>
    </section>
    <section anchor="eat-relation-to-ieee8021ar-secure-device-identity-devid" numbered="true" toc="default">
      <name>EAT Relation to IEEE.802.1AR Secure Device Identity (DevID)</name>
      <t>This section describes several distinct ways in which an IEEE IDevID <xref target="IEEE.802.1AR" format="default"/> relates to EAT, particularly to UEID and SUEID.</t>
      <t><xref target="IEEE.802.1AR" format="default"/> orients around the definition of an implementation called a "DevID Module."
It describes how IDevIDs and LDevIDs are stored, protected and accessed using a DevID Module.
A particular level of defense against attack that should be achieved to be a DevID is defined.
The intent is that IDevIDs and LDevIDs can be used with any network protocol or message format.
In these protocols and message formats the DevID secret is used to sign a nonce or similar to prove the association of the DevID certificates with the device.</t>
      <t>By contrast, EAT standardize a message format that is sent to a relying party, the very thing that is not defined in <xref target="IEEE.802.1AR" format="default"/>.
Nor does EAT give details on how keys, data and such are stored protected and accessed.
EAT is intended to work with a variety of different on-device implementations ranging from minimal protection of assets to the highest levels of asset protection.
It does not define any particular level of defense against attack, instead providing a set of security considerations.</t>
      <t>EAT and DevID can be viewed as complimentary when used together or as competing to provide a device identity service.</t>
      <section anchor="devid-used-with-eat" numbered="true" toc="default">
        <name>DevID Used With EAT</name>
        <t>As just described, EAT standardizes a message format and <xref target="IEEE.802.1AR" format="default"/> doesn't.
Vice versa, EAT doesn't define a an device implementation and DevID does.</t>
        <t>Hence, EAT can be the message format that a DevID is used with.
The DevID secret becomes the attestation key used to sign EATs.
The DevID and its certificate chain become the endorsement sent to the verifier.</t>
        <t>In this case, the EAT and the DevID are likely to both provide a device identifier (e.g. a serial number).
In the EAT it is the UEID (or SUEID).
In the DevID (used as an endorsement), it is a device serial number included in the subject field of the DevID certificate.
It is probably a good idea in this use for them to be the same serial number or for the UEID to be a hash of the DevID serial number.</t>
      </section>
      <section anchor="how-eat-provides-an-equivalent-secure-device-identity" numbered="true" toc="default">
        <name>How EAT Provides an Equivalent Secure Device Identity</name>
        <t>The UEID, SUEID and other claims like OEM ID are equivalent to the secure device identity put into the subject field of a DevID certificate.
These EAT claims can represent all the same fields and values that can be put in a DevID certificate subject.
EAT explicitly and carefully defines a variety of useful claims.</t>
        <t>EAT secures the conveyance of these claims by having them signed on the device by the attestation key when the EAT is generated.
EAT also signs the nonce that gives freshness at this time.
Since these claims are signed for every EAT generated, they can include things that vary over time like GPS location.</t>
        <t>DevID secures the device identity fields by having them signed by the manufacturer of the device sign them into a certificate.
That certificate is created once during the manufacturing of the device and never changes so the fields cannot change.</t>
        <t>So in one case the signing of the identity happens on the device and the other in a manufacturing facility,
but in both cases the signing of the nonce that proves the binding to the actual device happens on the device.</t>
        <t>While EAT does not specify how the signing keys, signature process and storage of the identity values should be secured against attack,
an EAT implementation may have equal defenses against attack.
One reason EAT uses CBOR is because it is simple enough that a basic EAT implementation can be constructed entirely in hardware.
This allows EAT to be implemented with the strongest defenses possible.</t>
      </section>
      <section anchor="an-x509-format-eat" numbered="true" toc="default">
        <name>An X.509 Format EAT</name>
        <t>It is possible to define a way to encode EAT claims in an X.509 certificate.
For example, the EAT claims might be mapped to X.509 v3 extensions.
It is even possible to stuff a whole CBOR-encoded unsigned EAT token into a X.509 certificate.</t>
        <t>If that X.509 certificate is an IDevID or LDevID, this becomes another way to use EAT and DevID together.</t>
        <t>Note that the DevID must still be used with an authentication protocol that has a nonce or equivalent.
The EAT here is not being used as the protocol to interact with the rely party.</t>
      </section>
      <section anchor="device-identifier-permanence" numbered="true" toc="default">
        <name>Device Identifier Permanence</name>
        <t>In terms of permanence, an IDevID is similar to a UEID in that they do not change over the life of the device.
They cease to exist only when the device is destroyed.</t>
        <t>An SUEID is similar to an LDevID.
They change on device life-cycle events.</t>
        <t><xref target="IEEE.802.1AR" format="default"/> 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" format="default"/> is oriented around the definition of an implementation with a particular level of defense against attack.</t>
        <t>EAT is not defined around a particular implementation and must work on a range of devices that have a range of defenses against attack.
EAT thus can't be defined permanence in terms of defense against attack.
EAT's definition of permanence is in terms of operations and device lifecycle.</t>
      </section>
    </section>
    <section anchor="CDDL_for_CWT" numbered="true" toc="default">
      <name>CDDL for CWT and JWT</name>
      <t><xref target="RFC8392" format="default"/> was published before CDDL was available and thus is specified in prose, not CDDL.
Following is CDDL specifying CWT as it is needed to complete this specification.
This CDDL also covers the Claims-Set for JWT.</t>
      <t>The COSE-related types in this CDDL are defined in <xref target="RFC9052" format="default"/>.</t>
      <t>This however is NOT a normative or standard definition of CWT or JWT in CDDL.
The prose in CWT and JWT remain the normative definition.</t>
      <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
; This is replicated from draft-ietf-rats-uccs

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

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

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

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

; Be sure to have cddl 0.8.29 or higher for this to work
JC<J,C> = JSON-ONLY<J> / CBOR-ONLY<C>

]]></artwork>
      <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
; A JWT message is either a JWS or JWE in compact serialization form
; with the payload a Claims-Set. Compact serialization is the
; protected headers, payload and signature, each b64url encoded and
; separated by a ".". This CDDL simply matches top-level syntax of of
; a JWS or JWE since it is not possible to do more in CDDL.

JWT-Message = text .regexp "[A-Za-z0-9_=-]+\.[A-Za-z0-9_=-]+\.[A-Za-z0-9_=-]+"


; Note that the payload of a JWT is defined in claims-set.cddl. That 
; definition is common to CBOR and JSON.
]]></artwork>
      <artwork type="CDDL" name="" align="left" alt=""><![CDATA[
; This is some CDDL describing a CWT at the top level This is
; not normative. RFC 8392 is the normative definition of CWT.

CWT-Messages = CWT-Tagged-Message / CWT-Untagged-Message

; The payload of the COSE_Message is always a Claims-Set

; The contents of a CWT Tag must always be a COSE tag
CWT-Tagged-Message = #6.61(COSE_Tagged_Message)

; An untagged CWT may be a COSE tag or not
CWT-Untagged-Message = COSE_Messages
]]></artwork>
    </section>
    <section anchor="Claim_Characteristics" numbered="true" toc="default">
      <name>Claim Characteristics</name>
      <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" numbered="true" toc="default">
        <name>Interoperability and Relying Party Orientation</name>
        <t>It is a broad goal that EATs can be processed by Relying Parties in a general way regardless of the type, manufacturer or technology of the device from which they originate.
It is a goal that there be general-purpose verification implementations that can verify tokens for large numbers of use cases with special cases and configurations for different device types.
This is a goal of interoperability of the semantics of claims themselves, not just of the signing, encoding and serialization formats.</t>
        <t>This is a lofty goal and difficult to achieve broadly requiring careful definition of claims in a technology neutral way.
Sometimes it will be difficult to design a claim that can represent the semantics of data from very different device types.
However, the goal remains even when difficult.</t>
      </section>
      <section anchor="operating-system-and-technology-neutral" numbered="true" toc="default">
        <name>Operating System and Technology Neutral</name>
        <t>Claims should be defined such that they are not specific to an operating system.
They should be applicable to multiple large high-level operating systems from different vendors.
They should also be applicable to multiple small embedded operating systems from multiple vendors and everything in between.</t>
        <t>Claims should not be defined such that they are specific to a software environment or programming language.</t>
        <t>Claims should not be defined such that they are specific to a chip or particular hardware.
For example, they should not just be the contents of some HW status register as it is unlikely that the same HW status register with the same bits exists on a chip of a different manufacturer.</t>
        <t>The boot and debug state claims in this document are an example of a claim that has been defined in this neutral way.</t>
      </section>
      <section anchor="security-level-neutral" numbered="true" toc="default">
        <name>Security Level Neutral</name>
        <t>Many use cases will have EATs generated by some of the most secure hardware and software that exists.
Secure Elements and smart cards are examples of this.
However, EAT is intended for use in low-security use cases the same as high-security use case.
For example, an app on a mobile device may generate EATs on its own.</t>
        <t>Claims should be defined and registered on the basis of whether they are useful and interoperable, not based on security level.
In particular, there should be no exclusion of claims because they are just used only in low-security environments.</t>
      </section>
      <section anchor="reuse-of-extant-data-formats" numbered="true" toc="default">
        <name>Reuse of Extant Data Formats</name>
        <t>Where possible, claims should use already standardized data items, identifiers and formats.
This takes advantage of the expertise put into creating those formats and improves interoperability.</t>
        <t>Often extant claims will not be defined in an encoding or serialization format used by EAT.
It is preferred to define a CBOR and JSON 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" numbered="true" toc="default">
        <name>Proprietary Claims</name>
        <t>EAT allows the definition and use of proprietary claims.</t>
        <t>For example, a device manufacturer may generate a token with proprietary claims intended only for verification by a service offered by that device manufacturer.
This is a supported use case.</t>
        <t>In many cases proprietary claims will be the easiest and most obvious way to proceed, however for better interoperability, use of general standardized claims is preferred.</t>
      </section>
    </section>
    <section anchor="keyid" numbered="true" toc="default">
      <name>Endorsements and Verification Keys</name>
      <t>The verifier must possess the correct key when it performs the cryptographic part of an EAT verification (e.g., verifying the COSE/JOSE signature).
This section describes several ways to identify the verification key.
There is not one standard method.</t>
      <t>The verification key itself may be a public key, a symmetric key or something complicated in the case of a scheme like Direct Anonymous Attestation (DAA).</t>
      <t>RATS Architecture <xref target="RATS.Architecture" format="default"/> 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" numbered="true" toc="default">
        <name>Identification Methods</name>
        <t>Following is a list of possible methods of key identification. A specific attestation system may employ any one of these or one not listed here.</t>
        <t>The following assumes endorsements are X.509 certificates or equivalent and thus does not mention or define any identifier for endorsements in other formats. If such an endorsement format is created, new identifiers for them will also need to be created.</t>
        <section anchor="cosejws-key-id" numbered="true" toc="default">
          <name>COSE/JWS Key ID</name>
          <t>The COSE standard header parameter for Key ID (kid) may be used. See <xref target="RFC9052" format="default"/> and <xref target="RFC7515" format="default"/></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" numbered="true" toc="default">
          <name>JWS and COSE X.509 Header Parameters</name>
          <t>COSE X.509 <xref target="COSE.X509.Draft" format="default"/> and JSON Web Siganture <xref target="RFC7515" format="default"/> 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" numbered="true" toc="default">
          <name>CBOR Certificate COSE Header Parameters</name>
          <t>Compressed X.509 and CBOR Native certificates are defined by CBOR Certificates <xref target="CBOR.Cert.Draft" format="default"/>. 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" numbered="true" toc="default">
          <name>Claim-Based Key Identification</name>
          <t>For some attestation systems, a claim may be re-used as a key identifier. For example, the UEID uniquely identifies the entity and therefore can work well as a key identifier or endorsement identifier.</t>
          <t>This has the advantage that key identification requires no additional bytes in the EAT and makes the EAT smaller.</t>
          <t>This has the disadvantage that the unverified EAT must be substantially decoded to obtain the identifier since the identifier is in the COSE/JOSE payload, not in the headers.</t>
        </section>
      </section>
      <section anchor="other-considerations" numbered="true" toc="default">
        <name>Other Considerations</name>
        <t>In all cases there must be some way that the verification key is itself verified or determined to be trustworthy.
The key identification itself is never enough.
This will always be by some out-of-band mechanism that is not described here.
For example, the verifier may be configured with a root certificate or a master key by the verifier system administrator.</t>
        <t>Often an X.509 certificate or an endorsement carries more than just the verification key.
For example, an X.509 certificate might have key usage constraints and an endorsement might have reference values.
When this is the case, the key identifier must be either a protected header or in the payload such that it is cryptographically bound to the EAT.
This is in line with the requirements in section 6 on Key Identification in JSON Web Signature <xref target="RFC7515" format="default"/>.</t>
      </section>
    </section>
    <section anchor="changes-from-previous-drafts" numbered="true" toc="default">
      <name>Changes from Previous Drafts</name>
      <t>The following is a list of known changes since the immediately previous drafts.  This list is
non-authoritative.  It is meant to help reviewers see the significant
differences. A comprehensive history is available via the IETF Datatracker's record for this document.</t>
      <section anchor="from-draft-ietf-rats-eat-14" numbered="true" toc="default">
        <name>From draft-ietf-rats-eat-14</name>
        <ul spacing="normal">
          <li>Reference to SUIT manifest</li>
          <li>Clarifications about manifest extensibility</li>
          <li>Removed security level claim</li>
          <li>Changed capitalization throughout the document for various terms</li>
          <li>Eliminated use of DEB acronym for detached EAT bundles</li>
          <li>Replicate claim optionality text from CWT and JWT</li>
          <li>Several edits and clarifications for freshness and nonces</li>
          <li>Correct eat_nonce registration for JSON-encoded tokens</li>
          <li>Add security considerations for freshness</li>
          <li>Change/clarify the input to digest algorithm for detached claims sets</li>
          <li>Removed EAN-13 references and IANA registration</li>
          <li>Add section on Claim Trustworthiness to Security Considerations</li>
          <li>Removed section discussing cti/jti and other mention of cti/jti</li>
          <li>Some rework on section 3 including adding back in a <strong>non-normative</strong> reference to UCCS</li>
          <li>Improved wording in section 1.3</li>
          <li>Improvements to abstract</li>
          <li>Appendix C clarifications - say "message" not "protocol"</li>
          <li>Removed "transport security" section from security considerations</li>
          <li>Entirely remove section 4.4 that discussed including keys in claims</li>
          <li>Largely rewrite the first paragraphs in section 1, the introduction</li>
          <li>Mention $$Claims-Set-Claims in prose and require future claims be in CDDL</li>
          <li>Add Carl Wallace as an author</li>
        </ul>
      </section>
    </section>
    <section anchor="contributors" numbered="false" toc="default">
      <name>Contributors</name>
      <t>Many thanks to the following contributors to draft versions of this
document:</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAMSKN2MAA+y9a3Pc2HUo+h2/AkW5aki7uylSlEZSzozNITljTvQ6IpVJ
ju+UAnaDTVjdQAdAi2rL8m8/673XBtAUHSdV51ZFlXjYwMZ+rr3ej/F4nDRt
Vs7eZ4uqzJ+nbb3Ok2JV019Ne/jw4bOHh8k0a5+nTTtLklk1LbMlNJzV2XU7
LvL2elxnbTPOs3Z88DhJbufP07fHlxfpL1X9oSjn6U91tV4lD9JpVTZ52ayb
5+k3m7z5Bh4166tl0TRFVbabFfR5fnb5Y7Iqnidp2lZTbUc/ZvmqvYEnR/i7
qeq2zq+b0KLZLOMH02q5yqata7G+Cs/KCh/V19N81rSbRa7N2qLFH5c3eXpW
wo9Nety2OWxQC3NML6sPeZnunh1f7iXZ1VWdf3yewo8kq/MMJl+2eV3mbfLh
FvaqmJe4+Mx9Pr2qalj0LGthiMOHB4/GBw+TbN3eVPXzZJwWJUz/xSR9sS5n
V4tslsMMeatfZOs6L6d59KqqYaMv8um6xmnCjKt6k754cQKv8mVWLJ6ni/ni
D400aOn9BHZAR/ppkr6Ec99kSxvnp6IuZjdZ7V7QKP97nS3gy2V6mU9vympR
zYu8gfVOJ7ivcBI57Onjb799nL6s6vymWjd5eloXH3GaUxgc5pmV6WmRzyvc
9XwOu/E8PckWxXVVl0VGx7Uu2xpavrs4hp+rGwLGnd8dpE8fP02fPD5IvwVQ
3AmLW/IU//AfbTH5D5mfX97Pk/T1N6dVWc1v1mEnf87rfLmJ39x/iYffPkt/
zOoSzrFaz2/St1U2syW6F7SeGW7ou4Oj9NsXF9ECy6LNZ+k/A3TMqmVY6++O
jtKDw8eH6aMnjw6ePgsr/XM1o8luXerJJP0lWyyyaVjnSVYv3ENa4lsY9Y8w
i1l6UV23twC0I12gjDSFr/5Q57MbbNVIIxopgcvb1sXVumVY5VH+mJcf0h+K
+sNNtfiLDvNjna3Lm+o6r9OL80t4qjel90JGvYFeJlfSyx+aop1cW8sJgLqO
dnlTLbMm/bFqGrhPOtxxvUxfFEvc09BlS00n19z0D1mt+8U9vSzm63yR/gD7
A5czr6vGvZreZPDuLf63hk0o7aoBwOULADvbPsJwjQPJaf07xId/aLTpZJpZ
z28y2MDph/QdTLW+Lf78IYyZtTcFrOyHGudbz8L+ZmUJUHjZTHEzymJ+56Jv
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
ROnoY/L2Q/vyovlm+eTV5cej4enw6OrV26/fvB8P3z356oy++fDhn0++ORk9
ma1u4d/To6OPR0fXb38YfjM5hr9PLq6e//zsw8kR/P51+u7F29dv342eBRcX
nUn92/fnb7rrT6+fTEetbz+8fRW1v/sw/67+deeb5ZPl169Ho/f9px/eXay/
/+ZV9M3tzcuzH1r1q6dfv2h9N5g9+wTDXGRXR1H9+fXyq9c/v7ypf3+zqHd7
4+un8w+byTr+efjquB1k3ffDde/F+Pzb1j9vns4/nW3++WR2E7eDOPsidxLs
+j1LFptPGmi4V/QUONugj2zZhs1YCrc/3StFFWBBleLyx7dPm/F3w+Rl8vTr
b4Nvkmejp5fjJxP8++ztz2fBi+TpoAEPLSet5/TQs7enzemTb3+G/9+eJTdJ
9O60efYh/fTiw9tPL36eNF8ef9+GRubxV9DoVScYP7nJzq5Ogx9GZ92z5Cw7
W7wIvk/wd2j44sNNe3H6/PLZ8unbzavvrp+/+vnr4MnzD5e3T/8ZXr/77iJo
B93vvs5+vvnGWTeeVS49wj9FaBs+rXm8Gbi+JxMqLyCfV3gzT0bH50OtNgiP
qiDnTMdyqDkD6RQfVMchVWqWllkVmDcwYslJ4czgdHPGGxYDRbmmvkMSKCJl
KN7pHEYVkBHe6wb7ftDfl1N1+WgYNIOw++gOCA7/0Kk1fBlHWG1c7fm/fL77
xfhqiUV7F+UGJPoKBhA2j9rdZtgedo+ag17/+KQ5bA8wNKMZNlvNdrPT7DZ7
zT4P0Uk9lvcHR4Oj8LRz0u5hdNhpF9ob9YftoNM76vS6rdNRu3N00uuorjoY
dlqEg9AJer1ufxQGw9PTo367M+x0h0edTu8EXh/0VDUdNkFT7bUGQdhuDXuD
UbvX73TDY3i9G4QncFUfdcMw6OqFfXgUtlq9fu/RHatiV8eUhMTV+Mk/8N1k
5O2wcAgmV8aUqllfDVNSwcVM2TmuG5oydRpSW12acwLkS6+Tzsda1ByTM0GJ
4wINE1te1wFmsjBarGOq75ir2WUEguB0hy3P4ngq1Cs176RZzSvi4jgR1lJE
xVM1WmuiNHXRc551k5bkoHVprbb15SbTU0tAWSSDSq82vHMJQI+dbZtgbhir
bDJgk3FhgKbyS8pBBtyHKWxfUSTR1vobU728+AoFNo5qs1ijRuOouVXMparR
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
gvMkQ58je/Sl2oRxzHvKix573v8F6iYGqJZnAgA=

-->

</rfc>
