<?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-rfc version 1.7.29 (Ruby 3.2.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-fossati-tls-exported-attestation-02" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.29.0 -->
  <front>
    <title abbrev="Application Layer Attestation">Remote Attestation with Exported Authenticators</title>
    <seriesInfo name="Internet-Draft" value="draft-fossati-tls-exported-attestation-02"/>
    <author initials="T." surname="Fossati" fullname="Thomas Fossati">
      <organization>Linaro</organization>
      <address>
        <email>thomas.fossati@linaro.org</email>
      </address>
    </author>
    <author initials="M. U." surname="Sardar" fullname="Muhammad Usama Sardar">
      <organization>TU Dresden</organization>
      <address>
        <email>muhammad_usama.sardar@tu-dresden.de</email>
      </address>
    </author>
    <author fullname="Tirumaleswar Reddy">
      <organization>Nokia</organization>
      <address>
        <postal>
          <city>Bangalore</city>
          <region>Karnataka</region>
          <country>India</country>
        </postal>
        <email>k.tirumaleswar_reddy@nokia.com</email>
      </address>
    </author>
    <author initials="Y." surname="Sheffer" fullname="Yaron Sheffer">
      <organization>Intuit</organization>
      <address>
        <email>yaronf.ietf@gmail.com</email>
      </address>
    </author>
    <author initials="H." surname="Tschofenig" fullname="Hannes Tschofenig">
      <organization abbrev="H-BRS">University of Applied Sciences Bonn-Rhein-Sieg</organization>
      <address>
        <postal>
          <country>Germany</country>
        </postal>
        <email>Hannes.Tschofenig@gmx.net</email>
      </address>
    </author>
    <author initials="I." surname="Mihalcea" fullname="Ionut Mihalcea">
      <organization>Arm Limited</organization>
      <address>
        <email>ionut.mihalcea@arm.com</email>
      </address>
    </author>
    <date year="2025" month="July" day="03"/>
    <area>Security</area>
    <workgroup>TLS</workgroup>
    <keyword>Attestation</keyword>
    <keyword>TLS</keyword>
    <keyword>Key Attestation</keyword>
    <keyword>Exported Authenticators</keyword>
    <abstract>
      <?line 78?>

<t>This specification defines a method for two parties in a communication interaction to exchange Evidence and Attestation Results using exported authenticators, as defined in RFC 9261. Additionally, it introduces the <tt>cmw_attestation</tt> extension, which allows attestation credentials to be included directly in the Certificate message sent during the Exported Authenticator-based post-handshake authentication. The approach supports both the passport and background check models from the RATS architecture while ensuring that attestation remains bound to the underlying communication channel.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://tls-attestation.github.io/exported-attestation/draft-fossati-tls-exported-attestation.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-fossati-tls-exported-attestation/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        tls Working Group mailing list (<eref target="mailto:tls@ietf.org"/>),
        which is archived at <eref target="https://datatracker.ietf.org/wg/tls/about/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/tls/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/tls-attestation/exported-attestation"/>.</t>
    </note>
  </front>
  <middle>
    <?line 83?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>There is a growing need to demonstrate to a remote party that cryptographic keys are stored in a secure element, the device is in a known good state, secure boot has been enabled, and that low-level software and firmware have not been tampered with. Remote attestation provides this capability.</t>
      <t>More technically, an Attester produces a signed collection of Claims that constitute Evidence about its running environment(s). A Relying Party may consult an Attestation Result produced by a Verifier that has appraised the Evidence to make policy decisions regarding the trustworthiness of the Target Environment being assessed. This is, in essence, what RFC 9334 <xref target="RFC9334"/> defines.</t>
      <t>At the time of writing, several standard and proprietary remote attestation technologies are in use. This specification aims to remain as technology-agnostic as possible concerning implemented remote attestation technologies. To streamline attestation in TLS, this document introduces the cmw_attestation extension, which allows attestation credentials to be conveyed directly in the Certificate message during the Exported Authenticator-based post-handshake authentication. This eliminates reliance on real-time certificate issuance from a Certificate Authority (CA), reducing handshake delays while ensuring attestation evidence remains bound to the TLS session. The extension supports both the passport and background check models from the RATS architecture, enhancing flexibility for different deployment scenarios.</t>
      <t>This document builds upon three foundational specifications:</t>
      <ul spacing="normal">
        <li>
          <t>RATS (Remote Attestation Procedures) Architecture <xref target="RFC9334"/>: RFC 9334 defines how remote attestation systems establish trust between parties by exchanging Evidence and Attestation Results. These interactions can follow different models, such as the passport or the background check model, depending on the order of data flow in the system.</t>
        </li>
        <li>
          <t>TLS Exported Authenticators <xref target="RFC9261"/>: RFC 9261 offers bi-directional, post-handshake authentication. Once a TLS connection is established, both peers can send an authenticator request message at any point after the handshake. This message from the server and the client uses the CertificateRequest and the ClientCertificateRequest messages, respectively. The peer receiving the authenticator request message can respond with an Authenticator consisting of Certificate, CertificateVerify, and Finished messages. These messages can then be validated by the other peer.</t>
        </li>
        <li>
          <t>RATS Conceptual Messages Wrapper (CMW) <xref target="I-D.ietf-rats-msg-wrap"/>: CMW provides a structured encapsulation of Evidence and Attestation Result payloads, abstracting the underlying attestation technology.</t>
        </li>
      </ul>
      <t>This specification introduces the cmw_attestation extension, enabling attestation evidence to be included directly in the Certificate message during the Exported Authenticator-based post-handshake authentication defined in <xref target="RFC9261"/>. This approach enhances flexibility and efficiency, supporting key attestation mechanisms without being restricted to X.509 certificate encoding formats.</t>
    </section>
    <section anchor="terminology">
      <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"/> <xref target="RFC8174"/> when, and only when, they appear in all capitals as shown here.</t>
      <t>The reader is assumed to be familiar with the vocabulary and concepts defined in RFC 9334 and RFC 9261.</t>
      <t>"Remote attestation credentials", or "attestation credentials", is used to refer to both attestation evidence and attestation results, when no distinction needs to be made between them.</t>
    </section>
    <section anchor="cmwattestation-tls-certificate-message-extension">
      <name>cmw_attestation TLS Certificate Message Extension</name>
      <t>This document introduces a new TLS certificate message extension called cmw_attestation.
This extension allows Attestation Evidence or Attestation Results to be included in the extensions field of the end-entity certificate in the TLS Certificate message.</t>
      <t>As defined in <xref section="4.4.2" sectionFormat="of" target="RFC8446"/>, the TLS Certificate message consists of a certificate_list, which is a sequence of CertificateEntry structures. Each CertificateEntry contains a certificate and a set of associated extensions. The cmw_attestation extension MUST appear only in the first CertificateEntry of the Certificate message and applies exclusively to the end-entity certificate. It MUST NOT be included in entries corresponding to intermediate or trust anchor certificates. This design ensures that attestation information is tightly bound to the entity being authenticated.</t>
      <t>The cmw_attestation extension is only included in the Certificate message during Exported Authenticator-based post-handshake authentication. This ensures that the attestation credentials are conveyed within the Certificate message, eliminating the need for modifications to the X.509 certificate structure.</t>
      <artwork><![CDATA[
struct {
    opaque cmw_data<1..2^16-1>;
} CMWAttestation;
]]></artwork>
      <t>cmw_data: Encapsulates the attestation credentials in CMW format <xref target="I-D.ietf-rats-msg-wrap"/>. The cmw_data field is encoded using CBOR or JSON.</t>
      <t>This approach eliminates the need for real-time certificate issuance from a Certificate Authority (CA) and minimizes handshake delays. Typically, CAs require several seconds to minutes to issue a certificate due to verification steps such as validating subject identity, signing the certificate, and distributing it. These delays introduce latency into the TLS handshake, making real-time certificate generation impractical. The cmw_attestation extension circumvents this issue by embedding attestation data within the Certificate message itself, removing reliance on external certificate issuance processes.</t>
      <section anchor="negotiation-of-cmwattestation-extension">
        <name>Negotiation of cmw_attestation Extension</name>
        <t>Clients and servers use the TLS flags extension defined in <xref target="I-D.ietf-tls-tlsflags"/> to indicate support for the functionality defined in this document. We refer to the previously defined "cmw_attestation" extension,
and the corresponding flag is called the "CMW_Attestation" flag.</t>
        <t>The "CMW_Attestation" flag proposed by the client in the ClientHello MUST be acknowledged in the EncryptedExtensions if the server also  supports the functionality defined in this document and is configured to use it.</t>
        <t>If the "CMW_Attestation" flag is not set, servers ignore any of the functionality specified in this document, and attestation credentials cannot be conveyed using "Exported TLS Authenticators".</t>
      </section>
      <section anchor="usage-in-post-handshake-authentication">
        <name>Usage in Post-Handshake Authentication</name>
        <t>The <tt>cmw_attestation</tt> extension is designed to be used exclusively in post-handshake authentication as defined in <xref target="RFC9261"/>. It allows attestation credentials to be transmitted in the authenticator (Certificate) message only in response to an authenticator request. This ensures that attestation credentials are provided on demand rather than being included in the initial TLS handshake.</t>
        <t>To maintain a cryptographic binding between the attestation evidence and the authentication request, the <tt>cmw_attestation</tt> extension MUST be associated with the certificate_request_context of the corresponding CertificateRequest or ClientCertificateRequest message. This binding ensures that:</t>
        <ul spacing="normal">
          <li>
            <t>The attestation evidence is specific to the authentication event and cannot be replayed across different TLS sessions.</t>
          </li>
          <li>
            <t>The attestation evidence remains tied to the cryptographic context of the TLS session.</t>
          </li>
        </ul>
      </section>
      <section anchor="ensuring-compatibility-with-x509-certificate-validation">
        <name>Ensuring Compatibility with X.509 Certificate Validation</name>
        <t>The <tt>cmw_attestation</tt> extension does not modify or replace X.509 certificate validation mechanisms. It serves as an additional source of authentication data rather than altering the trust model of PKI-based authentication. Specifically:</t>
        <ul spacing="normal">
          <li>
            <t>Certificate validation (e.g., signature verification, revocation checks) MUST still be performed according to TLS <xref target="RFC8446"/> and PKIX <xref target="RFC5280"/>.</t>
          </li>
          <li>
            <t>The attestation credentials carried in <tt>cmw_attestation</tt> MUST NOT be used as a substitute for X.509 certificate validation but can be used alongside standard certificate validation for additional security assurances.</t>
          </li>
          <li>
            <t>Implementations MAY reject connections where the certificate is valid but the attestation credentials is missing or does not meet security policy.</t>
          </li>
        </ul>
      </section>
      <section anchor="applicability-to-client-and-server-authentication">
        <name>Applicability to Client and Server Authentication</name>
        <t>The <tt>cmw_attestation</tt> extension is applicable to both client and server authentication in Exported Authenticator-based post-handshake authentication.</t>
        <t>In TLS, one party acts as the relying party, and the other party acts as the attester. Either the client or the server may fulfill these roles depending on the authentication direction.</t>
        <t>The attester may respond with either:</t>
        <ul spacing="normal">
          <li>
            <t>Attestation Evidence (Background Check Model):
            </t>
            <ul spacing="normal">
              <li>
                <t>The attester generates Evidence and includes it in the <tt>cmw_attestation</tt> extension.</t>
              </li>
              <li>
                <t>The relying party forwards the Evidence to an external Verifier for evaluation and waits for an Attestation Result.</t>
              </li>
              <li>
                <t>The relying party grants or denies access, or continues or terminates the TLS session, based on the Verifier's Attestation Result.</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Attestation Result (Passport Model):
            </t>
            <ul spacing="normal">
              <li>
                <t>The attester sends Evidence to a Verifier beforehand.</t>
              </li>
              <li>
                <t>The Verifier issues an Attestation Result to the attester.</t>
              </li>
              <li>
                <t>The attester includes the Attestation Result in the <tt>cmw_attestation</tt> extension and sends it to the relying party.</t>
              </li>
              <li>
                <t>The relying party validates the Attestation Result directly without needing to contact an external Verifier.</t>
              </li>
            </ul>
          </li>
        </ul>
        <t>By allowing both Evidence and Attestation Results to be conveyed within <tt>cmw_attestation</tt>, this mechanism supports flexible attestation workflows depending on the chosen trust model.</t>
      </section>
    </section>
    <section anchor="architecture">
      <name>Architecture</name>
      <t>The <tt>cmw_attestation</tt> extension enables attestation credentials to be included in the Certificate message during Exported Authenticator-based post-handshake authentication, ensuring that attestation remains bound to the TLS session.</t>
      <t>However, applications using this mechanism still need to negotiate the encoding format (e.g., JOSE or COSE) and specify how attestation credentials are processed. This negotiation can be done via application-layer signaling or predefined profiles. Future specifications may define mechanisms to streamline this negotiation.</t>
      <t>Upon receipt of a Certificate message containing the <tt>cmw_attestation</tt> extension, an endpoint MUST take the following steps to validate the attestation credentials:</t>
      <ul spacing="normal">
        <li>
          <t>Background Check Model:
          </t>
          <ul spacing="normal">
            <li>
              <t>Verify Integrity and Authenticity: The attestation evidence must be cryptographically verified against a known trust anchor, typically provided by the hardware manufacturer.</t>
            </li>
            <li>
              <t>Ensure Certificate Binding and Freshness: The attestation evidence must be explicitly associated with the <tt>certificate_request_context</tt> in the authenticator request to ensure relevance, freshness, and protection against replay.</t>
            </li>
            <li>
              <t>Evaluate Security Policy Compliance: The attestation evidence must be evaluated against the relying party's security policies to determine if the attesting device and the private key storage meet the required criteria.</t>
            </li>
          </ul>
        </li>
        <li>
          <t>Passport Model:
          </t>
          <ul spacing="normal">
            <li>
              <t>Verify the Attestation Result: The relying party MUST check that the Attestation Result is correctly signed by the issuing authority and that it meets the relying party’s security requirements.</t>
            </li>
          </ul>
        </li>
      </ul>
      <t>By integrating <tt>cmw_attestation</tt> directly into the Certificate message during Exported Authenticator-based post-handshake authentication, this approach reduces latency and complexity while maintaining strong security guarantees.</t>
      <t>In the following examples, the server possesses an identity certificate, while the client is not authenticated during the initial TLS exchange.</t>
      <t><xref target="fig-passport"/> shows the passport model while <xref target="fig-background"/> illustrates the background-check model.</t>
      <figure anchor="fig-passport">
        <name>Passport Model with Client as Attester</name>
        <artset>
          <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="416" width="472" viewBox="0 0 472 416" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
              <path d="M 24,48 L 24,400" fill="none" stroke="black"/>
              <path d="M 224,48 L 224,208" fill="none" stroke="black"/>
              <path d="M 224,280 L 224,400" fill="none" stroke="black"/>
              <path d="M 432,48 L 432,400" fill="none" stroke="black"/>
              <path d="M 32,96 L 216,96" fill="none" stroke="black"/>
              <path d="M 32,192 L 216,192" fill="none" stroke="black"/>
              <path d="M 32,240 L 424,240" fill="none" stroke="black"/>
              <path d="M 32,272 L 424,272" fill="none" stroke="black"/>
              <path d="M 32,368 L 216,368" fill="none" stroke="black"/>
              <path d="M 232,400 L 424,400" fill="none" stroke="black"/>
              <polygon class="arrowhead" points="432,240 420,234.4 420,245.6" fill="black" transform="rotate(0,424,240)"/>
              <polygon class="arrowhead" points="240,400 228,394.4 228,405.6" fill="black" transform="rotate(180,232,400)"/>
              <polygon class="arrowhead" points="224,368 212,362.4 212,373.6" fill="black" transform="rotate(0,216,368)"/>
              <polygon class="arrowhead" points="224,96 212,90.4 212,101.6" fill="black" transform="rotate(0,216,96)"/>
              <polygon class="arrowhead" points="40,272 28,266.4 28,277.6" fill="black" transform="rotate(180,32,272)"/>
              <polygon class="arrowhead" points="40,192 28,186.4 28,197.6" fill="black" transform="rotate(180,32,192)"/>
              <polygon class="arrowhead" points="40,96 28,90.4 28,101.6" fill="black" transform="rotate(180,32,96)"/>
              <g class="text">
                <text x="28" y="36">Client</text>
                <text x="228" y="36">Server</text>
                <text x="436" y="36">Verifier</text>
                <text x="72" y="68">Regular</text>
                <text x="120" y="68">TLS</text>
                <text x="176" y="68">Handshake</text>
                <text x="108" y="84">(Server-only</text>
                <text x="184" y="84">auth)</text>
                <text x="56" y="132">...</text>
                <text x="92" y="132">time</text>
                <text x="140" y="132">passes</text>
                <text x="184" y="132">...</text>
                <text x="88" y="164">Authenticator</text>
                <text x="176" y="164">Request</text>
                <text x="124" y="180">(ClientCertificateReq)</text>
                <text x="192" y="228">Sends</text>
                <text x="252" y="228">Evidence</text>
                <text x="180" y="260">Gets</text>
                <text x="248" y="260">Attestation</text>
                <text x="324" y="260">result</text>
                <text x="68" y="292">Exported</text>
                <text x="164" y="292">Authenticator(</text>
                <text x="80" y="308">Certificate</text>
                <text x="148" y="308">with</text>
                <text x="100" y="324">cmw_attestation,</text>
                <text x="108" y="340">CertificateVerify,</text>
                <text x="72" y="356">Finished)</text>
                <text x="308" y="388">Finished</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art"><![CDATA[
Client                   Server                   Verifier
  |                        |                         |
  |  Regular TLS Handshake |                         |
  |    (Server-only auth)  |                         |
  |<---------------------->|                         |
  |                        |                         |
  |  ... time passes ...   |                         |
  |                        |                         |
  | Authenticator Request  |                         |
  | (ClientCertificateReq) |                         |
  |<-----------------------|                         |
  |                        |                         |
  |                  Sends Evidence                  |
  |------------------------------------------------->|
  |                 Gets Attestation result          |
  |<-------------------------------------------------|
  | Exported Authenticator(|                         |
  | Certificate with       |                         |
  | cmw_attestation,       |                         |
  | CertificateVerify,     |                         |
  | Finished)              |                         |
  |----------------------->|                         |
  |                        |      Finished           |
  |                        |<------------------------|
]]></artwork>
        </artset>
      </figure>
      <t><xref target="fig-background"/> shows an example using the background-check model.</t>
      <figure anchor="fig-background">
        <name>Background Check Model with a Separate Client-Side Attester</name>
        <artset>
          <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="448" width="568" viewBox="0 0 568 448" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
              <path d="M 24,48 L 24,432" fill="none" stroke="black"/>
              <path d="M 184,112 L 184,128" fill="none" stroke="black"/>
              <path d="M 184,168 L 184,256" fill="none" stroke="black"/>
              <path d="M 184,344 L 184,432" fill="none" stroke="black"/>
              <path d="M 384,48 L 384,432" fill="none" stroke="black"/>
              <path d="M 536,48 L 536,432" fill="none" stroke="black"/>
              <path d="M 32,80 L 376,80" fill="none" stroke="black"/>
              <path d="M 32,160 L 376,160" fill="none" stroke="black"/>
              <path d="M 32,208 L 176,208" fill="none" stroke="black"/>
              <path d="M 32,256 L 176,256" fill="none" stroke="black"/>
              <path d="M 32,336 L 376,336" fill="none" stroke="black"/>
              <path d="M 392,368 L 528,368" fill="none" stroke="black"/>
              <path d="M 392,416 L 528,416" fill="none" stroke="black"/>
              <polygon class="arrowhead" points="536,368 524,362.4 524,373.6" fill="black" transform="rotate(0,528,368)"/>
              <polygon class="arrowhead" points="400,416 388,410.4 388,421.6" fill="black" transform="rotate(180,392,416)"/>
              <polygon class="arrowhead" points="384,336 372,330.4 372,341.6" fill="black" transform="rotate(0,376,336)"/>
              <polygon class="arrowhead" points="384,80 372,74.4 372,85.6" fill="black" transform="rotate(0,376,80)"/>
              <polygon class="arrowhead" points="184,208 172,202.4 172,213.6" fill="black" transform="rotate(0,176,208)"/>
              <polygon class="arrowhead" points="40,256 28,250.4 28,261.6" fill="black" transform="rotate(180,32,256)"/>
              <polygon class="arrowhead" points="40,160 28,154.4 28,165.6" fill="black" transform="rotate(180,32,160)"/>
              <polygon class="arrowhead" points="40,80 28,74.4 28,85.6" fill="black" transform="rotate(180,32,80)"/>
              <g class="text">
                <text x="28" y="36">Client</text>
                <text x="196" y="36">Attester</text>
                <text x="388" y="36">Server</text>
                <text x="532" y="36">Verifier</text>
                <text x="184" y="52">|</text>
                <text x="72" y="68">Regular</text>
                <text x="120" y="68">TLS</text>
                <text x="176" y="68">Handshake</text>
                <text x="268" y="68">(Server-only</text>
                <text x="344" y="68">auth)</text>
                <text x="184" y="100">|</text>
                <text x="64" y="116">...</text>
                <text x="100" y="116">time</text>
                <text x="148" y="116">passes</text>
                <text x="196" y="116">..</text>
                <text x="88" y="148">Authenticator</text>
                <text x="176" y="148">Request</text>
                <text x="272" y="148">(ClientCertReq)</text>
                <text x="64" y="196">Request</text>
                <text x="132" y="196">Evidence</text>
                <text x="48" y="228">Key</text>
                <text x="112" y="228">Attestation</text>
                <text x="44" y="244">as</text>
                <text x="92" y="244">Evidence</text>
                <text x="68" y="276">Exported</text>
                <text x="208" y="276">Authenticator(Certificate</text>
                <text x="332" y="276">with</text>
                <text x="96" y="292">cmw_attestation</text>
                <text x="108" y="308">CertificateVerify,</text>
                <text x="72" y="324">Finished)</text>
                <text x="412" y="356">Send</text>
                <text x="468" y="356">Evidence</text>
                <text x="440" y="388">Attestation</text>
                <text x="420" y="404">Result</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art"><![CDATA[
