<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.22 (Ruby 3.4.1) -->


<!DOCTYPE rfc  [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">

]>


<rfc ipr="trust200902" docName="draft-wendt-acme-authority-token-jwtclaimcon-00" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="ACME JWTClaimConstraints Auth Token">JWTClaimConstraints profile of ACME Authority Token</title>

    <author initials="C." surname="Wendt" fullname="Chris Wendt">
      <organization>Somos Inc.</organization>
      <address>
        <postal>
          <country>US</country>
        </postal>
        <email>chris@appliedbits.com</email>
      </address>
    </author>
    <author initials="D." surname="Hancock" fullname="David Hancock">
      <organization>Somos Inc.</organization>
      <address>
        <postal>
          <country>US</country>
        </postal>
        <email>davidhancock.ietf@gmail.com</email>
      </address>
    </author>

    <date year="2025" month="March" day="03"/>

    <area>sec</area>
    
    <keyword>STIR</keyword>

    <abstract>


<?line 47?>

<t>This document defines an authority token profile for handling the validation of JWTClaimConstraints and Enhanced JWTClaimConstraints. This profile follows the model established in Authority Token for the validation of TNAuthList but is specifically tailored for the JWTClaimConstraints certificate extensions. The profile enables validation and challenge processes necessary to support certificates containing both TNAuthList and JWTClaimConstraints, particularly in the context of Secure Telephone Identity (STI).</t>



    </abstract>



  </front>

  <middle>


<?line 51?>

<section anchor="introduction"><name>Introduction</name>

<t>The validation of JWTClaimConstraints as part of an STI certificate defined in <xref target="RFC8226"/> is critical for ensuring the integrity and scope of claims used in PASSporTs. This document specifies an authority token profile for validating JWTClaimConstraints, modeled after the authority token framework established in <xref target="RFC9447"/> and the TNAuthList validation defined in <xref target="RFC9448"/>. This profile facilitates proper delegation and authorization for entities requesting certificates under ACME <xref target="RFC8555"/> and similar frameworks.</t>

<t>This Authority Token profile specifically addresses the inclusions of the STI certificate extensions JWTClaimConstraints, as defined in <xref target="RFC8226"/>, and Enhanced JWTClaimConstraints, as defined in <xref target="RFC9118"/>. The STI certificate credentials are used to sign PASSporTs <xref target="RFC8225"/>, which can be carried in using protocols such as SIP <xref target="RFC8224"/>. This document defines the use of the JWTClaimConstraints Authority Token in the ACME challenge to proof an authoritative or trusted use of the contents of the JWTClaimsConstraint based on the issuer of the token. The Certification Authority (CA) issuing the STI Certificate can be informed of the proper use and contents of the JWTClaimConstraints based on the STI eco-system policies, best practices, or authoritative information which is out of scope of this document and will be defined by the STI eco-system.</t>

<t>This document also discusses the ability for a telephone authority to authorize the creation of CA types of certificates for delegation as defined in <xref target="RFC9060"/>.</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>

</section>
<section anchor="acme-new-order-identifiers-for-jwtclaimconstraints"><name>ACME new-order identifiers for JWTClaimConstraints</name>

<t>In <xref target="RFC8555"/>, Section 7 defines the procedure that an ACME client uses to order a new certificate from a Certification Authority (CA). The new-order request contains an identifier field that specifies the identifier objects the order corresponds to.  This draft defines a new type of identifier object called JWTClaimConstraints. A JWTClaimConstraints identifier contains the Token Claim Constraints information to be populated in the JWTClaimConstraints or Enhanced JWTClaimConstraints of the new certificate. For the JWTClaimConstraints identifier, the new-order request includes a type set to the string "JWTClaimConstraints". The value of the JWTClaimConstraints identifier MUST be set to the details of the JWTClaimConstraints requested.</t>

<t>The format of the string that represents the JWTClaimConstraints MUST be constructed using base64url encoding, as per <xref target="RFC8555"/> base64url encoding described in Section 5 of <xref target="RFC4648"/> according to the profile specified in JSON Web Signature in Section 2 of <xref target="RFC7515"/>. The base64url encoding MUST NOT include any padding characters and the JWTClaimConstraints ASN.1 object MUST encoded using DER encoding rules.</t>

<t>An example of an ACME order object “identifiers” field containing a JWTClaimConstraints certificate would look as follows,</t>

