<?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.5 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-vanbrouwershaven-acme-auto-discovery-03" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.19.2 -->
  <front>
    <title abbrev="ACME Server Discovery">Auto-discovery mechanism for ACME servers</title>
    <seriesInfo name="Internet-Draft" value="draft-vanbrouwershaven-acme-auto-discovery-03"/>
    <author initials="P." surname="van Brouwershaven" fullname="Paul van Brouwershaven">
      <organization abbrev="Entrust">Entrust Limited</organization>
      <address>
        <postal>
          <street>2500 Solandt Road – Suite 100</street>
          <city>Ottawa, Ontario</city>
          <code>K2K 3G5</code>
          <country>Canada</country>
        </postal>
        <email>paul.vanbrouwershaven@entrust.com</email>
      </address>
    </author>
    <author initials="M." surname="Ounsworth" fullname="Mike Ounsworth">
      <organization abbrev="Entrust">Entrust Limited</organization>
      <address>
        <postal>
          <street>2500 Solandt Road – Suite 100</street>
          <city>Ottawa, Ontario</city>
          <code>K2K 3G5</code>
          <country>Canada</country>
        </postal>
        <email>mike.ounsworth@entrust.com</email>
      </address>
    </author>
    <author initials="C." surname="Bonnell" fullname="Corey Bonnell">
      <organization abbrev="DigiCert">DigiCert, Inc</organization>
      <address>
        <postal>
          <city>Pittsburgh</city>
          <region>PA</region>
          <country>United States of America</country>
        </postal>
        <email>corey.bonnell@digicert.com</email>
      </address>
    </author>
    <author initials="I." surname="Barreira" fullname="Iñigo Barreira">
      <organization abbrev="Sectigo">Sectigo (Europe) SL</organization>
      <address>
        <postal>
          <street>Rambla Catalunya 86, 3 1. 08008 Barcelona.</street>
          <city>Barcelona</city>
          <code>08008</code>
          <country>Spain</country>
        </postal>
        <email>inigo.barreira@sectigo.com</email>
      </address>
    </author>
    <author initials="Q." surname="Misell" fullname="Q Misell">
      <organization abbrev="AS207960">AS207960 Cyfyngedig</organization>
      <address>
        <postal>
          <street>13 Pen-y-lan Terrace</street>
          <city>Caerdydd</city>
          <code>CF23 9EU</code>
          <country>Cymru</country>
        </postal>
        <email>q@as207960.net</email>
      </address>
    </author>
    <date year="2024" month="February" day="15"/>
    <area>SEC</area>
    <workgroup>ACME</workgroup>
    <keyword>ACME</keyword>
    <keyword>Auto-discovery</keyword>
    <keyword>CAA</keyword>
    <abstract>
      <?line 81?>

<t>A significant impediment to the widespread adoption of the Automated Certificate Management Environment (ACME) <xref target="RFC8555"/> is that ACME clients need to be pre-configured with the URL of the ACME server to be used. This often leaves domain owners at the mercy of their hosting provider as to which Certification Authorities (CAs) can be used. This specification provides a mechanism to bootstrap ACME client configuration from a domain's DNS CAA Resource Record <xref target="RFC8659"/>, thus giving control of which CA(s) to use back to the domain owner.</t>
      <t>Specifically, this document specifies two new extensions to the DNS CAA Resource Record: the "discovery" and "priority" parameters. Additionally, it registers the URI "/.well-known/acme" at which all compliant ACME servers will host their ACME directory object. By retrieving instructions for the ACME client from the authorized CA(s), this mechanism allows for the domain owner to configure multiple CAs in either load-balanced or fallback prioritizations which improves user preferences and increases diversity in certificate issuers.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://vanbroup.github.io/acme-auto-discovery/draft-vanbrouwershaven-acme-auto-discovery.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-vanbrouwershaven-acme-auto-discovery/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        ACME Working Group mailing list (<eref target="mailto:acme@ietf.org"/>),
        which is archived at <eref target="https://datatracker.ietf.org/wg/acme/about/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/acme/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/vanbroup/acme-auto-discovery"/>.</t>
    </note>
  </front>
  <middle>
    <?line 88?>

<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="sec-intro">
      <name>Introduction</name>
      <t>The ACME protocol <xref target="RFC8555"/> offers a powerful framework for automating the issuance and validation of certificates, eliminating the need for user intervention. This capability has significantly streamlined the process of obtaining certificates for servers and infrastructure software. However, in shared environments, where multiple entities coexist, users often face limitations in modifying ACME client configurations. Consequently, they are forced to rely on manual certificate management systems or default Certificate Authorities (CAs) preconfigured for the shared environment.</t>
      <t>This document introduces a mechanism to address the aforementioned challenge by enabling the automatic discovery of ACME client configurations for relevant domain names within a shared environment. The solution leverages the DNS Certification Authority Authorization (CAA) Resource Record <xref target="RFC8659"/> to identify the authorized Certification Authorities capable of issuing certificates for a specific domain name or set of domain names.</t>
      <t>By leveraging the power of CAA records, this mechanism empowers users with enhanced control and flexibility. Users can specify their preferences, choose from a broader range of certificate issuers, and even designate a backup Certification Authority.</t>
      <t>This approach facilitates a more diverse and adaptable certificate management process within shared and managed environments.
