<?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.4.4) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-schwenkschuster-wimse-credential-exchange-02" category="info" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.29.0 -->
  <front>
    <title abbrev="WIMSE Credential Exchange">WIMSE Credential Exchange</title>
    <seriesInfo name="Internet-Draft" value="draft-schwenkschuster-wimse-credential-exchange-02"/>
    <author fullname="Arndt Schwenkschuster" role="editor">
      <organization>SPIRL</organization>
      <address>
        <email>arndts.ietf@gmail.com</email>
      </address>
    </author>
    <date year="2025" month="July" day="03"/>
    <area>AREA</area>
    <workgroup>Workload Identity in Multi System Environments</workgroup>
    <keyword>workload</keyword>
    <keyword>identity</keyword>
    <keyword>credential</keyword>
    <keyword>exchange</keyword>
    <abstract>
      <?line 62?>

<t>WIMSE defines Workload Identity and its representation through credentials. Typically, a credential is provisioned to the workload, allowing it to represent itself. The credential format is usually chosen by the platform. Common formats are JSON Web Tokens or X.509 certificates. However, workloads often encounter situations where a different identity or credential is required.</t>
      <t>This document describes various situations where a workload requires another credential. It also outlines different ways this can be acchieved and compares them.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://ietf-wg-wimse.github.io/draft-ietf-wimse-s2s-protocol/draft-ietf-wimse-s2s-protocol.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-schwenkschuster-wimse-credential-exchange/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Workload Identity in Multi System Environments Working Group mailing list (<eref target="mailto:wimse@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/wimse/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/wimse/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/arndt-s"/>.</t>
    </note>
  </front>
  <middle>
    <?line 68?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Workloads operating across various platforms typically receive identity credentials in platform-specific formats such as JWT tokens, X509 certificates, Kubernetes Service Accounts Tokens, SPIFFE SVIDs, or cloud provider metadata documents. These credentials, including their format, issuer, subject, and other attributes are determined by the platform infrastructure rather than the workload itself.</t>
      <t>When accessing external resources or other workloads, workloads must satisfy different authentication requirements specific to each resource they interact with. Resource access might require OAuth 2.0 Access Tokens, SPIFFE credentials, mutual TLS client certificates, or other authentication mechanisms that the workload cannot control or modify.</t>
      <t>This credential mismatch creates a fundamental challenge: workloads must bridge the gap between their platform-issued identity and the various authentication requirements of the resources they need to access. Solutions typically involve credential exchange mechanisms or leveraging platform-specific functionality.</t>
      <t>This specification:</t>
      <ul spacing="normal">
        <li>
          <t>Defines abstract mechanisms for credential delivery and exchange in <xref target="mechanisms"/></t>
        </li>
        <li>
          <t>Examines the rationale behind credential exchange requirements in <xref target="rationale"/></t>
        </li>
        <li>
          <t>Documents concrete implementation patterns based on these mechanisms in <xref target="patterns"/></t>
        </li>
      </ul>
      <section anchor="static-secrets">
        <name>Static secrets</name>
        <t>Credential exchange is a broad term and can be interpreted in many ways. This document focuses on the exchange of credentials that are issued to workloads on demand, such as JWTs, X.509 certificates, or other workload identity formats. It does not cover the exchange of static secrets, such as API keys or client secrets, which are typically provisioned out-of-band and do not involve a dynamic exchange process. This document rather sees static secrets as a special kind of resources that require strong authentication and authorization to access, but not as a credential exchange.</t>
        <t>Credentials returned as by this specification are:</t>
        <ul spacing="normal">
          <li>
            <t>short-lived</t>
          </li>
          <li>
            <t>issued on demand, but potentially cached</t>
          </li>
          <li>
            <t>are individual based on the credential used to authenticate</t>
          </li>
        </ul>
        <t>In contrast, static secrets are:</t>
        <ul spacing="normal">
          <li>
            <t>medium to long-lived</t>
          </li>
          <li>
            <t>provisioned out-of-band, often manually</t>
          </li>
          <li>
            <t>do not differ based on authentication, different callers get access to the same credential</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="mechanisms">
      <name>Mechanisms</name>
      <t>Workloads have multiple options to acquire credentials in the way they are required. The following terms divide them into four primary mechanisms and outlines their approaches:</t>
      <dl newline="true">
        <dt>Initial manual provisioning</dt>
        <dd>
          <t>Credentials are provisioned manually, often by an administrator. This is typically done out-of-band, such as through a configuration file, environment variable, or secret management system. This mechanism is not recommended for workload identity credentials. Within the document, this mechanism is not further discussed.</t>
        </dd>
        <dt>Initial platform provisioning</dt>
        <dd>
          <t>Credentials are issued during workload creation by the platform. The workload is "born" with them and they are available at startup. The format, scope, lifetime and other attributes are configured out of band and cannot be influenced at runtime. It is common that platforms allow only a single credential to be provisioned and only allow changes to scope.</t>
        </dd>
        <dt>On-demand platform issuance</dt>
        <dd>
          <t>Workloads are able to obtain credentials on-demand from the platform. Parameters allow the workload to specify exactly the required format, scope, identity, lifetime, and other attributes the workload requires. No authentication is necessary to request on-demand credentials. The platform is able to strongly identify the workload so this request is typically unauthenticated from the workload's point of view. Implementations may use the workload's initial provisioned credential in the background to authenticate the request, but this is not visible to the workload.</t>
        </dd>
        <dt>On-demand credential exchange</dt>
        <dd>
          <t>Workloads use an existing credential (provisioned manually or by the platform) to authenticate and authorize a request for a different credential. Based on parameters, the workload can specify the exact attributes of the credential it requires. The significant difference towards the on-demand platform issuance is that this is not necessarily within the platform and often an <strong>authenticated</strong> action.</t>
        </dd>
      </dl>
      <t>The outlined mechanisms are from the point of view of the workload. Specific mechanisms are often implemented by a combination of other mechanisms. For example, a platform on-demand provisioning mechanism may use an initial provisioned credential in combination with a credential exchange to issue a new credential. However, from the workload's perspective it is a platform on-demand provisioning mechanism, as it is not aware of the underlying implementation details.</t>
    </section>
    <section anchor="rationale">
      <name>Rationale</name>
      <t>Workloads often require credentials that differ from the ones they were initially provisioned with. This can be due to various reasons, such as changes in format, scope, identity, trust domain, or lifetime. The need for credential exchange arises when the workload needs to adapt to these changing requirements. The following sections outline the most common reasons for credential exchange, gives examples and provides recommendations for the mechanisms to use.</t>
      <section anchor="change-in-format">
        <name>Change in format</name>
        <t>Workloads may require a different format representing the same identity in the same trust domain. Some concrete examples are:</t>
        <ul spacing="normal">
          <li>
            <t>The initial credential was an X.509 certificate but resources require application-level authentication such as JWT or Workload Identity Tokens as defined in (TODO).</t>
          </li>
          <li>
            <t>The initial credential was a JWT bound to a key to be presented along with proof of possession, but the resource does not support it and requires a bearer credential.</t>
          </li>
        </ul>
        <t>"Credential format" is difficult to define abstractly. Some formats are opaque to the workload and should remain that way. For instance, how an OAuth 2.0 Bearer token is constructed, and whether it carries claims or not, is not a concern of the workload. That a bearer token is required, however, is known to the workload. So a change in format between a bearer token and an X.509 certificate is certainly a change in format the workload can require. A different encoding of a bearer token, on the other hand, is not and this specification does not address those cases.</t>
        <table>
          <thead>
            <tr>
              <th align="left">Mechanism</th>
              <th align="left">Recommendation</th>
              <th align="left">Reason</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Initial platform provisioning</td>
              <td align="left">Caution</td>
              <td align="left">Risks preemptively issuing credentials that aren't used. See <xref target="use-on-demand-provisioning">security considerations</xref> for details.</td>
            </tr>
            <tr>
              <td align="left">On-demand platform issuance</td>
              <td align="left">Prefer</td>
              <td align="left">Credentials are issued on a need basis, allowing the workload to specify the format it requires &amp; keep lifetime short.</td>
            </tr>
            <tr>
              <td align="left">On-demand credential exchange</td>
              <td align="left">Caution</td>
              <td align="left">Requires an additional credential to authenticate the exchange. See <xref target="exchange-requires-authentication">security considerations</xref> for details.</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="change-in-scope">
        <name>Change in scope</name>
        <t>A credential in the same format may represent the same identity, but is scoped differently. Examples are:</t>
        <ul spacing="normal">
          <li>
            <t>A JWT credential with an <tt>audience</tt> set to interact with the workload platform, but access to other workloads are required. The workload is in need of JWTs with different, dedicated audiences.</t>
          </li>
          <li>
            <t>An X.509 credential is constrained to a certain key usage, but the workload requires difference usage bits set. For instance, the existing certificate allows for <tt>digitalSignature</tt> but <tt>keyEncipherment</tt> or <tt>dataEncipherment</tt> is required.</t>
          </li>
        </ul>
        <t>Generally, scope should already be present and configured appropriately with the workload platform only issuing narrowly scoped credentials to the workload. However, the platform may only support the provisioning of a single credential and doesn't allow custom scoping.</t>
        <table>
          <thead>
            <tr>
              <th align="left">Mechanism</th>
              <th align="left">Recommendation</th>
              <th align="left">Reason</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Initial platform provisioning</td>
              <td align="left">Caution</td>
              <td align="left">Risk of over-provisioning and over-scoping. Particularly when different scopes are required but initial provisioning only allows a single credential. See <xref target="use-on-demand-provisioning">security considerations</xref> for details.</td>
            </tr>
            <tr>
              <td align="left">On-demand platform issuance</td>
              <td align="left">Prefer</td>
              <td align="left">Credentials are issued on a need basis and can be scoped to the exact requirements of the workload.</td>
            </tr>
            <tr>
              <td align="left">On-demand credential exchange</td>
              <td align="left">Caution</td>
              <td align="left">Requires an additional credential to authenticate the exchange. See <xref target="exchange-requires-authentication">security considerations</xref> for details.</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="change-in-identity">
        <name>Change in identity</name>
        <t>A workload may be known under multiple identities. For example:</t>
        <ul spacing="normal">
          <li>
            <t>A workload identity representing an exact physical instance of the workload may be eligible for a workload identity representing a logical unit that groups many physical instances together. Another example is a workload running in a specific region being eligible for a broader, geographically scoped identity.</t>
          </li>
          <li>
            <t>A workload that can act on behalf of other workloads. These workloads often are part of infrastructure such as API gateways, proxies, or service meshes in container environments.</t>
          </li>
        </ul>
        <table>
          <thead>
            <tr>
              <th align="left">Mechanism</th>
              <th align="left">Recommendation</th>
              <th align="left">Reason</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Initial platform provisioning</td>
              <td align="left">Neutral. Avoid for on-behalf-of situations.</td>
              <td align="left">The authors believe that on-behalf-of should be an explicit operation and not by default to avoid ambiguity and keep trust boundaries clear.</td>
            </tr>
            <tr>
              <td align="left">On-demand platform issuance</td>
              <td align="left">Prefer</td>
              <td align="left">Credentials are issued on a need basis and can be scoped to the exact requirements of the workload.</td>
            </tr>
            <tr>
              <td align="left">On-demand credential exchange</td>
              <td align="left">Prefer for on-behalf-of situations.</td>
              <td align="left">Requires an additional credential to authenticate the exchange. See <xref target="exchange-requires-authentication">security considerations</xref> for details.</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="change-in-trust-domain">
        <name>Change in trust domain</name>
        <t>A provisioned workload identity is often part of a trust domain that is coupled to infrastructure or deployment. Workloads often interact with other workloads or access outside resources located in different trust domains. This may require the client workload to retrieve an identity of the other trust domain. Examples here include:</t>
        <ul spacing="normal">
          <li>
            <t>Federation (a workload identity federates to a identity in a different trust domain). In existing workload identity environment OAuth2 with Token Exchange (TODO) and Assertion framework (TODO) are popular.</t>
          </li>
          <li>
            <t>A workload requires a credential of "higher trust" to interact with other workloads. This "higher trust" is facilitated by another trust domain. For instance, a workload may require a WebPKI certificate to offer a service to clients with "default" trust stores.</t>
          </li>
        </ul>
        <table>
          <thead>
            <tr>
              <th align="left">Mechanism</th>
              <th align="left">Recommendation</th>
              <th align="left">Reason</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Initial platform provisioning</td>
              <td align="left">Avoid</td>
              <td align="left">Initial provisioning is limited to the issuer of the workload platform. Making initial provisioned credentials multi-issuer creates ambiguity.</td>
            </tr>
            <tr>
              <td align="left">On-demand platform issuance</td>
              <td align="left">Neutral</td>
              <td align="left">See <xref target="on-behalf-of-exchange">On-behalf-of exchange pattern</xref> for a combination of on-demand provisioning and exchange.</td>
            </tr>
            <tr>
              <td align="left">On-demand credential exchange</td>
              <td align="left">Prefer</td>
              <td align="left">A change in trust domain indicates a different issuer.</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="change-in-lifetime">
        <name>Change in lifetime</name>
        <t>Credentials often come with time restrictions, or usage may be restricted based on token lifetime. For instance:</t>
        <ul spacing="normal">
          <li>
            <t>A resource denies the long-lived workload credential based on a maximum lifetime policy.</t>
          </li>
          <li>
            <t>An initial provisioned credentials has expired and renewal is unsupported.</t>
          </li>
          <li>
            <t>A credential with shorter lifetime would reduce replay risk.</t>
          </li>
        </ul>
        <table>
          <thead>
            <tr>
              <th align="left">Mechanism</th>
              <th align="left">Recommendation</th>
              <th align="left">Reason</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Initial platform provisioning</td>
              <td align="left">Caution</td>
              <td align="left">Creates unnecessary long-lived credentials that are difficult to protect.</td>
            </tr>
            <tr>
              <td align="left">On-demand platform issuance</td>
              <td align="left">Prefer</td>
              <td align="left">Individual lifetimes that fit the exact need are possible.</td>
            </tr>
            <tr>
              <td align="left">On-demand credential exchange</td>
              <td align="left">Neutral</td>
              <td align="left">May be used to reduce lifetime, but should be avoided to increase or expand lifetime as a credential that expires later is effectively a higher trust. See <xref target="credential-exchange-cannot-increase-trust">security considerations</xref> for details.</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="missing-provisioning-support">
        <name>Missing provisioning support</name>
        <t>A workload platform may not support the provisioning of credentials required by the workload. would likely fall under the reasons above, but it's a very common reason and often falls into multiple categories. As an example:</t>
        <ul spacing="normal">
          <li>
            <t>Workload platform provisions identity and credential in the form of a simple signed document that carries the attributes attested by the platform, but gives not access in any way.</t>
          </li>
        </ul>
        <table>
          <thead>
            <tr>
              <th align="left">Mechanism</th>
              <th align="left">Recommendation</th>
              <th align="left">Reason</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Initial platform provisioning</td>
              <td align="left">-</td>
              <td align="left">This section applies when initial provisioning is not supported.</td>
            </tr>
            <tr>
              <td align="left">On-demand platform issuance</td>
              <td align="left">-</td>
              <td align="left">This section applies when on-demand provisioning is not supported.</td>
            </tr>
            <tr>
              <td align="left">On-demand credential exchange</td>
              <td align="left">Neutral</td>
              <td align="left">Credential exchange may be used when no other mechanism is supported or supports the desired outcome. However, credential exchange still requires authentication. See <xref target="exchange-requires-authentication">security considerations</xref> for details.</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="combinations">
        <name>Combinations</name>
        <t>Reasons for requesting or exchanging credentials are often not binary. A change in trust domain is effectively a change in identity as well. A change in format can require a change in trust domain, because formats come with different trust structures and security promises. For example, a trust domain issuing JSON Web Tokens may not be able to issue WebPKI certificates.</t>
      </section>
    </section>
    <section anchor="patterns">
      <name>Exchange patterns</name>
      <section anchor="format-specific-exchange">
        <name>Format-specific exchange</name>
        <t>The existing trust and identity framework often consist of a protocol or framework to exchange credentials. Leveraging this makes use of existing adoption and specific guidelines.</t>
        <t>The following bullets give an overview of the existing patterns and when to use them based on the needs given above:</t>
        <ul spacing="normal">
          <li>
            <t>OAuth Token Exchange <xref target="RFC8693"/> is:
            </t>
            <ul spacing="normal">
              <li>
                <t>meant for a change in scope.</t>
              </li>
              <li>
                <t>meant for a change in identity.</t>
              </li>
              <li>
                <t>to a certain extend meant for a change in format (limited).</t>
              </li>
              <li>
                <t>NOT meant for a change in trust domain.</t>
              </li>
            </ul>
          </li>
          <li>
            <t>OAuth Assertion Framework <xref target="RFC7521"/> is:
            </t>
            <ul spacing="normal">
              <li>
                <t>meant for a change in trust domain. As a result of the change in trust domain, a change in identity, scope and, potentially, format is unavoidable but not the primary use case.</t>
              </li>
              <li>
                <t>NOT meant for exchanges within a trust domain.</t>
              </li>
            </ul>
          </li>
        </ul>
      </section>
      <section anchor="on-behalf-of-exchange">
        <name>On-behalf-of exchange</name>
        <t>Workload environments can be highly dynamic and connected with a high variety of resources protected by different identity frameworks and formats. A format-agnostic component that exchanges credentials on behalf of the workload may be desired to remain control of credential issuance. For instance, it might enforce policy, collect audit trails, or aid management.</t>
        <artset>
          <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="240" width="808" viewBox="0 0 808 240" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
              <path d="M 8,32 L 8,96" fill="none" stroke="black"/>
              <path d="M 8,160 L 8,224" fill="none" stroke="black"/>
              <path d="M 72,96 L 72,112" fill="none" stroke="black"/>
              <path d="M 72,144 L 72,160" fill="none" stroke="black"/>
              <path d="M 152,32 L 152,96" fill="none" stroke="black"/>
              <path d="M 216,160 L 216,224" fill="none" stroke="black"/>
              <path d="M 280,32 L 280,96" fill="none" stroke="black"/>
              <path d="M 368,96 L 368,128" fill="none" stroke="black"/>
              <path d="M 368,160 L 368,192" fill="none" stroke="black"/>
              <path d="M 480,32 L 480,96" fill="none" stroke="black"/>
              <path d="M 624,32 L 624,96" fill="none" stroke="black"/>
              <path d="M 800,32 L 800,96" fill="none" stroke="black"/>
              <path d="M 8,32 L 152,32" fill="none" stroke="black"/>
              <path d="M 280,32 L 480,32" fill="none" stroke="black"/>
              <path d="M 624,32 L 800,32" fill="none" stroke="black"/>
              <path d="M 152,64 L 272,64" fill="none" stroke="black"/>
              <path d="M 480,64 L 616,64" fill="none" stroke="black"/>
              <path d="M 8,96 L 64,96" fill="none" stroke="black"/>
              <path d="M 80,96 L 152,96" fill="none" stroke="black"/>
              <path d="M 280,96 L 480,96" fill="none" stroke="black"/>
              <path d="M 624,96 L 800,96" fill="none" stroke="black"/>
              <path d="M 8,160 L 64,160" fill="none" stroke="black"/>
              <path d="M 80,160 L 216,160" fill="none" stroke="black"/>
              <path d="M 224,192 L 368,192" fill="none" stroke="black"/>
              <path d="M 8,224 L 216,224" fill="none" stroke="black"/>
              <polygon class="arrowhead" points="624,64 612,58.4 612,69.6" fill="black" transform="rotate(0,616,64)"/>
              <polygon class="arrowhead" points="280,64 268,58.4 268,69.6" fill="black" transform="rotate(0,272,64)"/>
              <polygon class="arrowhead" points="232,192 220,186.4 220,197.6" fill="black" transform="rotate(180,224,192)"/>
              <polygon class="arrowhead" points="80,160 68,154.4 68,165.6" fill="black" transform="rotate(90,72,160)"/>
              <polygon class="arrowhead" points="80,96 68,90.4 68,101.6" fill="black" transform="rotate(270,72,96)"/>
              <g class="text">
                <text x="200" y="36">2)request</text>
                <text x="536" y="36">4)request</text>
                <text x="220" y="52">credential</text>
                <text x="556" y="52">credential</text>
                <text x="60" y="68">Workload</text>
                <text x="340" y="68">Credential</text>
                <text x="424" y="68">Exchanger</text>
                <text x="684" y="68">Credential</text>
                <text x="756" y="68">issuer</text>
                <text x="28" y="132">1)</text>
                <text x="92" y="132">Provisioning</text>
                <text x="324" y="148">3)</text>
                <text x="372" y="148">validate</text>
                <text x="60" y="196">Workload</text>
                <text x="132" y="196">Platform</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art"><![CDATA[