<figure><artwork><![CDATA[
 "identifiers": [{"type":"JWTClaimConstraints",
   "value":"F83n2a...avn27DN3"}]
]]></artwork></figure>

<t>where the "value" object string represents the arbitrary length base64url encoded string.</t>

<t>A full new-order request would look as follows,</t>

<figure><artwork><![CDATA[
POST /acme/new-order HTTP/1.1
Host: example.com
Content-Type: application/jose+json

{
  "protected": base64url({
    "alg": "ES256",
    "kid": "https://example.com/acme/acct/evOfKhNU60wg",
    "nonce": "5XJ1L3lEkMG7tR6pA00clA",
    "url": "https://example.com/acme/new-order"
  }),
  "payload": base64url({
    "identifiers": [{"type":"JWTClaimConstraints",
      "value":"F83n...n27DN3"}],
    "notBefore": "2025-01-01T00:00:00Z",
    "notAfter": "2025-01-08T00:00:00Z"
  }),
  "signature": "H6ZXtGjTZyUnPeKn...wEA4TklBdh3e454g"
}
]]></artwork></figure>

<t>On receiving a valid new-order request, the ACME server creates an authorization object, <xref target="RFC8555"/> Section 7.1.4, containing the challenge that the ACME client must satisfy to demonstrate authority for the identifiers specified by the new order (in this case, the JWTClaimConstraints identifier). The CA adds the authorization object URL to the "authorizations" field of the order object, and returns the order object to the ACME client in the body of a 201 (Created) response.</t>

<figure><artwork><![CDATA[
HTTP/1.1 201 Created
Content-Type: application/json
Replay-Nonce: MYAuvOpaoIiywTezizk5vw
Location: https://example.com/acme/order/1234

{
  "status": "pending",
  "expires": "2025-01-08T00:00:00Z",

  "notBefore": "2025-01-01T00:00:00Z",
  "notAfter": "2025-01-08T00:00:00Z",
  "identifiers":[{"type":"JWTClaimConstraints",
                 "value":"F83n2a...avn27DN3"}],

  "authorizations": [
   "https://example.com/acme/authz/1234"
  ],
  "finalize": "https://example.com/acme/order/1234/finalize"
}
]]></artwork></figure>

</section>
<section anchor="jwtclaimconstraints-authorization"><name>JWTClaimConstraints Authorization</name>

<t>On receiving the new-order response, the ACME client queries the referenced authorization object to obtain the challenges for the identifier contained in the new-order request as shown in the following example request and response.</t>

<figure><artwork><![CDATA[
POST /acme/authz/1234 HTTP/1.1
    Host: example.com
    Content-Type: application/jose+json

    {
      "protected": base64url({
        "alg": "ES256",
        "kid": " https://example.com/acme/acct/evOfKhNU60wg",
        "nonce": "uQpSjlRb4vQVCjVYAyyUWg",
        "url": "https://example.com/acme/authz/1234"
      }),
      "payload": "",
      "signature": "nuSDISbWG8mMgE7H...QyVUL68yzf3Zawps"
    }
]]></artwork></figure>

<figure><artwork><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json
Link: <https://example.com/acme/some-directory>;rel="index"

{
  "status": "pending",
  "expires": "2025-01-08T00:00:00Z",

  "identifier": {
    "type:"JWTClaimConstraints",
    "value":"F83n2a...avn27DN3"
  },

  "challenges": [
    {
      "type": "tkauth-01",
      "tkauth-type": "atc",
      "token-authority": "https://authority.example.org",
      "url": "https://example.com/acme/chall/prV_B7yEyA4",
      "token": "IlirfxKKXAsHtmzK29Pj8A"
    }
  ]
}
]]></artwork></figure>

<t>When processing a certificate order containing an identifier of type "JWTClaimConstraints", a CA uses the Authority Token challenge type of "tkauth-01" with a "tkauth-type" of "atc" in <xref target="RFC9447"/> to verify that the requesting ACME client has authenticated and authorized control over the requested resources represented by the "JWTClaimConstraints" value.</t>

<t>The challenge "token-authority" parameter is optional and is only used in cases where the VoIP telephone network requires the CA to identify the Token Authority. If a "token-authority" parameter is present, then the ACME client MAY use the "token-authority" value to identify the URL representing the Token Authority that will provide the JWTClaimConstraints Authority Token response to the challenge. If the "token-authority" parameter is not present, then the ACME client MUST identify the Token Authority based on locally configured information or local policies.</t>

