<?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.6.10 (Ruby 3.0.4) -->
<?rfc compact="yes"?>
<?rfc subcompact="no"?>
<?rfc rfcedstyle="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-uta-rfc6125bis-06" category="std" consensus="true" submissionType="IETF" obsoletes="6125" tocDepth="4" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.7 -->
  <front>
    <title abbrev="Service Identity">Service Names in TLS</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-uta-rfc6125bis-06"/>
    <author initials="P." surname="Saint-Andre" fullname="Peter Saint-Andre">
      <organization/>
      <address>
        <postal>
          <country>US</country>
        </postal>
        <email>stpeter@stpeter.im</email>
      </address>
    </author>
    <author initials="J." surname="Hodges" fullname="Jeff Hodges">
      <organization/>
      <address>
        <postal>
          <country>US</country>
        </postal>
        <email>netwerkeddude@gmail.com</email>
      </address>
    </author>
    <author initials="R." surname="Salz" fullname="Rich Salz">
      <organization>Akamai Technologies</organization>
      <address>
        <postal>
          <country>US</country>
        </postal>
        <email>rsalz@akamai.com</email>
      </address>
    </author>
    <date year="2022" month="May" day="26"/>
    <area>Applications</area>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>Many application technologies enable secure communication between two entities
by means of Transport Layer Security (TLS) with
Internet Public Key Infrastructure Using X.509 (PKIX) certificates.
This document specifies
procedures for representing and verifying the identity of application services
in such interactions.</t>
      <t>This document obsoletes RFC 6125.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Discussion of this document takes place on the
  Using TLS in Applications Working Group mailing list (uta@ietf.org),
  which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/uta/"/>.</t>
      <t>Source for this draft and an issue tracker can be found at
  <eref target="https://github.com/richsalz/draft-ietf-uta-rfc6125bis"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="intro">
      <name>Introduction</name>
      <section anchor="motivation">
        <name>Motivation</name>
        <t>The visible face of the Internet largely consists of services that employ a
client-server architecture in which a client
communicates with an application service.  When a client communicates with an
application service using <xref target="TLS"/>, <xref target="DTLS"/>, or a protocol built on those,
it has some notion of the server's
identity (e.g., "the website at example.com") while attempting to establish
secure communication.  Likewise, during TLS negotiation, the server presents
its notion of the service's identity in the form of a public-key certificate
that was issued by a certificate authority (CA) in the context of the
Internet Public Key Infrastructure using X.509 <xref target="PKIX"/>.  Informally, we can
think of these identities as the client's "reference identity" and the
server's "presented identity"; more formal definitions are given later.  A
client needs to verify that the server's presented identity matches its
reference identity so it can deterministically and automatically authenticate the communication.</t>
        <t>This document defines procedures for how clients do this verification.
It therefore also defines requirements on other parties, such as
the certificate authorities that issue certificates, the service administrators requesting
them, and the protocol designers defining how things are named.</t>
        <t>This document obsoletes RFC 6125. Changes from RFC 6125 are described under <xref target="changes"/>.</t>
      </section>
      <section anchor="applicability">
        <name>Applicability</name>
        <t>This document does not supersede the rules for certificate issuance or
validation specified by <xref target="PKIX"/>.  That document also governs any
certificate-related topic on which this document is silent.  This includes
certificate syntax, extensions such as name constraints or
extended key usage, and handling of certification paths.</t>
        <t>This document addresses only name forms in the leaf "end entity" server
certificate.  It does not address the name forms in the chain of certificates
used to validate a cetrificate, let alone creating or checking the validity
of such a chain.  In order to ensure proper authentication, applications need
to verify the entire certification path as per <xref target="PKIX"/>.</t>
      </section>
      <section anchor="overview">
        <name>Overview of Recommendations</name>
        <t>The previous version of this specification, <xref target="VERIFY"/>, surveyed the then-current
practice from many IETF standards and tried to generalize best practices
(see Appendix A <xref target="VERIFY"/> for details).
This document takes the lessons learned since then and codifies them.
The rules are brief:</t>
        <ul spacing="normal">
          <li>Only check DNS domain names via the subjectAlternativeName
extension designed for that purpose: dNSName.</li>
          <li>Allow use of even more specific
subjectAlternativeName extensions where appropriate such as
uniformResourceIdentifier and the otherName form SRVName.</li>
          <li>Wildcard support is now the default.
Constrain wildcard certificates so that the wildcard can only
be the complete left-most component of a domain name.</li>
          <li>Do not include or check strings that look like domain names
in the subject's Common Name.</li>
        </ul>
      </section>
      <section anchor="scope">
        <name>Scope</name>
        <section anchor="in-scope">
          <name>In Scope</name>
          <t>This document applies only to service identities that meet these
three characteristics: associated with fully-qualified domain names (FQDNs),
used with TLS and DTLS, and are PKIX-based.</t>
          <t>TLS uses the words client and server, where the client is the entity
that initiates the connection.  In many cases, this is consistent with common practice,
such as a browser connecting to a Web origin.
For the sake of clarity, and to follow the usage in <xref target="TLS"/> and related
specifications, we will continue
to use the terms client and server in this document.
However, these are TLS-layer roles, and the application protocol
could support the TLS server making requests to the TLS client after the
TLS handshake; these is no requirement that the roles at the application
layer match the TLS layer.</t>
          <t>At the time of this writing, other protocols such as <xref target="QUIC"/> and
Network Time Security (<xref target="NTS"/>) use DTLS or TLS to do the
initial establishment of cryptographic key material.
The rules specified here apply to such services, as well.</t>
        </section>
        <section anchor="out-of-scope">
          <name>Out of Scope</name>
          <t>The following topics are out of scope for this specification:</t>
          <ul spacing="normal">
            <li>Security protocols other than <xref target="TLS"/> or <xref target="DTLS"/> except as
described above.</li>
            <li>Keys or certificates employed outside the context of PKIX-based systems.</li>
            <li>Client or end-user identities.
Certificates representing client identities other than as
described above, such as rfc822Name, are beyond the scope
of this document.</li>
            <li>Identifiers other than FQDNs.
Identifiers such as IP address are not discussed. In addition, the focus of
this document is on application service identities, not specific resources
located at such services.  Therefore this document discusses Uniform
Resource Identifiers <xref target="URI"/> only as a way to communicate a DNS domain name
(via the URI "host" component or its equivalent), not other aspects of a
service such as a specific resource (via the URI "path" component) or
parameters (via the URI "query" component).</li>
            <li>
              <t>Certification authority policies.
This includes items such as the following:  </t>
              <ul spacing="normal">
                <li>How to certify or validate FQDNs and application
service types (see <xref target="ACME"/> for some definition of this).</li>
                <li>Issuance of certificates with identifiers such as IP addresses
instead of or in addition to FQDNs.</li>
                <li>Types or "classes" of certificates to issue and whether to apply different
policies for them.</li>
                <li>How to certify or validate other kinds of information that might be
included in a certificate (e.g., organization name).</li>
              </ul>
            </li>
            <li>Resolution of DNS domain names.
Although the process whereby a client resolves the DNS domain name of an
application service can involve several steps, for our purposes we care
only about the fact that the client needs to verify the identity of the
entity with which it communicates as a result of the resolution process.
Thus the resolution process itself is out of scope for this specification.</li>
            <li>User interface issues.
In general, such issues are properly the responsibility of client
software developers and standards development organizations
dedicated to particular application technologies (see, for example,
<xref target="WSC-UI"/>).</li>
          </ul>
        </section>
      </section>
      <section anchor="terminology">
        <name>Terminology</name>
        <t>Because many concepts related to "identity" are often too vague to be
actionable in application protocols, we define a set of more concrete terms
for use in this specification.</t>
        <dl>
          <dt>application service:</dt>
          <dd>
            <t>A service on the Internet that enables clients to connect for the
purpose of retrieving or uploading information, communicating with other
entities, or connecting to a broader network of services.</t>
          </dd>
          <dt>application service provider:</dt>
          <dd>
            <t>An entity that hosts or deploys an application service.</t>
          </dd>
          <dt>application service type:</dt>
          <dd>
            <t>A formal identifier for the application protocol used to provide a
particular kind of application service at a domain.  This often appears as
a URI scheme <xref target="URI"/>, DNS SRV Service <xref target="DNS-SRV"/>, or an ALPN <xref target="ALPN"/>
identifier.</t>
          </dd>
          <dt>delegated domain:</dt>
          <dd>
            <t>A domain name or host name that is explicitly configured for communicating
with the source domain, either by the human user controlling the client
or by a trusted administrator.  For example, a server at mail.example.net
could be a delegated domain for connecting to an IMAP server hosting an email address of
user@example.net.</t>
          </dd>
          <dt>derived domain:</dt>
          <dd>
            <t>A domain name or host name that a client has derived from the source domain
in an automated fashion (e.g., by means of a <xref target="DNS-SRV"/> lookup).</t>
          </dd>
          <dt>identifier:</dt>
          <dd>
            <t>A particular instance of an identifier type that is either presented by a
server in a certificate or referenced by a client for matching purposes.</t>
          </dd>
          <dt>identifier type:</dt>
          <dd>
            <t>A formally-defined category of identifier that can be included in a