+-----------------+ 2)request     +------------------------+  4)request      +---------------------+
|                 |   credential  |                        |    credential   |                     |
|  Workload       +-------------->|  Credential Exchanger  +---------------->|  Credential issuer  |
|                 |               |                        |                 |                     |
+-------^---------+               +----------+-------------+                 +---------------------+
        |                                    |
  1) Provisioning                            |
        |                              3) validate
+-------v-----------------+                  |
|                         |                  |
|  Workload Platform      |<-----------------+
|                         |
+-------------------------+
]]></artwork>
        </artset>
        <ol spacing="normal" type="1"><li>
            <t>The Workload Platform issues credential to the workload. This can be either "initial", during workload startup or "on-demand", once the workload requires it. See <xref target="mechanisms"/> for more details.</t>
          </li>
          <li>
            <t>The Workload requests a new credential from the Credential Exchanger by specifying at least the issuer, format, and identity. Potentially, it also specifies lifetime and scope. It authenticates itself with the credential it has received from the Workload Platform.</t>
          </li>
          <li>
            <t>The Credential Exchanger validates the credential it receives. For simplicity, the diagram shows this as a interaction with the Workload Platform, but other means of validations are also possible.</t>
          </li>
          <li>
            <t>The Credential Exchanger requests a credential from the Credential Issuer. Also, for simplicity this step shows the interaction with a third party. However, this may also be the Workload Platform itself. Authentication and other step details depend on the scenario, format, and trust framework.</t>
          </li>
        </ol>
        <t>The author believes that a specific protocol that fits all credential formats and trust frameworks is infeasible while maintaining the existing security promises. He rather believes that a profile for each scenario is the best way forward and welcomes everyone to profile this document for their concrete use cases. As a general guidance it is recommended to:</t>
        <ul spacing="normal">
          <li>
            <t>narrowly scope the scenarios, instead of building a one-fits-all exchange for a specific format.</t>
          </li>
          <li>
            <t>decouple authentication and access control from the actual exchange as best as possible. For example, a credential of one profile should be allowed as a means of authentication to exchange to a credential of a different profile, whether or not the profiles are aware of each other.</t>
          </li>
          <li>
            <t>allow the workload to specify at least issuer, identity and format when requesting a credential. Lifetime and scope could be optionally specified, based on the need and support for it.</t>
          </li>
          <li>
            <t>keep multi-stepped issuance in mind. Some formats and trust frameworks may require the workload to perform challenges, like responding to a nonce or providing a signature.</t>
          </li>
        </ul>
        <t>The "Credential Exchanger" shown in the figure <bcp14>MAY</bcp14> be the Workload Platform itself that offers this capability. It <bcp14>MAY</bcp14> be offered during a "re-provisioning" without authentication.</t>
      </section>
    </section>
    <section anchor="consideration">
      <name>Consideration</name>
      <section anchor="credential-exchange-cannot-increase-trust">
        <name>Credential exchange cannot increase trust</name>
        <t>A credential exchange is an authenticated method to retrieve credential(s). Thus, the issued credential cannot be given a higher trust level than the credential that was used to authenticate the request. This is particularly relevant when a required credential, due to its format and framework, is of a higher trust than the one that was used to authenticate the request. This includes exchanging credentials without proof of key possession for credentials that do carry proof of possession.</t>
        <t>These situations are not recommended. Workloads <bcp14>SHOULD</bcp14> be provisioned with the credential of the highest trust and only retrieve less-trusted credentials via credential exchange.</t>
        <t>Alternatively, the authentication request should be enriched with additional identification that increases the level of authentication. For example, along with authentication, the workload would provide additional proof of platform attestation.</t>
      </section>
      <section anchor="exchange-requires-authentication">
        <name>Credential exchange cannot replace initial or platform provisioning</name>
        <t>Because credential exchange is authenticated it cannot be the first credential that is issued. Without an initial credential or a platform on-demand requested credential a workload cannot facilitate credential exchange, as there is no proof the workload is eligible for the requested credential.</t>
      </section>
      <section anchor="use-on-demand-provisioning">
        <name>Initial provisioning comes with over-provisioning risk</name>
        <t>Provisioning credentials preemptively risks being exposed to overprovisioning credentials that are not required. For example, with initial provisioning, every workload is provisioned with a default credential, even though some don't require it. This unnecessarily increases the risk of those credentials being exposed.</t>
        <t>On-demand-based provisioning, on the other hand, only issues credential when requested and mitigates this. They are exactly in the scope, format, identity and lifetime that are required. This can significantly decrease the number of unnecessarily issued and provisioned credentials.</t>
      </section>
      <section anchor="exchange-to-renew">
        <name>Expanding credential lifetime</name>
        <t>A change in lifetime of a credential can be critical if it can be used to effectively keep a credential alive. One example is an issued short-lived bearer credential that can be used to exchange for a new, longer-lived credentials. Thus, it is highly recommended to only use on-demand provisioning to re-request a new credential.</t>
        <t>On the other hand, it is valid to leverage token exchange to request a shorter-lived credential whose lifetime is within the bound of the credential used for authenticating the request.</t>
        <t>If an exchange to a longer-lived credential is required, it is recommended to prevent this from re-occurring and deploy policy to not allow a continuous exchange to longer-lived credentials.</t>
      </section>
      <section anchor="involvement-of-human-transactional-or-other-contextual-credentials">
        <name>Involvement of human, transactional or other contextual credentials</name>
        <t>Although this document focuses heavily on workload identity, workloads often deal with other credentials carrying caller, transactional, or contextual information. This could include an access token of the caller used to authorize the request. or an OAuth Transaction Token that was part of the request coming from another workload carrying transactional data.</t>
        <t>These credentials and their formats, lifetime, scope, etc. are not covered by this document. However, they may be used as parameters or authentication to request additional credentials that combine multiple identities into a single credential.</t>
        <t>Some concrete examples are:</t>
        <ul spacing="normal">
          <li>
            <t>An access token and a workload identity credentials are used to request an OAuth Transaction Token.</t>
          </li>
          <li>
            <t>An on-behalf-of scenario where a workload identity is used as actor, and a different, contextual credential unrepresentative of the workload is used as a subject in an OAuth Token Exchange.</t>
          </li>
        </ul>
        <t>On-demand platform provisioning or credential exchange <bcp14>MAY</bcp14> be used to issue any of those contextual credentials to the workload. Existing contextual credentials <bcp14>MAY</bcp14> be supplied as parameters. Initial-based provisioning is not suitable with existing contextual credentials as it does not support parameters. In situations where the workload's identity does not play a role and only the contextual credentials are used as authentication, credential exchange is the preferred mechanism.</t>
      </section>
      <section anchor="offline-attenuation">
        <name>Credential formats supporting offline attenuation</name>
        <t>Some credential formats allow the scope of the credential to be reduced offline, without interaction to an issuing party ("offline attenuation"). In these situations no exchange or on-demand provisioning is required and workloads can "act on their own." Examples of these formats are <xref target="Macaroons"/> or <xref target="Biscuit"/> tokens. The provisioning of a credential that supports offline attenuation is still required in the first place.</t>
      </section>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" 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>
      <?line -18?>