<t>The ACME client responds to the challenge by posting the JWTClaimConstraints Authority Token to the challenge URL identified in the returned ACME authorization object, an example of which follows.</t>

<figure><artwork><![CDATA[
POST /acme/chall/prV_B7yEyA4 HTTP/1.1
Host: boulder.example.com
Content-Type: application/jose+json

{
  "protected": base64url({
  "alg": "ES256",
  "kid": "https://example.com/acme/acct/evOfKhNU60wg",
  "nonce": "Q_s3MWoqT05TrdkM2MTDcw",
  "url": "https://boulder.example.com/acme/authz/asdf/0"
  }),
  "payload": base64url({
  "tkauth": "DGyRejmCefe7v4N...vb29HhjjLPSggwiE"
  }),
  "signature": "9cbg5JO1Gf5YLjjz...SpkUfcdPai9uVYYQ"
}
]]></artwork></figure>

<t>The "tkauth" field is defined as a new field in the challenge object specific to the tkauth-01 challenge type that should contain the JWTClaimConstraints Authority Token defined in the next section.</t>

</section>
<section anchor="jwtclaimconstraints-authority-token"><name>JWTClaimConstraints Authority Token</name>

<t>The Telephone Number Authority List Authority Token (JWTClaimConstraints Authority Token) is a profile instance of the ACME Authority Token defined in <xref target="RFC9447"/>.</t>

<t>The JWTClaimConstraints Authority Token Protected header MUST comply with the Authority Token Protected header as defined in <xref target="RFC9447"/>.</t>

<t>The JWTClaimConstraints Authority Token Payload MUST include the mandatory claims "exp", "jti", and "atc", and MAY include the optional claims defined for the Authority Token detailed in the next subsections.</t>

<section anchor="iss-claim"><name>"iss" claim</name>

<t>The "iss" claim is an optional claim defined in <xref target="RFC7519"/> Section 4.1.1.  It can be used as a URL identifying the Token Authority that issued the JWTClaimConstraints Authority Token beyond the "x5u" or other Header claims that identify the location of the certificate or certificate chain of the Token Authority used to validate the JWTClaimConstraints Authority Token.</t>

</section>
<section anchor="exp-claim"><name>"exp" claim</name>

<t>The "exp" claim, defined in <xref target="RFC7519"/> Section 4.1.4, MUST be included and contains the DateTime value of the ending date and time that the JWTClaimConstraints Authority Token expires.</t>

</section>
<section anchor="jti-claim"><name>"jti" claim</name>

<t>The "jti" claim, defined in <xref target="RFC7519"/> Section 4.1.7, MUST be included and contains a unique identifier for this JWTClaimConstraints Authority Token transaction.</t>

</section>
<section anchor="atc-claim"><name>"atc" claim</name>

<t>The "atc" claim MUST be included and is defined in <xref target="RFC9447"/>.  It contains a JSON object with the following elements:</t>

<t><list style="symbols">
  <t>a "tktype" key with a string value equal to "JWTClaimConstraints" to represent a JWTClaimConstraints profile of the authority token <xref target="RFC9447"/> defined by this document. "tktype" is a required key and MUST be included.</t>
  <t>a "tkvalue" key with a string value equal to the base64url encoding of the TN Authorization List certificate extension ASN.1 object using DER encoding rules. "tkvalue" is a required key and MUST be included.</t>
  <t>a "ca" key with a boolean value set to either true when the requested certificate is allowed to be a CA cert for delegation uses or false when the requested certificate is not intended to be a CA cert, only an end-entity certificate. "ca" is an optional key, if not included the "ca" value is considered false by default.</t>
  <t>a "fingerprint" key is constructed as defined in <xref target="RFC8555"/> Section 8.1 corresponding to the computation of the "Thumbprint" step using the ACME account key credentials. "fingerprint" is a required key and MUST be included.</t>
</list></t>

<t>An example of the JWTClaimConstraints Authority Token is as follows:</t>