certificate and therefore that can also be used for matching purposes. For
conciseness and convenience, we define the following identifier types of
interest:
</t>
            <ul spacing="normal">
              <li>DNS-ID: a subjectAltName entry of type dNSName as defined in <xref target="PKIX"/>.</li>
              <li>SRV-ID: a subjectAltName entry of type otherName whose name form is
SRVName, as defined in <xref target="SRVNAME"/>.</li>
              <li>URI-ID: a subjectAltName entry of type uniformResourceIdentifier
as defined in <xref target="PKIX"/>. This entry <bcp14>MUST</bcp14> include both a "scheme" and
a "host" component (or its equivalent) that matches the "reg-name"
rule (where the quoted terms represent the associated <xref target="ABNF"/>
productions from <xref target="URI"/>).  If the entry does not have both, it is not a
valid URI-ID and <bcp14>MUST</bcp14> be ignored.</li>
            </ul>
          </dd>
          <dt>PKIX:</dt>
          <dd>
            <t>The short name for the Internet Public Key Infrastructure using X.509
defined in <xref target="PKIX"/>.  That document provides a profile of the X.509v3
certificate specifications and X.509v2 certificate revocation list (CRL)
specifications for use in the Internet.</t>
          </dd>
          <dt>presented identifier:</dt>
          <dd>
            <t>An identifier presented by a server to a client within a PKIX certificate
when the client attempts to establish secure communication with the server.
The certificate can include one or more presented identifiers of different
types, and if the server hosts more than one domain then the certificate
might present distinct identifiers for each domain.</t>
          </dd>
          <dt>reference identifier:</dt>
          <dd>
            <t>An identifier used by the client when examining presented identifiers.
It is constructed from the source domain, and optionally an application
service type.</t>
          </dd>
          <dt>Relative Distinguished Name (RDN):</dt>
          <dd>
            <t>An ASN.1-based construction which itself is a building-block component of
Distinguished Names. See <xref section="2" sectionFormat="comma" target="LDAP-DN"/>.</t>
          </dd>
          <dt>source domain:</dt>
          <dd>
            <t>The FQDN that a client expects an application
service to present in the certificate. This is typically input by
a human user, configured into a client, or provided by reference such as
a URL. The combination of a source domain and, optionally, an application
service type enables a client to construct one or more reference
identifiers.</t>
          </dd>
          <dt>subjectAltName entry:</dt>
          <dd>
            <t>An identifier placed in a subjectAltName extension.</t>
          </dd>
          <dt>subjectAltName extension:</dt>
          <dd>
            <t>A standard PKIX extension enabling identifiers of various types to be
bound to the certificate subject.</t>
          </dd>
          <dt>subjectName:</dt>
          <dd>
            <t>The name of a PKIX certificate's subject, encoded in a certificate's
subject field (see <xref section="4.1.2.6" sectionFormat="comma" target="PKIX"/>).</t>
          </dd>
        </dl>
        <t>Security-related terms used in this document, but not defined here or in
<xref target="PKIX"/> should be understood in the the sense defined in <xref target="SECTERMS"/>. Such
terms include "attack", "authentication", "identity", "trust", "validate",
and "verify".</t>
        <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>
      </section>
    </section>
    <section anchor="names">
      <name>Naming of Application Services</name>
      <t>This document assumes that the name of an application service is