</section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>TODO Security</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no IANA actions.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC7521">
          <front>
            <title>Assertion Framework for OAuth 2.0 Client Authentication and Authorization Grants</title>
            <author fullname="B. Campbell" initials="B." surname="Campbell"/>
            <author fullname="C. Mortimore" initials="C." surname="Mortimore"/>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="Y. Goland" initials="Y." surname="Goland"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>This specification provides a framework for the use of assertions with OAuth 2.0 in the form of a new client authentication mechanism and a new authorization grant type. Mechanisms are specified for transporting assertions during interactions with a token endpoint; general processing rules are also specified.</t>
              <t>The intent of this specification is to provide a common framework for OAuth 2.0 to interwork with other identity systems using assertions and to provide alternative client authentication mechanisms.</t>
              <t>Note that this specification only defines abstract message flows and processing rules. In order to be implementable, companion specifications are necessary to provide the corresponding concrete instantiations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7521"/>
          <seriesInfo name="DOI" value="10.17487/RFC7521"/>
        </reference>
        <reference anchor="RFC8693">
          <front>
            <title>OAuth 2.0 Token Exchange</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="A. Nadalin" initials="A." surname="Nadalin"/>
            <author fullname="B. Campbell" initials="B." role="editor" surname="Campbell"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="C. Mortimore" initials="C." surname="Mortimore"/>
            <date month="January" year="2020"/>
            <abstract>
              <t>This specification defines a protocol for an HTTP- and JSON-based Security Token Service (STS) by defining how to request and obtain security tokens from OAuth 2.0 authorization servers, including security tokens employing impersonation and delegation.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8693"/>
          <seriesInfo name="DOI" value="10.17487/RFC8693"/>
        </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>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="Macaroons" target="https://theory.stanford.edu/~ataly/Papers/macaroons.pdf">
          <front>
            <title>Cookies with Contextual Caveats for Decentralized Authorization in the Cloud</title>
            <author initials="A." surname="Birgisson">
              <organization/>
            </author>
            <author initials="J. G." surname="Politz">
              <organization/>
            </author>
            <author initials="U." surname="Erlingsson">
              <organization/>
            </author>
            <author initials="M." surname="Vrable">
              <organization/>
            </author>
            <author initials="M." surname="Lentczner">
              <organization/>
            </author>
            <date year="2014"/>
          </front>
        </reference>
        <reference anchor="Biscuit" target="https://doc.biscuitsec.org/reference/specifications">
          <front>
            <title>Biscuit, a bearer token with offline attenuation and decentralized verification</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
      </references>
    </references>
    <?line 336?>