<figure><artwork><![CDATA[
{
  "protected": base64url({
    "typ":"JWT",
    "alg":"ES256",
    "x5u":"https://authority.example.org/cert"
  }),
  "payload": base64url({
    "iss":"https://authority.example.org",
    "exp":1640995200,
    "jti":"id6098364921",
    "atc":{"tktype":"JWTClaimConstraints",
      "tkvalue":"F83n2a...avn27DN3",
      "ca":false,
      "fingerprint":"SHA256 56:3E:CF:AE:83:CA:4D:15:B0:29:FF:1B:71:
       D3:BA:B9:19:81:F8:50:9B:DF:4A:D4:39:72:E2:B1:F0:B9:38:E3"}
  }),
  "signature": "9cbg5JO1Gf5YLjjz...SpkUfcdPai9uVYYQ"
}
]]></artwork></figure>

</section>
<section anchor="acquiring-the-token-from-the-token-authority"><name>Acquiring the token from the Token Authority</name>

<t>Following <xref target="RFC9447"/> Section 5, the authority token should be acquired using a RESTful HTTP POST transaction as follows:</t>

<figure><artwork><![CDATA[
  POST /at/account/:id/token HTTP/1.1
  Host: authority.example.org
  Content-Type: application/json
]]></artwork></figure>

<t>The request will pass the account id as a string in the request parameter "id".  This string will be managed as an identifier specific to the Token Authority's relationship with the entity that is creating and signing a PASSporT <xref target="RFC8225"/> and making the Certificate Signing Request via ACME. There is assumed to also be a corresponding authentication procedure that can be verified for the success of this transaction. For example, an HTTP authorization header containing a valid authorization credentials as defined in <xref target="RFC7231"/> Section 14.8.</t>

<t>The body of the POST request MUST contain a JSON object with key value pairs corresponding to values that are requested as the content of the claims in the issued token. As an example, the body SHOULD contain a JSON object as follows:</t>

<figure><artwork><![CDATA[
 {
   "tktype":"JWTClaimConstraints",
   "tkvalue":"F83n2a...avn27DN3",
   "ca":false,
   "fingerprint":"SHA256 56:3E:CF:AE:83:CA:4D:15:B0:29:FF:1B:71:D3
     :BA:B9:19:81:F8:50:9B:DF:4A:D4:39:72:E2:B1:F0:B9:38:E3"
 }
]]></artwork></figure>

<t>The response to the POST request if successful returns a 200 OK with a JSON body that contains, at a minimum, the JWTClaimConstraints Authority Token as a JSON object with a key of "token" and the base64url encoded string representing the atc token. JSON is easily extensible, so users of this specification may want to pass other pieces of information relevant to a specific application.</t>

<t>An example successful response would be as follows:</t>

<figure><artwork><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json

{"token": "DGyRejmCefe7v4N...vb29HhjjLPSggwiE"}
]]></artwork></figure>

<t>If the request is not successful, the response should indicate the error condition.  Specifically, for the case that the authorization credentials are invalid or if the Account ID provided does not exist, the response code MUST be 403 - Forbidden. Other 4xx and 5xx responses MUST follow standard <xref target="RFC7231"/> HTTP error condition conventions.</t>

</section>
<section anchor="token-authority-responsibilities"><name>Token Authority Responsibilities</name>

<t>When creating the JWTClaimConstraints Authority Token, the Token Authority MUST validate that the information contained in the ASN.1 JWTClaimConstraints accurately represents the corresponding JWTClaimConstraint resources the requesting party is authorized to represent based on their pre-established and verified secure relationship between the Token Authority and the requesting party. Note that the fingerprint in the token request is not meant to be verified by the Token Authority, but rather is meant to be signed as part of the token so that the party that requests the token can, as part of the challenge response, allow the ACME server to validate the token requested and used came from the same party that controls the ACME client.</t>

</section>
<section anchor="scope-of-the-jwtclaimconstraints"><name>Scope of the JWTClaimConstraints</name>

<t>Because this specification specifically involves the JWTClaimConstraints and Enhanced JWTClaimConstraints defined in <xref target="RFC8226"/> and <xref target="RFC9118"/> which involves the required or disallowed different claim types or claim values, the client may also request an Authority Token with some subset of its own authority as the JWTClaimConstraints provided in the "tkvalue" element in the "atc" JSON object. JWTClaimConstraints can be constructed to define a limited scope of claims and claim values the client has authority over.</t>

<t>As recommended in <xref target="RFC9447"/> security considerations, an Authority Token can either have a scope that attests all of the resources which a client is eligible to receive certificates for, or potentially a more limited scope that is intended to capture only those resources for which a client will receive a certificate from a particular certification authority.  Any certification authority that sees an Authority Token can learn information about the resources a client can claim.  In cases where this incurs a privacy risk, Authority Token scopes should be limited to only the resources that will be attested by the requested ACME certificate.</t>