Client              Attester                 Server           Verifier
  |                   |                        |                  |
  |  Regular TLS Handshake (Server-only auth)  |                  |
  |<------------------------------------------>|                  |
  |                   |                        |                  |
  |   ... time passes ...                      |                  |
  |                   |                        |                  |
  | Authenticator Request (ClientCertReq)      |                  |
  |<-------------------------------------------|                  |
  |                   |                        |                  |
  | Request Evidence  |                        |                  |
  |------------------>|                        |                  |
  | Key Attestation   |                        |                  |
  | as Evidence       |                        |                  |
  |<------------------|                        |                  |
  | Exported Authenticator(Certificate with    |                  |
  | cmw_attestation                            |                  |
  | CertificateVerify,                         |                  |
  | Finished)                                  |                  |
  |------------------------------------------->|                  |
  |                   |                        | Send Evidence    |
  |                   |                        |----------------->|
  |                   |                        | Attestation      |
  |                   |                        | Result           |
  |                   |                        |<-----------------|
  |                   |                        |                  |
]]></artwork>
        </artset>
      </figure>
      <section anchor="api-requirements-for-attestation-support">
        <name>API Requirements for Attestation Support</name>
        <t>To enable attestation workflows, implementations of the Exported Authenticator API MUST support the following:</t>
        <ol spacing="normal" type="1"><li>
            <t>Authenticator Generation
            </t>
            <ul spacing="normal">
              <li>
                <t>The API MUST support the inclusion of attestation credentials within the Certificate message provided as input.</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Context Retrieval
            </t>
            <ul spacing="normal">
              <li>
                <t>The certificate_request_context MUST be provided in all cases to ensure proper validation of attestation evidence.</t>
              </li>
              <li>
                <t>The receiving endpoint MUST use the "get context" API to retrieve the <tt>certificate_request_context</tt> associated with the exported authenticator as attestation-based authentication requires strict enforcement of the request context. This ensures that the freshness of attestation evidence can be verified.</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Authenticator Validation
            </t>
            <ul spacing="normal">
              <li>
                <t>The API MUST verify that the attestation evidence within the Certificate message is cryptographically valid and bound to the certificate_request_context.</t>
              </li>
            </ul>
          </li>
        </ol>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>This document inherits the security considerations of RFC 9261 and RFC 9334. The integrity of the exported authenticators must be guaranteed, and any failure in validating Evidence SHOULD be treated as a fatal error in the communication channel. Additionally, in order to benefit from remote attestation, Evidence MUST be protected using dedicated attestation keys chaining back to a trust anchor. This trust anchor will typically be provided by the hardware manufacturer.</t>
      <t>This specification assumes that the Hardware Security Module (HSM) or Trusted Execution Environment (TEE) is responsible for generating the key pair and producing either attestation evidence or attestation results, which is included in the Certificate Signing Request (CSR) as defined in <xref target="I-D.ietf-lamps-csr-attestation"/>. This attestation enables the CA to verify that the private key is securely stored and that the platform meets the required security standards before issuing a certificate.</t>
      <section anchor="using-the-tls-connection">
        <name>Using the TLS Connection</name>
        <t>Remote attestation in this document occurs within the context of a TLS handshake, and the TLS connection