<section anchor="document-history">
      <name>Document History</name>
      <t><cref>RFC Editor: please remove before publication.</cref></t>
      <section anchor="draft-schwenkschuster-wimse-credential-exchange-02">
        <name>draft-schwenkschuster-wimse-credential-exchange-02</name>
        <ul spacing="normal">
          <li>
            <t>Rephrased introduction</t>
          </li>
          <li>
            <t>Added scope consideration for static secrets</t>
          </li>
          <li>
            <t>Moved to a 4-level mechanism classification, added manual, rephrased existing ones to make it more clear what is platform-based.</t>
          </li>
        </ul>
      </section>
      <section anchor="draft-schwenkschuster-wimse-credential-exchange-01">
        <name>draft-schwenkschuster-wimse-credential-exchange-01</name>
        <ul spacing="normal">
          <li>
            <t>Fix typo that wrongly said OAuth2 assertion flow is not meant for inter-trust domain exchanges (meant was "intra").</t>
          </li>
          <li>
            <t>Rephrased X509 change of scope example to be more clear.</t>
          </li>
          <li>
            <t>Sharpened ways of provisioning, renamed "provisioning" to "initial provisioning" and "re-provisioning" to "on-demand provisioning".</t>
          </li>
          <li>
            <t>Add "Change in lifetime" need.</t>
          </li>
          <li>
            <t>Add considerations for the involvement of contextual, transactional and human credentials</t>
          </li>
          <li>
            <t>Add consideration for credential formats supporting offline-attenuation.</t>
          </li>
          <li>
            <t>Describe "Credential Exchanger" pattern.</t>
          </li>
          <li>
            <t>Clean up for IETF 122.</t>
          </li>
        </ul>
      </section>
      <section anchor="draft-schwenkschuster-wimse-credential-exchange-00">
        <name>draft-schwenkschuster-wimse-credential-exchange-00</name>
        <ul spacing="normal">
          <li>
            <t>Initial individual draft &amp; write up.</t>
          </li>
        </ul>
      </section>
    </section>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>Big shoutout to the WIMSE token exchange design team (Dean Saxe, Yaroslav Rosomakho, Andrii Deinega, Dmitry Izumskiy, Ken McCracken and George Fletcher) that have done amazing groundlaying work in this area.</t>
    </section>
    <section anchor="contributors" numbered="false" toc="include" removeInRFC="false">
      <name>Contributors</name>
      <contact fullname="Ken McCracken">
        <organization>Google</organization>
        <address>
      </address>
      </contact>
      <contact fullname="Marcel Levy">
        <organization>SPIRL</organization>
        <address>
      </address>
      </contact>
      <contact fullname="Andrew McCormick">
        <organization>Aembit</organization>
        <address>
      </address>
      </contact>
    </section>
  </back>
  <!-- ##markdown-source:
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
uxPBXXQtMd4m4l/emWf/A9pXz/ZPaAAA

-->

</rfc>