</section>
</section>
<section anchor="validating-the-jwtclaimconstraints-authority-token"><name>Validating the JWTClaimConstraints Authority Token</name>

<t>Upon receiving a response to the challenge, the ACME server MUST perform the following steps to determine the validity of the response.</t>

<t><list style="symbols">
  <t>Verify that the value of the "atc" claim is a well-formed JSON object containing the mandatory key values.</t>
  <t>If there is an "x5u" parameter verify the "x5u" parameter is a HTTPS URL with a reference to a certificate representing the trusted issuer of authority tokens for the eco-system.</t>
  <t>If there is an "x5c" parameter verify the certificate array contains a certificate representing the trusted issuer of authority tokens for the eco-system.</t>
  <t>Verify the JWTClaimConstraints Authority Token signature using the public key of the certificate referenced by the token's "x5u" or "x5c" parameter.</t>
  <t>Verify that "atc" claim contains a "tktype" identifier with the value "JWTClaimConstraints".</t>
  <t>Verify that the "atc" claim "tkvalue" identifier contains the equivalent base64url encoded JWTClaimConstraints certificate extension string value as the Identifier specified in the original challenge.</t>
  <t>Verify that the remaining claims are valid (e.g., verify that token has not expired)</t>
  <t>Verify that the "atc" claim "fingerprint" is valid and matches the account key of the client making the request</t>
  <t>Verify that the "atc" claim "ca" identifier boolean corresponds to the CA boolean in the Basic Constraints extension in the CSR for either CA certificate or end-entity certificate</t>
</list></t>

<t>If all steps in the token validation process pass, then the ACME server MUST set the challenge object "status" to "valid". If any step of the validation process fails, the "status" in the challenge object MUST be set to "invalid".</t>

</section>
<section anchor="using-acme-issued-certificates-with-json-web-signature"><name>Using ACME-issued Certificates with JSON Web Signature</name>

<t>JSON Web Signature (JWS, <xref target="RFC7515"/>) objects can include an "x5u" header parameter to refer to a certificate that is used to validate the JWS signature.  For example, the STIR PASSporT framework <xref target="RFC8225"/> uses "x5u" to indicate the STIR certificate used to validate the PASSporT JWS object.  The URLs used in "x5u" are expected to provide the required certificate in response to a GET request, not a POST-as-GET as required for the "certificate" URL in the ACME order object. Thus the current mechanism generally requires the ACME client to download the certificate and host it on a public URL to make it accessible to relying parties.  This section defines an optional mechanism for the Certificate Authority (CA) to host the certificate directly and provide a URL that the ACME client owner can directly reference in the "x5u" of their signed PASSporTs.</t>

<t>As described in Section 7.4 of <xref target="RFC8555"/> when the certificate is ready for making a finalize request, the server will return a 200 (OK) with the updated order object.  In this response, an ACME Server can add a newly defined field called "x5u" that can pass this URL to the ACME client for usage in generated PASSporTs as a publicly available URL for PASSporT validation.</t>

<dl>
  <dt>x5u (optional, string):</dt>
  <dd>
    <t>A URL that can be used to reference the certificate in the "x5u" parameter of a JWS object <xref target="RFC7515"/></t>
  </dd>
</dl>

<t>The publishing of the certificates at the new "x5u" URL should follow the GET request requirement as mentioned above and should be consistent with the timely publication according to the durations of the certificate lifecycle.</t>

<t>The following is an example of the use of "x5u" in the response when the certificate status is "valid".</t>

<figure><artwork><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json
Replay-Nonce: CGf81JWBsq8QyIgPCi9Q9X
Link: <https://example.com/acme/directory>;rel="index"
Location: https://example.com/acme/order/TOlocE8rfgo

{
  "status": "valid",
  "expires": "2016-01-20T14:09:07.99Z",

  "notBefore": "2016-01-01T00:00:00Z",
  "notAfter": "2016-01-08T00:00:00Z",

  "identifiers": [
    "type":"TNAuthList",
    "value":"F83n2a...avn27DN3"
  ],

  "authorizations": ["https://sti-ca.com/acme/authz/1234"],

  "finalize": "https://example.com/acme/order/TOlocE8rfgo/finalize",

  "certificate": "https://example.com/acme/cert/mAt3xBGaobw",

  "x5u": "https://example.com/cert-repo/giJI53km23.pem"
}
]]></artwork></figure>

</section>
<section anchor="usage-considerations"><name>Usage Considerations</name>