remains valid after this process. Care must be taken when handling this TLS connection, as both the client
and server must agree that remote attestation was successfully completed before exchanging data with the
attested party.</t>
        <t>Session resumption presents special challenges since it happens at the TLS level, which is not aware of the
application-level Authenticator. The application (or the modified TLS library) must ensure that a resumed
session has already completed remote attestation before the session can be used normally, and race conditions are possible.</t>
      </section>
      <section anchor="evidence-freshness">
        <name>Evidence Freshness</name>
        <t>The attestation evidence carried in cmw_attestation does not require an additional freshness mechanism, such as a nonce or timestamp, since freshness is inherently provided by the certificate_request_context in the authenticator request.</t>
        <t>The evidence presented in this protocol is valid only at the time it is generated and presented. To ensure that the attested peer remains in a secure state, remote attestation may be re-initiated periodically. In the current protocol, this can be achieved by initiating a new Exported Authenticator-based post-handshake authentication exchange, which will generate a new certificate_request_context to maintain freshness.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="tls-extension-type-registration">
        <name>TLS Extension Type Registration</name>
        <t>IANA is requested to register the following new extension type in the "TLS ExtensionType Values" registry:</t>
        <table>
          <thead>
            <tr>
              <th align="left">Value</th>
              <th align="left">Extension Name</th>
              <th align="left">TLS 1.3</th>
              <th align="left">DTLS 1.3</th>
              <th align="left">Recommended</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">TBD</td>
              <td align="left">cmw_attestation</td>
              <td align="left">CT</td>
              <td align="left">Y</td>
              <td align="left">Yes</td>
              <td align="left">This Document</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="tls-flags-extension-registry">
        <name>TLS Flags Extension Registry</name>
        <t>IANA is requested to add the following entry to the "TLS Flags" extension registry