based on a DNS domain name (e.g., <tt>example.com</tt>) -- supplemented in
some circumstances by an application service type (e.g., "the IMAP
server at example.net").
The DNS name conforms to one of the following forms:</t>
      <ol spacing="normal" type="1"><li>A "traditional domain name", i.e., a FQDN (see <xref target="DNS-CONCEPTS"/>) all of
  whose labels are "LDH labels" as described in <xref target="IDNA-DEFS"/>.  Informally,
  such labels are constrained to <xref target="US-ASCII"/> letters, digits, and the
  hyphen, with the hyphen prohibited in the first character position.
  Additional qualifications apply (refer to the above-referenced
  specifications for details), but they are not relevant here.</li>
        <li>An "internationalized domain name", i.e., a DNS domain name that includes at
  least one label containing appropriately encoded Unicode code points
  outside the traditional US-ASCII range. That is, it contains at least one
  U-label or A-label, but otherwise may contain any mixture of NR-LDH labels,
  A-labels, or U-labels, as described in <xref target="IDNA-DEFS"/> and the associated
  documents.</li>
      </ol>
      <t>From the perspective of the application client or user, some names are
<em>direct</em> because they are provided directly by a human user.  This includes
runtime input, prior configuration, or explicit acceptance of a client
communication attempt.  Other names are <em>indirect</em> because they are
automatically resolved by the application based on user input, such as a
target name resolved from a source name using DNS SRV or <xref target="NAPTR"/> records.
The distinction matters most for certificate consumption, specifically
verification as discussed in this document.</t>
      <t>From the perspective of the application service, some names are
<em>unrestricted</em> because they can be used in any type of service, such as a
single certificate being used for both the HTTP and IMAP services at the host
example.com.  Other names are <em>restricted</em> because they can only be used for
one type of service, such as a special-purpose certificate that can only be
used for an IMAP service.  This distinction matters most for certificate
issuance.</t>
      <t>We can categorize the three identifier types as follows:</t>
      <ul spacing="normal">
        <li>A DNS-ID is direct and unrestricted.</li>
        <li>An SRV-ID is typically indirect but can be direct, and is restricted.</li>
        <li>A URI-ID is direct and restricted.</li>
      </ul>
      <t>It is important to keep these distinctions in mind, because best practices
for the deployment and use of the identifiers differ.
Note that cross-protocol attacks such as <xref target="ALPACA"/>
are possibile when two
different protocol services use the same certificate.
This can be addressed by using restricted identifiers, or deploying
services so that they do not share certificates.
Protocol specifications <bcp14>MUST</bcp14> specify which identifiers are
mandatory-to-implement and <bcp14>SHOULD</bcp14> provide operational guidance when necessary.</t>
      <t>The Common Name RDN <bcp14>MUST NOT</bcp14> be used to identify a service. Reasons
for this include:</t>
      <ul spacing="normal">
        <li>It is not strongly typed and therefore suffers from ambiguities
in interpretation.</li>
        <li>It can appear more than once in the subjectName.</li>
      </ul>
      <t>For similar reasons, other RDN's within the subjectName <bcp14>MUST NOT</bcp14> be used to
identify a service.</t>
    </section>
    <section anchor="design">
      <name>Designing Application Protocols</name>
      <t>This section defines how protocol designers should reference this document,
which would typically be a normative reference in their specification.
Its specification
<bcp14>MAY</bcp14> choose to allow only one of the identifier types defined here.</t>
      <t>If the technology does not use DNS SRV records to resolve the DNS domain
names of application services then its specification <bcp14>MUST</bcp14> state that SRV-ID
as defined in this document is not supported.  Note that many existing
application technologies use DNS SRV records to resolve the DNS domain names
of application services, but do not rely on representations of those records
in PKIX certificates by means of SRV-IDs as defined in <xref target="SRVNAME"/>.</t>
      <t>If the technology does not use URIs to identify application services, then
its specification <bcp14>MUST</bcp14> state that URI-ID as defined in this document is not
supported.  Note that many existing application technologies use URIs to
identify application services, but do not rely on representation of those
URIs in PKIX certificates by means of URI-IDs.</t>
      <t>A technology <bcp14>MAY</bcp14> disallow the use of the wildcard character in DNS names. If
it does so, then the specification <bcp14>MUST</bcp14> state that wildcard certificates as
defined in this document are not supported.</t>
    </section>
    <section anchor="represent">
      <name>Representing Server Identity</name>
      <t>This section provides instructions for issuers of
certificates.</t>
      <section anchor="represent-rules">
        <name>Rules</name>
        <t>When a certificate authority issues a certificate based on the FQDN
at which the application service provider
will provide the relevant application, the following rules apply to
the representation of application service identities.
Note that some of these rules are cumulative
and can interact in important ways that are illustrated later in this
document.</t>
        <ol spacing="normal" type="1"><li>The certificate <bcp14>SHOULD</bcp14> include a "DNS-ID" as a baseline
for interoperability.</li>
          <li>If the service using the certificate deploys a technology for which
  the relevant specification stipulates that certificates ought to
  include identifiers of type SRV-ID (e.g., <xref target="XMPP"/>),
  then the certificate <bcp14>SHOULD</bcp14> include an SRV-ID.</li>
          <li>If the service using the certificate deploys a technology for which
  the relevant specification stipulates that certificates ought to include
  identifiers of type URI-ID (e.g., <xref target="SIP"/> as specified by
  <xref target="SIP-CERTS"/>), then the certificate <bcp14>SHOULD</bcp14> include a URI-ID.  The scheme
  <bcp14>MUST</bcp14> be that of the protocol associated with the application service type
  and the "host" component (or its equivalent) <bcp14>MUST</bcp14> be the FQDN
  of the service.  The application protocol specification
  <bcp14>MUST</bcp14> specify which URI schemes are acceptable in URI-IDs contained in PKIX
  certificates used for the application protocol (e.g., <tt>sip</tt> but not <tt>sips</tt>
  or <tt>tel</tt> for SIP as described in <xref target="SIP-SIPS"/>).</li>
          <li>The certificate <bcp14>MAY</bcp14> contain more than one DNS-ID, SRV-ID, or URI-ID
  as further explained under <xref target="security-multi"/>.</li>
          <li>The certificate <bcp14>MAY</bcp14> include other application-specific identifiers
  for compatibility with a deployed base. Such identifiers are out of
  scope for this specification.</li>
        </ol>
      </section>
      <section anchor="represent-examples">
        <name>Examples</name>
        <t>Consider a simple website at <tt>www.example.com</tt>, which is not discoverable via
DNS SRV lookups.  Because HTTP does not specify the use of URIs in server
certificates, a certificate for this service might include only a DNS-ID of
<tt>www.example.com</tt>.</t>
        <t>Consider an IMAP-accessible email server at the host <tt>mail.example.net</tt>
servicing email addresses of the form <tt>user@example.net</tt> and discoverable via
DNS SRV lookups on the application service name of <tt>example.net</tt>.  A
certificate for this service might include SRV-IDs of <tt>_imap.example.net</tt> and
<tt>_imaps.example.net</tt> (see <xref target="EMAIL-SRV"/>) along with DNS-IDs of <tt>example.net</tt>
and <tt>mail.example.net</tt>.</t>
        <t>Consider a SIP-accessible voice-over-IP (VoIP) server at the host
<tt>voice.example.edu</tt> servicing SIP addresses of the form
<tt>user@voice.example.edu</tt> and identified by a URI of &lt;sip:voice.example.edu&gt;.
A certificate for this service would include a URI-ID of
<tt>sip:voice.example.edu</tt> (see <xref target="SIP-CERTS"/>) along with a DNS-ID of
<tt>voice.example.edu</tt>.</t>
        <t>Consider an XMPP-compatible instant messaging (IM) server at the host
<tt>im.example.org</tt> servicing IM addresses of the form <tt>user@im.example.org</tt> and
discoverable via DNS SRV lookups on the <tt>im.example.org</tt> domain.  A
certificate for this service might include SRV-IDs of
<tt>_xmpp-client.im.example.org</tt> and <tt>_xmpp-server.im.example.org</tt> (see
<xref target="XMPP"/>), a DNS-ID of <tt>im.example.org</tt>.  For backward compatibility, it may
also have an XMPP-specific <tt>XmppAddr</tt> of <tt>im.example.org</tt> (see <xref target="XMPP"/>).</t>
      </section>
    </section>
    <section anchor="request">
      <name>Requesting Server Certificates</name>
      <t>This section provides instructions for service providers regarding
the information to include in certificate signing requests (CSRs).
In general, service providers <bcp14>SHOULD</bcp14> request certificates that
include all of the identifier types that are required or recommended for
the application service type that will be secured using the certificate to
be issued.</t>
      <t>If the certificate will be used for only a single type of application
service, the service provider <bcp14>SHOULD</bcp14> request a certificate that includes
a DNS-ID and, if appropriate for the application service type, an SRV-ID or
URI-ID that limits the deployment scope of the certificate to only the
defined application service type.</t>
      <t>If the certificate might be used for any type of application service, then
the service provider <bcp14>SHOULD</bcp14> request a certificate that includes
only a DNS-ID. Again, because of multi-protocol attacks this practice is
discouraged; this can be mitigated by deploying only one service on
a host.</t>
      <t>If a service provider offers multiple application service types and wishes to
limit the applicability of certificates using SRV-IDs or URI-IDs, they <bcp14>SHOULD</bcp14>
request multiple certificates, rather than a single certificate containing
multiple SRV-IDs or URI-IDs each identifying a different application service
type. This rule does not apply to application service type "bundles" that
identify distinct access methods to the same underlying application such as
an email application with access methods denoted by the application service
types of <tt>imap</tt>, <tt>imaps</tt>, <tt>pop3</tt>, <tt>pop3s</tt>, and <tt>submission</tt> as described in
<xref target="EMAIL-SRV"/>.</t>
    </section>
    <section anchor="verify">
      <name>Verifying Service Identity</name>
      <t>At a high level, the client verifies the application service's
identity by performing the following actions:</t>
      <ol spacing="normal" type="1"><li>The client constructs a list of acceptable reference identifiers
  based on the source domain and, optionally, the type of service to
  which the client is connecting.</li>
        <li>The server provides its identifiers in the form of a PKIX
certificate.</li>
        <li>The client checks each of its reference identifiers against the
  presented identifiers for the purpose of finding a match. When checking a
  reference identifier against a presented identifier, the client matches the
  source domain of the identifiers and, optionally, their application service
  type.</li>
      </ol>
      <t>Naturally, in addition to checking identifiers, a client should perform
further checks, such as expiration and revocation, to ensure that the server
is authorized to provide the requested service.  Because such checking is not a
matter of verifying the application service identity presented in a
certificate, methods for doing so are out of scope for
this document.</t>
      <section anchor="verify-reference">
        <name>Constructing a List of Reference Identifiers</name>
        <section anchor="verify-reference-rules">
          <name>Rules</name>
          <t>The client <bcp14>MUST</bcp14> construct a list of acceptable reference identifiers,
and <bcp14>MUST</bcp14> do so independently of the identifiers presented by the
service.</t>
          <t>The inputs used by the client to construct its list of reference identifiers
might be a URI that a user has typed into an interface (e.g., an HTTPS URL
for a website), configured account information (e.g., the domain name of a
host for retrieving email, which might be different from the DNS domain name
portion of a username), a hyperlink in a web page that triggers a browser to
retrieve a media object or script, or some other combination of information
that can yield a source domain and an application service type.</t>
          <t>The client might need to extract the source domain and application service
type from the input(s) it has received.  The extracted data <bcp14>MUST</bcp14> include only
information that can be securely parsed out of the inputs, such as parsing
the FQDN out of the "host" component or deriving the application service type
from the scheme of a URI.  Other possibilities include pulling the data from
a delegated domain that is explicitly established via client or system
configuration or resolving the data via <xref target="DNSSEC"/>.
These considerations apply only to extraction of the source domain from the
inputs.  Naturally, if the inputs themselves are invalid or corrupt (e.g., a
user has clicked a link provided by a malicious entity in a phishing attack),
then the client might end up communicating with an unexpected application
service.</t>
          <t>For example, given an input URI of &lt;sip:alice@example.net&gt;, a client
would derive the application service type <tt>sip</tt> from the scheme
and parse the domain name <tt>example.net</tt> from the host component.</t>
          <t>Each reference identifier in the list <bcp14>MUST</bcp14> be based on the source domain and
<bcp14>MUST NOT</bcp14> be based on a derived domain such as a domain name discovered
through DNS resolution of the source domain.  This rule is important because
only a match between the user inputs and a presented identifier enables the
client to be sure that the certificate can legitimately be used to secure the
client's communication with the server. This removes
DNS and DNS resolution from the attack surface.</t>
          <t>Using the combination of FQDN(s) and application service type, the client
<bcp14>MUST</bcp14> construct its list of reference identifiers in accordance with the
following rules:</t>
          <ul spacing="normal">
            <li>The list <bcp14>SHOULD</bcp14> include a DNS-ID.
A reference identifier of type DNS-ID can be directly constructed from a
FQDN that is (a) contained in or securely derived from the inputs, or
(b) explicitly associated with the source domain by means of user
configuration.</li>
            <li>If a server for the application service type is typically discovered
by means of DNS SRV records, then the list <bcp14>SHOULD</bcp14> include an SRV-ID.</li>
            <li>If a server for the application service type is typically associated
with a URI for security purposes (i.e., a formal protocol document
specifies the use of URIs in server certificates), then the list
<bcp14>SHOULD</bcp14> include a URI-ID.</li>
          </ul>
          <t>Which identifier types a client includes in its list of reference
identifiers, and their priority, is a matter of local policy.  For example, a
client that is built to connect only to a particular kind of service might be
configured to accept as valid only certificates that include an SRV-ID for
that application service type.  By contrast, a more lenient client, even if
built to connect only to a particular kind of service, might include both
SRV-IDs and DNS-IDs in its list of reference identifiers.</t>
        </section>
        <section anchor="verify-reference-examples">
          <name>Examples</name>
          <t>The following examples are for illustrative purposes only and are not
intended to be comprehensive.</t>
          <ol spacing="normal" type="1"><li>A web browser that is connecting via HTTPS to the website at <tt>www.example.com</tt>
would have a single reference identifier: a DNS-ID of <tt>www.example.com</tt>.</li>
            <li>A mail user agent that is connecting via IMAPS to the email service at
<tt>example.net</tt> (resolved as <tt>mail.example.net</tt>) might have three reference
identifiers: an SRV-ID of <tt>_imaps.example.net</tt> (see <xref target="EMAIL-SRV"/>), and
DNS-IDs of <tt>example.net</tt> and <tt>mail.example.net</tt>.  An email user agent that
does not support <xref target="EMAIL-SRV"/> would probably be explicitly configured to
connect to <tt>mail.example.net</tt>, whereas an SRV-aware user agent would derive
<tt>example.net</tt> from an email address of the form <tt>user@example.net</tt> but might
also accept <tt>mail.example.net</tt> as the DNS domain name portion of reference
identifiers for the service.</li>
            <li>A voice-over-IP (VoIP) user agent that is connecting via SIP to the voice
service at <tt>voice.example.edu</tt> might have only one reference identifier:
a URI-ID of <tt>sip:voice.example.edu</tt> (see <xref target="SIP-CERTS"/>).</li>
            <li>An instant messaging (IM) client that is connecting via XMPP to the IM
service at <tt>im.example.org</tt> might have three reference identifiers: an
SRV-ID of <tt>_xmpp-client.im.example.org</tt> (see <xref target="XMPP"/>), a DNS-ID of
<tt>im.example.org</tt>, and an XMPP-specific <tt>XmppAddr</tt> of <tt>im.example.org</tt>
(see <xref target="XMPP"/>).</li>
          </ol>
          <t>In all of these cases, presented identifiers that do not match the reference
identifier(s) would be rejected; for instance:</t>
          <ul spacing="normal">
            <li>With regard to the first example a DNS-ID of "web.example.com" would
be rejected because the DNS domain name portion does not match
"www.example.com".</li>
            <li>With regard to the third example, a URI-ID of "sip:www.example.edu"
would be rejected because the DNS domain name portion does not match
"voice.example.edu" and a DNS-ID of "voice.example.edu" would be
rejected because it lacks the appropriate application service type
portion (i.e., it does not specify a "sip:" URI).</li>
          </ul>
        </section>
      </section>
      <section anchor="verify-seek">
        <name>Preparing to Seek a Match</name>
        <t>Once the client has constructed its list of reference identifiers and has
received the server's presented identifiers,
the client checks its reference identifiers against the presented identifiers
for the purpose of finding a match.
The search fails if the client exhausts
its list of reference identifiers without finding a match.  The search succeeds
if any presented identifier matches one of the reference identifiers, at
which point the client <bcp14>SHOULD</bcp14> stop the search.</t>
        <t>Before applying the comparison rules provided in the following
sections, the client might need to split the reference identifier into
its DNS domain name portion and its application service type portion,
as follows:</t>
        <ul spacing="normal">
          <li>A DNS-ID reference identifier <bcp14>MUST</bcp14> be used directly as the DNS domain
name and there is no application service type.</li>
          <li>For an SRV-ID reference identifier, the DNS domain name portion is
the Name and the application service type portion is the Service.  For
example, an SRV-ID of <tt>_imaps.example.net</tt> has a DNS domain name portion
of <tt>example.net</tt> and an application service type portion of
<tt>imaps</tt>, which maps to the IMAP application protocol as explained in
<xref target="EMAIL-SRV"/>.</li>
          <li>For a reference identifier of type URI-ID, the DNS domain name
portion is the "reg-name" part of the "host" component and the application
service type portion is the scheme, as defined above.  Matching only the
"reg-name" rule from <xref target="URI"/> limits verification to DNS domain names,
thereby differentiating a URI-ID from a uniformResourceIdentifier entry
that contains an IP address or a mere host name, or that does not contain a
"host" component at all.  Furthermore, note that extraction of the
"reg-name" might necessitate normalization of the URI (as explained in
<xref target="URI"/>).  For example, a URI-ID of <tt>sip:voice.example.edu</tt> would be split
into a DNS domain name portion of <tt>voice.example.edu</tt> and an application
service type of <tt>sip</tt> (associated with an application protocol of SIP as
explained in <xref target="SIP-CERTS"/>).</li>
        </ul>
        <t>A client <bcp14>MUST</bcp14> match the DNS name, and if an application service type
is present it <bcp14>MUST</bcp14> also match the service type as well.
These are described below.</t>
      </section>
      <section anchor="verify-domain">
        <name>Matching the DNS Domain Name Portion</name>
        <t>This section describes how the client must determine if the presented DNS
name matches the reference DNS name.  The rules differ depending on whether
the domain to be checked is a traditional domain name or an
internationalized domain name, as defined in <xref target="names"/>.  For clients
that support names containing the wildcard character "*", this section
also specifies a supplemental rule for such "wildcard certificates".
This section uses the description of labels and domain names in
<xref target="DNS-CONCEPTS"/>.</t>
        <t>If the DNS domain name portion of a reference identifier is a traditional
domain name, then matching of the reference identifier against the presented
identifier <bcp14>MUST</bcp14> be performed by comparing the set of domain name labels using
a case-insensitive ASCII comparison, as clarified by <xref target="DNS-CASE"/>.  For
example, <tt>WWW.Example.Com</tt> would be lower-cased to <tt>www.example.com</tt> for
comparison purposes.  Each label <bcp14>MUST</bcp14> match in order for the names to be
considered to match, except as supplemented by the rule about checking of
wildcard labels given below.</t>
        <t>If the DNS domain name portion of a reference identifier is an
internationalized domain name, then the client <bcp14>MUST</bcp14> convert any U-labels
<xref target="IDNA-DEFS"/> in the domain name to A-labels before checking the domain name.
In accordance with <xref target="IDNA-PROTO"/>, A-labels <bcp14>MUST</bcp14> be compared as
case-insensitive ASCII.  Each label <bcp14>MUST</bcp14> match in order for the domain names
to be considered to match, except as supplemented by the rule about checking
of wildcard labels given below.</t>
        <t>If the technology specification supports wildcards, then the client <bcp14>MUST</bcp14>
match the reference identifier against a presented identifier whose DNS
domain name portion contains the wildcard character "*" in a label provided
these requirements are met:</t>
        <ol spacing="normal" type="1"><li>There is only one wildcard character.</li>
          <li>The wildcard character appears only as the complete content of the left-most label.</li>
        </ol>
        <t>If the requirements are not met, the presented identifier is invalid and <bcp14>MUST</bcp14>
be ignored.</t>
        <t>A wildcard in a presented identifier can only match exactly one label in a
reference identifier. Note that this is not the same as DNS wildcard
matching, where the "*" label always matches at least one whole label and
sometimes more. See <xref section="4.3.3" sectionFormat="comma" target="DNS-CONCEPTS"/> and <xref target="DNS-WILDCARDS"/>.</t>
        <t>For information regarding the security characteristics of wildcard
certificates, see <xref target="security-wildcards"/>.</t>
      </section>
      <section anchor="verify-app">
        <name>Matching the Application Service Type Portion</name>
        <t>The rules for matching the application service type depend on whether
the identifier is an SRV-ID or a URI-ID.</t>
        <t>These identifiers provide an application service type portion to be checked,
but that portion is combined only with the DNS domain name portion of the
SRV-ID or URI-ID itself.  For example, if a client's list of reference
identifiers includes an SRV-ID of <tt>_xmpp-client.im.example.org</tt> and a DNS-ID
of <tt>apps.example.net</tt>, the client <bcp14>MUST</bcp14> check both the combination of an
application service type of <tt>xmpp-client</tt> and a DNS domain name of
<tt>im.example.org</tt> and a DNS domain name of <tt>apps.example.net</tt>.  However, the
client <bcp14>MUST NOT</bcp14> check the combination of an application service type of
<tt>xmpp-client</tt> and a DNS domain name of <tt>apps.example.net</tt> because it does not
have an SRV-ID of <tt>_xmpp-client.apps.example.net</tt> in its list of reference
identifiers.</t>
        <t>If the identifier is an SRV-ID, then the application service name <bcp14>MUST</bcp14>
be matched in a case-insensitive manner, in accordance with <xref target="DNS-SRV"/>.
Note that the <tt>_</tt> character is prepended to the service identifier in
DNS SRV records and in SRV-IDs (per <xref target="SRVNAME"/>), and thus does not
need to be included in any comparison.</t>
        <t>If the identifier is a URI-ID, then the scheme name portion <bcp14>MUST</bcp14> be
matched in a case-insensitive manner, in accordance with <xref target="URI"/>.
Note that the <tt>:</tt> character is a separator between the scheme name
and the rest of the URI, and thus does not need to be included in any
comparison.</t>
      </section>
      <section anchor="outcome">
        <name>Outcome</name>
        <t>If the client has found a presented identifier that matches a reference
identifier, then the service identity check has succeeded.  In this case, the
client <bcp14>MUST</bcp14> use the matched reference identifier as the validated identity of
the application service.</t>
        <t>If the client does not find a presented identifier matching any of the
reference identifiers, then the client <bcp14>MUST</bcp14> proceed as described as follows.</t>
        <t>If the client is an automated application,
then it <bcp14>SHOULD</bcp14> terminate the communication attempt with a bad
certificate error and log the error appropriately.  The application <bcp14>MAY</bcp14>
provide a configuration setting to disable this behavior, but it <bcp14>MUST</bcp14> enable
it by default.</t>
        <t>If the client is one that is directly controlled by a human
user, then it <bcp14>SHOULD</bcp14> inform the user of the identity mismatch and
automatically terminate the communication attempt with a bad certificate
error in order to prevent users from inadvertently bypassing security
protections in hostile situations.
Such clients <bcp14>MAY</bcp14> give advanced users the option of proceeding
with acceptance despite the identity mismatch.  Although this behavior can be
appropriate in certain specialized circumstances, it needs to be handled with
extreme caution, for example by first encouraging even an advanced user to
terminate the communication attempt and, if they choose to proceed anyway, by
forcing the user to view the entire certification path before proceeding.</t>
        <t>The application <bcp14>MAY</bcp14> also present the user with the ability to accept the
presented certificate as valid for subsequent connections.  Such ad-hoc
"pinning" <bcp14>SHOULD NOT</bcp14> restrict future connections to just the pinned
certificate. Local policy that statically enforces a given certificate for a
given peer <bcp14>SHOULD</bcp14> made available only as prior configuration, rather than a
just-in-time override for a failed connection.</t>
      </section>
    </section>
    <section anchor="security">
      <name>Security Considerations</name>
      <section anchor="security-wildcards">
        <name>Wildcard Certificates</name>
        <t>Wildcard certificates automatically vouch for any single-label host names
within their domain, but not multiple levels of domains.  This can be
convenient for administrators but also poses the risk of vouching for rogue
or buggy hosts. See for example <xref target="Defeating-SSL"/> (beginning at slide 91) and
<xref target="HTTPSbytes"/> (slides 38-40).</t>
        <t>Protection against a wildcard that identifies a public suffix
<xref target="Public-Suffix"/>, such as <tt>*.co.uk</tt> or <tt>*.com</tt>, is beyond the scope of this
document.</t>
      </section>
      <section anchor="security-idn">
        <name>Internationalized Domain Names</name>
        <t>Allowing internationalized domain names can lead to visually similar
characters, also referred to as "confusables", being included within
certificates. For discussion, see for example <xref section="4.4" sectionFormat="comma" target="IDNA-DEFS"/>
and <xref target="UTS-39"/>.</t>
      </section>
      <section anchor="security-multi">
        <name>Multiple Presented Identifiers</name>
        <t>A given application service might be addressed by multiple DNS domain names
for a variety of reasons, and a given deployment might service multiple
domains or protocols. TLS Extensions such as TLS Server Name Indication
(SNI), discussed in <xref section="4.4.2.2" sectionFormat="comma" target="TLS"/>, and Application Layer Protocol
Negotiation (ALPN), discussed in <xref target="ALPN"/>, provide a way for the application
to indicate the desired identifier and protocol to the server, which it
can then use to select the most appropriate certificate.</t>
        <t>This specification allows multiple DNS-IDs, SRV-IDs, or URI-IDs in a
certificate.  As a result, an application service can use the same
certificate for multiple hostnames, such as when a client does not support
the TLS SNI extension, or for multiple protocols, such as SMTP and HTTP, on a
single hostname.  Note that the set of names in a certificate is the set of
names that could be affected by a compromise of any other server named in
the set: the strength of any server in the set of names is determined by the
weakest of those servers that offer the names.</t>
        <t>The way to mitigate this risk is to limit the number of names that
any server can speak for, and to ensure that all servers in the set
have a strong minimum configuration as described in <xref target="RFC7525bis"/>.</t>
      </section>
      <section anchor="multiple-reference-identifiers">
        <name>Multiple Reference Identifiers</name>
        <t>This specification describes how a client may construct multiple acceptable
reference identifiers, and may match any of those reference identifiers with
the set of presented identifiers. <xref section="4.2.1.10" sectionFormat="comma" target="PKIX"/> describes a
mechanism to allow CA certificates to be constrained in the set of presented
identifiers that they may include within server certificates.  However, these
constraints only apply to the explicitly enumerated name forms. For example,
a CA that is only name constrained for DNS-IDs is not constrained for SRV-IDs
and URI-IDs, unless those name forms are also explicitly included within the
name constraints extension.</t>
        <t>A client that constructs multiple reference identifiers of different types,
such as both DNS-ID and SRV-IDs, as described in <xref target="verify-reference-rules"/>,
<bcp14>SHOULD</bcp14> take care to ensure that CAs issuing such certificates are
appropriately constrained. This <bcp14>MAY</bcp14> take the form of local policy through
agreement with the issuing CA, or <bcp14>MAY</bcp14> be enforced by the client requiring
that if one form of presented identifier is constrained, such as a dNSName
name constraint for DNS-IDs, then all other forms of acceptable reference
identities are also constrained, such as requiring a uniformResourceIndicator
name constraint for URI-IDs.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no actions for IANA.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="DNS-CONCEPTS">
          <front>
            <title>Domain names - concepts and facilities</title>
            <author fullname="P.V. Mockapetris" initials="P.V." surname="Mockapetris">
              <organization/>
            </author>
            <date month="November" year="1987"/>
            <abstract>
              <t>This RFC is the revised basic definition of The Domain Name System.  It obsoletes RFC-882.  This memo describes the domain style names and their used for host address look up and electronic mail forwarding.  It discusses the clients and servers in the domain name system and the protocol used between them.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="13"/>
          <seriesInfo name="RFC" value="1034"/>
          <seriesInfo name="DOI" value="10.17487/RFC1034"/>
        </reference>
        <reference anchor="DNS-SRV">
          <front>
            <title>A DNS RR for specifying the location of services (DNS SRV)</title>
            <author fullname="A. Gulbrandsen" initials="A." surname="Gulbrandsen">
              <organization/>
            </author>
            <author fullname="P. Vixie" initials="P." surname="Vixie">
              <organization/>
            </author>
            <author fullname="L. Esibov" initials="L." surname="Esibov">
              <organization/>
            </author>
            <date month="February" year="2000"/>
            <abstract>
              <t>This document describes a DNS RR which specifies the location of the server(s) for a specific protocol and domain.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2782"/>
          <seriesInfo name="DOI" value="10.17487/RFC2782"/>
        </reference>
        <reference anchor="DNS-WILDCARDS">
          <front>
            <title>The Role of Wildcards in the Domain Name System</title>
            <author fullname="E. Lewis" initials="E." surname="Lewis">
              <organization/>
            </author>
            <date month="July" year="2006"/>
            <abstract>
              <t>This is an update to the wildcard definition of RFC 1034.  The interaction with wildcards and CNAME is changed, an error condition is removed, and the words defining some concepts central to wildcards are changed.  The overall goal is not to change wildcards, but to refine the definition of RFC 1034.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4592"/>
          <seriesInfo name="DOI" value="10.17487/RFC4592"/>
        </reference>
        <reference anchor="IDNA-DEFS">
          <front>
            <title>Internationalized Domain Names for Applications (IDNA): Definitions and Document Framework</title>
            <author fullname="J. Klensin" initials="J." surname="Klensin">
              <organization/>
            </author>
            <date month="August" year="2010"/>
            <abstract>
              <t>This document is one of a collection that, together, describe the protocol and usage context for a revision of Internationalized Domain Names for Applications (IDNA), superseding the earlier version.  It describes the document collection and provides definitions and other material that are common to the set.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5890"/>
          <seriesInfo name="DOI" value="10.17487/RFC5890"/>
        </reference>
        <reference anchor="IDNA-PROTO">
          <front>
            <title>Internationalized Domain Names in Applications (IDNA): Protocol</title>
            <author fullname="J. Klensin" initials="J." surname="Klensin">
              <organization/>
            </author>
            <date month="August" year="2010"/>
            <abstract>
              <t>This document is the revised protocol definition for Internationalized Domain Names (IDNs).  The rationale for changes, the relationship to the older specification, and important terminology are provided in other documents.  This document specifies the protocol mechanism, called Internationalized Domain Names in Applications (IDNA), for registering and looking up IDNs in a way that does not require changes to the DNS itself.  IDNA is only meant for processing domain names, not free text.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5891"/>
          <seriesInfo name="DOI" value="10.17487/RFC5891"/>
        </reference>
        <reference anchor="LDAP-DN">
          <front>
            <title>Lightweight Directory Access Protocol (LDAP): String Representation of Distinguished Names</title>
            <author fullname="K. Zeilenga" initials="K." role="editor" surname="Zeilenga">
              <organization/>
            </author>
            <date month="June" year="2006"/>
            <abstract>
              <t>The X.500 Directory uses distinguished names (DNs) as primary keys to entries in the directory.  This document defines the string representation used in the Lightweight Directory Access Protocol (LDAP) to transfer distinguished names.  The string representation is designed to give a clean representation of commonly used distinguished names, while being able to represent any distinguished name.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4514"/>
          <seriesInfo name="DOI" value="10.17487/RFC4514"/>
        </reference>
        <reference anchor="PKIX">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
            <author fullname="D. Cooper" initials="D." surname="Cooper">
              <organization/>
            </author>
            <author fullname="S. Santesson" initials="S." surname="Santesson">
              <organization/>
            </author>
            <author fullname="S. Farrell" initials="S." surname="Farrell">
              <organization/>
            </author>
            <author fullname="S. Boeyen" initials="S." surname="Boeyen">
              <organization/>
            </author>
            <author fullname="R. Housley" initials="R." surname="Housley">
              <organization/>
            </author>
            <author fullname="W. Polk" initials="W." surname="Polk">
              <organization/>
            </author>
            <date month="May" year="2008"/>
            <abstract>
              <t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet.  An overview of this approach and model is provided as an introduction.  The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms.  Standard certificate extensions are described and two Internet-specific extensions are defined.  A set of required certificate extensions is specified.  The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions.  An algorithm for X.509 certification path validation is described.  An ASN.1 module and examples are provided in the appendices.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5280"/>
          <seriesInfo name="DOI" value="10.17487/RFC5280"/>
        </reference>
        <reference anchor="SRVNAME">
          <front>
            <title>Internet X.509 Public Key Infrastructure Subject Alternative Name for Expression of Service Name</title>
            <author fullname="S. Santesson" initials="S." surname="Santesson">
              <organization/>
            </author>
            <date month="August" year="2007"/>
            <abstract>
              <t>This document defines a new name form for inclusion in the otherName field of an X.509 Subject Alternative Name extension that allows a certificate subject to be associated with the service name and domain name components of a DNS Service Resource Record.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4985"/>
          <seriesInfo name="DOI" value="10.17487/RFC4985"/>
        </reference>
        <reference anchor="URI">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee">
              <organization/>
            </author>
            <author fullname="R. Fielding" initials="R." surname="Fielding">
              <organization/>
            </author>
            <author fullname="L. Masinter" initials="L." surname="Masinter">
              <organization/>
            </author>
            <date month="January" year="2005"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource.  This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet.  The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier.  This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="66"/>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="DOI" value="10.17487/RFC3986"/>
        </reference>
        <reference anchor="RFC7525bis">
          <front>
            <title>Recommendations for Secure Use of Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS)</title>
            <author fullname="Yaron Sheffer">
              <organization>Intuit</organization>
            </author>
            <author fullname="Peter Saint-Andre">
              <organization>independent</organization>
            </author>
            <author fullname="Thomas Fossati">
              <organization>arm</organization>
            </author>
            <date day="24" month="March" year="2022"/>
            <abstract>
              <t>   Transport Layer Security (TLS) and Datagram Transport Layer Security
   (DTLS) are widely used to protect data exchanged over application
   protocols such as HTTP, SMTP, IMAP, POP, SIP, and XMPP.  Over the
   years, the industry has witnessed several serious attacks on TLS and
   DTLS, including attacks on the most commonly used cipher suites and
   their modes of operation.  This document provides recommendations for
   improving the security of deployed services that use TLS and DTLS.
   The recommendations are applicable to the majority of use cases.

   An earlier version of this document was published as RFC 7525 when
   the industry was in the midst of its transition to TLS 1.2.  Years
   later this transition is largely complete and TLS 1.3 is widely
   available.  This document updates the guidance, given the new
   environment.  In addition, the document updates RFC 5288 and RFC 6066
   in view of recent attacks.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-uta-rfc7525bis-06"/>
        </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">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="ABNF">
          <front>
            <title>Augmented BNF for Syntax Specifications: ABNF</title>
            <author fullname="D. Crocker" initials="D." role="editor" surname="Crocker">
              <organization/>
            </author>
            <author fullname="P. Overell" initials="P." surname="Overell">
              <organization/>
            </author>
            <date month="January" year="2008"/>
            <abstract>
              <t>Internet technical specifications often need to define a formal syntax.  Over the years, a modified version of Backus-Naur Form (BNF), called Augmented BNF (ABNF), has been popular among many Internet specifications.  The current specification documents ABNF. It balances compactness and simplicity with reasonable representational power.  The differences between standard BNF and ABNF involve naming rules, repetition, alternatives, order-independence, and value ranges.  This specification also supplies additional rule definitions and encoding for a core lexical analyzer of the type common to several Internet specifications.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="68"/>
          <seriesInfo name="RFC" value="5234"/>
          <seriesInfo name="DOI" value="10.17487/RFC5234"/>
        </reference>
        <reference anchor="ACME">
          <front>
            <title>Automatic Certificate Management Environment (ACME)</title>
            <author fullname="R. Barnes" initials="R." surname="Barnes">
              <organization/>
            </author>
            <author fullname="J. Hoffman-Andrews" initials="J." surname="Hoffman-Andrews">
              <organization/>
            </author>
            <author fullname="D. McCarney" initials="D." surname="McCarney">
              <organization/>
            </author>
            <author fullname="J. Kasten" initials="J." surname="Kasten">
              <organization/>
            </author>
            <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="ALPN">
          <front>
            <title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
            <author fullname="S. Friedl" initials="S." surname="Friedl">
              <organization/>
            </author>
            <author fullname="A. Popov" initials="A." surname="Popov">
              <organization/>
            </author>
            <author fullname="A. Langley" initials="A." surname="Langley">
              <organization/>
            </author>
            <author fullname="E. Stephan" initials="E." surname="Stephan">
              <organization/>
            </author>
            <date month="July" year="2014"/>
            <abstract>
              <t>This document describes a Transport Layer Security (TLS) extension for application-layer protocol negotiation within the TLS handshake. For instances in which multiple application protocols are supported on the same TCP or UDP port, this extension allows the application layer to negotiate which protocol will be used within the TLS connection.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7301"/>
          <seriesInfo name="DOI" value="10.17487/RFC7301"/>
        </reference>
        <reference anchor="DNS-CASE">
          <front>
            <title>Domain Name System (DNS) Case Insensitivity Clarification</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd">
              <organization/>
            </author>
            <date month="January" year="2006"/>
            <abstract>
              <t>Domain Name System (DNS) names are "case insensitive".  This document explains exactly what that means and provides a clear specification of the rules.  This clarification updates RFCs 1034, 1035, and 2181.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4343"/>
          <seriesInfo name="DOI" value="10.17487/RFC4343"/>
        </reference>
        <reference anchor="DNSSEC">
          <front>
            <title>DNS Security Introduction and Requirements</title>
            <author fullname="R. Arends" initials="R." surname="Arends">
              <organization/>
            </author>
            <author fullname="R. Austein" initials="R." surname="Austein">
              <organization/>
            </author>
            <author fullname="M. Larson" initials="M." surname="Larson">
              <organization/>
            </author>
            <author fullname="D. Massey" initials="D." surname="Massey">
              <organization/>
            </author>
            <author fullname="S. Rose" initials="S." surname="Rose">
              <organization/>
            </author>
            <date month="March" year="2005"/>
            <abstract>
              <t>The Domain Name System Security Extensions (DNSSEC) add data origin authentication and data integrity to the Domain Name System.  This document introduces these extensions and describes their capabilities and limitations.  This document also discusses the services that the DNS security extensions do and do not provide.  Last, this document describes the interrelationships between the documents that collectively describe DNSSEC.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4033"/>
          <seriesInfo name="DOI" value="10.17487/RFC4033"/>
        </reference>
        <reference anchor="DTLS">
          <front>
            <title>Datagram Transport Layer Security Version 1.2</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <author fullname="N. Modadugu" initials="N." surname="Modadugu">
              <organization/>
            </author>
            <date month="January" year="2012"/>
            <abstract>
              <t>This document specifies version 1.2 of the Datagram Transport Layer Security (DTLS) protocol.  The DTLS protocol provides communications privacy for datagram protocols.  The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery.  The DTLS protocol is based on the Transport Layer Security (TLS) protocol and provides equivalent security guarantees.  Datagram semantics of the underlying transport are preserved by the DTLS protocol.  This document updates DTLS 1.0 to work with TLS version 1.2.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6347"/>
          <seriesInfo name="DOI" value="10.17487/RFC6347"/>
        </reference>
        <reference anchor="EMAIL-SRV">
          <front>
            <title>Use of SRV Records for Locating Email Submission/Access Services</title>
            <author fullname="C. Daboo" initials="C." surname="Daboo">
              <organization/>
            </author>
            <date month="March" year="2011"/>
            <abstract>
              <t>This specification describes how SRV records can be used to locate email services.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6186"/>
          <seriesInfo name="DOI" value="10.17487/RFC6186"/>
        </reference>
        <reference anchor="NAPTR">
          <front>
            <title>Dynamic Delegation Discovery System (DDDS) Part Three: The Domain Name System (DNS) Database</title>
            <author fullname="M. Mealling" initials="M." surname="Mealling">
              <organization/>
            </author>
            <date month="October" year="2002"/>
            <abstract>
              <t>This document describes a Dynamic Delegation Discovery System (DDDS) Database using the Domain Name System (DNS) as a distributed database of Rules.  The Keys are domain-names and the Rules are encoded using the Naming Authority Pointer (NAPTR) Resource Record (RR). Since this document obsoletes RFC 2915, it is the official specification for the NAPTR DNS Resource Record.  It is also part of a series that is completely specified in "Dynamic Delegation Discovery System (DDDS) Part One: The Comprehensive DDDS" (RFC 3401).  It is very important to note that it is impossible to read and understand any document in this series without reading the others.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3403"/>
          <seriesInfo name="DOI" value="10.17487/RFC3403"/>
        </reference>
        <reference anchor="NTS">
          <front>
            <title>Network Time Security for the Network Time Protocol</title>
            <author fullname="D. Franke" initials="D." surname="Franke">
              <organization/>
            </author>
            <author fullname="D. Sibold" initials="D." surname="Sibold">
              <organization/>
            </author>
            <author fullname="K. Teichel" initials="K." surname="Teichel">
              <organization/>
            </author>
            <author fullname="M. Dansarie" initials="M." surname="Dansarie">
              <organization/>
            </author>
            <author fullname="R. Sundblad" initials="R." surname="Sundblad">
              <organization/>
            </author>
            <date month="September" year="2020"/>
            <abstract>
              <t>This memo specifies Network Time Security (NTS), a mechanism for using Transport Layer Security (TLS) and Authenticated Encryption with Associated Data (AEAD) to provide cryptographic security for the client-server mode of the Network Time Protocol (NTP). </t>
              <t>NTS is structured as a suite of two loosely coupled sub-protocols. The first (NTS Key Establishment (NTS-KE)) handles initial authentication and key establishment over TLS. The second (NTS Extension Fields for NTPv4) handles encryption and authentication during NTP time synchronization via extension fields in the NTP packets, and holds all required state only on the client via opaque cookies.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8915"/>
          <seriesInfo name="DOI" value="10.17487/RFC8915"/>
        </reference>
        <reference anchor="QUIC">
          <front>
            <title>Using TLS to Secure QUIC</title>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <author fullname="S. Turner" initials="S." role="editor" surname="Turner">
              <organization/>
            </author>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document describes how Transport Layer Security (TLS) is used to secure QUIC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9001"/>
          <seriesInfo name="DOI" value="10.17487/RFC9001"/>
        </reference>
        <reference anchor="SECTERMS">
          <front>
            <title>Internet Security Glossary, Version 2</title>
            <author fullname="R. Shirey" initials="R." surname="Shirey">
              <organization/>
            </author>
            <date month="August" year="2007"/>
            <abstract>
              <t>This Glossary provides definitions, abbreviations, and explanations of terminology for information system security. The 334 pages of entries offer recommendations to improve the comprehensibility of written material that is generated in the Internet Standards Process (RFC 2026). The recommendations follow the principles that such writing should (a) use the same term or definition whenever the same concept is mentioned; (b) use terms in their plainest, dictionary sense; (c) use terms that are already well-established in open publications; and (d) avoid terms that either favor a particular vendor or favor a particular technology or mechanism over other, competing techniques that already exist or could be developed.  This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="FYI" value="36"/>
          <seriesInfo name="RFC" value="4949"/>
          <seriesInfo name="DOI" value="10.17487/RFC4949"/>
        </reference>
        <reference anchor="SIP">
          <front>
            <title>SIP: Session Initiation Protocol</title>
            <author fullname="J. Rosenberg" initials="J." surname="Rosenberg">
              <organization/>
            </author>
            <author fullname="H. Schulzrinne" initials="H." surname="Schulzrinne">
              <organization/>
            </author>
            <author fullname="G. Camarillo" initials="G." surname="Camarillo">
              <organization/>
            </author>
            <author fullname="A. Johnston" initials="A." surname="Johnston">
              <organization/>
            </author>
            <author fullname="J. Peterson" initials="J." surname="Peterson">
              <organization/>
            </author>
            <author fullname="R. Sparks" initials="R." surname="Sparks">
              <organization/>
            </author>
            <author fullname="M. Handley" initials="M." surname="Handley">
              <organization/>
            </author>
            <author fullname="E. Schooler" initials="E." surname="Schooler">
              <organization/>
            </author>
            <date month="June" year="2002"/>
            <abstract>
              <t>This document describes Session Initiation Protocol (SIP), an application-layer control (signaling) protocol for creating, modifying, and terminating sessions with one or more participants.  These sessions include Internet telephone calls, multimedia distribution, and multimedia conferences.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3261"/>
          <seriesInfo name="DOI" value="10.17487/RFC3261"/>
        </reference>
        <reference anchor="SIP-CERTS">
          <front>
            <title>Domain Certificates in the Session Initiation Protocol (SIP)</title>
            <author fullname="V. Gurbani" initials="V." surname="Gurbani">
              <organization/>
            </author>
            <author fullname="S. Lawrence" initials="S." surname="Lawrence">
              <organization/>
            </author>
            <author fullname="A. Jeffrey" initials="A." surname="Jeffrey">
              <organization/>
            </author>
            <date month="June" year="2010"/>
            <abstract>
              <t>This document describes how to construct and interpret certain information in a PKIX-compliant (Public Key Infrastructure using X.509) certificate for use in a Session Initiation Protocol (SIP) over Transport Layer Security (TLS) connection.  More specifically, this document describes how to encode and extract the identity of a SIP domain in a certificate and how to use that identity for SIP domain authentication.  As such, this document is relevant both to implementors of SIP and to issuers of certificates.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5922"/>
          <seriesInfo name="DOI" value="10.17487/RFC5922"/>
        </reference>
        <reference anchor="SIP-SIPS">
          <front>
            <title>The Use of the SIPS URI Scheme in the Session Initiation Protocol (SIP)</title>
            <author fullname="F. Audet" initials="F." surname="Audet">
              <organization/>
            </author>
            <date month="October" year="2009"/>
            <abstract>
              <t>This document provides clarifications and guidelines concerning the use of the SIPS URI scheme in the Session Initiation Protocol (SIP). It also makes normative changes to SIP.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5630"/>
          <seriesInfo name="DOI" value="10.17487/RFC5630"/>
        </reference>
        <reference anchor="TLS">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="VERIFY">
          <front>
            <title>Representation and Verification of Domain-Based Application Service Identity within Internet Public Key Infrastructure Using X.509 (PKIX) Certificates in the Context of Transport Layer Security (TLS)</title>
            <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre">
              <organization/>
            </author>
            <author fullname="J. Hodges" initials="J." surname="Hodges">
              <organization/>
            </author>
            <date month="March" year="2011"/>
            <abstract>
              <t>Many application technologies enable secure communication between two entities by means of Internet Public Key Infrastructure Using X.509 (PKIX) certificates in the context of Transport Layer Security (TLS). This document specifies procedures for representing and verifying the identity of application services in such interactions.   [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6125"/>
          <seriesInfo name="DOI" value="10.17487/RFC6125"/>
        </reference>
        <reference anchor="XMPP">
          <front>
            <title>Extensible Messaging and Presence Protocol (XMPP): Core</title>
            <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre">
              <organization/>
            </author>
            <date month="March" year="2011"/>
            <abstract>
              <t>The Extensible Messaging and Presence Protocol (XMPP) is an application profile of the Extensible Markup Language (XML) that enables the near-real-time exchange of structured yet extensible data between any two or more network entities.  This document defines XMPP's core protocol methods: setup and teardown of XML streams, channel encryption, authentication, error handling, and communication primitives for messaging, network availability ("presence"), and request-response interactions.  This document obsoletes RFC 3920.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6120"/>
          <seriesInfo name="DOI" value="10.17487/RFC6120"/>
        </reference>
        <reference anchor="ALPACA" target="https://alpaca-attack.com/ALPACA.pdf">
          <front>
            <title>ALPACA: Application Layer Protocol Confusion - Analyzing and Mitigating Cracks in TLS Authentication</title>
            <author initials="M." surname="Brinkmann" fullname="Marcus Brinkmann">
              <organization>Ruhr University Bochum</organization>
            </author>
            <author initials="C." surname="Dresen" fullname="Christian Dresen">
              <organization>Münster University of Applied Sciences</organization>
            </author>
            <author initials="R." surname="Merget" fullname="Robert Merget">
              <organization>Ruhr University Bochum</organization>
            </author>
            <author initials="D." surname="Poddebniak" fullname="Damian Poddebniak">
              <organization>Münster University of Applied Sciences</organization>
            </author>
            <author initials="J." surname="Müller" fullname="Jens Müler">
              <organization>Ruhr University Bochum</organization>
            </author>
            <author initials="J." surname="Somorovsky" fullname="Juraj Somorovsky">
              <organization>Paderborn University</organization>
            </author>
            <author initials="J." surname="Schwenk" fullname="Jörg Schwek">
              <organization>Ruhr University Bochum</organization>
            </author>
            <author initials="S." surname="Schinzel" fullname="Sebastian Schinzel">
              <organization>Ruhr University Bochum</organization>
            </author>
            <date year="2021" month="September"/>
          </front>
        </reference>
        <reference anchor="UTS-39" target="https://unicode.org/reports/tr39">
          <front>
            <title>Unicode Security Mechanisms</title>
            <author initials="M." surname="Davis" fullname="Mark Davis">
              <organization/>
            </author>
            <author initials="M." surname="Suignard" fullname="Michel Suignard">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="HTTPSbytes" target="https://media.blackhat.com/bh-ad-10/Hansen/Blackhat-AD-2010-Hansen-Sokol-HTTPS-Can-Byte-Me-slides.pdf">
          <front>
            <title>HTTPS Can Byte Me</title>
            <author initials="J." surname="Sokol" fullname="Josh Sokol">
              <organization>SecTheory Ltd.</organization>
            </author>
            <author initials="R." surname="Hansen" fullname="Robert Hansen">
              <organization>SecTheory Ltd.</organization>
            </author>
            <date year="2010" month="November"/>
          </front>
          <seriesInfo name="BlackHat" value="Abu Dhabi"/>
        </reference>
        <reference anchor="Defeating-SSL" target="http://www.blackhat.com/presentations/bh-dc-09/Marlinspike/BlackHat-DC-09-Marlinspike-Defeating-SSL.pdf">
          <front>
            <title>New Tricks for Defeating SSL in Practice</title>
            <author initials="M." surname="Marlinspike" fullname="Moxie Marlinspike">
              <organization/>
            </author>
            <date year="2009" month="February"/>
          </front>
          <seriesInfo name="BlackHat" value="DC"/>
        </reference>
        <reference anchor="Public-Suffix" target="https://publicsuffix.org">
          <front>
            <title>Public Suffix List</title>
            <author>
              <organization/>
            </author>
            <date year="2020"/>
          </front>
        </reference>
        <reference anchor="US-ASCII">
          <front>
            <title>Coded Character Set - 7-bit American Standard Code for Information Interchange</title>
            <author>
              <organization>American National Standards Institute</organization>
            </author>
            <date year="1986"/>
          </front>
          <seriesInfo name="ANSI" value="X3.4"/>
        </reference>
        <reference anchor="WSC-UI" target="https://www.w3.org/TR/2010/REC-wsc-ui-20100812/">
          <front>
            <title>Web Security Context: User Interface Guidelines</title>
            <author initials="A." surname="Saldhana" fullname="Anil Saldhana">
              <organization/>
            </author>
            <author initials="T." surname="Roessler" fullname="Thomas Roessler">
              <organization/>
            </author>
            <date year="2010" month="August"/>
          </front>
        </reference>
      </references>
    </references>
    <section anchor="changes">
      <name>Changes from RFC 6125</name>
      <t>This document revises and obsoletes <xref target="VERIFY"/> based
on the decade of experience and changes since it was published.
The major changes, in no particular order, include:</t>
      <ul spacing="normal">
        <li>The only legal place for a certificate wildcard is as the complete left-most
component in a domain name.</li>
        <li>The server identity can only be expressed in the subjectAltNames
extension; it is no longer valid to use the commonName RDN,
known as <tt>CN-ID</tt> in <xref target="VERIFY"/>.</li>
        <li>Detailed discussion of pinning (configuring use of a certificate that
doesn't match the criteria in this document) has been removed and replaced
with two paragraphs in <xref target="outcome"/>.</li>
        <li>The sections detailing different target audiences and which sections
to read (first) have been removed.</li>
        <li>References to the X.500 directory, the survey of prior art, and the
sample text in Appendix A have been removed.</li>
        <li>All references have been updated to the current latest version.</li>
        <li>The TLS SNI extension is no longer new, it is commonplace.</li>
        <li>Additional text on multiple identifiers, and their security considerations,
has been added.</li>
      </ul>
    </section>
    <section numbered="false" anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>We gratefully acknowledge everyone who contributed to the previous
version of this document, <xref target="VERIFY"/>.
Thanks also to Carsten Bormann for converting the previous document
to Markdown so that we could more easily use Martin Thomson's <tt>i-d-template</tt>
software.</t>
      <t>In addition to discussion on the mailing list, the following people
contributed significant changes:
Viktor Dukhovni,
Jim Fenton,
Olle Johansson,
and
Ryan Sleevi.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA819S3fbVrbmHL8CrQwsZZGMJdtJ7LpdqxjJ7ijXklWSnFSt
vr1KIHkookQCLACUwmj5v/Sv6FGP+v6x3t/e+7wAUHaqetCDqlggcB777Pfr
DIfDpG6yYva3bFkW5k3aVBuT5OuK/1U3R8+fv35+lMzKaZGt6OdZlc2bYW6a
+XDTZMNqPv328OjVJK+Hz79NykldLk1j6jcpnibTrHmT1s0sqTeTVV7XeVk0
2zWNcvr2+l2yzt8kaTotV+tsSu8925r6GT2gd/2zouRH21Vl5nXwTlk18ZOm
nEZ/zMy6WdCTl/ibVmlmdbNdGvtOkzf448pU9/nUpOe0tzrNi/T6/VWSTSaV
ufc/ns5MQe9vk6wy2Zt0vF4vc9oZbaZO7h5oM0VjqsI0wxPAJsk2zaKs3iRD
Go8WeDFKr7K8aIbjYlYZWozA8YLAVLV+mZaboqm2b9KPV/SXWWX5EuBb49U/
6X9H+cqO/NMo/bGc3ZraDfqTmc/9s97haJ0Pprozs9lmZv50i4cjArcd8xKr
Xf7mRrzMpwv7pKxuafd3GX2TXpvpoiiX5W2+e6qqpu/+lPEHPEdRViuC273B
uZ+cXw2PP5wfv724vqJ53h0fPn/xUp9fXf7Mj46++/5IH/1y+v7keHx5Iu++
fPUaP5yenI+HJ2/fycNX379+bh9eXH64/mCfHtLT9yfji+HJuX59iJku/v30
L/LK0ff4kGY9H5+9lVdef/+KHn28POU/X7z+/lv6k/713SvGdjr14ckoJAP9
IcmLebjN8Q/n73QS3t74WGf4/tUrzDB+fyGL+u7F80MLlvGVruLFyxfy7Ort
sTx5/oKfEJ7y39++ePkd/f32bHz63oHt20Ne7fn44vpSlk+f4YFCmiCCqf/8
8VQGff2cp6Y5rt9enimEX798jWenFzLC0beH8ufw+O2ljkOHcKQP6X/67NsX
gKVd3/cvX2IpP7+9PH33V13cESb/y9nFhf37ucBhfDwGxIh8s+rWEPUvmmZd
v/nmm2xJ3CAbZk2TTe+ASd/I26P1bC4fCDXv6SAhiabvsy0R2kVVElMol+lx
Wcw3YETpMB0X2XL7W17cpsT/0rO8yW/pG/rzuKKJLD9Ix0TQ4AAy4B7PaIkc
/1bSORulP1R5cbfKioKfWxo6y6rppu78yOR0uVlU6ceCkKWqicWkP5TTxWYV
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
mnc/byE6tIOh5TrM4mvWulZwudwCTvunZ/3QzVdu4LK6DUF7evYk0rc/BE61
8T7dgfedWV129T+J5YTNv67W66FEEUY9a0v1DU3War+B40i8mhXCv7NazWWe
ZNO7BzZrQnbPsaVVtk04I5WTAe0BOYlx8xdayZhge9M3vEUNXYuaPrbxiDV8
olJDyAB+4ctNn7aZAVfuLe1Ge5vEZUal11WLOB9FPVCuIHf/+OoSdVpRcUpn
KtXO9KtWNRWpYomjJA7p9rt+nDWh1bwzSVnWthDq3X9KZ3PW6RKamOT4zXYo
x6SwT7T4ZuadFeEbdhynMqm40tCHDTGEqU4u3BAq5xZKbSBl3dCDC745bOXk
qnwetUnoU99CMAy8tYCqQmVd0lUgX0FxbbnYRTkpuyDgIL8UHTnbftes/UC0
tWxpEEnZ9sEuDWFXJP8qACPVYpSObznt0EYdUPkDRbEbKWDm5HqDwH4FB9xU
2a2Z/UF+VT//SlrvisBxbnzv4PTVQHSaYM0CoKy7rVKc17wi6HW7ICyZuQ/I
SWQHFB9miAlBPVis8zObsbzV6tTiXNsqVBMLVbeMWLEj296XN6c94T8f6U/c
EN05JSXVus7Y1+ZzZPt2njBuSbSN0799Hx1b376THexNyD5YosJTeJB12Ll8
WdFeSKo2i3Lmmg9wfIcti+W27Q20CZK+FCX4UQR9PCbNWTb9wepwh7UKjmxN
qjv/t8Y/1uX6hf0vHrDc843pb9rmVxKpeixpfnb9BNu94UnKSCLcJ257QFhK
xJouUR8oHEyzDSRErRn5PRsIm9rRNtemgqSxTNe7sLQ74RvvCbJN+VSWwVXB
meVgDd6+7ctbhmUW+eA+k5PKnug4KCw+G++z8x1CfDGSOJiufaq2l79NHVl7
ncZ4an3HgUL4bsKdo++L0gSqZ7jysWezaQb+VTOxo8ytN9vcioWgiHCOgC/T
GBdVjKQbomsLhSKGvvncdFnvVBFyBNUaXH4ankJPyLbvYPKqlyxSK1bOs4YY
ML/dqut2O4nCqi6zWCNfipCJdR8I1H1OgPl1nVeagMGxbVvmMAgaYrWa8iVI
IhcX8W9xHaI41ZiXmlng/LH2Nc/qF27LSSR7gDOIowagT7h0t+HpoLAqQLWB
Y0CcElZiOFJf+1p3JO0sk6++0t5IGynIy7gfr/TossgSNWBQNuIz07TpkHW4
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
1jUXMBSz5HKLAO3SEBRGyf8FgaYAVAytAAA=

-->

</rfc>