<section anchor="large-number-of-non-contiguous-tnauthlist-values"><name>Large number of Non-contiguous TNAuthList values</name>

<t>There are many scenarios and reasons to have various combinations of SPCs, TNs, and TN Ranges.  <xref target="RFC8226"/> has provided a somewhat unbounded set of combinations.  It's possible that a complex non-contiguous set of telephone numbers are being managed by a CSP.  Best practice may be simply to split a set of non-contiguous numbers under management into multiple STI certificates to represent the various contiguous parts of the greater non-contiguous set of TNs, particularly if length of the set of values in identifier object grows to be too large.</t>

</section>
</section>
<section anchor="security_considerations"><name>Security Considerations</name>

<t>The token represented by this document has the credentials to represent the scope of a telephone number, a block of telephone numbers, or an entire set of telephone numbers represented by an SPC. The creation, transport, and any storage of this token MUST follow the strictest of security best practices beyond the recommendations of the use of encrypted transport protocols in this document to protect it from getting in the hands of bad actors with illegitimate intent to impersonate telephone numbers.</t>

<t>This document inherits the security properties of <xref target="RFC9447"/>. Implementations should follow the best practices identified in <xref target="RFC8725"/>.</t>

<t>This document only specifies SHA256 for the fingerprint hash. However, the syntax of the fingerprint object would permit other algorithms if, due to concerns about algorithmic agility, a more robust algorithm were required at a future time.  Future specifications can define new algorithms for the fingerprint object as needed.</t>

</section>
<section anchor="iana-considerations"><name>IANA Considerations</name>

<t>This document requests the addition of a new identifier object type to the "ACME Identifier Types" registry defined in Section 9.7.7 of <xref target="RFC8555"/>.</t>

<figure><artwork><![CDATA[
+---------------------+-----------+
|        Label        | Reference |
+---------------------+-----------+
| JWTClaimConstraints |  RFCThis  |
+---------------------+-----------+
]]></artwork></figure>

</section>
<section anchor="acknowledgements"><name>Acknowledgements</name>

<t>We would like to thank ACME and STIR working groups for valuable contributions to the authority token framework used in this document.</t>

</section>


  </middle>

  <back>


<references title='References' anchor="sec-combined-references">

    <references title='Normative References' anchor="sec-normative-references">



<reference anchor="RFC4648">
  <front>
    <title>The Base16, Base32, and Base64 Data Encodings</title>
    <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
    <date month="October" year="2006"/>
    <abstract>
      <t>This document describes the commonly used base 64, base 32, and base 16 encoding schemes. It also discusses the use of line-feeds in encoded data, use of padding in encoded data, use of non-alphabet characters in encoded data, use of different encoding alphabets, and canonical encodings. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="4648"/>
  <seriesInfo name="DOI" value="10.17487/RFC4648"/>
</reference>
<reference anchor="RFC7231">
  <front>
    <title>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</title>
    <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
    <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
    <date month="June" year="2014"/>
    <abstract>
      <t>The Hypertext Transfer Protocol (HTTP) is a stateless \%application- level protocol for distributed, collaborative, hypertext information systems. This document defines the semantics of HTTP/1.1 messages, as expressed by request methods, request header fields, response status codes, and response header fields, along with the payload of messages (metadata and body content) and mechanisms for content negotiation.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="7231"/>
  <seriesInfo name="DOI" value="10.17487/RFC7231"/>
</reference>
<reference anchor="RFC7515">
  <front>
    <title>JSON Web Signature (JWS)</title>
    <author fullname="M. Jones" initials="M." surname="Jones"/>
    <author fullname="J. Bradley" initials="J." surname="Bradley"/>
    <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
    <date month="May" year="2015"/>
    <abstract>
      <t>JSON Web Signature (JWS) represents content secured with digital signatures or Message Authentication Codes (MACs) using JSON-based data structures. Cryptographic algorithms and identifiers for use with this specification are described in the separate JSON Web Algorithms (JWA) specification and an IANA registry defined by that specification. Related encryption capabilities are described in the separate JSON Web Encryption (JWE) specification.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="7515"/>
  <seriesInfo name="DOI" value="10.17487/RFC7515"/>