This document provides a detailed description of the proposed mechanism, along with its benefits and considerations.</t>
      <t>Additionally, it outlines the security aspects associated with the use of CAA records for ACME client configuration discovery. Finally, this document presents IANA considerations and references relevant normative and informative documents.</t>
      <t>There is previous work in this area in <xref target="I-D.tweedale-acme-discovery"/> which attempts to solve a similar ACME discovery problem for private networks and private ACME CAs.</t>
      <ul empty="true">
        <li>
          <t><strong>RFC Editor's Note:</strong>  Please remove this section prior to publication of a final version of this document.</t>
          <t>The authors of the document considered both SRV and URI DNS resource record types as an alternative to the proposed Well-Known URI, see also: https://github.com/vanbroup/acme-auto-discovery/issues/15</t>
        </li>
      </ul>
    </section>
    <section anchor="protocol-overview">
      <name>Protocol Overview</name>
      <artset>
        <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="480" width="560" viewBox="0 0 560 480" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
            <path d="M 8,32 L 8,128" fill="none" stroke="black"/>
            <path d="M 80,136 L 80,432" fill="none" stroke="black"/>
            <path d="M 96,128 L 96,304" fill="none" stroke="black"/>
            <path d="M 120,32 L 120,128" fill="none" stroke="black"/>
            <path d="M 208,112 L 208,176" fill="none" stroke="black"/>
            <path d="M 336,32 L 336,96" fill="none" stroke="black"/>
            <path d="M 336,144 L 336,240" fill="none" stroke="black"/>
            <path d="M 336,272 L 336,352" fill="none" stroke="black"/>
            <path d="M 336,400 L 336,464" fill="none" stroke="black"/>
            <path d="M 440,96 L 440,136" fill="none" stroke="black"/>
            <path d="M 440,352 L 440,392" fill="none" stroke="black"/>
            <path d="M 552,32 L 552,96" fill="none" stroke="black"/>
            <path d="M 552,144 L 552,240" fill="none" stroke="black"/>
            <path d="M 552,272 L 552,352" fill="none" stroke="black"/>
            <path d="M 552,400 L 552,464" fill="none" stroke="black"/>
            <path d="M 8,32 L 120,32" fill="none" stroke="black"/>
            <path d="M 336,32 L 552,32" fill="none" stroke="black"/>
            <path d="M 120,80 L 328,80" fill="none" stroke="black"/>
            <path d="M 336,96 L 552,96" fill="none" stroke="black"/>
            <path d="M 128,112 L 208,112" fill="none" stroke="black"/>
            <path d="M 8,128 L 120,128" fill="none" stroke="black"/>
            <path d="M 336,144 L 552,144" fill="none" stroke="black"/>
            <path d="M 208,176 L 336,176" fill="none" stroke="black"/>
            <path d="M 336,240 L 552,240" fill="none" stroke="black"/>
            <path d="M 336,272 L 552,272" fill="none" stroke="black"/>
            <path d="M 96,304 L 328,304" fill="none" stroke="black"/>
            <path d="M 336,352 L 552,352" fill="none" stroke="black"/>
            <path d="M 336,400 L 552,400" fill="none" stroke="black"/>
            <path d="M 80,432 L 336,432" fill="none" stroke="black"/>
            <path d="M 336,464 L 552,464" fill="none" stroke="black"/>
            <path d="M 496,320 L 504,304" fill="none" stroke="black"/>
            <polygon class="arrowhead" points="448,392 436,386.4 436,397.6" fill="black" transform="rotate(90,440,392)"/>
            <polygon class="arrowhead" points="448,136 436,130.4 436,141.6" fill="black" transform="rotate(90,440,136)"/>
            <polygon class="arrowhead" points="336,304 324,298.4 324,309.6" fill="black" transform="rotate(0,328,304)"/>
            <polygon class="arrowhead" points="336,80 324,74.4 324,85.6" fill="black" transform="rotate(0,328,80)"/>
            <polygon class="arrowhead" points="136,112 124,106.4 124,117.6" fill="black" transform="rotate(180,128,112)"/>
            <polygon class="arrowhead" points="88,136 76,130.4 76,141.6" fill="black" transform="rotate(270,80,136)"/>
            <g class="text">
              <text x="148" y="68">1.</text>
              <text x="176" y="68">DNS</text>
              <text x="220" y="68">Lookup</text>
              <text x="272" y="68">(CAA)</text>
              <text x="408" y="68">DNS</text>
              <text x="460" y="68">Resolver</text>
              <text x="36" y="84">ACME</text>
              <text x="84" y="84">Client</text>
              <text x="232" y="164">DNS</text>
              <text x="284" y="164">Response</text>
              <text x="392" y="164">example.com</text>
              <text x="456" y="164">CAA</text>
              <text x="376" y="180">Record:</text>
              <text x="148" y="212">2.</text>
              <text x="188" y="212">Select</text>
              <text x="244" y="212">issuer</text>
              <text x="292" y="212">(CA)</text>
              <text x="392" y="212">example.com</text>
              <text x="184" y="228">based</text>
              <text x="220" y="228">on</text>
              <text x="268" y="228">priority</text>
              <text x="360" y="228">CAA</text>
              <text x="384" y="228">0</text>
              <text x="416" y="228">issue</text>
              <text x="492" y="228">"ca.example"</text>
              <text x="148" y="292">3.</text>
              <text x="192" y="292">Connect</text>
              <text x="252" y="292">issuer</text>
              <text x="300" y="292">(CA)</text>
              <text x="428" y="308">https://ca.example</text>
              <text x="448" y="324">.well-known</text>
              <text x="516" y="324">acme</text>
              <text x="484" y="372">Redirect</text>
              <text x="460" y="388">or</text>
              <text x="496" y="388">alias</text>
              <text x="140" y="420">ACME</text>
              <text x="200" y="420">Directory</text>
              <text x="268" y="420">Object</text>
              <text x="444" y="436">https://acme.ca.example/</text>
            </g>
          </svg>
        </artwork>
        <artwork type="ascii-art"><![CDATA[
+-------------+                          +--------------------------+
|             |                          |                          |
|             |  1. DNS Lookup (CAA)     |       DNS Resolver       |
| ACME Client +------------------------->+                          |
|             |                          +------------+-------------+
|             |<---------+                            |
+----------+--+          |                            v
         ^ |             |               +--------------------------+
         | |             | DNS Response  | example.com CAA          |
         | |             +---------------+ Record:                  |
         | |                             |                          |
         | |     2. Select issuer (CA)   | example.com              |
         | |        based on priority    | CAA 0 issue "ca.example" |
         | |                             +--------------------------+
         | |
         | |                             +--------------------------+
         | |     3. Connect issuer (CA)  |                          |
         | +---------------------------->+  https://ca.example/     |
         |                               |        .well-known/acme  |
         |                               |                          |
         |                               +------------+-------------+
         |                                            | Redirect
         |                                            v or alias
         |                               +--------------------------+
         |     ACME Directory Object     |                          |
         +-------------------------------+ https://acme.ca.example/ |
                                         |                          |
                                         +--------------------------+
]]></artwork>
      </artset>
      <ol spacing="normal" type="1"><li>
          <t>The ACME client initiates a DNS lookup to retrieve the CAA record(s) according to <xref target="RFC8659"/>.
          </t>
          <ol spacing="normal" type="1"><li>
              <t>The DNS resolver responds with the CAA record for each domain, specifying the authorized CAs capable of issuing certificates, along with their priorities and other optional parameters.</t>
            </li>
          </ol>
        </li>
        <li>
          <t>The ACME client analyzes the valid CAA records for the domain, ignoring any it cannot process, and selects the CA with the highest priority.</t>
        </li>
        <li>
          <t>The ACME client will download the ACME directory from the well-known location of the issuer-domain-name of the selected CA (https://[issuer-domain-name]/.well-known/acme)</t>
        </li>
        <li>
          <t>If the directory object indicates that an External Account Binding is required, but this is not configured on the ACME client, the client will try to determine an alternative common CA in step 2.
          </t>
          <ol spacing="normal" type="1"><li>
              <t>If no alternative CA can be found, the process will end with a failure and the user <bcp14>SHOULD</bcp14> be notified.</t>
            </li>
          </ol>
        </li>
        <li>
          <t>The ACME client continues normal operation according to <xref target="RFC8555"/>.</t>
        </li>
      </ol>
    </section>
    <section anchor="caa-record">
      <name>CAA Record</name>
      <section anchor="extensions-to-the-caa-record">
        <name>Extensions to the CAA Record</name>
        <t>This document defines the "discovery" and "priority" CAA parameters in the context of ACME auto discovery.</t>
        <section anchor="the-discovery-parameter">
          <name>The "discovery" Parameter</name>
          <t>The "discovery" parameter is used to control the auto-discovery functionality of the record in the context of this document.</t>
          <t>The value of this parameter, if specified, <bcp14>MUST</bcp14> be a lower-case Boolean, where "true" indicates that this record can be used for auto discovery, and "false" indicates that this record should not be used for auto discovery.</t>
          <t>When this parameter is not specified the client <bcp14>MUST</bcp14> assume that discovery is enabled.</t>
        </section>
        <section anchor="the-priority-parameter">
          <name>The "priority" Parameter</name>
          <t>The value of this parameter, if specified, <bcp14>MUST</bcp14> contain an integer greater than zero, where the value "1" represents the highest priority, and subsequent values like "2", "3", and so on, indicate progressively lower priorities. Where records specify an equal priority, their usage <bcp14>SHOULD</bcp14> be randomized.</t>
          <t>In the case that this parameter is not specified, the entry will be considered to have a lower priority than all entries which specify any priority.</t>
        </section>
      </section>
      <section anchor="examples">
        <name>Examples</name>
        <t>This section shows some examples of how CAA records can be configured in the context of ACME auto discovery. CAA records are used to authorize Certification Authorities (CAs) to issue certificates for a specific domain name.</t>
        <t>Implementers and operators should carefully configure CAA records according to their specific requirements and considerations.</t>
        <section anchor="single-ca">
          <name>Single CA</name>
          <t>A simple CAA record allows the issuance of certificates from a single designated CA. In the following example, the CAA record for the domain "example.com" authorizes the CA "ca.example" to issue certificates. However, it does not specify any backup CA. Consequently, if the authorized CA is unable to issue the requested certificate, the certificate issuance will fail.</t>
          <sourcecode type="dns-rr"><![CDATA[
example.com CAA 0 issue "ca.example"
]]></sourcecode>
        </section>
        <section anchor="multiple-cas-with-priority">
          <name>Multiple CAs with priority</name>
          <t>By default, when multiple CAA records are present, the CAs are randomized to distribute the load. However, some users may have preferences regarding the order in which CAs are attempted for certificate issuance. To explicitly specify the order, the "priority" parameter can be used.</t>
          <t>In the next example, the domain "example.com" has two CAA records. The CAA record with "ca2.example" has a higher priority value of 1, indicating it should be attempted first. The CAA record with "ca1.example" has a lower priority value of 2, indicating it should be attempted second.</t>
          <sourcecode type="dns-rr"><![CDATA[
example.com CAA 0 issue "ca1.example; priority=2"
example.com CAA 0 issue "ca2.example; priority=1"
]]></sourcecode>
          <t>CAA records that do not explicitly specify a priority are automatically assigned the lowest priority. In cases where multiple CAA records have the same priority, the usage will be randomized.</t>
          <t>Consider the following example, where the domain "example.com" has three CAA records. The CAA record with "ca1.example" has no specified priority, and thus it is assigned the lowest priority. The CAA records with "ca2.example" and "ca3.example" both have a priority of 1. In this scenario, the ACME client will first attempt to obtain its configuration from either "ca2.example" or "ca3.example", selected at random. If both of those fail, it will fall back to "ca1.example". If all attempts fail, the certificate issuance will ultimately fail.</t>
          <sourcecode type="dns-rr"><![CDATA[
example.com CAA 0 issue "ca1.example"
example.com CAA 0 issue "ca2.example; priority=1"
example.com CAA 0 issue "ca3.example; priority=1"
]]></sourcecode>
        </section>
        <section anchor="using-validationmethods">
          <name>Using validationmethods</name>
          <t>Furthermore, it is possible to configure CAA records to indicate a preference for specific types of certificates, which can be indicated by using the <tt>validationmethods</tt> CAA extension defined in <xref target="RFC8657"/>. In the following example, the domain "example.com" prefers Extended Validation (EV) certificates issued by "ca1.example". If the issuance of an EV certificate fails, the ACME client will attempt to obtain any type of certificate from "ca1.example". If that also fails, it will then try to obtain any type of certificate from "ca2.example".</t>
          <sourcecode type="dns-rr"><![CDATA[
example.com CAA 0 issue "ca1.example; priority=1 validationmethods=ca-ev"
example.com CAA 0 issue "ca1.example; priority=2"
example.com CAA 0 issue "ca2.example; priority=3"
]]></sourcecode>
        </section>
        <section anchor="using-issuewild">
          <name>Using issuewild</name>
          <t>When an ACME client requests the issuance of a wildcard certificate, the issuewild CAA property takes precedence over each issue property when specified, see also section 4.3 of <xref target="RFC8659"/>. The following example specifies that only ca3.example can issue certificates for "<em>.example.com" or "</em>.sub.example.com". However ca3.example is not permitted to issue for "example.com" or "sub.example.com". In the case the issuewild property was not specified all listed CAs would be authorized to issue wildcards for this domain.</t>
          <sourcecode type="dns-rr"><![CDATA[
example.com CAA 0 issue "ca1.example; priority=1"
example.com CAA 0 issue "ca2.example; priority=2"
example.com CAA 0 issuewild "ca3.example; priority=3"
]]></sourcecode>
          <t>To disable auto discovery for a particular record users can set the discovery parameter to false, in the example below this will ensure that the ACME client will only try to obtain a certificate from ca1.example and ignore ca2.example.</t>
          <sourcecode type="dns-rr"><![CDATA[
example.com CAA 0 issue "ca1.example"
example.com CAA 0 issue "ca2.example; discovery=false"
]]></sourcecode>
        </section>
        <section anchor="using-accounturi">
          <name>Using accounturi</name>
          <t>Some cases may arise where the ACME request does not contain sufficient information to uniquely identify the account within the CA that this request should be processed against. Auto-discovery potentially exacerbates these cases since it assumes that explicit client configuration such as External Account Binding tokens are not available, and that ACME account keys may not uniquely identify a CA account. The following example demonstrates using the <tt>accounturi</tt> CAA paremeter, as defined in <xref target="RFC8657"/>.</t>
          <sourcecode type="dns-rr"><![CDATA[
example.com CAA 0 issue "ca1.example; priority=1; accounturi=https://ca1.example/account/1234"
example.com CAA 0 issue "ca2.example; priority=2"
]]></sourcecode>
          <t>The primary function of <tt>accounturi</tt>, as stated in <xref target="RFC8657"/> is to indicate which CA accounts are authorized to issue certificates for <tt>example.com</tt>. The <tt>accounturi</tt> parameter retains this function here, but may additionally be consulted by the CA in order to resolve account ambiguity arising from auto-discovered ACME requests. When multiple <tt>accounturi</tt>s are specified for the same CA, the <tt>priority</tt> parameter <bcp14>MAY</bcp14> be used to indicate to the CA the subscriber's preferred order for using CA accounts with auto-discovered ACME requests. The CA <bcp14>SHOULD</bcp14> first attempt to issue against the <tt>accounturi</tt> with the lowest <tt>priority</tt> value, and then fall back to <tt>accounturi</tt>s with higher priority values if the issuance fails.</t>
          <sourcecode type="dns-rr"><![CDATA[
example.com CAA 0 issue "ca1.example; priority=1; accounturi=https://ca1.example/account/1234"
example.com CAA 0 issue "ca1.example; priority=2; accounturi=https://ca1.example/account/1235"
]]></sourcecode>
          <t>Domain owners <bcp14>SHOULD</bcp14> configure their CAA records so that the <tt>accounturi</tt> that is intended to be used with auto-discovered ACME requests is associated with the CAA record of the lowest priority value. For example, a domain owner could configure their CAA records as follows to indicate that accounts 1234, 1235, and 1236 are all authorized to issue for <tt>example.com</tt>, but that account 1234 <bcp14>SHOULD</bcp14> be used for ambiguous requests.</t>
          <sourcecode type="dns-rr"><![CDATA[
example.com CAA 0 issue "ca1.example; priority=1; accounturi=https://ca1.example/account/1234"
example.com CAA 0 issue "ca1.example; priority=2; accounturi=https://ca1.example/account/1235"
example.com CAA 0 issue "ca1.example; priority=2; accounturi=https://ca1.example/account/1236"
]]></sourcecode>
          <t>Since an omitted <tt>priority</tt> parameter implies the lowest priority, this could equivalently be written as:</t>
          <sourcecode type="dns-rr"><![CDATA[
example.com CAA 0 issue "ca1.example; priority=1; accounturi=https://ca1.example/account/1234"
example.com CAA 0 issue "ca1.example; accounturi=https://ca1.example/account/1235"
example.com CAA 0 issue "ca1.example; accounturi=https://ca1.example/account/1236"
]]></sourcecode>
        </section>
      </section>
    </section>
    <section anchor="acme-client-configuration">
      <name>ACME Client Configuration</name>
      <t>To enable the ACME client to obtain the necessary configuration information for interacting with the authorized Certification Authority (CA)'s ACME server, a mechanism leveraging the well-known directory is proposed.</t>
      <t>The well-known directory is a standardized location within the domain's web server where clients can discover specific resources or configurations. In the context of ACME client configuration retrieval, a copy of the ACME directory object or a redirect to it is placed in the well-known directory of the CA's domain, which is specified as a constraint in the CAA record. This allows the ACME client to conveniently retrieve the required configuration.</t>
      <t>For instance, when the CAA record restricts certificate issuance to the CA "ca.example" for the domain "example.com", the ACME client retrieves the ACME directory object as specified in Section 7.1.1 of ACME <xref target="RFC8555"/> from the URL "https://ca.example/.well-known/acme".</t>
      <t>While an alternative consideration was to include the ACME server address directly as a parameter in the CAA record, it was determined that this approach could introduce clutter and significantly increase the size of the record. Additionally, a rigid binding between the CAA record and the ACME server address may present challenges if the CA needs to change its server address in the future.</t>
      <t>Thus, the approach outlined in this document, utilizing the well-known directory for ACME client configuration retrieval, offers flexibility for CAs to manage and update their ACME server addresses while maintaining a concise and focused CAA record.</t>
      <t>It is important for implementers and operators to ensure the availability and accessibility of the ACME directory object within the well-known directory to facilitate successful ACME client configuration retrieval.</t>
    </section>
    <section anchor="sec-behavior">
      <name>ACME Client Behavior</name>
      <t>Prior to establishing a connection with the default ACME server or a pool of ACME servers, the ACME client verifies the presence of any configured CA Authorization records (CAA) as defined in <xref target="RFC8659"/>. If a CAA record is found, the ACME client will attempt to obtain a certificate from the CA with the highest priority. If the certificate issuance attempt fails, the client will proceed to lower-priority CAs in an attempt to obtain the certificate.</t>
      <t>In the event of a failed attempt to obtain a certificate from a particular CA, the ACME client employs a retry mechanism to ensure successful certificate acquisition. However, in cases where certain CAs are known to be temporarily unavailable, the ACME client <bcp14>MAY</bcp14> choose to ignore those CAs for a limited period of time. By temporarily excluding unresponsive CAs from the issuance process, the client can optimize its certificate acquisition strategy and enhance overall efficiency. This approach helps mitigate potential delays caused by unresponsive CAs and allows the client to focus on viable options for obtaining the required certificate.</t>
      <t>ACME clients <bcp14>SHOULD</bcp14> notify the user if the enrollment of a certificate from a specific CA fails multiple times, even if the client successfully obtains a certificate from an alternative CA. This notification is essential to ensure that users are promptly informed about recurring enrollment failures, allowing them to take appropriate measures. By providing such notifications, clients enable users to assess and address any underlying issues, seek alternative solutions, or make informed decisions regarding their certificate management processes.</t>
      <t>In order to promote the adoption of ACME in Enterprise environments, it is crucial for implementers and operators to recognize the significance of External Account Bindings. The section dedicated to External Account Bindings provides valuable information and guidelines for effectively incorporating this feature.</t>
      <section anchor="certificates-with-multiple-domain-names">
        <name>Certificates with multiple domain names</name>
        <t>When the ACME client initiates a certificate request for multiple domain names, it is required to check the CAA records for each domain. The purpose of this check is to identify a Certification Authority (CA) that is authorized by all the domain names intended to be included in the certificate. If, during the evaluation of CAA records, no common CA can be identified that satisfies the authorization requirements of all the domain names, the certificate issuance process will fail.</t>
        <t>To mitigate the risk of encountering failures in the certificate issuance process due to incompatible CAA records, it is crucial to ensure that certificates only include domain names that are under the control of the same entity. By maintaining a consistent ownership and control of the domain names included in a certificate, the likelihood of encountering authorization conflicts among CAA records is minimized. This practice promotes a more streamlined and reliable certificate issuance process, reducing the potential for errors and ensuring that the certificate accurately represents the domains controlled by a single entity.</t>
        <t>The process with multiple domain names looks as follows:</t>
        <ol spacing="normal" type="1"><li>
            <t>The ACME client identifies the list of domain names for which a certificate is requested.</t>
          </li>
          <li>
            <t>For each domain in the list, the ACME client initiates a DNS lookup to retrieve the CAA record(s) according to <xref target="RFC8659"/>.
            </t>
            <ol spacing="normal" type="1"><li>
                <t>The DNS resolver responds with the CAA record for each domain, specifying the authorized CAs capable of issuing certificates, along with their priorities and other optional parameters.</t>
              </li>
            </ol>
          </li>
          <li>
            <t>The ACME client analyzes the valid CAA records for each domain to identify a CA that is authorized by all included domains and which has the highest priority while it ignores any CAA records it cannot process.
            </t>
            <ol spacing="normal" type="1"><li>
                <t>If all domains prioritize the same CA, the ACME client proceeds with step 4.</t>
              </li>
              <li>
                <t>If not all domains prioritize the same CA, the ACME client tries to find a compromise based on the highest overall preference.</t>
              </li>
              <li>
                <t>If no compromise can be found, the process will end with a failure and the user <bcp14>SHOULD</bcp14> be notified.</t>
              </li>
            </ol>
          </li>
          <li>
            <t>The ACME client will download the ACME directory from the well-known location of the issuer-domain-name of the selected CA (https://[issuer-domain-name]/.well-known/acme)</t>
          </li>
          <li>
            <t>If an External Account Binding is required but not configured the ACME client will try to determine an alternative CA in step 3.
            </t>
            <ol spacing="normal" type="1"><li>
                <t>If no alternative CA can be found, the process with end with a failure and the user <bcp14>SHOULD</bcp14> be notified.</t>
              </li>
            </ol>
          </li>
          <li>
            <t>The ACME clients continues normal operation according to <xref target="RFC8555"/>.</t>
          </li>
        </ol>
        <section anchor="selecting-a-ca-through-compromise">
          <name>Selecting a CA through Compromise</name>
          <t>In the example below, we have three domains: "one.example", "two.example", and "three.example". Among these domains, "one.example" and "three.example" prioritize "ca1.example", while "two.example" prioritizes "ca2.example" over "ca1.example". To select a Certification Authority (CA), a compromise on the priority needs to be established.</t>
          <t>Based on the priorities specified, "ca1.example" is preferred by two out of the three domains. Since "ca1.example" is authorized by all domains and has the highest overall preference, it is selected as the CA to continue the process.</t>
          <sourcecode type="dns-rr"><![CDATA[
one.example CAA 0 issue "ca1.example; priority=1"
one.example CAA 0 issue "ca2.example; priority=2"

two.example CAA 0 issue "ca1.example; priority=2"
two.example CAA 0 issue "ca2.example; priority=1"

three.example CAA 0 issue "ca1.example; priority=1"
three.example CAA 0 issue "ca2.example; priority=2"
]]></sourcecode>
        </section>
      </section>
    </section>
    <section anchor="implementation-considerations">
      <name>Implementation Considerations</name>
      <section anchor="external-account-binding">
        <name>External Account Binding</name>
        <t>Clients <bcp14>SHOULD</bcp14> provide users with the ability to configure and utilize external account bindings per CA or ACME server, as it offers enhanced security and flexibility in managing the certificate provisioning process.</t>
        <t>External account bindings are not only crucial for users seeking to provision certificates with stronger authentication requirements such as Organization Validated (OV), Extended Validation (EV), and Qualified Website Authentication Certificates (QWAC), but they can also be applicable to Domain Validation (DV) certificates covered by a commercial agreement. By offering the configuration option for external account bindings, clients enable users to establish a secure association between their ACME accounts and external accounts, facilitating streamlined and authenticated certificate issuance processes. This flexibility accommodates a wide range of certificate types and use cases, ensuring that users can provision certificates with the appropriate level of authentication based on their specific requirements, whether they be DV certificates covered by a commercial agreement or certificates with higher levels of validation. Therefore, it is essential for clients to implement the external account binding configuration option to support the diverse needs of users in obtaining certificates with varying authentication levels.</t>
        <t>It is crucial for Certification Authorities (CAs) to carefully consider the internal account binding mechanisms described in this document. This is especially critical given the current lack of widespread support for external account bindings in user interfaces, with only a few command line utilities offering such functionality. By recognizing and implementing the internal account binding approach, CAs can provide a viable alternative for users who may not have access to or be familiar with external account binding options. This will help ensure a seamless and secure account linkage process, even in situations where the availability of external account binding configurations is limited.</t>
        <section anchor="internal-account-binding-using-domain-control-validation">
          <name>Internal Account Binding using Domain Control Validation</name>
          <t>In addition to the external account binding mechanism, an alternative approach can be implemented by the CAs that offers distinct advantages, particularly in cases where service providers may not expose the account binding configuration options to their users. This alternative method leverages domain control validation as the initial step in the process and subsequently pauses to await confirmation from the account holder regarding the account binding. The email address associated with the ACME account can be utilized for differentiating between multiple Certification Authority (CA) accounts holding the same domain name.</t>
          <t>The process to establish an internal account binding would be as follows:</t>
          <ol spacing="normal" type="1"><li>
              <t>The user adds the domain name to their Certification Authority (CA) account and completes the domain control verification process within this account.</t>
            </li>
            <li>
              <t>The user initiates the ACME process for certificate issuance or a new authorization.</t>
            </li>
            <li>
              <t>The ACME client validates domain control for the requested domain.</t>
            </li>
            <li>
              <t>Upon successful domain control validation the CA does not mark the authorizations as completed but awaits the completion of the account binding.</t>
            </li>
            <li>
              <t>The CA, having confirmed domain control, uses the provided email address associated with the ACME account to distinguish between different CA accounts that have confirmed control over the same domain name.</t>
            </li>
            <li>
              <t>The account holder receives a notification or prompt and confirms the account binding within the CA's system.</t>
            </li>
            <li>
              <t>Once the account binding is confirmed, the CA marks the ACME authorization as completed and the ACME client proceeds with the remaining steps of the ACME process, such as finalizing the certificate issuance.</t>
            </li>
          </ol>
          <t>It is important to note that before the ACME process can start, the domain name must be added to the CA account and the domain control validation process must be successfully completed. This ensures that the domain ownership is verified for both accounts before proceeding with the account binding.</t>
        </section>
        <section anchor="internal-account-binding-using-email-address">
          <name>Internal Account Binding using Email Address</name>
          <t>When ACME clients provide the email address associated with the user's account during the creation of a new account, Certification Authorities (CAs) can utilize this email address to establish an internal account binding between the ACME account and the corresponding customer account within their internal systems. This approach offers an alternative method for establishing the account linkage, particularly in cases where the ACME integration's user interface does not provide explicit external account binding configuration options.</t>
          <t>However, it is crucial to acknowledge that this internal account binding mechanism introduces potential vulnerabilities, particularly in relation to phishing attacks. It is imperative to exercise caution when utilizing this mechanism since the email address associated with the ACME account is not verified, and the account binding request can be initiated by any party. Careful consideration should be given to the security implications of relying solely on the email address for establishing the account linkage.</t>
        </section>
      </section>
      <section anchor="terms-of-service-and-acceptance">
        <name>Terms of Service and Acceptance</name>
        <t>The terms of service associated with different CAs can vary, and it is important to consider how these terms are handled within the context of auto-discovery.</t>
        <section anchor="implicit-acceptance-of-terms-of-service">
          <name>Implicit Acceptance of Terms of Service</name>
          <t>As the ACME client is not explicitly controlled by the user in a shared environment, the user's explicit approval of the terms of service presented by the CA becomes challenging. In the absence of a direct user interaction with the ACME client, it is assumed that the user accepts the terms of service by explicitly configuring the CAA record to authorize the CA.</t>
          <t>CAs will typically provide documentation indicating how to configure a domain's CAA record for ACME auto-discovery and are encouraged to note in alongside those instructions that doing so will be taken as implicit agreement to the Terms of Service, and also to include a direct link to those Terms of Service.</t>
          <t>ACME clients are strongly encouraged to display the relevant terms of service for the obtained certificates to ensure users have visibility into the associated obligations and restrictions. This helps users make informed decisions about their certificate management and ensures compliance with the terms of service set by the authorized CA.</t>
        </section>
        <section anchor="acceptance-through-caa-parameter">
          <name>Acceptance Through CAA Parameter</name>
          <t>One potential enhancement to address the explicit acceptance of terms of service is the inclusion of a CAA parameter called "termsOfServiceAgreed". This parameter would provide a direct mechanism for users to indicate their agreement to the terms of service.</t>
          <t>However, it is important to consider the trade-offs associated with adding this type of data to the CAA record. The inclusion of additional attributes can be perceived as clutter and may increase the complexity of configuring the CAA record. Therefore, the authors of this document recommend relying on the implicit acceptance of the terms of service.</t>
          <t>By configuring the CAA record to authorize a specific CA, users implicitly indicate their acceptance of the associated terms of service. This approach strikes a balance between simplicity and compliance with the CA's requirements. It is crucial for ACME clients to display the relevant terms of service for the obtained certificates, ensuring that users have visibility and can make informed decisions regarding their certificate management.</t>
        </section>
      </section>
    </section>
    <section anchor="sec-iana">
      <name>IANA Considerations</name>
      <section anchor="well-known-uri-for-the-acme-directory">
        <name>Well-Known URI for the ACME Directory</name>
        <t>The following value has been registered in the "Well-Known URIs" registry (using the template from <xref target="RFC5785"/>):</t>
        <artwork><![CDATA[
URI suffix: acme
Change controller: IETF
Specification document(s): RFC XXXX, Section Y.Z
Related information: N/A
]]></artwork>
        <ul empty="true">
          <li>
            <t><strong>RFC Editor's Note:</strong> Please replace XXXX above with the RFC number assigned to this document</t>
          </li>
        </ul>
      </section>
      <section anchor="caa-parameters">
        <name>CAA Parameters</name>
        <t>As per <xref target="RFC8659"/>, the parameter namespace for the CAA "issue" and "issuewild" Properties has CA-defined semantics, and the identifiers within that namespace may be freely and arbitrarily assigned by a CA. This document merely specifies recommended semantics for parameters of the names "discovery" and "priority", which CAs may choose to adopt.</t>
        <ul empty="true">
          <li>
            <t><strong>RFC Editor's Note:</strong>  Please remove this section prior to publication of a final version of this document.</t>
            <t>Although there is no requirement for a RFC 8659-compliant CA to process parameters, having a list of parameters whose recommended semantics have been defined would likely be useful. Therefor the authors of this document have the intention to establishing a CAA parameter registry in another document.</t>
            <t>See also: https://github.com/vanbroup/acme-auto-discovery/issues/14</t>
          </li>
        </ul>
        <!-- End of IANA Considerations section -->

</section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <section anchor="risks-with-auto-discovery-of-authorized-cas">
        <name>Risks with Auto-Discovery of Authorized CAs</name>
        <t>The mechanism described in this document relies on the DNS Certification Authority Authorization (CAA) Resource Record <xref target="RFC8659"/> to determine the authorized Certification Authorities (CAs) capable of issuing certificates for a given domain name(s). However, there are potential risks associated with the automatic provisioning of certificates without an explicit indication from the user.</t>
        <section anchor="unexpected-certificate-issuance">
          <name>Unexpected Certificate Issuance</name>
          <t>Where the issuance of certificates is currently restricted through CAA records and certificates are provisioned through alternative means (i.e., manual or via a proprietary API) certificates can unexpectedly be replaced with a similar certificate or a certificate of a different type (e.g., DV versus EV) if the ACME client supports this new mechanism.</t>
          <t>Its recommended that users who which to obtain certificates attesting to more than domain validation (DV) control, restrict the validation method using a CA specific “validationmethods” CAA parameter value (e.g., “ca-ov”, “ca-ev”, “ca-qwac”) as specified by <xref target="RFC8657"/>.</t>
        </section>
        <section anchor="issuance-by-the-wrong-authorized-ca">
          <name>Issuance by the ‘wrong’ authorized CA</name>
          <t>In scenarios where a domain name authorizes multiple CAs without specifying a weight or preference attribute, there is a risk that the ACME client may unexpectedly request a certificate from one of the authorized CAs that was only included as backup.
To mitigate this risk, it is recommended that users who have multiple CAA records explicitly configure the CAA record to include a weight or preference attribute to indicate their desired CA for certificate issuance.</t>
          <t>Additionally, ACME clients should provide clear visibility and feedback to users regarding the CA from which certificates will be obtained, ensuring that it aligns with their expectations.</t>
        </section>
      </section>
      <section anchor="malicious-acme-servers">
        <name>Malicious ACME Servers</name>
        <t>One potential security risk associated with the mechanism defined in this document is the possibility of domain owners placing links to malicious ACME servers into their DNS CAA Resource Records in order to attack the infrastructure of hosting providers. Malicious actors could exploit vulnerabilities in the ACME client implementation or inject malicious code, potentially leading to unauthorized access or remote code execution on the client's system.</t>
        <t>To minimize this risk, ACME clients must be written with a cautious and security-conscious approach when interacting with ACME servers. It is crucial not to blindly trust servers to behave securely and in accordance with the ACME protocol.</t>
      </section>
      <section anchor="acme-keys">
        <name>ACME Keys</name>
        <t>To ensure a secure account binding per customer, it is essential that each customer possesses their own unique ACME key. The utilization of individual ACME keys allows for a distinct association between the customer's account and the established account binding.</t>
        <t>If an account binding were to be established based on a shared ACME key, it could potentially lead to unauthorized users obtaining certificates using the same Certificate Authority (CA) based on the established account binding. This scenario poses a significant security risk and could result in the compromise of sensitive information or unauthorized certificate issuance.</t>
        <t>To mitigate this risk, it is crucial to enforce the use of individual ACME keys for each customer. This ensures that the account binding is securely linked to the respective customer's account, preventing unauthorized access or misuse by other users. By maintaining separate ACME keys per customer, the integrity and confidentiality of the account binding process are upheld, enhancing the overall security posture of the system.</t>
      </section>
      <section anchor="use-of-dns-security">
        <name>Use of DNS Security</name>
        <t>The use of DNSSEC to authenticate CAA RRs is strongly <bcp14>RECOMMENDED</bcp14> but not required. In scenarios where DNSSEC is not utilized, there is a potential risk wherein the ACME client may be compelled to request a certificate from an alternative ACME server, which could be malicious in nature.</t>
        <t>In the context of the public PKI, a compliant CA associated with the ACME server will deny such unauthorized requests if it was not delegated the authority through a CAA record. However, for ACME servers that operate outside the scope of public trust and may have malicious intentions, the ACME client can validate certificates against it local root store, thus identifying and mitigating this potential attack.</t>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <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="RFC8659">
          <front>
            <title>DNS Certification Authority Authorization (CAA) Resource Record</title>
            <author fullname="P. Hallam-Baker" initials="P." surname="Hallam-Baker"/>
            <author fullname="R. Stradling" initials="R." surname="Stradling"/>
            <author fullname="J. Hoffman-Andrews" initials="J." surname="Hoffman-Andrews"/>
            <date month="November" year="2019"/>
            <abstract>
              <t>The Certification Authority Authorization (CAA) DNS Resource Record allows a DNS domain name holder to specify one or more Certification Authorities (CAs) authorized to issue certificates for that domain name. CAA Resource Records allow a public CA to implement additional controls to reduce the risk of unintended certificate mis-issue. This document defines the syntax of the CAA record and rules for processing CAA records by CAs.</t>
              <t>This document obsoletes RFC 6844.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8659"/>
          <seriesInfo name="DOI" value="10.17487/RFC8659"/>
        </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="RFC8657">
          <front>
            <title>Certification Authority Authorization (CAA) Record Extensions for Account URI and Automatic Certificate Management Environment (ACME) Method Binding</title>
            <author fullname="H. Landau" initials="H." surname="Landau"/>
            <date month="November" year="2019"/>
            <abstract>
              <t>The Certification Authority Authorization (CAA) DNS record allows a domain to communicate an issuance policy to Certification Authorities (CAs) but only allows a domain to define a policy with CA-level granularity. However, the CAA specification (RFC 8659) also provides facilities for an extension to admit a more granular, CA-specific policy. This specification defines two such parameters: one allowing specific accounts of a CA to be identified by URIs and one allowing specific methods of domain control validation as defined by the Automatic Certificate Management Environment (ACME) protocol to be required.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8657"/>
          <seriesInfo name="DOI" value="10.17487/RFC8657"/>
        </reference>
        <reference anchor="RFC5785">
          <front>
            <title>Defining Well-Known Uniform Resource Identifiers (URIs)</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <author fullname="E. Hammer-Lahav" initials="E." surname="Hammer-Lahav"/>
            <date month="April" year="2010"/>
            <abstract>
              <t>This memo defines a path prefix for "well-known locations", "/.well-known/", in selected Uniform Resource Identifier (URI) schemes. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5785"/>
          <seriesInfo name="DOI" value="10.17487/RFC5785"/>
        </reference>
        <reference anchor="I-D.tweedale-acme-discovery">
          <front>
            <title>Automated Certificate Management Environment (ACME) Service Discovery</title>
            <author fullname="Fraser Tweedale" initials="F." surname="Tweedale">
              <organization>Red Hat</organization>
            </author>
            <date day="16" month="November" year="2020"/>
            <abstract>
              <t>   This document specifies a DNS-based Service Discovery (DNS-SD)
   profile that enables Automated Certificate Management Environment
   (ACME) clients to locate ACME servers in their network environment.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-tweedale-acme-discovery-01"/>
        </reference>
      </references>
    </references>
    <?line 469?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>TODO acknowledge.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+V92XLcVpbge37FbfpBkiszJWqxXeyy2ymK7mLYslSiZHd1
tSeMBG4mMUICWVhIpd2u8D/0S0/ETMT8wvzC9J/4S/qsdwGQKcoux9TMMBwW
ieUu5559w2w2m7R5W9gTc7To2mqW5U1aXdl6ZzY2vUzKvNmYVVWbxenTM9PY
Gm41R5NkuaztFb6Dly/osnmirx5N0qS166renZimzSaTrErLZANzZHWyamdX
Sbmsq+4ahrpMrmw5S9KNnSXR9LN7DyZNt9zkTZNXZbvbwtvnZy8/M+Y9kxRN
BXPnZWa3Fv5XtkdTc3S+eAz/wFKPzl+8/OxoUnabpa1PJhms5WSSVmVjy6Zr
Tkxbd3YCi38wSWqbnJiLs9PJdVW/XsOatie008lru4NL2cnEzPgC/hstEK+c
LhYTWH8H4xsTvm4Mr/hrGDYv1+Yf8R5c3SR5cWJwu5/mtl3Nq3oNV5M6vTwx
l227bU7u3oX1Jm2dpK9tPdeH7l6v7+Jbd5Nl1bV3cba8veyWJ0Zgub07AkN4
rIDNN60fXB+f8/vzvBp78e7Nz2l+2W6KyQQuXlY1gmFm8hKA/HyOSzOPw/fh
rjGMCM+TrtjzAGz3xJyVcEpNa77IN3lrM7qhSCf36FrT1tbC/u4/unfPXFRF
UmateVElmfnpx38zFx28bI7v3aNn07wFhLz1rG2T62RqnpVtUufVLb5XdTAq
3D5NyiRL5FoGK/38/ufmwT8+oiuWz28Li5/3gfOp5WXN02rjwfB0bp51ZQO4
1F4G23+av7a9G3/7297AoueVLnp8v6dz87gqS1sUwW5Pq9ruouuwWWAt3yUt
0Das7Um+zk9t3U7NeZneinatt4KtPM/btll29ZoBV9s1jfJ8EW/pVYkgNBct
koCpVmaxsXWeJuGWUlzZfMkr+zSDuVKYK97S+fxxUtc2r5NgS+f/8b/ydWWi
O3SCFzZt8c7ts66utvaOufgi2o/cj07x1otksywSOIQ2Kbpyl5iPPpiaB+Z4
bu59dO/eRzhNaouqTOa3Aji4q/G+L7ZJXgYnSUOEm85LWMB8KUv/tOEVxZv+
A6BoE59idIn2uri4f+/D335wz5zuVrtybQF+0V71frTZ4wfmObCS3QyQ1ry0
NXA6G2zqNLF1tsuyHnruNnUX7On0s/sPzG/PXoXb+vOnScPzzUvbTiZlVW8A
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

-->

</rfc>