<xref target="TLS-Ext-Registry"/>:</t>
        <ul spacing="normal">
          <li>
            <t>Value: TBD1</t>
          </li>
          <li>
            <t>Flag Name: CMW_Attestation</t>
          </li>
          <li>
            <t>Messages: CH, EE</t>
          </li>
          <li>
            <t>Recommended: Y</t>
          </li>
          <li>
            <t>Reference: [This document]</t>
          </li>
        </ul>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC9334">
          <front>
            <title>Remote ATtestation procedureS (RATS) Architecture</title>
            <author fullname="H. Birkholz" initials="H." surname="Birkholz"/>
            <author fullname="D. Thaler" initials="D." surname="Thaler"/>
            <author fullname="M. Richardson" initials="M." surname="Richardson"/>
            <author fullname="N. Smith" initials="N." surname="Smith"/>
            <author fullname="W. Pan" initials="W." surname="Pan"/>
            <date month="January" year="2023"/>
            <abstract>
              <t>In network protocol exchanges, it is often useful for one end of a communication to know whether the other end is in an intended operating state. This document provides an architectural overview of the entities involved that make such tests possible through the process of generating, conveying, and evaluating evidentiary Claims. It provides a model that is neutral toward processor architectures, the content of Claims, and protocols.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9334"/>
          <seriesInfo name="DOI" value="10.17487/RFC9334"/>
        </reference>
        <reference anchor="RFC9261">
          <front>
            <title>Exported Authenticators in TLS</title>
            <author fullname="N. Sullivan" initials="N." surname="Sullivan"/>
            <date month="July" year="2022"/>
            <abstract>
              <t>This document describes a mechanism that builds on Transport Layer Security (TLS) or Datagram Transport Layer Security (DTLS) and enables peers to provide proof of ownership of an identity, such as an X.509 certificate. This proof can be exported by one peer, transmitted out of band to the other peer, and verified by the receiving peer.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9261"/>
          <seriesInfo name="DOI" value="10.17487/RFC9261"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="I-D.ietf-rats-msg-wrap">
          <front>
            <title>RATS Conceptual Messages Wrapper (CMW)</title>
            <author fullname="Henk Birkholz" initials="H." surname="Birkholz">
              <organization>Fraunhofer SIT</organization>
            </author>
            <author fullname="Ned Smith" initials="N." surname="Smith">
              <organization>Intel</organization>
            </author>
            <author fullname="Thomas Fossati" initials="T." surname="Fossati">
              <organization>Linaro</organization>
            </author>
            <author fullname="Hannes Tschofenig" initials="H." surname="Tschofenig">
              <organization>University of Applied Sciences Bonn-Rhein-Sieg</organization>
            </author>
            <author fullname="Dionna Glaze" initials="D." surname="Glaze">
              <organization>Google LLC</organization>
            </author>
            <date day="30" month="May" year="2025"/>
            <abstract>
              <t>   Section 8 of RFC 9334 defines "conceptual messages" as abstract
   messages exchanged by RATS roles such as Evidence, Attestation
   Results, Endorsements, and Reference Values.  This document defines a
   "conceptual message" wrapper (CMW) format for any RATS conceptual
   message and describes a collection type that aggregates one or more
   CMWs into a single message.

   In addition, this document specifies a corresponding CBOR tag, JSON
   Web Tokens (JWT) and CBOR Web Tokens (CWT) claims, and an X.509
   extension.  These mechanisms enable the embedding of enveloped
   conceptual messages into CBOR-based protocols, web APIs, and PKIX
   formats and protocols.  Moreover, a Media Type and a CoAP Content-
   Format are defined for transporting CMWs over HTTP, MIME, CoAP, and
   other Internet protocols.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-rats-msg-wrap-15"/>
        </reference>
        <reference anchor="I-D.ietf-tls-tlsflags">
          <front>
            <title>A Flags Extension for TLS 1.3</title>
            <author fullname="Yoav Nir" initials="Y." surname="Nir">
              <organization>Dell Technologies</organization>
            </author>
            <date day="15" month="March" year="2025"/>
            <abstract>
              <t>   A number of extensions are proposed in the TLS working group that
   carry no interesting information except the 1-bit indication that a
   certain optional feature is supported.  Such extensions take 4 octets
   each.  This document defines a flags extension that can provide such
   indications at an average marginal cost of 1 bit each.  More
   precisely, it provides as many flag extensions as needed at 4 + the
   order of the last set bit divided by 8.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-tls-tlsflags-15"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC5280">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
            <author fullname="D. Cooper" initials="D." surname="Cooper"/>
            <author fullname="S. Santesson" initials="S." surname="Santesson"/>
            <author fullname="S. Farrell" initials="S." surname="Farrell"/>
            <author fullname="S. Boeyen" initials="S." surname="Boeyen"/>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <author fullname="W. Polk" initials="W." surname="Polk"/>
            <date month="May" year="2008"/>
            <abstract>
              <t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet. An overview of this approach and model is provided as an introduction. The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms. Standard certificate extensions are described and two Internet-specific extensions are defined. A set of required certificate extensions is specified. The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions. An algorithm for X.509 certification path validation is described. An ASN.1 module and examples are provided in the appendices. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5280"/>
          <seriesInfo name="DOI" value="10.17487/RFC5280"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="I-D.ietf-lamps-csr-attestation">
          <front>
            <title>Use of Remote Attestation with Certification Signing Requests</title>
            <author fullname="Mike Ounsworth" initials="M." surname="Ounsworth">
              <organization>Entrust Limited</organization>
            </author>
            <author fullname="Hannes Tschofenig" initials="H." surname="Tschofenig">
              <organization>Siemens</organization>
            </author>
            <author fullname="Henk Birkholz" initials="H." surname="Birkholz">
              <organization>Fraunhofer SIT</organization>
            </author>
            <author fullname="Monty Wiseman" initials="M." surname="Wiseman">
         </author>
            <author fullname="Ned Smith" initials="N." surname="Smith">
              <organization>Intel Corporation</organization>
            </author>
            <date day="25" month="May" year="2025"/>
            <abstract>
              <t>   A PKI end entity requesting a certificate from a Certification
   Authority (CA) may wish to offer trustworthy claims about the
   platform generating the certification request and the environment
   associated with the corresponding private key, such as whether the
   private key resides on a hardware security module.

   This specification defines an attribute and an extension that allow
   for conveyance of Evidence and Attestation Results in Certificate
   Signing Requests (CSRs), such as PKCS#10 or Certificate Request
   Message Format (CRMF) payloads.  This provides an elegant and
   automatable mechanism for transporting Evidence to a Certification
   Authority.

   Including Evidence and Attestation Results along with a CSR can help
   to improve the assessment of the security posture for the private
   key, and can help the Certification Authority to assess whether it
   satisfies the requested certificate profile.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-lamps-csr-attestation-19"/>
        </reference>
        <reference anchor="TLS-Ext-Registry" target="https://www.iana.org/assignments/tls-extensiontype-values">
          <front>
            <title>Transport Layer Security (TLS) Extensions</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date year="2023" month="November"/>
          </front>
        </reference>
      </references>
    </references>
    <?line 320?>

<section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>We would like to thank Chris Patton for his proposal to explore RFC 9261 for attested TLS.
We would also like to thank Paul Howard and Yogesh Deshpande for their input.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
PMd/JX4rf3ZIVz5Y/n+cJbaASFQAAA==

-->

</rfc>