</reference>
<reference anchor="RFC7519">
  <front>
    <title>JSON Web Token (JWT)</title>
    <author fullname="M. Jones" initials="M." surname="Jones"/>
    <author fullname="J. Bradley" initials="J." surname="Bradley"/>
    <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
    <date month="May" year="2015"/>
    <abstract>
      <t>JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred between two parties. The claims in a JWT are encoded as a JSON object that is used as the payload of a JSON Web Signature (JWS) structure or as the plaintext of a JSON Web Encryption (JWE) structure, enabling the claims to be digitally signed or integrity protected with a Message Authentication Code (MAC) and/or encrypted.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="7519"/>
  <seriesInfo name="DOI" value="10.17487/RFC7519"/>
</reference>
<reference anchor="RFC8226">
  <front>
    <title>Secure Telephone Identity Credentials: Certificates</title>
    <author fullname="J. Peterson" initials="J." surname="Peterson"/>
    <author fullname="S. Turner" initials="S." surname="Turner"/>
    <date month="February" year="2018"/>
    <abstract>
      <t>In order to prevent the impersonation of telephone numbers on the Internet, some kind of credential system needs to exist that cryptographically asserts authority over telephone numbers. This document describes the use of certificates in establishing authority over telephone numbers, as a component of a broader architecture for managing telephone numbers as identities in protocols like SIP.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8226"/>
  <seriesInfo name="DOI" value="10.17487/RFC8226"/>
</reference>
<reference anchor="RFC8555">
  <front>
    <title>Automatic Certificate Management Environment (ACME)</title>
    <author fullname="R. Barnes" initials="R." surname="Barnes"/>
    <author fullname="J. Hoffman-Andrews" initials="J." surname="Hoffman-Andrews"/>
    <author fullname="D. McCarney" initials="D." surname="McCarney"/>
    <author fullname="J. Kasten" initials="J." surname="Kasten"/>
    <date month="March" year="2019"/>
    <abstract>
      <t>Public Key Infrastructure using X.509 (PKIX) certificates are used for a number of purposes, the most significant of which is the authentication of domain names. Thus, certification authorities (CAs) in the Web PKI are trusted to verify that an applicant for a certificate legitimately represents the domain name(s) in the certificate. As of this writing, this verification is done through a collection of ad hoc mechanisms. This document describes a protocol that a CA and an applicant can use to automate the process of verification and certificate issuance. The protocol also provides facilities for other certificate management functions, such as certificate revocation.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8555"/>
  <seriesInfo name="DOI" value="10.17487/RFC8555"/>
</reference>
<reference anchor="RFC8725">
  <front>
    <title>JSON Web Token Best Current Practices</title>
    <author fullname="Y. Sheffer" initials="Y." surname="Sheffer"/>
    <author fullname="D. Hardt" initials="D." surname="Hardt"/>
    <author fullname="M. Jones" initials="M." surname="Jones"/>
    <date month="February" year="2020"/>
    <abstract>
      <t>JSON Web Tokens, also known as JWTs, are URL-safe JSON-based security tokens that contain a set of claims that can be signed and/or encrypted. JWTs are being widely used and deployed as a simple security token format in numerous protocols and applications, both in the area of digital identity and in other application areas. This Best Current Practices document updates RFC 7519 to provide actionable guidance leading to secure implementation and deployment of JWTs.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="225"/>
  <seriesInfo name="RFC" value="8725"/>
  <seriesInfo name="DOI" value="10.17487/RFC8725"/>
</reference>
<reference anchor="RFC9060">
  <front>
    <title>Secure Telephone Identity Revisited (STIR) Certificate Delegation</title>
    <author fullname="J. Peterson" initials="J." surname="Peterson"/>
    <date month="September" year="2021"/>
    <abstract>
      <t>The Secure Telephone Identity Revisited (STIR) certificate profile provides a way to attest authority over telephone numbers and related identifiers for the purpose of preventing telephone number spoofing. This specification details how that authority can be delegated from a parent certificate to a subordinate certificate. This supports a number of use cases, including those where service providers grant credentials to enterprises or other customers capable of signing calls with STIR.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9060"/>
  <seriesInfo name="DOI" value="10.17487/RFC9060"/>
</reference>
<reference anchor="RFC9118">
  <front>
    <title>Enhanced JSON Web Token (JWT) Claim Constraints for Secure Telephone Identity Revisited (STIR) Certificates</title>
    <author fullname="R. Housley" initials="R." surname="Housley"/>
    <date month="August" year="2021"/>
    <abstract>
      <t>RFC 8226 specifies the use of certificates for Secure Telephone Identity Credentials; these certificates are often called "Secure Telephone Identity Revisited (STIR) Certificates". RFC 8226 provides a certificate extension to constrain the JSON Web Token (JWT) claims that can be included in the Personal Assertion Token (PASSporT), as defined in RFC 8225. If the PASSporT signer includes a JWT claim outside the constraint boundaries, then the PASSporT recipient will reject the entire PASSporT. This document updates RFC 8226; it provides all of the capabilities available in the original certificate extension as well as an additional way to constrain the allowable JWT claims. The enhanced extension can also provide a list of claims that are not allowed to be included in the PASSporT.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9118"/>
  <seriesInfo name="DOI" value="10.17487/RFC9118"/>
</reference>
<reference anchor="RFC9447">
  <front>
    <title>Automated Certificate Management Environment (ACME) Challenges Using an Authority Token</title>
    <author fullname="J. Peterson" initials="J." surname="Peterson"/>
    <author fullname="M. Barnes" initials="M." surname="Barnes"/>
    <author fullname="D. Hancock" initials="D." surname="Hancock"/>
    <author fullname="C. Wendt" initials="C." surname="Wendt"/>
    <date month="September" year="2023"/>
    <abstract>
      <t>Some proposed extensions to the Automated Certificate Management Environment (ACME) rely on proving eligibility for certificates through consulting an external authority that issues a token according to a particular policy. This document specifies a generic Authority Token Challenge for ACME that supports subtype claims for different identifiers or namespaces that can be defined separately for specific applications.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9447"/>
  <seriesInfo name="DOI" value="10.17487/RFC9447"/>
</reference>
<reference anchor="RFC9448">
  <front>
    <title>TNAuthList Profile of Automated Certificate Management Environment (ACME) Authority Token</title>
    <author fullname="C. Wendt" initials="C." surname="Wendt"/>
    <author fullname="D. Hancock" initials="D." surname="Hancock"/>
    <author fullname="M. Barnes" initials="M." surname="Barnes"/>
    <author fullname="J. Peterson" initials="J." surname="Peterson"/>
    <date month="September" year="2023"/>
    <abstract>
      <t>This document defines a profile of the Automated Certificate Management Environment (ACME) Authority Token for the automated and authorized creation of certificates for Voice over IP (VoIP) telephone providers to support Secure Telephone Identity (STI) using the TNAuthList defined by STI certificates.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9448"/>
  <seriesInfo name="DOI" value="10.17487/RFC9448"/>
</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 title='Informative References' anchor="sec-informative-references">



<reference anchor="RFC8224">
  <front>
    <title>Authenticated Identity Management in the Session Initiation Protocol (SIP)</title>
    <author fullname="J. Peterson" initials="J." surname="Peterson"/>
    <author fullname="C. Jennings" initials="C." surname="Jennings"/>
    <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
    <author fullname="C. Wendt" initials="C." surname="Wendt"/>
    <date month="February" year="2018"/>
    <abstract>
      <t>The baseline security mechanisms in the Session Initiation Protocol (SIP) are inadequate for cryptographically assuring the identity of the end users that originate SIP requests, especially in an interdomain context. This document defines a mechanism for securely identifying originators of SIP requests. It does so by defining a SIP header field for conveying a signature used for validating the identity and for conveying a reference to the credentials of the signer.</t>
      <t>This document obsoletes RFC 4474.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8224"/>
  <seriesInfo name="DOI" value="10.17487/RFC8224"/>
</reference>
<reference anchor="RFC8225">
  <front>
    <title>PASSporT: Personal Assertion Token</title>
    <author fullname="C. Wendt" initials="C." surname="Wendt"/>
    <author fullname="J. Peterson" initials="J." surname="Peterson"/>
    <date month="February" year="2018"/>
    <abstract>
      <t>This document defines a method for creating and validating a token that cryptographically verifies an originating identity or, more generally, a URI or telephone number representing the originator of personal communications. The Personal Assertion Token, PASSporT, is cryptographically signed to protect the integrity of the identity of the originator and to verify the assertion of the identity information at the destination. The cryptographic signature is defined with the intention that it can confidently verify the originating persona even when the signature is sent to the destination party over an insecure channel. PASSporT is particularly useful for many personal-communications applications over IP networks and other multi-hop interconnection scenarios where the originating and destination parties may not have a direct trusted relationship.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8225"/>
  <seriesInfo name="DOI" value="10.17487/RFC8225"/>
</reference>



    </references>

</references>



  </back>

<!-- ##markdown-source:
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

-->

</rfc>

