<?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.21 (Ruby 2.6.10) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-emu-rfc7170bis-21" category="std" consensus="true" submissionType="IETF" obsoletes="7170" updates="9427" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.24.0 -->
  <front>
    <title abbrev="TEAP">Tunnel Extensible Authentication Protocol (TEAP) Version 1</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-emu-rfc7170bis-21"/>
    <author initials="A." surname="DeKok (Ed)" fullname="Alan DeKok">
      <organization/>
      <address>
        <email>aland@freeradius.org</email>
      </address>
    </author>
    <date year="2025" month="February" day="06"/>
    <area>Internet</area>
    <workgroup>EMU working group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 120?>

<t>This document defines the Tunnel Extensible Authentication Protocol
(TEAP) version 1.  TEAP is a tunnel-based EAP method that enables
secure communication between a peer and a server by using the
Transport Layer Security (TLS) protocol to establish a mutually
authenticated tunnel.  Within the tunnel, TLV objects are used to
convey authentication-related data between the EAP peer and the EAP
server.  This document obsoletes RFC 7170 and updates RFC 9427 by
moving all TEAP specifications from those documents to this one.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-emu-rfc7170bis/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        EMU Working Group mailing list (<eref target="mailto:emu@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/emu/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/emu/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/emu-wg/rfc7170bis.git"/>.</t>
    </note>
  </front>
  <middle>
    <?line 131?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>A tunnel-based Extensible Authentication Protocol (EAP) method is an
EAP method that establishes a secure tunnel and executes other EAP
methods under the protection of that secure tunnel.  A tunnel-based
EAP method can be used in any lower-layer protocol that supports EAP
authentication.  There are several existing tunnel-based EAP methods
that use Transport Layer Security (TLS) <xref target="RFC8446"/> to establish the
secure tunnel.  EAP methods supporting this include Protected EAP
(PEAP) <xref target="PEAP"/>, EAP Tunneled Transport Layer Security (EAP-TTLS)
<xref target="RFC5281"/>, and EAP Flexible Authentication via Secure Tunneling
(EAP-FAST) <xref target="RFC4851"/>.  However, they all are either vendor-specific or
informational, and the industry calls for a Standards Track
tunnel-based EAP method.  <xref target="RFC6678"/> outlines the list of requirements for a
standard tunnel-based EAP method.</t>
      <t>This document describes the Tunnel Extensible Authentication Protocol
(TEAP) version 1, which is based on EAP-FAST <xref target="RFC4851"/>.  The changes from EAP-FAST to TEAP are largely minor, in order
to meet the requirements outlined in <xref target="RFC6678"/> for a standard
tunnel-based EAP method.</t>
      <t>This specification describes TEAPv1, and defines cryptographic
derivations for use with TLS 1.2.  When TLS 1.3 is used, the
definitions of cryptographic derivations in <xref target="RFC9427"/> MUST be used
instead of the ones given here.</t>
      <t>Note that while it is technically possible to use TEAPv1 with TLS 1.0
and TLS 1.1, those protocols have been deprecated in <xref target="RFC8996"/>.  As
such, the definitions given here are only applicable for TLS 1.2, and
for TLS 1.3.</t>
      <section anchor="specification-requirements">
        <name>Specification Requirements</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL
NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED",
"MAY", and "OPTIONAL" in this document are to be interpreted as
described in BCP 14 [RFC2119] [RFC8174] when, and only when, they
appear in all capitals, as shown here.</t>
      </section>
      <section anchor="terminology">
        <name>Terminology</name>
        <t>Much of the terminology in this document comes from <xref target="RFC3748"/>.
Additional terms are defined below:</t>
        <t>Type-Length-Value (TLV)</t>
        <ul empty="true">
          <li>
            <t>The TEAP protocol utilizes objects in TLV format.  The TLV format
is defined in <xref target="teap-tlv-format"/>.</t>
          </li>
        </ul>
        <t>Inner Method</t>
        <ul empty="true">
          <li>
            <t>An authentication method which is sent as application data inside
of a TLS exchange which is carried over TEAP.  The inner method
can be an EAP authentication method, a username / password
authentication, or a vendor-specific authentication method.  Where the
TLS connection is authenticated, the inner method could also be
a Public Key Cryptography Standard (PKCS) exchange.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="protocol-overview">
      <name>Protocol Overview</name>
      <t>TEAP authentication occurs in two phases after the initial EAP
Identity request/response exchange.  In the first phase, TEAP employs
the TLS <xref target="RFC8446"/> handshake to provide an authenticated key exchange
and to establish a protected tunnel.  Once the tunnel is established,
the second phase begins with the peer and server engaging in further
conversations to establish the required authentication and
authorization policies.  TEAP makes use of TLV objects to carry out
the inner authentication, results, and other information, such as
channel-binding information.</t>
      <t>As discussed in <xref section="2.1.7" sectionFormat="comma" target="RFC9190"/> and <xref section="3.1" sectionFormat="comma" target="RFC9427"/>,
the outer EAP Identity SHOULD be an anonymous Network Access
Identifier (NAI) as described in <xref section="2.4" sectionFormat="comma" target="RFC7542"/>.  While <xref section="5.1" sectionFormat="comma" target="RFC3748"/> places no
limits on the contents of the Identity field, <xref section="2.6" sectionFormat="comma" target="RFC7542"/>
states that Identities which do not follow the NAI format cannot be
transported in an Authentication, Authorization, and Accounting (AAA)
proxy network.  As such, Identities in non-NAI form are likely to not
work outside of limited and local networks.</t>
      <t>Any inner identities (EAP or otherwise) SHOULD also
follow the recommendations of <xref section="3.1" sectionFormat="comma" target="RFC9427"/> about inner identities.</t>
      <t><xref target="RFC7170"/> defined a Protected Access Credential (PAC) to mirror
EAP-FAST <xref target="RFC4851"/>.  However, implementation experience and analysis
determined that the PAC was not necessary.  Instead, TEAP performs
session resumption using the NewSessionTicket message as defined in
<xref section="2.1.2" sectionFormat="comma" target="RFC9190"/> and <xref section="2.1.3" sectionFormat="comma" target="RFC9190"/>.  As such, the PAC has
been deprecated.</t>
      <t>The TEAP conversation is used to establish or resume an existing
session to typically establish network connectivity between a peer
and the network.  Upon successful execution of TEAP, the EAP peer and
EAP server both derive strong session key material (Master Session Key <xref target="RFC3748"/>) that can then be
communicated to the network access server (NAS) for use in
establishing a link-layer security association.</t>
      <section anchor="architectural-model">
        <name>Architectural Model</name>
        <t>The network architectural model for TEAP usage is shown below:</t>
        <figure>
          <name>TEAP Architectural Model</name>
          <artwork><![CDATA[
 +----------+      +----------+      +----------+      +----------+
 |          |      |          |      |          |      |  Inner   |
 |   Peer   |<---->|  Authen- |<---->|   TEAP   |<---->|  Method  |
 |          |      |  ticator |      |  server  |      |  server  |
 |          |      |          |      |          |      |          |
 +----------+      +----------+      +----------+      +----------+
]]></artwork>
        </figure>
        <t>The Peer and Authenticator are defined in <xref section="1.2" sectionFormat="comma" target="RFC3748"/>,
The TEAP server is the "backend authentication server" defined in
<xref section="1.2" sectionFormat="comma" target="RFC3748"/>.  The "Inner Method server" is usually part of the
TEAP server, and handles the application data (inner methods, EAP, passwords, etc.)
inside of the TLS tunnel.</t>
        <t>The entities depicted above are logical entities and may or may not
correspond to separate network components.  For example, the TEAP
server and Inner Method server might be a single entity; the
authenticator and TEAP server might be a single entity; or the
functions of the authenticator, TEAP server, and Inner Method server
might be combined into a single physical device.  For example,
typical IEEE 802.11 deployments place the authenticator in an access
point (AP) while a RADIUS server may provide the TEAP and inner
method server components.  The above diagram illustrates the division
of labor among entities in a general manner and shows how a
distributed system might be constructed; however, actual systems
might be realized more simply.  The security considerations in
<xref target="separation-p1-p2"/> provide an additional discussion of the implications of
separating the TEAP server from the Inner Method server.</t>
      </section>
      <section anchor="protocol-layering-model">
        <name>Protocol-Layering Model</name>
        <t>TEAP packets are encapsulated within EAP; EAP in turn requires a
transport protocol.  TEAP packets encapsulate TLS, which is then used
to encapsulate user authentication information.  Thus, TEAP messaging
can be described using a layered model, where each layer encapsulates
the layer above it.  The following diagram clarifies the relationship
between protocols:</t>
        <figure>
          <name>Protocol-Layering Model</name>
          <artwork><![CDATA[
 +------------------------------------------+
 | Inner EAP Method | Other TLV information |
 |------------------------------------------|
 |         TLV Encapsulation (TLVs)         |
 |------------------------------------------+---------------------+
 |                      TLS                 | Optional Outer TLVs |
 |----------------------------------------------------------------|
 |                            TEAP                                |
 |----------------------------------------------------------------|
 |                            EAP                                 |
 |----------------------------------------------------------------|
 |     Carrier Protocol (EAP over LAN, RADIUS, Diameter, etc.)    |
 +----------------------------------------------------------------+
]]></artwork>
        </figure>
        <t>The TLV layer is a payload with TLV objects as defined in
<xref target="teap-tlv-format"/>.  The TLV objects are used to carry arbitrary parameters
between an EAP peer and an EAP server.  All data exchanges in the TEAP
protected tunnel are encapsulated in a TLV layer.</t>
        <t>Methods for encapsulating EAP within carrier protocols are already
defined.  For example, IEEE 802.1X <xref target="IEEE.802-1X.2020"/> may be used to
transport EAP between the peer and the authenticator; RADIUS
<xref target="RFC3579"/> or Diameter <xref target="RFC4072"/> may be used to transport EAP between
the authenticator and the EAP server.</t>
      </section>
      <section anchor="outer-tlvs-versus-inner-tlvs">
        <name>Outer TLVs versus Inner TLVs</name>
        <t>TEAP packets may include TLVs both inside and outside the TLS tunnel
defined as follows:</t>
        <t>Outer TLVs</t>
        <ul empty="true">
          <li>
            <t>This term is used to refer to optional TLVs outside the
TLS tunnel, which are only allowed in the first two messages in the
TEAP protocol.  That is the first EAP-server-to-peer message and
first peer-to-EAP-server message.  If the message is fragmented, the
whole set of fragments is counted as one message.</t>
          </li>
        </ul>
        <t>Inner TLVs</t>
        <ul empty="true">
          <li>
            <t>This term is used to refer to TLVs sent within the TLS tunnel.  In TEAP
Phase 1, Outer TLVs are used to help establish the TLS tunnel, but no
Inner TLVs are used.  In Phase 2 of TEAP, TLS
records may encapsulate zero or more Inner TLVs, but no Outer TLVs are used.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="teap-protocol">
      <name>TEAP Protocol</name>
      <t>The operation of the protocol, including Phase 1 and Phase 2, is the
topic of this section.  The format of TEAP messages is given in
<xref target="message-formats"/>, and the cryptographic calculations are given in <xref target="cryptographic-calculations"/>.</t>
      <section anchor="version-negotiation">
        <name>Version Negotiation</name>
        <t>TEAP packets contain a 3-bit Version field, following the TLS Flags
field, which enables future TEAP implementations to be backward
compatible with previous versions of the protocol.  This
specification documents the TEAP version 1 protocol; implementations
of this specification MUST use a Version field set to 1.</t>
        <t>Version negotiation proceeds as follows:</t>
        <ol spacing="normal" type="1"><li>
            <t>In the first EAP-Request sent with EAP type=TEAP, the EAP server
MUST set the Version field to the highest version it supports.</t>
          </li>
          <li>
            <t>If the EAP peer supports this version of the protocol, it responds
with an EAP-Response of EAP type=TEAP, including the version number
proposed by the TEAP server.</t>
          </li>
          <li>
            <t>If the TEAP peer does not support the proposed version but supports
a lower version, it responds with an EAP-Response of EAP type=TEAP and
sets the Version field to its highest supported version.</t>
          </li>
          <li>
            <t>If the TEAP peer only supports versions higher than the version
proposed by the TEAP server, then use of TEAP will not be possible.
In this case, the TEAP peer sends back an EAP-Nak either to negotiate
a different EAP type or to indicate no other EAP types are available.</t>
          </li>
          <li>
            <t>If the TEAP server does not support the version number proposed by
the TEAP peer, it MUST either terminate the conversation with an EAP
Failure or negotiate a new EAP type.</t>
          </li>
          <li>
            <t>If the TEAP server does support the version proposed by the TEAP
peer, then the conversation continues using the version proposed by
the TEAP peer.</t>
          </li>
        </ol>
        <t>The version negotiation procedure guarantees that the TEAP peer and
server will agree to the latest version supported by both parties.
If version negotiation fails, then use of TEAP will not be possible,
and another mutually acceptable EAP method will need to be negotiated
if authentication is to proceed.</t>
        <t>The TEAP version is not protected by TLS and hence can be modified in
transit.  In order to detect a bid-down attack on the TEAP version, the
peers MUST exchange the TEAP version number received during version
negotiation using the Crypto-Binding TLV described in <xref target="crypto-binding-tlv"/>.
The receiver of the Crypto-Binding TLV MUST verify that the version
received in the Crypto-Binding TLV matches the version sent by the
receiver in the TEAP version negotiation.</t>
        <t>Intermediate results are signaled via the Intermediate-Result TLV (<xref target="intermediate-result-tlv"/>).
However, the Crypto-Binding TLV MUST be validated before any
Intermediate-Result TLV or Result TLV is examined.  If the
Crypto-Binding TLV fails to be validated for any reason, then it is a
fatal error and is handled as described in <xref target="phase-2-errors"/>.</t>
        <t>The true success or failure of TEAP is conveyed by the Result TLV,
with value Success or Failure.  However, as EAP terminates with either
a cleartext EAP Success or Failure, a peer will also receive a
cleartext EAP Success or Failure.  The received cleartext EAP Success
or Failure MUST match that received in the Result TLV; the peer SHOULD
silently discard those cleartext EAP Success or Failure messages which
do not coincide with the status sent in the protected Result TLV.</t>
      </section>
      <section anchor="phase1">
        <name>TEAP Authentication Phase 1: Tunnel Establishment</name>
        <t>TEAP relies on the TLS handshake <xref target="RFC8446"/> to establish an
authenticated and protected tunnel.  The TLS version offered by the
peer and server MUST be TLS version 1.2 <xref target="RFC5246"/> or later.  This
version of the TEAP implementation MUST support the following TLS
cipher suites:</t>
        <ul spacing="normal">
          <li>
            <t>TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256</t>
          </li>
          <li>
            <t>TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256</t>
          </li>
        </ul>
        <t>Other cipher suites MAY be supported.  Implementations MUST implement
the recommended cipher suites in <xref section="4.2" sectionFormat="comma" target="RFC9325"/> for TLS 1.2,
and in <xref section="4.3" sectionFormat="comma" target="RFC9325"/> for TLS 1.3.</t>
        <t>It is REQUIRED that anonymous
cipher suites such as TLS_DH_anon_WITH_AES_128_CBC_SHA <xref target="RFC5246"/> only
be used in the case when the inner method provides
mutual authentication, key generation, and resistance to on-path
and dictionary attacks.  TLS cipher suites that do not provide
confidentiality MUST NOT be used.  During the TEAP Phase 1, the TEAP endpoints MAY negotiate TLS compression.
During TLS tunnel establishment, TLS extensions MAY be used.  For
instance, the Certificate Status Request extension <xref target="RFC6066"/> and the
Multiple Certificate Status Request extension <xref target="RFC6961"/> can be used
to leverage a certificate-status protocol such as Online Certificate
Status Protocol (OCSP) <xref target="RFC6960"/> to check the validity of server
certificates.  TLS renegotiation indications defined in RFC 5746
<xref target="RFC5746"/> MUST be supported.</t>
        <t>Use of TLS-PSK is NOT RECOMMENDED.  TEAP has not been designed to work
with TLS-PSK, and no use-cases, security analyses, or implementations
have been done.  TLS-PSK may work (or not) with TEAP, depending on the
status of a particular implementation, and it is therefore not useful to
deploy it.</t>
        <t>The EAP server initiates the TEAP conversation with an EAP request
containing a TEAP/Start packet.  This packet includes a set Start (S)
bit, the TEAP version as specified in <xref target="version-negotiation"/>, and an authority
identity TLV.  The TLS payload in the initial packet is empty.  The
authority identity TLV (Authority-ID TLV) is used to provide the peer
a hint of the server's identity that may be useful in helping the
peer select the appropriate credential to use.  Assuming that the
peer supports TEAP, the conversation continues with the peer sending
an EAP-Response packet with EAP type of TEAP with the Start (S) bit
clear and the version as specified in <xref target="version-negotiation"/>.  This message
encapsulates one or more TLS handshake messages.  If the TEAP version
negotiation is successful, then the TEAP conversation continues until
the EAP server and EAP peer are ready to enter Phase 2.  When the
full TLS handshake is performed, then the first payload of TEAP Phase
2 MAY be sent along with a server-finished handshake message to
reduce the number of round trips.</t>
        <t>TEAP implementations MUST support mutual peer authentication during
tunnel establishment using the TLS cipher suites specified in this
section.  The TEAP peer does not need to authenticate as part of the
TLS exchange but can alternatively be authenticated through
additional exchanges carried out in Phase 2.</t>
        <t>The TEAP tunnel protects peer identity information exchanged during
Phase 2 from disclosure outside the tunnel.  Implementations that
wish to provide identity privacy for the peer identity need to
carefully consider what information is disclosed outside the tunnel
prior to Phase 2.  TEAP implementations SHOULD support the immediate
renegotiation of a TLS session to initiate a new handshake message
exchange under the protection of the current cipher suite.  This
allows support for protection of the peer's identity when using TLS
client authentication.  An example of the exchanges using TLS
renegotiation to protect privacy is shown in Appendix C.</t>
      </section>
      <section anchor="server-certificate-requirements">
        <name>Server Certificate Requirements</name>
        <t>Server Certificates MUST include a subjectAltName extension, with the dnsName attribute containing an FQDN string.  Server certificates MAY also include a SubjectDN containing a single element, "CN=" containing the FQDN of the server.  However, this use of  SubjectDN is deprecated for TEAP, and is forbidden in <xref section="2" sectionFormat="comma" target="RFC9525"/>.</t>
        <t>The KeyUsage extension MAY be included, but are not required.</t>
        <t>The ExtendedKeyUsage extensions defined in <xref target="RFC5280"/> MAY also be included, but their use is discouraged.  Systems SHOULD use a private Certification Authority (CA) for EAP in preference to public CAs.  The most commonly used public CAs are focused on the web, and those certificates are not always suitable for use with EAP.  In contrast, private CAs can be designed for any purposes, and can be restricted to an enterprise or an other organization.</t>
      </section>
      <section anchor="server-certificate-validation">
        <name>Server Certificate Validation</name>
        <t>As part of the TLS negotiation, the server usually presents a
certificate to the peer.  In most cases the certificate needs to be
validated, but there are a number of situations where the EAP peer
need not do certificate validation:</t>
        <ul spacing="normal">
          <li>
            <t>when the peer has the Server's End Entity (EE) certificate pinned or loaded directly into it's trusted anchor information <xref target="RFC4949"/>;</t>
          </li>
          <li>
            <t>when the peer is requesting server unauthenticated provisioning;</t>
          </li>
          <li>
            <t>when the peer is certain that it will be using an authenticated inner method.</t>
          </li>
        </ul>
        <t>In some cases such as onboarding (or "bootstrapping"), the certificate
validation may be delayed.  However, once the onboarding has taken
place, the validation steps described below MUST still be performed.</t>
        <t>In all other cases, the EAP peer MUST validate the server certificate.  This
validation is done in the same manner as is done for EAP-TLS, which is
discussed in <xref section="5.3" sectionFormat="comma" target="RFC9190"/> and in <xref section="5.3" sectionFormat="comma" target="RFC5216"/>.
Further guidance on server identity validation can be found in
<xref section="6" sectionFormat="comma" target="RFC9525"/>.</t>
        <t>Where the EAP peer has an NAI, EAP peers MUST use the realm to perform
the DNS-ID validation as per <xref section="6" sectionFormat="comma" target="RFC9525"/>.
The realm is used both to construct the list of reference identifiers
as defined in <xref section="6.2.1" sectionFormat="comma" target="RFC9525"/>, and as the
"source domain" field of that same section.</t>
        <t>When performing server certificate validation, implementations MUST
also support the rules in <xref target="RFC5280"/> for validating certificates
against a known trust anchor.  In addition, implementations MUST
support matching the realm portion of the peer's NAI against a
SubjectAltName of type dnsName within the server certificate.
However, in certain deployments, this comparison might not be
appropriate or enabled.</t>
        <t>In most situations, the EAP peer will have no network access during
the authentication process.  It will therefore have no way of correlating
the server identity given in the certificate presented by the EAP
server with a hostname, as is done with other protocols such as HTTPS.
Therefore, if the EAP peer has no preconfigured trust anchor, it will
have few, if any ways of validating the servers certificate.</t>
        <section anchor="client-certs-phase1">
          <name>Client Certificates sent during Phase 1</name>
          <t>Note that since TLS client certificates are sent in the clear with TLS 1.2, if
identity protection is required, then it is possible for the TLS
authentication to be renegotiated after the first server
authentication.  To accomplish this, the server will typically not
request a certificate in the server_hello; then, after the
server_finished message is sent and before TEAP Phase 2, the server
MAY send a TLS hello_request.  This allows the peer to perform client
authentication by sending a client_hello if it wants to or send a
no_renegotiation alert to the server indicating that it wants to
continue with TEAP Phase 2 instead.  Assuming that the peer permits
renegotiation by sending a client_hello, then the server will respond
with server_hello, certificate, and certificate_request messages.
The peer replies with certificate, client_key_exchange, and
certificate_verify messages.  Since this renegotiation occurs within
the encrypted TLS channel, it does not reveal client certificate
details.  It is possible to perform certificate authentication using
EAP (for example, EAP-TLS) within the TLS session in TEAP
Phase 2 instead of using TLS handshake renegotiation.</t>
          <t>When TLS 1.3 or later is used, it is RECOMMENDED that client
certificates are sent in Phase 1, instead of via Phase 2 and EAP-TLS.
Doing so will reduce the number of round trips.  Further discussion of
this issue is given below in <xref target="inner-method-limitations"/></t>
        </section>
      </section>
      <section anchor="resumption">
        <name>Resumption</name>
        <t>For resumption, <xref section="5.7" sectionFormat="comma" target="RFC9190"/> discusses EAP-TLS resumption
for all versions of TLS, and is incorporated herein by reference.
<xref section="4" sectionFormat="comma" target="RFC9427"/> is also incorporated by reference, as it
provides generic discussion of resumption for TLS-based EAP methods
when TLS 1.3 is used.</t>
        <t>This document only describes TEAP issues when resumption is used for
TLS versions of 1.2 and earlier.  It also describes resumption issues
which are specific to TEAP for TLS 1.3.</t>
        <t>If the server agrees to resume the session, Phase 2 is bypassed
entirely.  If the server does not agree to resume the session, then
the server rejects the resumption as per <xref section="5.7" sectionFormat="comma" target="RFC9190"/>.  It
then continues with a full handshake.  After the full TLS handshake
has completed, both EAP server and peer MUST proceed with Phase 2.</t>
        <t>All TEAP implementations MUST support resumption.  Using resumption
can significantly improve the scalability and stability of
authentication systems.  For example, some environments such as
universities may have users re-authenticating multiple times a day, if
not hourly.  Failure to implement resumption would increase the load
on the user database by orders of magnitude, leading to unnecessary
cost.</t>
        <t>The following sections describe how a TEAP session can be resumed
based on server-side or client-side state.</t>
        <section anchor="resume-server-state">
          <name>TLS Session Resumption Using Server State</name>
          <t>TEAP session resumption is achieved in the same manner TLS achieves
session resumption.  To support session resumption, the server and peer
cache the Session ID, master secret, and cipher suite.  The
peer attempts to resume a session by including a valid Session ID
from a previous TLS handshake in its ClientHello message.  If the
server finds a match for the Session ID and is willing to establish a
new connection using the specified session state, the server will
respond with the same Session ID and proceed with the TEAP Phase 1
tunnel establishment based on a TLS abbreviated handshake.</t>
        </section>
        <section anchor="tls-session-resumption-using-client-state">
          <name>TLS Session Resumption Using Client State</name>
          <t>TEAP supports the resumption of sessions based on state being stored
on the client side using the TLS SessionTicket extension techniques
described in <xref target="RFC5077"/> and <xref target="RFC9190"/>.</t>
        </section>
      </section>
      <section anchor="teap-authentication-phase-2-tunneled-authentication">
        <name>TEAP Authentication Phase 2: Tunneled Authentication</name>
        <t>The second portion of the TEAP authentication occurs immediately
after successful completion of Phase 1.  Phase 2 occurs even if both
peer and authenticator are authenticated in the Phase 1 TLS
negotiation.  Phase 2 MUST NOT occur if the Phase 1 TLS handshake
fails, as that will compromise the security as the tunnel has not
been established successfully.  Phase 2 consists of a series of
requests and responses encapsulated in TLV objects defined in
<xref target="teap-tlv-format"/>.  Phase 2 MUST always end with a Crypto-Binding TLV
exchange described in <xref target="crypto-binding-tlv"/> and a protected termination
exchange described in <xref target="protected-termination"/>.</t>
        <t>If the peer is not authenticated in Phase 1, the TEAP peer SHOULD send
one or more Identity-Hint TLVs (<xref target="identity-hint-tlv"/> as soon as the
TLS connection has been established.  This information lets the TEAP
server choose an authentication type which is appropriate for that
identity.  When the TEAP peer does not provide an Identity-Hint TLV,
the TEAP server does not know which inner method is supported by the
peer.  It must necessarily choose an inner method, and propose it to
the peer, which may reject that inner method.  The result will be that
the peer fails to authenticate, and fails to obtain network access.</t>
        <t>The TLV exchange includes the execution of zero or more inner
methods within the protected tunnel as described in <xref target="inner-eap"/>
and <xref target="inner-password"/>.  A server MAY proceed directly to the
protected termination exchange, without performing any inner
authentication if it does not wish to request further authentication
from the peer.  A server MAY request one or more authentications
within the protected tunnel.  After completion of each inner method,
the server decides whether or not to begin another inner method, or
to send a Result TLV.</t>
        <t>Implementations MUST support at least two sequential inner methods,
which allows both Machine and User authentication to be performed.
Implementations SHOULD also limit the number of sequential inner
authentications, as there is no reason to perform a large number of inner
authentications in one TEAP conversation.</t>
        <t>Implementations wishing to use their own proprietary authentication
method, may substitute the EAP-Payload or Basic-Password-Auth-Req TLV
for the Vendor-Specific TLV which carries another authentication
method.  Any vendor-specific authentication method MUST support
calculation of the Crypto-Binding TLV, and MUST use
Intermediate-Result TLV and Result TLV as is done with other
authentication methods.</t>
        <section anchor="inner-method-ordering">
          <name>Inner Method Ordering</name>
          <t>Implementations SHOULD support both EAP and basic password for inner
methods.  Implementations which support multiple types of inner method
(User and Machine) MUST support all of those methods in any order or
combination.  That is, it is explicitly permitted to "mix and match"
inner methods.</t>
          <t>For example, a server can request User authentication from the peer,
and have the peer return Machine authentication (or vice versa).  If
the server is configured to accept Machine authentication, it MUST
accept that response.  If that authentication succeeds, then depending
on local policy, the server SHOULD proceed with requesting User
authentication again.</t>
          <t>Similarly, a peer which is configured to support multiple types of
inner method (User and Machine) can return a method other that what
the server requested.  This action is usually taken by the peer so that it orders
inner methods for increased security.  See
<xref target="choosing-inner-methods"/> for further discussion of this issue.</t>
          <t>However, the peer and server MUST NOT assume that either will skip
inner methods or other TLV exchanges, as the other peer might have
a different security policy.  The peer may have roamed to a network
that requires conformance with a different authentication policy, or
the peer may request the server take additional action (e.g., channel
binding) through the use of the Request-Action TLV as defined in
<xref target="request-action-tlv"/>.</t>
          <t>The completion of each inner method is signaled by an
Intermediate-Result TLV.  Where the Intermediate-Result TLV indicates
failure, an Error TLV SHOULD also be included, using the most descriptive error code possible.  The
Intermediate-Result TLV may be accompanied by another TLV indicating
that the server wishes to perform a subsequent authentication.  When
all inner methods have completed, the server MUST send a Result
TLV indicating success or failure instead of a TLV which carries an
inner method.</t>
        </section>
        <section anchor="inner-eap">
          <name>Inner EAP Authentication</name>
          <t>EAP <xref target="RFC3748"/> prohibits use of multiple authentication methods within
a single EAP conversation in order to limit vulnerabilities to on-path
attacks.  TEAP addresses on-path attacks
through support for cryptographic protection of the inner EAP
exchange and cryptographic binding of the inner EAP
method(s) to the protected tunnel.  Inner methods are executed serially
in a sequence.  This version of TEAP does not support initiating
multiple inner methods simultaneously in parallel.  The inner methods need
not be distinct.  For example, EAP-TLS (<xref target="RFC5216"/> and <xref target="RFC9190"/>) could be run twice as an inner
method, first using machine credentials followed by a second instance
using user credentials.</t>
          <t>When EAP is used as an inner method, the EAP messages are carried within EAP-Payload TLVs defined in
<xref target="eap-payload-tlv"/>.  Note that in this use-case, TEAP is simply a
carrier for EAP, much as RADIUS is a carrier for EAP.  The full EAP
state machine is run as normal, and is carried over the EAP-Payload
TLV.  Each distinct EAP authentication MUST be managed as a separate
EAP state machine.</t>
          <t>A TEAP server therefore MUST begin an EAP authentication with an
EAP-Request/Identity (carried in an EAP-Payload TLV).  However, a TEAP
server MUST NOT finish the EAP conversation with an EAP Success or EAP
Failure packet, the Intermediate-Result TLV is used instead.</t>
          <t>Upon completion of each EAP authentication in the tunnel, the server MUST send
an Intermediate-Result TLV indicating the result of that authentication.  When the result indicates, success it MUST be accompanied by a Crypto-Binding TLV. The peer MUST respond to the Intermediate-Result TLV indicating its own result and similarly on success MUST accompany the TLV with it's own Crypto-Binding TLV.
The Crypto-Binding TLV is
further discussed in <xref target="crypto-binding-tlv"/> and
<xref target="computing-compound-mac"/>.  The Intermediate-Result TLVs can be
included with other TLVs which indicate a subsequent authentication,
or with the Result TLV used in the protected termination
exchange.</t>
          <t>If both peer and server indicate success, then the authentication is
considered successful.  If either indicates failure, then the authentication is
considered failed.  The result of failure of an EAP authentication does not
always imply a failure of the overall authentication.  If one
inner method fails, the server may attempt to authenticate
the peer with a different method (EAP or password).</t>
        </section>
        <section anchor="inner-password">
          <name>Inner Password Authentication</name>
          <t>The authentication server initiates password
authentication by sending a Basic-Password-Auth-Req TLV defined in
<xref target="bp-auth-req-tlv"/>.  If the peer wishes to participate in password
authentication, then it responds with a Basic-Password-Auth-Resp TLV
as defined in <xref target="bp-auth-resp-tlv"/> that contains the username and password.
If it does not wish to perform password authentication, then it
responds with a NAK TLV indicating the rejection of the Basic-Password-Auth-Req TLV.</t>
          <t>The basic password authentication defined here is similar in functionality to that used by EAP-TTLS (<xref target="RFC5281"/>) with inner password authentication.  It shares a similar security and risk analysis.</t>
          <t>Multiple round trips of password authentication requests and responses
MAY be used to support some "housekeeping" functions such as a
password or pin change before a user is considered to be
authenticated.  Multiple rounds MAY also be used to communicate a
user's password, and separately a one-time password such as Time-Based One-Time Passwords (TOTP) <xref target="RFC6238"/>.</t>
          <t>Implementations MUST limit the number of rounds trips for password
authentication.  It is reasonable to use one or two round trips.
Further round trips are likely to be problematic, and SHOULD be
avoided.</t>
          <t>The first Basic-Password-Auth-Req TLV received in a session MUST
include a prompt, which the peer displays to the user.  Subsequent
authentication rounds SHOULD include a prompt, but it is not always
necessary.</t>
          <t>When the peer first receives a Basic-Password-Auth-Req TLV, it should
allow the user to enter both a Username and a Password, which are then
placed in the Basic-Password-Auth-Resp TLV.  If the peer receives
subsequent Basic-Password-Auth-Req TLVs in the same authentication
session, it MUST NOT prompt for a Username, and instead allow the user
to enter only a password.  The peer MUST copy the Username used in the
first Basic-Password-Auth-Resp TLV into all subsequent
Basic-Password-Auth-Resp TLVs.</t>
          <t>Servers MUST track the Username across multiple password rounds, and
reject authentication if the identity changes from one
Basic-Password-Auth-Resp TLV to the next.  There is no reason for a
user (or machine) to change identities in the middle of authentication.</t>
          <t>Upon reception of a Basic-Password-Auth-Resp TLV in
the tunnel, the server MUST send an Intermediate-Result TLV
indicating the result.  The peer MUST respond
to the Intermediate-Result TLV indicating its result.  If the result
indicates success, the Intermediate-Result TLV MUST be accompanied by
a Crypto-Binding TLV.  The Crypto-Binding TLV is further discussed in
<xref target="crypto-binding-tlv"/> and <xref target="computing-compound-mac"/>.</t>
          <t>The Intermediate-Result TLVs can be included with other TLVs which
indicate a subsequent authentication, or with the Result TLV used in
the protected termination exchange.</t>
          <t>The use of EAP-FAST-GTC as defined in <xref target="RFC5421"/> is NOT
RECOMMENDED with TEAPv1 because EAP-FAST-GTC is not compliant with
EAP-GTC defined in <xref target="RFC3748"/>.  Implementations should instead make
use of the password authentication TLVs defined in this
specification.</t>
        </section>
        <section anchor="eap-mschapv2">
          <name>EAP-MSCHAPv2</name>
          <t>If using EAP-MSCHAPv2 <xref target="KAMATH"/> as an inner EAP method, the EAP-FAST-MSCHAPv2
variant defined in <xref section="3.2.3" sectionFormat="comma" target="RFC5422"/> MUST be used, instead of the derivation defined in <xref target="MSCHAP"/>.</t>
          <t>The difference between EAP-MSCHAPv2 and EAP-FAST-MSCHAPv2 is that the
first and the second 16 octets of EAP-MSCHAPv2 Master Session Key (MSK) are swapped when it
is used as the Inner Method Session Keys (IMSK) for TEAP.</t>
        </section>
        <section anchor="inner-method-limitations">
          <name>Limitations on inner methods</name>
          <t>Implementations SHOULD limit the permitted inner EAP methods to a
small set such as EAP-TLS and the EAP-FAST-MSCHAPv2 variant of
EAP-MSCHAPv2.  These EAP methods are the most commonly supported inner
methods in TEAP, and are known to be interoperable among multiple
implementations.</t>
          <t>Other EAP methods such as EAP-pwd, EAP-SIM, EAP-AKA, or EAP-AKA' can
be used within a TEAP tunnel.  Any EAP method which derives both MSK
and ESMK is likely to work as an inner method for TEAP, because
EAP-TLS has that behavior, and it works.  EAP methods which derive
only MSK should work, as EAP-FAST-MSCHAPv2 has that behavior, and it
works.  Other EAP methods are untested, and may or may not work.</t>
          <t>Tunneled EAP methods such as (PEAP) <xref target="PEAP"/>, EAP-TTLS <xref target="RFC5281"/>, and
EAP-FAST <xref target="RFC4851"/> MUST NOT be used for inner EAP authentication.
There is no reason to have multiple layers of TLS in order to protect a
password exchange.</t>
          <t>The EAP methods defined in <xref section="5" sectionFormat="comma" target="RFC3748"/> such as
MD5-Challenge, One-Time Password (OTP), and Generic Token Card (GTC)
do not derive a Master Session Key (MSK) or an Extended Master Session
Key (EMSK), and are vulnerable to on-path attacks.  The construction
of the OTP and GTC methods makes this attack less relevant, as the
information being sent is generally a one-time token. However, EAP-OTP
and EAP-GTC offer no benefit over the basic password authentication
defined in <xref target="inner-password"/>, which also does not perform crypto-binding of
the inner method to the TLS session.  These EAP methods are therefore
not useful as phase 2 methods within TEAP.</t>
          <t>Other EAP methods are less widely used, and highly likely to not work
as the inner EAP method for TEAP.</t>
          <t>In order to protect from on-path attacks, TEAP implementations MUST
NOT permit the use of inner EAP methods which fail to perform
crypto-binding of the inner method to the TLS session.</t>
          <t>Implementations MUST NOT permit resumption for the inner EAP methods
such as EAP-TLS.  If the user or machine needs to be authenticated, it
should use a method which provides full authentication.  If the user or machine needs
to do resumption, it can perform a full authentication once, and then
rely on the outer TLS session for resumption.  This restriction
applies also to all TLS-based EAP methods which can tunnel other EAP
methods.  As a result, this document updates <xref target="RFC9427"/>.</t>
          <t>In general, the reason to use a non-TLS-based EAP method inside of a
TLS-based EAP method such as TEAP is for privacy.  Many previous EAP
methods may leak information about user identity, and those leaks are
prevented by running the method inside of a protected TLS tunnel.</t>
          <t>EAP-TLS is permitted in Phase 2 for two use-cases.  The first is when
TLS 1.2 is used, as the client certificate is not protected as with
TLS 1.3.  It is therefore RECOMMENDED that when TLS 1.3 is used for
the outer TEAP exchange, the client certificate is sent in Phase 1,
instead of doing EAP-TLS in Phase 2.  This behavior will simplify the
authentication exchange, and use fewer round trips than doing EAP-TLS
inside of TEAP.</t>
          <t>The second use-case for EAP-TLS in Phase 2 is where both the user and
machine use client certificates for authentication.  Since TLS permits
only one client certificate to be presented, only one certificate can
be used in Phase 1.  The second certificate is then presented via
EAP-TLS in Phase 2.</t>
          <t>For basic password authentication, it is RECOMMENDED that this method
be only used for the exchange of one-time passwords.  The existence of
password-based EAP methods such as EAP-pwd (<xref target="RFC5931"/> and
<xref target="RFC8146"/>) makes most clear-text password exchanges unnecessary.
The updates to EAP-pwd in <xref target="RFC8146"/> permit it to be used with
databases which store passwords in "salted" form, which greatly
increases security.</t>
          <t>Where no inner method provides an EMSK, the Crypto-Binding TLV
offers little protection, as it cannot tie the inner EMSK to the TLS
session via the TLS-PRF.  As a result, the TEAP session will be
vulnerable to on-path active attacks.  Implementations and deployments
SHOULD adopt various mitigation strategies described in <xref section="3.2" sectionFormat="comma" target="RFC7029"/>.  Implementations also need to implement the inner method
ordering described in {#key-derivations}, below, in order to fully prevent on-path attacks.</t>
        </section>
        <section anchor="protected-termination">
          <name>Protected Termination and Acknowledged Result Indication</name>
          <t>A successful TEAP Phase 2 conversation MUST always end in a
successful Crypto-Binding TLV and Result TLV exchange.  A TEAP server
may initiate the Crypto-Binding TLV and Result TLV exchange without
initiating any inner methods in TEAP Phase 2.  After the final
Result TLV exchange, the TLS tunnel is terminated, and a cleartext
EAP Success or EAP Failure is sent by the server.  Peers implementing
TEAP MUST NOT accept a cleartext EAP Success or failure packet prior
to the peer and server reaching synchronized protected result
indication.</t>
          <t>The Crypto-Binding TLV exchange is used to prove that both the peer
and server participated in the tunnel establishment and sequence of
authentications.  It also provides verification of the TEAP type,
version negotiated, and Outer TLVs exchanged before the TLS tunnel
establishment.  Except as noted below, the Crypto-Binding TLV MUST be exchanged and verified
before the final Result TLV exchange, regardless of whether or not
there is an inner method.  The Crypto-Binding TLV
and Intermediate-Result TLV MUST be included to perform cryptographic
binding after each successful authentication in a sequence of one or more
inner methods.  The server may send the final Result TLV along with an
Intermediate-Result TLV and a Crypto-Binding TLV to indicate its
intention to end the conversation.  If the peer requires nothing more
from the server, it will respond with a Result TLV indicating success
accompanied by a Crypto-Binding TLV and Intermediate-Result TLV if
necessary.  The server then tears down the tunnel and sends a
cleartext EAP Success or EAP Failure.</t>
          <t>If the peer receives a Result TLV indicating success from the server,
but its authentication policies are not satisfied (for example, it
requires a particular authentication mechanism to be run), it may request further action from the server using
the Request-Action TLV.  The Request-Action TLV is sent with a Status
field indicating what EAP Success/Failure result the peer would
expect if the requested action is not granted.  The value of the
Action field indicates what the peer would like to do next.  The
format and values for the Request-Action TLV are defined in
<xref target="request-action-tlv"/>.</t>
          <t>Upon receiving the Request-Action TLV, the server may process the
request or ignore it, based on its policy.  If the server ignores the
request, it proceeds with termination of the tunnel and sends the
cleartext EAP Success or Failure message based on the Status field of
the peer's Request-Action TLV.  If the server honors and processes
the request, it continues with the requested action.  The
conversation completes with a Result TLV exchange.  The Result TLV
may be included with the TLV that completes the requested action.</t>
          <t>Error handling for Phase 2 is discussed in <xref target="phase-2-errors"/>.</t>
        </section>
      </section>
      <section anchor="determining-peer-id-and-server-id">
        <name>Determining Peer-Id and Server-Id</name>
        <t>The Peer-Id and Server-Id <xref target="RFC5247"/> may be determined based on the
types of credentials used during either the TEAP tunnel creation or
authentication.  In the case of multiple peer authentications, all
authenticated peer identities and their corresponding identity types
(<xref target="identity-type-tlv"/>) need to be exported.  In the case of multiple server
authentications, all authenticated server identities need to be
exported.</t>
        <t>When X.509 certificates are used for peer authentication, the Peer-Id
is determined by the subject and subjectAltName fields in the peer
certificate.  As noted in <xref target="RFC5280"/>:</t>
        <artwork><![CDATA[
The subject field identifies the entity associated with the public
key stored in the subject public key field.  The subject name MAY
be carried in the subject field and/or the subjectAltName
extension. . . . If subject naming information is present only in
the subjectAltName extension (e.g., a key bound only to an email
address or URI), then the subject name MUST be an empty sequence
and the subjectAltName extension MUST be critical.

Where it is non-empty, the subject field MUST contain an X.500
distinguished name (DN).
]]></artwork>
        <t>If an inner EAP authentication method is run, then the Peer-Id is obtained from that
inner EAP authentication method.</t>
        <t>When the server uses an X.509 certificate to establish the TLS
tunnel, the Server-Id is determined in a similar fashion as stated
above for the Peer-Id, e.g., the subject and subjectAltName fields in
the server certificate define the Server-Id.</t>
      </section>
      <section anchor="teap-session-identifier">
        <name>TEAP Session Identifier</name>
        <t>For TLS 1.2 and earlier, the EAP session identifier <xref target="RFC5247"/> is constructed using the tls-unique
from the Phase 1 outer tunnel at the beginning of Phase 2 as
defined by Section 3.1 of <xref target="RFC5929"/>.  The Session-Id is defined as
follows:</t>
        <artwork><![CDATA[
   Session-Id = teap_type | tls-unique
]]></artwork>
        <ul empty="true">
          <li>
            <t>where | denotes concatenation, and teap_type is the EAP Type assigned to TEAP</t>
            <t>tls-unique = tls-unique from the Phase 1 outer tunnel at the
beginning of Phase 2 as defined by Section 3.1 of <xref target="RFC5929"/></t>
          </li>
        </ul>
        <t>The Session-Id derivation for TLS 1.3 is given in <xref section="2.1" sectionFormat="comma" target="RFC9427"/></t>
      </section>
      <section anchor="error-handling">
        <name>Error Handling</name>
        <t>TEAP uses the error-handling rules summarized below:</t>
        <ol spacing="normal" type="1"><li>
            <t>Errors in the outer EAP packet layer are handled as defined in
<xref target="outer-layer-errors"/>.</t>
          </li>
          <li>
            <t>Errors in the TLS layer are communicated via TLS alert messages
in both phases of TEAP.</t>
          </li>
          <li>
            <t>The Intermediate-Result TLVs carry success or failure indications
of the individual inner methods in TEAP Phase 2.  Errors within an
EAP conversation in Phase 2 are expected to be handled by the
individual EAP authentication methods.</t>
          </li>
          <li>
            <t>Violations of the Inner TLV rules are handled using Result TLVs
together with Error TLVs.</t>
          </li>
          <li>
            <t>Tunnel-compromised errors (errors caused by a failed or missing
Crypto-Binding) are handled using Result TLVs and Error TLVs.</t>
          </li>
        </ol>
        <section anchor="outer-layer-errors">
          <name>Outer-Layer Errors</name>
          <t>Errors on the TEAP outer-packet layer are handled in the following
ways:</t>
          <ol spacing="normal" type="1"><li>
              <t>If Outer TLVs are invalid or contain unknown values, they will be
ignored.</t>
            </li>
            <li>
              <t>The entire TEAP packet will be ignored if other fields (version,
length, flags, etc.) are inconsistent with this specification.</t>
            </li>
          </ol>
        </section>
        <section anchor="tls-layer-errors">
          <name>TLS Layer Errors</name>
          <t>If the TEAP server detects an error at any point in the TLS handshake
or the TLS layer, the server SHOULD send a TEAP request encapsulating
a TLS record containing the appropriate TLS alert message rather than
immediately terminating the TEAP exchange so as to allow the peer to
inform the user of the cause of the failure.  The TEAP peer MUST send a TEAP response to
an alert message.  The EAP-Response packet sent by the peer SHOULD contain a TEAP response with a zero-length message.
The server MUST terminate the TEAP exchange with an EAP Failure
packet, no matter what the client says.</t>
          <t>If the TEAP peer detects an error at any point in the TLS layer, the
TEAP peer SHOULD send a TEAP response encapsulating a TLS record
containing the appropriate TLS alert message, and which contains a zero-length message.  The server then MUST terminate the conversation with an EAP failure, as discussed in the previous paragraph.</t>
          <t>While TLS 1.3 (<xref target="RFC8446"/>) allows for the TLS conversation to be restarted, it is not clear when that would be useful (or used) for TEAP.  Fatal TLS errors will cause the TLS conversation to fail.  Non-fatal TLS errors can likely be ignored entirely.  As a result, TEAP implementations MUST NOT permit TLS restarts.</t>
        </section>
        <section anchor="phase-2-errors">
          <name>Phase 2 Errors</name>
          <t>There are a large number of situations where errors can occur during
Phase 2 processing.  This section describes both those errors, and the
recommended processing of them.</t>
          <t>When the server receives a Result TLV with a fatal Error TLV from the
peer, it MUST terminate the TLS tunnel and reply with an EAP Failure.</t>
          <t>When the peer receives a Result TLV with a fatal Error TLV from the
server, it MUST  respond with a Result TLV indicating failure.
The server MUST discard any data it receives from the peer, and reply
with an EAP Failure.  The final message from the peer is required by
the EAP state machine, and serves only to allow the server to reply
to the peer with the EAP Failure.</t>
          <t>The following items describe specific errors and processing in more
detail.</t>
          <t>Fatal Error processing a TLV</t>
          <ul empty="true">
            <li>
              <t>Any time the peer or the server finds a fatal error outside of the
TLS layer during Phase 2 TLV processing, it MUST send a Result TLV of
failure and an Error TLV using the most descriptive error code possible.</t>
            </li>
          </ul>
          <t>Fatal Error during TLV Exchanges</t>
          <ul empty="true">
            <li>
              <t>For errors involving the processing of the sequence of exchanges,
such as a violation of TLV rules (e.g., multiple EAP-Payload TLVs),
the error code is Unexpected TLVs Exchanged.</t>
            </li>
          </ul>
          <t>Fatal Error due to tunnel compromise</t>
          <ul empty="true">
            <li>
              <t>For errors involving a tunnel compromise such as when the
Crypto-Binding TLV fails validation, the error code is Tunnel
Compromise Error.</t>
            </li>
          </ul>
          <t>Non-Fatal Error due to inner method</t>
          <ul empty="true">
            <li>
              <t>If there is a non-fatal error while running the inner method, the
receiving side SHOULD NOT silently drop the inner method exchange.
Instead, it SHOULD reply with an Error TLV containing using the most
descriptive error code possible.</t>
              <t>If there is no error code which matches the particular issue, then the value Inner Method Error (1001) SHOULD be used. This response is a positive indication that
there was an error processing the current inner method.  The side
receiving a non-fatal Error TLV MAY decide to start a new and different inner method
instead or, send back a Result TLV to terminate the TEAP
authentication session.</t>
            </li>
          </ul>
        </section>
      </section>
      <section anchor="fragmentation">
        <name>Fragmentation</name>
        <t>Fragmentation of EAP packets is discussed in <xref section="2.1.5." sectionFormat="comma" target="RFC5216"/>
There is no special handling of fragments for TEAP.</t>
      </section>
      <section anchor="services-requested-by-the-peer">
        <name>Services Requested by the Peer</name>
        <t>Several TEAP operations, including server unauthenticated
provisioning, certificate provisioning, and channel binding, depend on
the peer trusting the TEAP server. If the peer trusts the provided
server certificate, then the server is authenticated.</t>
        <t>Typically, this authentication process involves the peer
validating the certificate to a trust anchor by verifying that the server presenting the certificate holds the private key, and confirming that the
entity named by the certificate is the intended server.  Server
authentication also occurs when the procedures in <xref target="phase1"/> are used
to resume a session where the peer and server were previously mutually
authenticated.  Alternatively, the server is deemed to be
authenticated if an inner EAP method provides mutual authentication
along with a Master Session Key (MSK) and/or Extended Master Session
Key (EMSK).  The inner method MUST also provide for cryptographic
binding via the Compound Message Authentication Code (MAC), as
discussed in <xref target="crypto-binding-tlv"/>.  This issue is further described in
<xref target="unauth-provisioning"/>.</t>
        <t>TEAP peers MUST track whether or not server authentication has taken
place. When the server cannot be authenticated, the peer MUST NOT
request any services such as certificate provisioning ({#cert-provisioning}) from it.</t>
        <t>Unless the peer requests server unauthenticated provisioning, it MUST
authenticate the server, and fail the current authentication
session fails if the server cannot be authenticated.</t>
        <t>An additional complication arises when an inner method authenticates
multiple parties such as authenticating both the peer machine and the
peer user to the EAP server.  Depending on how authentication is
achieved, only some of these parties may have confidence in it.  For
example, if a strong shared secret is used to mutually authenticate
the user and the EAP server, the machine may not have confidence that
the EAP server is the authenticated party if the machine cannot trust
the user not to disclose the shared secret to an attacker.  In these
cases, the parties who participate in the authentication need to be
considered when evaluating whether the peer should request these
services, or whether the server should provide them.</t>
        <t>The server MUST also authenticate the peer before providing these
services.  The alternative is to send provisioning data to
unauthenticated and potentially malicious peers, which can have
negative impacts on security.</t>
        <t>When a device is provisioned via TEAP, any subsequent authorization
MUST be done on the authenticated credentials.  That is, there may be
no credentials (or anonymous credentials) passed in Phase 1, but there
will be credentials passed or provisioned in Phase 2.  If later
authorizations are done on the Phase 1 identity, then a device could
obtain the wrong authorization.  If instead authorization is done on
the authenticated credentials, then the device will obtain the correct
kind of network access.</t>
        <t>The correct authorization must also be applied to any resumption, as
noted in <xref section="5.7." sectionFormat="comma" target="RFC9190"/>  However, as it is possible in TEAP
for the credentials to change, the new credentials MUST be associated
with the session ticket.  If this association cannot be done, then the
server MUST invalidate any session tickets for the current session.
This invalidation will force a full re-authentication on any
subsequent connection, at which point the correct authorization will
be associated with any session ticket.</t>
        <t>Note that the act of re-provisioning a device is essentially
indistinguishable from any initial provisioning.  The device
authenticates, and obtains new credentials via the standard
provisioning mechanisms.  The only caveat is that the device SHOULD
NOT discard the old credentials unless either they are known to have
expired, or the new credentials have been verified to work.</t>
        <section anchor="cert-provisioning">
          <name>Certificate Provisioning within the Tunnel</name>
          <t>Provisioning of a peer's certificate is supported in TEAP by
performing the Simple PKI Request/Response from <xref target="RFC5272"/> using
PKCS#10 and PKCS#7 TLVs, respectively.  A peer sends the Simple PKI
Request using a PKCS#10 CertificateRequest <xref target="RFC2986"/> encoded into the
body of a PKCS#10 TLV (see <xref target="pkcs10-tlv"/>).  The TEAP server issues a
Simple PKI Response using a PKCS#7 <xref target="RFC2315"/> unsigned (i.e. degenerate) "Certificates
Only" message encoded into the body of a PKCS#7 TLV (see
<xref target="pkcs7-tlv"/>), only after an inner method has run and
provided an identity proof on the peer prior to a certificate is
being issued.</t>
          <t>In order to provide linking identity and proof-of-possession by
including information specific to the current authenticated TLS
session within the signed certification request, the peer generating
the request SHOULD obtain the tls-unique value from the TLS subsystem
as defined in "Channel Bindings for TLS" <xref target="RFC5929"/>.  The TEAP peer
operations between obtaining the tls-unique value through generation
of the Certification Signing Request (CSR) that contains the current
tls-unique value and the subsequent verification of this value by the
TEAP server are the "phases of the application protocol during which
application-layer authentication occurs" that are protected by the
synchronization interoperability mechanism described in the
interoperability note in "Channel Bindings for TLS" (<xref target="RFC5929"/>,
Section 3.1).  When performing renegotiation, TLS
"secure_renegotiation" <xref target="RFC5746"/> MUST be used.</t>
          <t>The tls-unique value is base-64-encoded as specified in <xref target="message-formats"/> of
<xref target="RFC4648"/>, and the resulting string is placed in the certification
request challengePassword field (<xref target="RFC2985"/>, Section 5.4.1).  The
challengePassword field is limited to 255 octets (Section 7.4.9 of
<xref target="RFC5246"/> indicates that no existing cipher suite would result in an
issue with this limitation).  If tls-unique information is not
embedded within the certification request, the challengePassword
field MUST be empty to indicate that the peer did not include the
optional channel-binding information (any value submitted is verified
by the server as tls-unique information).</t>
          <t>The server SHOULD verify the tls-unique information.  This ensures that the
signed certificate request is being presented by an authenticated TEAP peer
which is in possession of the private key.</t>
          <t>The Simple PKI Request/Response generation and processing rules of
<xref target="RFC5272"/> SHALL apply to TEAP, with the exception of error
conditions.  In the event of an error, the TEAP server SHOULD respond
with an Error TLV using the most descriptive error code possible; it
MAY ignore the PKCS#10 request that generated the error.</t>
        </section>
        <section anchor="certificate-content-and-uses">
          <name>Certificate Content and Uses</name>
          <t>It is not enough to verify that the CSR provided by the peer to the
authenticator is from an authenticated user.  The CSR itself should
also be examined by the authenticator or Certification Authority (CA)
before any certificate is issued.</t>
          <t>The format of a CSR is complex, and contains a substantial amount of
information.  That information could be incorrect, such as a user
claiming a wrong physical address, email address, etc.  It is RECOMMENDED that systems provisioning these certificates
validate that the CSR both contains the expected data, and also that
is does not contain unexpected data.  For example, a CA could refuse
to issue the certificate if the CSR contained unknown fields, or if a
known field contained an unexpected or invalid value.  The CA can modify or refuse a particular CSR to address these deficiencies for any
reasons, including local site policy.  We note that the "A" in "CA" means for "Authority", while the "R" in "CSR" means "Request".  There is no requirement for a CA to sign any and all CSRs  which are presented to it.</t>
          <t>Once an EAP peer receives the signed certificate, the peer could
potentially be (ab) used for in TLS contexts other than TEAP.  For example,
the certificate could be used with EAP-TLS, or even with HTTPS.  It is NOT RECOMMENDED to use certificates provisioned via TEAP for
any non-TEAP protocol.  One method of enforcing this
restriction is to have different CAs (or different intermediate CAs)
which issue certificates for different uses.  For example, TLS-based
EAP methods could share one CA, and even use different intermediary CAs for different TLS-based EAP methods.  HTTPS servers could use an
entirely different CA.  The different protocols could then be configured
to validate client certificates only from their preferred CA, which would prevent peers from using certificates outside of the intended use-case.</t>
          <t>Another method of limiting the uses of a certificate is to provision
it with an appropriate value for the Extended Key Usage field
<xref target="RFC7299"/>.  For example, the id-kp-eapOverLAN <xref target="RFC4334"/> value
could be used to indicate that this certificate is intended for use
only with EAP.</t>
          <t>It is difficult to give more detailed recommendations than the above.
Each CA or organization may have its own local policy as to what is
permitted or forbidden in a certificate.  All we can do in this
document is to highlight the issues, and make the reader aware that
they have to be addressed.</t>
        </section>
        <section anchor="unauth-provisioning">
          <name>Server Unauthenticated Provisioning Mode</name>
          <t>In Server Unauthenticated Provisioning Mode, an unauthenticated
tunnel is established in Phase 1, and the peer and server negotiate
an inner method or methods in Phase 2.  This inner method MUST support mutual authentication, provide key
derivation, and be resistant to attacks such as on-path and
dictionary attacks.  In most cases, this inner method will be an EAP authentication method.  Example inner methods which satisfy these criteria include EAP-pwd <xref target="RFC5931"/>
and EAP-EKE <xref target="RFC6124"/>, but not EAP-FAST-MSCHAPv2.</t>
          <t>This provisioning mode enables the bootstrapping
of peers when the peer lacks the ability to authenticate the server
during Phase 1.  This includes both cases in which the cipher suite
negotiated does not provide authentication and in which the
cipher suite negotiated provides the authentication but the peer is
unable to validate the identity of the server for some reason.</t>
          <t>Upon successful completion of the inner method in Phase 2, the peer and
server exchange a Crypto-Binding TLV to bind the inner method with
the outer tunnel and ensure that an on-path attack has not
been attempted.</t>
          <t>Support for the Server Unauthenticated Provisioning Mode is optional.
The cipher suite TLS_DH_anon_WITH_AES_128_CBC_SHA is RECOMMENDED when
using Server Unauthenticated Provisioning Mode, but other anonymous
cipher suites MAY be supported as long as the TLS pre-master secret is
generated from contribution from both peers.</t>
          <t>When a strong inner method is not used with Server Unauthenticated
Provisioning Mode, it is possible for an attacker to perform an
on-path attack.  In effect, Server Unauthenticated
Provisioning Mode has similar security issues as just running the
inner method in the open, without the protection of TLS.  All of the
information in the tunnel should be assumed to be visible to, and
modifiable by, an attacker.</t>
          <t>Implementations SHOULD exchange minimal data in Server
Unauthenticated Provisioning Mode.  Instead, they should use that mode
to set up a secure / authenticated tunnel, and then use that tunnel to
perform any needed data exchange.</t>
          <t>It is RECOMMENDED that client implementations and deployments
authenticate TEAP servers if at all possible.  Authenticating the
server means that a client can be provisioned securely with no chance of
an attacker eaves-dropping on the connection.</t>
          <t>Note that server Unauthenticated Provisioning can only use anonymous
cipher suites in TLS 1.2 and earlier.  These cipher suites have been
deprecated in TLS 1.3 (<xref section="C.5" sectionFormat="comma" target="RFC8446"/>).  For TLS 1.3, the
server MUST provide a certificate, and the peer performs server
unauthenticated provisioning by not validating the certificate chain
or any of its contents.</t>
        </section>
        <section anchor="channel-binding">
          <name>Channel Binding</name>
          <t><xref target="RFC6677"/> defines channel bindings for EAP which solve the "lying NAS" and
the "lying provider" problems, using a process in which the EAP peer
gives information about the characteristics of the service provided
by the authenticator to the Authentication, Authorization, and
Accounting (AAA) server protected within the EAP authentication method.  This allows
the server to verify the authenticator is providing information to
the peer that is consistent with the information received from this
authenticator as well as the information stored about this
authenticator.</t>
          <t>TEAP supports EAP channel binding using the Channel-Binding TLV
defined in <xref target="channel-binding-tlv"/>.  If the TEAP server wants to request the
channel-binding information from the peer, it sends an empty
Channel-Binding TLV to indicate the request.  The peer responds to the
request by sending a Channel-Binding TLV containing a channel-binding
message as defined in <xref target="RFC6677"/>.  The server validates the
channel-binding message and sends back a Channel-Binding TLV with a result
code.  If the server did not initiate the channel-binding request and
the peer still wants to send the channel-binding information to the
server, it can do that by using the Request-Action TLV along with the
Channel-Binding TLV.  The peer MUST only send channel-binding
information after it has successfully authenticated the server and
established the protected tunnel.</t>
        </section>
      </section>
    </section>
    <section anchor="message-formats">
      <name>Message Formats</name>
      <t>The following sections describe the message formats used in TEAP.
The fields are transmitted from left to right in network byte order.</t>
      <section anchor="teap-message-format">
        <name>TEAP Message Format</name>
        <t>A summary of the TEAP Request/Response packet format is shown below.</t>
        <artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|     Code      |   Identifier  |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|     Type      |   Flags | Ver |        Message Length         :
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
:         Message Length        |         Outer TLV Length
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
:     Outer TLV Length          |         TLS Data...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|       Outer TLVs...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        <t>Code</t>
        <ul empty="true">
          <li>
            <t>The Code field is one octet in length and is defined as follows:</t>
            <ul empty="true">
              <li>
                <t>1 Request</t>
                <t>2 Response</t>
              </li>
            </ul>
          </li>
        </ul>
        <t>Identifier</t>
        <ul empty="true">
          <li>
            <t>The Identifier field is one octet and aids in matching responses
with requests.  The Identifier field MUST be changed on each
Request packet.  The Identifier field in the Response packet MUST
match the Identifier field from the corresponding request.</t>
          </li>
        </ul>
        <t>Length</t>
        <ul empty="true">
          <li>
            <t>The Length field is two octets and indicates the length of the EAP
packet including the Code, Identifier, Length, Type, Flags, Ver,
Message Length, TLS Data, and Outer TLVs fields.  Octets outside
the range of the Length field should be treated as Data Link Layer
padding and should be ignored on reception.</t>
          </li>
        </ul>
        <t>Type</t>
        <ul empty="true">
          <li>
            <t>55 for TEAP</t>
          </li>
        </ul>
        <t>Flags</t>
        <artwork><![CDATA[
       0 1 2 3 4
      +-+-+-+-+-+
      |L M S O R|
      +-+-+-+-+-+

   L  Length included; set to indicate the presence of the four-octet
      Message Length field.  It MUST be present for the first
      fragment of a fragmented message.  It MUST NOT be present for
      any other message.

   M  More fragments; set on all but the last fragment.

   S  TEAP start; set in a TEAP Start message sent from the server to
      the peer.

   O  Outer TLV length included; set to indicate the presence of the
      four-octet Outer TLV Length field.  It MUST be present only in
      the initial request and response messages.  If the initial
      message is fragmented, then it MUST be present only on the
      first fragment.

   R  Reserved (MUST be zero and ignored upon receipt)
]]></artwork>
        <t>Ver</t>
        <ul empty="true">
          <li>
            <t>This field contains the version of the protocol.  This document
describes version 1 (001 in binary) of TEAP.</t>
          </li>
        </ul>
        <t>Message Length</t>
        <ul empty="true">
          <li>
            <t>The Message Length field is four octets and is present only if the
L bit is set.  This field provides the total length of the message
that may be fragmented over the data fields of multiple packets.</t>
          </li>
        </ul>
        <t>Outer TLV Length</t>
        <ul empty="true">
          <li>
            <t>The Outer TLV Length field is four octets and is present only if
the O bit is set.  This field provides the total length of the
Outer TLVs if present.</t>
          </li>
        </ul>
        <t>TLS Data</t>
        <ul empty="true">
          <li>
            <t>When the TLS Data field is present, it consists of an encapsulated
TLS packet in TLS record format.  A TEAP packet with Flags and
Version fields, but with zero length TLS Data field, is used to
indicate TEAP acknowledgment for either a fragmented message, a
TLS Alert message, or a TLS Finished message.</t>
          </li>
        </ul>
        <t>Outer TLVs</t>
        <ul empty="true">
          <li>
            <t>The Outer TLVs consist of the optional data used to help establish
the TLS tunnel in TLV format.  They are only allowed in the first
two messages in the TEAP protocol.  That is the first
EAP-server-to-peer message and first peer-to-EAP-server message.  The start
of the Outer TLVs can be derived from the EAP Length field and
Outer TLV Length field.</t>
          </li>
        </ul>
      </section>
      <section anchor="teap-tlv-format">
        <name>TEAP TLV Format and Support</name>
        <t>The TLVs defined here are TLV objects.  The TLV objects could be used
to carry arbitrary parameters between an EAP peer and EAP server
within the protected TLS tunnel.</t>
        <t>The EAP peer may not necessarily implement all the TLVs supported by
the EAP server.  To allow for interoperability, TLVs are designed to
allow an EAP server to discover if a TLV is supported by the EAP peer
using the NAK TLV.  The mandatory bit in a TLV indicates whether
support of the TLV is required.  If the peer or server does not
support a TLV marked mandatory, then it MUST send a NAK TLV in the
response, and all the other TLVs in the message MUST be ignored.  If
an EAP peer or server finds an unsupported TLV that is marked as
optional, it can ignore the unsupported TLV.  It MUST only send a NAK
TLV for a TLV which is marked mandatory but is not understood, and MUST NOT otherwise send a NAK TLV.  If all TLVs in a message
are marked optional and none are understood by the peer, then a Result TLV SHOULD be sent to the other side in order to
continue the conversation.  It is also possible to send a NAK TLV when all TLVs in a message are marked optional.</t>
        <t>Note that a peer or server may support a TLV with the mandatory bit
set but may not understand the contents.  The appropriate response to
a supported TLV with content that is not understood is defined by the
individual TLV specification.</t>
        <t>EAP implementations compliant with this specification MUST support
TLV exchanges as well as the processing of mandatory/optional
settings on the TLV.  Implementations conforming to this
specification MUST support the following TLVs:</t>
        <ul spacing="normal">
          <li>
            <t>Authority-ID TLV</t>
          </li>
          <li>
            <t>Identity-Type TLV</t>
          </li>
          <li>
            <t>Result TLV</t>
          </li>
          <li>
            <t>NAK TLV</t>
          </li>
          <li>
            <t>Error TLV</t>
          </li>
          <li>
            <t>Request-Action TLV</t>
          </li>
          <li>
            <t>EAP-Payload TLV</t>
          </li>
          <li>
            <t>Intermediate-Result TLV</t>
          </li>
          <li>
            <t>Crypto-Binding TLV</t>
          </li>
          <li>
            <t>Basic-Password-Auth-Req TLV</t>
          </li>
          <li>
            <t>Basic-Password-Auth-Resp TLV</t>
          </li>
        </ul>
        <section anchor="general-tlv-format">
          <name>General TLV Format</name>
          <t>TLVs are defined as described below.  The fields are transmitted from
left to right.</t>
          <t>If a peer or server receives a TLV which is not of the correct format,
the TLV MUST be discarded.  It is generally useful to log an error or
debugging message which indicates which TLV had an issue, and what the
problem is.  However, TLVs which are malformed are invalid, and cannot
be used.</t>
          <artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|M|R|            TLV Type       |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                              Value...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
          <t>M</t>
          <ul empty="true">
            <li>
              <t>0  Optional TLV</t>
              <t>1  Mandatory TLV</t>
            </li>
          </ul>
          <t>R</t>
          <ul empty="true">
            <li>
              <t>Reserved, set to zero (0)</t>
            </li>
          </ul>
          <t>TLV Type</t>
          <t>A 14-bit field, denoting the TLV type.  Allocated types include:</t>
          <ul empty="true">
            <li>
              <t>0  Unassigned</t>
              <t>1  Authority-ID TLV (<xref target="authority-id-tlv"/>)</t>
              <t>2  Identity-Type TLV (<xref target="identity-type-tlv"/>)</t>
              <t>3  Result TLV (<xref target="result-tlv"/>)</t>
              <t>4  NAK TLV (<xref target="nak-tlv"/>)</t>
              <t>5  Error TLV (<xref target="error-tlv"/>)</t>
              <t>6  Channel-Binding TLV (<xref target="channel-binding-tlv"/>)</t>
              <t>7  Vendor-Specific TLV (<xref target="vendor-specific-tlv"/>)</t>
              <t>8  Request-Action TLV (<xref target="request-action-tlv"/>)</t>
              <t>9  EAP-Payload TLV (<xref target="eap-payload-tlv"/>)</t>
              <t>10 Intermediate-Result TLV (<xref target="intermediate-result-tlv"/>)</t>
              <t>11 PAC TLV (DEPRECATED)</t>
              <t>12 Crypto-Binding TLV (<xref target="crypto-binding-tlv"/>)</t>
              <t>13 Basic-Password-Auth-Req TLV (<xref target="bp-auth-req-tlv"/>)</t>
              <t>14 Basic-Password-Auth-Resp TLV (Section 4.2.15)</t>
              <t>15 PKCS#7 TLV (<xref target="pkcs7-tlv"/>)</t>
              <t>16 PKCS#10 TLV (<xref target="pkcs10-tlv"/>)</t>
              <t>17 Trusted-Server-Root TLV (<xref target="trusted-server-root-tlv"/>)</t>
              <t>18 CSR-Attributes TLV (<xref target="csr-attributes-tlv"/>)</t>
              <t>19 Identity-Hint TLV (<xref target="identity-hint-tlv"/>)</t>
            </li>
          </ul>
          <t>Length</t>
          <ul empty="true">
            <li>
              <t>The length of the Value field in octets.</t>
            </li>
          </ul>
          <t>Value</t>
          <ul empty="true">
            <li>
              <t>The value of the TLV.</t>
            </li>
          </ul>
        </section>
        <section anchor="authority-id-tlv">
          <name>Authority-ID TLV</name>
          <artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|M|R|         TLV Type          |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                              ID...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
          <t>M</t>
          <ul empty="true">
            <li>
              <t>0 - Optional TLV</t>
            </li>
          </ul>
          <t>R</t>
          <ul empty="true">
            <li>
              <t>Reserved, set to zero (0)</t>
            </li>
          </ul>
          <t>TLV Type</t>
          <ul empty="true">
            <li>
              <t>1 - Authority-ID</t>
            </li>
          </ul>
          <t>Length</t>
          <ul empty="true">
            <li>
              <t>The Length field is two octets and contains the length of the ID
field in octets.</t>
            </li>
          </ul>
          <t>ID</t>
          <ul empty="true">
            <li>
              <t>Hint of the identity of the server to help the peer to match the
credentials available for the server.  It should be unique across
the deployment.</t>
            </li>
          </ul>
        </section>
        <section anchor="identity-type-tlv">
          <name>Identity-Type TLV</name>
          <t>The Identity-Type TLV allows an EAP server to send a hint to help the
EAP peer select the right type of identity, for example, user or
machine.  TEAPv1 implementations MUST support this TLV.  Only one
Identity-Type TLV SHOULD be present in the TEAP request or response
packet.</t>
          <t>A server sending the Identity-Type TLV MUST also
include an EAP-Payload TLV or a Basic-Password-Auth-Resp TLV.  A
peer sending an Identity-Type TLV MUST also include
EAP-Payload TLV or a Basic-Password-Auth-Resp TLV.</t>
          <t>An EAP peer receiving an Identity-Type request
SHOULD respond with an Identity-Type TLV with the requested type.  If
the Identity-Type field does not contain one of the known values, or
if the EAP peer does not have an identity corresponding to the
identity type requested, then the peer SHOULD respond with an
Identity-Type TLV with the one of available identity types.</t>
          <t>A server receiving an Identity-Type in the response MUST check if the
value of the Identity-Type in the response matches the value of the
Identity-Type which was sent in the request.  A match means that the
server can proceed with authentication.</t>
          <t>However, if the values do not match, the server can proceed with
authentication if and only if the following two conditions match.  If
either of the following two conditions does not match, the server MUST
respond with a Result TLV of Failure.</t>
          <ul empty="true">
            <li>
              <ol spacing="normal" type="1"><li>
                  <t>The Identity-Type contains a value permitted by the server configuration.</t>
                </li>
                <li>
                  <t>The Identity-Type value was not previously used for a successful authentication.</t>
                </li>
              </ol>
            </li>
          </ul>
          <t>The first condition allows a server to be configured to permit only
User authentication, or else only Machine Authentication.  A server
could also use an Identity-Hint TLV sent in the response to permit
different types of authentication for different identities.  A server
could also permit or forbid different kinds of authentication based on
other information, such an outer EAP Identity, or fields in an outer
EAP client certificate, or other fields received in a RADIUS or
Diameter packet along with the TEAP session.  There is no requirement
that a server has to support both User and Machine authentication for
all TEAP sessions.</t>
          <t>The second condition ensures that if a particular inner method
succeeds, the server does not attempt a subsequent inner method for
the same Identity-Type.  For example, if a user is authenticated via
an inner method of EAP-TLS, there is no benefit to also requesting
additional authentication via a different inner method.  Similarly,
there is no benefit to repeating an authentication sessions for the
same user; the result will not change.</t>
          <t>This second condition also forbids multiple rounds of challenge /
response authentication via the Basic-Password-Auth-Req TLV.  TEAPv1
supports only one round of Basic-Password-Auth-Req followed by
Basic-Password-Auth-Resp.  The result of that round MUST NOT be
another Basic-Password-Auth-Req TLV.</t>
          <t>This second condition also means that a server MUST NOT send an
Identity-Hint TLV which has the same value as was previously used for
a successful authentication.</t>
          <t>The Identity-Type TLV is defined as follows:</t>
          <artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|M|R|         TLV Type          |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|         Identity-Type         |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
          <t>M</t>
          <ul empty="true">
            <li>
              <t>Mandatory, set to one (1)</t>
            </li>
          </ul>
          <t>R</t>
          <ul empty="true">
            <li>
              <t>Reserved, set to zero (0)</t>
            </li>
          </ul>
          <t>TLV Type</t>
          <ul empty="true">
            <li>
              <t>2 - Identity-Type TLV</t>
            </li>
          </ul>
          <t>Length</t>
          <ul empty="true">
            <li>
              <t>2</t>
            </li>
          </ul>
          <t>Identity-Type</t>
          <ul empty="true">
            <li>
              <t>The Identity-Type field is two octets.  Values include:</t>
              <ul empty="true">
                <li>
                  <t>1  User</t>
                  <t>2  Machine</t>
                </li>
              </ul>
            </li>
          </ul>
        </section>
        <section anchor="result-tlv">
          <name>Result TLV</name>
          <t>The Result TLV provides support for acknowledged success and failure
messages for protected termination within TEAP.  If the Status field
does not contain one of the known values, then the peer or EAP server
MUST treat this as a fatal error of Unexpected TLVs Exchanged.  The
behavior of the Result TLV is further discussed in <xref target="protected-termination"/> and
<xref target="phase-2-errors"/>.</t>
          <t>A Result TLV indicating Failure MUST NOT be accompanied by
the following TLVs: NAK, EAP-Payload TLV, or Crypto-Binding TLV.</t>
          <t>A Result TLV Indicating Success MUST be accompanied by a Crypto-Binding TLV.</t>
          <t>The Result TLV is defined as follows:</t>
          <artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|M|R|         TLV Type          |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|             Status            |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
          <t>M</t>
          <ul empty="true">
            <li>
              <t>Mandatory, set to one (1)</t>
            </li>
          </ul>
          <t>R</t>
          <ul empty="true">
            <li>
              <t>Reserved, set to zero (0)</t>
            </li>
          </ul>
          <t>TLV Type</t>
          <ul empty="true">
            <li>
              <t>3 - Result TLV</t>
            </li>
          </ul>
          <t>Length</t>
          <ul empty="true">
            <li>
              <t>2</t>
            </li>
          </ul>
          <t>Status</t>
          <ul empty="true">
            <li>
              <t>The Status field is two octets.  Values include:</t>
              <ul empty="true">
                <li>
                  <t>1  Success</t>
                  <t>2  Failure</t>
                </li>
              </ul>
            </li>
          </ul>
        </section>
        <section anchor="nak-tlv">
          <name>NAK TLV</name>
          <t>The NAK TLV allows a peer to detect TLVs that are not supported by
 the other peer.  A TEAP packet can contain 0 or more NAK TLVs.  A NAK
 TLV should not be accompanied by other TLVs.  A NAK TLV MUST NOT be
 sent in response to a message containing a Result TLV, instead a
 Result TLV of failure should be sent indicating failure and an Error
 TLV of Unexpected TLVs Exchanged.  The NAK TLV is defined as follows:</t>
          <artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|M|R|         TLV Type          |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          Vendor-Id                            |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|            NAK-Type           |           TLVs...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
          <t>M</t>
          <ul empty="true">
            <li>
              <t>Mandatory, set to one (1)</t>
            </li>
          </ul>
          <t>R</t>
          <ul empty="true">
            <li>
              <t>Reserved, set to zero (0)</t>
            </li>
          </ul>
          <t>TLV Type</t>
          <ul empty="true">
            <li>
              <t>4 - NAK TLV</t>
            </li>
          </ul>
          <t>Length</t>
          <ul empty="true">
            <li>
              <t>&gt;=6</t>
            </li>
          </ul>
          <t>Vendor-Id</t>
          <ul empty="true">
            <li>
              <t>The Vendor-Id field is four octets and contains the Vendor-Id of
the TLV that was not supported.  The high-order octet is 0, and
the low-order three octets are the Structure of Management
Information (SMI) Network Management Private Enterprise Number of
the Vendor in network byte order.  The Vendor-Id field MUST be
zero for TLVs that are not Vendor-Specific TLVs.</t>
            </li>
          </ul>
          <t>NAK-Type</t>
          <ul empty="true">
            <li>
              <t>The NAK-Type field is two octets.  The field contains the type of
the TLV that was not supported.  A TLV of this type MUST have been
included in the previous packet.</t>
            </li>
          </ul>
          <t>TLVs</t>
          <ul empty="true">
            <li>
              <t>This field contains a list of zero or more TLVs, each of which
MUST NOT have the mandatory bit set.  These optional TLVs are for
future extensibility to communicate why the offending TLV was
determined to be unsupported.</t>
            </li>
          </ul>
        </section>
        <section anchor="error-tlv">
          <name>Error TLV</name>
          <t>The Error TLV allows an EAP peer or server to indicate errors to the
other party.  A TEAP packet can contain 0 or more Error TLVs.  The
Error-Code field describes the type of error.  Error codes 1-999
represent successful outcomes (informative messages), 1000-1999
represent warnings, and 2000-2999 represent fatal errors.  A fatal
Error TLV MUST be accompanied by a Result TLV indicating failure, and
the conversation is terminated as described in <xref target="phase-2-errors"/>.</t>
          <t>Many of the error codes below refer to errors in inner method
processing that may be retrieved if made available by the inner
method.  Implementations MUST take care that error messages do not
reveal too much information to an attacker.  For example, the usage
of error message 1031 (User account credentials incorrect) is NOT
RECOMMENDED, because it allows an attacker to determine valid
usernames by differentiating this response from other responses.  It
should only be used for troubleshooting purposes.</t>
          <t>The Error TLV is defined as follows:</t>
          <artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|M|R|         TLV Type          |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                           Error-Code                          |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
          <t>M</t>
          <ul empty="true">
            <li>
              <t>Mandatory, set to one (1)</t>
            </li>
          </ul>
          <t>R</t>
          <ul empty="true">
            <li>
              <t>Reserved, set to zero (0)</t>
            </li>
          </ul>
          <t>TLV Type</t>
          <ul empty="true">
            <li>
              <t>5 - Error TLV</t>
            </li>
          </ul>
          <t>Length</t>
          <ul empty="true">
            <li>
              <t>4</t>
            </li>
          </ul>
          <t>Error-Code</t>
          <ul empty="true">
            <li>
              <t>The Error-Code field is four octets.  Currently defined values for
Error-Code include:</t>
              <ul empty="true">
                <li>
                  <t>1     User account expires soon</t>
                  <t>2     User account credential expires soon</t>
                  <t>3     User account authorizations change soon</t>
                  <t>4     Clock skew detected</t>
                  <t>5     Contact administrator</t>
                  <t>6     User account credentials change required</t>
                  <t>1001  Inner Method Error</t>
                  <t>1002  Unspecified authentication infrastructure problem</t>
                  <t>1003  Unspecified authentication failure</t>
                  <t>1004  Unspecified authorization failure</t>
                  <t>1005  User account credentials unavailable</t>
                  <t>1006  User account expired</t>
                  <t>1007  User account locked: try again later</t>
                  <t>1008  User account locked: admin intervention required</t>
                  <t>1009  Authentication infrastructure unavailable</t>
                  <t>1010  Authentication infrastructure not trusted</t>
                  <t>1011  Clock skew too great</t>
                  <t>1012  Invalid inner realm</t>
                  <t>1013  Token out of sync: administrator intervention required</t>
                  <t>1014  Token out of sync: PIN change required</t>
                  <t>1015  Token revoked</t>
                  <t>1016  Tokens exhausted</t>
                  <t>1017  Challenge expired</t>
                  <t>1018  Challenge algorithm mismatch</t>
                  <t>1019  Client certificate not supplied</t>
                  <t>1020  Client certificate rejected</t>
                  <t>1021  Realm mismatch between inner and outer identity</t>
                  <t>1022  Unsupported Algorithm In Certificate Signing Request</t>
                  <t>1023  Unsupported Extension In Certificate Signing Request</t>
                  <t>1024  Bad Identity In Certificate Signing Request</t>
                  <t>1025  Bad Certificate Signing Request</t>
                  <t>1026  Internal CA Error</t>
                  <t>1027  General PKI Error</t>
                  <t>1028  Inner method's channel-binding data required but not
supplied</t>
                  <t>1029  Inner method's channel-binding data did not include required
information</t>
                  <t>1030  Inner method's channel binding failed</t>
                  <t>1031  User account credentials incorrect [USAGE NOT RECOMMENDED]</t>
                  <t>1032  Inner method not supported</t>
                  <t>2001  Tunnel Compromise Error</t>
                  <t>2002  Unexpected TLVs Exchanged</t>
                  <t>2003  The Crypto-Binding TLV is invalid (Version, or Received-Ver, or Sub-Type)</t>
                  <t>2004  The first inner method did not derive EMSK</t>
                  <t>2005  The Crypto-Binding TLV did not include a required MSK Compound-MAC</t>
                  <t>2006  The MSK Compound-MAC fails verification</t>
                  <t>2007  The Crypto-Binding TLV did not include a required EMSK Compound-MAC</t>
                  <t>2008  The EMSK Compound-MAC fails verification</t>
                  <t>2009  The EMSK Compound-MAC exists, but the inner method did not derive EMSK</t>
                </li>
              </ul>
            </li>
          </ul>
        </section>
        <section anchor="channel-binding-tlv">
          <name>Channel-Binding TLV</name>
          <t>The Channel-Binding TLV provides a mechanism for carrying
channel-binding data from the peer to the EAP server and a channel-binding
response from the EAP server to the peer as described in <xref target="RFC6677"/>.
TEAPv1 implementations MAY support this TLV, which cannot be
responded to with a NAK TLV.  If the Channel-Binding data field does
not contain one of the known values or if the EAP server does not
support this TLV, then the server MUST ignore the value.  The
Channel-Binding TLV is defined as follows:</t>
          <artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|M|R|         TLV Type          |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|            Data ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
          <t>M</t>
          <ul empty="true">
            <li>
              <t>0 - Optional TLV</t>
            </li>
          </ul>
          <t>R</t>
          <ul empty="true">
            <li>
              <t>Reserved, set to zero (0)</t>
            </li>
          </ul>
          <t>TLV Type</t>
          <ul empty="true">
            <li>
              <t>6 - Channel-Binding TLV</t>
            </li>
          </ul>
          <t>Length</t>
          <ul empty="true">
            <li>
              <t>variable</t>
            </li>
          </ul>
          <t>Data</t>
          <ul empty="true">
            <li>
              <t>The data field contains a channel-binding message as defined in
Section 5.3 of <xref target="RFC6677"/>.</t>
            </li>
          </ul>
        </section>
        <section anchor="vendor-specific-tlv">
          <name>Vendor-Specific TLV</name>
          <t>The Vendor-Specific TLV is available to allow vendors to support
their own extended attributes not suitable for general usage.  A
Vendor-Specific TLV attribute can contain one or more TLVs, referred
to as Vendor TLVs.  The TLV type of a particular Vendor TLV is defined by the
vendor.  All the Vendor TLVs inside a single Vendor-Specific TLV
belong to the same vendor.  There can be multiple Vendor-Specific
TLVs from different vendors in the same message.  Error handling in
the Vendor TLV could use the vendor's own specific error-handling
mechanism or use the standard TEAP error codes defined.</t>
          <t>Vendor TLVs may be optional or mandatory.  Vendor TLVs sent with
Result TLVs MUST be marked as optional.  If the Vendor-Specific TLV
is marked as mandatory, then it is expected that the receiving side
needs to recognize the vendor ID, parse all Vendor TLVs within, and
deal with error handling within the Vendor-Specific TLV as defined by
the vendor.</t>
          <t>Where a Vendor-Specific TLV carries an authentication protocol in the
inner method, it MUST define values for MSK and EMSK.  Where these
values cannot be derived from cryptographic primitives, they MUST be
set to zero, as happens when Basic-Password-Auth-Req is used.</t>
          <t>The Vendor-Specific TLV is defined as follows:</t>
          <artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|M|R|         TLV Type          |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          Vendor-Id                            |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                         Vendor TLVs....
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
          <t>M</t>
          <ul empty="true">
            <li>
              <t>0 or 1</t>
            </li>
          </ul>
          <t>R</t>
          <ul empty="true">
            <li>
              <t>Reserved, set to zero (0)</t>
            </li>
          </ul>
          <t>TLV Type</t>
          <ul empty="true">
            <li>
              <t>7 - Vendor-Specific TLV</t>
            </li>
          </ul>
          <t>Length</t>
          <ul empty="true">
            <li>
              <t>4 + cumulative length of all included Vendor TLVs</t>
            </li>
          </ul>
          <t>Vendor-Id</t>
          <ul empty="true">
            <li>
              <t>The Vendor-Id field is four octets and contains the Vendor-Id of
the TLV.  The high-order octet is 0, and the low-order 3 octets
are the SMI Network Management Private Enterprise Number of the
Vendor in network byte order.</t>
            </li>
          </ul>
          <t>Vendor TLVs</t>
          <ul empty="true">
            <li>
              <t>This field is of indefinite length.  It contains Vendor-Specific
TLVs, in a format defined by the vendor.</t>
            </li>
          </ul>
        </section>
        <section anchor="request-action-tlv">
          <name>Request-Action TLV</name>
          <t>The Request-Action TLV MAY be sent at any time.  The Request-Action
TLV allows the peer or server to request that other side negotiates
additional inner methods or process TLVs which are passed inside of
the Request-Action TLV.</t>
          <t>The receiving side MUST process this TLV.  The processing for the TLV
is as follows:</t>
          <ul empty="true">
            <li>
              <t>The receiving entity MAY choose to process any of the TLVs that
are included in the message.</t>
              <t>If the receiving entity chooses NOT to process any TLV in the
list, then it sends back a Result TLV with the same code in the
Status field of the Request-Action TLV.</t>
              <t>If multiple Request-Action TLVs are in the request, the session
can continue if any of the TLVs in any Request-Action TLV are
processed.</t>
            </li>
          </ul>
          <ul empty="true">
            <li>
              <t>If multiple Request-Action TLVs are in the request and none of
them is processed, then the most fatal status should be used in
the Result TLV returned.  If a status code in the Request-Action
TLV is not understood by the receiving entity, then it SHOULD be
treated as a fatal error.  Otherwise, the receiving entity MAY send a Request-Action TLV containing an Error TLV of value 2002 (Unexpected TLVs Exchanged).</t>
              <t>After processing the TLVs or inner method in the request, another
round of Result TLV exchange MUST occur to synchronize the final
status on both sides.</t>
            </li>
          </ul>
          <t>The peer or the server MAY send multiple Request-Action TLVs to the
other side.  Two Request-Action TLVs MUST NOT occur in the same TEAP
packet if they have the same Status value.  The order of processing
multiple Request-Action TLVs is implementation dependent.  If the
receiving side processes the optional (non-fatal) items first, it is
possible that the fatal items will disappear at a later time.  If the
receiving side processes the fatal items first, the communication
time will be shorter.</t>
          <t>The peer or the server MAY return a new set of Request-Action TLVs
after one or more of the requested items have been processed and the
other side has signaled it wants to end the EAP conversation.</t>
          <t>The Request-Action TLV is defined as follows:</t>
          <artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|M|R|         TLV Type          |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|     Status   |      Action    |                TLVs....
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+--+-+-+-+-+-+-+-+-+-+-+-+-
]]></artwork>
          <t>M</t>
          <ul empty="true">
            <li>
              <t>Mandatory, set to one (1)</t>
            </li>
          </ul>
          <t>R</t>
          <ul empty="true">
            <li>
              <t>Reserved, set to zero (0)</t>
            </li>
          </ul>
          <t>TLV Type</t>
          <ul empty="true">
            <li>
              <t>8 - Request-Action TLV</t>
            </li>
          </ul>
          <t>Length</t>
          <ul empty="true">
            <li>
              <t>2 + cumulative length of all included TLVs</t>
            </li>
          </ul>
          <t>Status</t>
          <ul empty="true">
            <li>
              <t>The Status field is one octet.  This indicates the result if the
party who receives this TLV does not process the action. Values
include:</t>
              <ul empty="true">
                <li>
                  <t>1  Success</t>
                  <t>2  Failure</t>
                </li>
              </ul>
            </li>
          </ul>
          <t>Action</t>
          <ul empty="true">
            <li>
              <t>The Action field is one octet.  Values include:</t>
              <ul empty="true">
                <li>
                  <t>1  Process-TLV</t>
                  <t>2  Negotiate-EAP</t>
                </li>
              </ul>
            </li>
          </ul>
          <t>TLVs</t>
          <ul empty="true">
            <li>
              <t>This field is of indefinite length.  It contains TLVs that the
peer wants the server to process.</t>
            </li>
          </ul>
        </section>
        <section anchor="eap-payload-tlv">
          <name>EAP-Payload TLV</name>
          <t>To allow coalescing an EAP request or response with other TLVs, the
EAP-Payload TLV is defined, which includes an encapsulated EAP packet
and a list of optional TLVs.  The optional TLVs are provided for
future extensibility to provide hints about the current EAP
authentication.  Only one EAP-Payload TLV is allowed in a message.
The EAP-Payload TLV is defined as follows:</t>
          <artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|M|R|         TLV Type          |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          EAP packet...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                             TLVs...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
          <t>M</t>
          <ul empty="true">
            <li>
              <t>Mandatory, set to one (1)</t>
            </li>
          </ul>
          <t>R</t>
          <ul empty="true">
            <li>
              <t>Reserved, set to zero (0)</t>
            </li>
          </ul>
          <t>TLV Type</t>
          <ul empty="true">
            <li>
              <t>9 - EAP-Payload TLV</t>
            </li>
          </ul>
          <t>Length</t>
          <ul empty="true">
            <li>
              <t>length of embedded EAP packet + cumulative length of additional
TLVs</t>
            </li>
          </ul>
          <t>EAP packet</t>
          <ul empty="true">
            <li>
              <t>This field contains a complete EAP packet, including the EAP
header (Code, Identifier, Length, Type) fields.  The length of
this field is determined by the Length field of the encapsulated
EAP packet.</t>
            </li>
          </ul>
          <t>TLVs</t>
          <ul empty="true">
            <li>
              <t>This (optional) field contains a list of TLVs associated with the
EAP packet field.  The TLVs MUST NOT have the mandatory bit set.
The total length of this field is equal to the Length field of the
EAP-Payload TLV, minus the Length field in the EAP header of the
EAP packet field.</t>
            </li>
          </ul>
        </section>
        <section anchor="intermediate-result-tlv">
          <name>Intermediate-Result TLV</name>
          <t>The Intermediate-Result TLV signals
intermediate Success and Failure messages for all inner
methods.  The Intermediate-Result TLV MUST be be used for all inner methods.</t>
          <t>An Intermediate-Result TLV indicating Success
MUST be accompanied by a Crypto-Binding TLV.</t>
          <t>An Intermediate-Result TLV indicating Failure SHOULD be accompanied by an Error TLV which indicates why the authentication failed.</t>
          <t>The optional TLVs
associated with this TLV are provided for future extensibility to
provide hints about the current result.  The Intermediate-Result TLV
is defined as follows:</t>
          <artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|M|R|         TLV Type          |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|             Status            |        TLVs...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
          <t>M</t>
          <ul empty="true">
            <li>
              <t>Mandatory, set to one (1)</t>
            </li>
          </ul>
          <t>R</t>
          <ul empty="true">
            <li>
              <t>Reserved, set to zero (0)</t>
            </li>
          </ul>
          <t>TLV Type</t>
          <ul empty="true">
            <li>
              <t>10 - Intermediate-Result TLV</t>
            </li>
          </ul>
          <t>Length</t>
          <ul empty="true">
            <li>
              <t>2 + cumulative length of the embedded associated TLVs</t>
            </li>
          </ul>
          <t>Status</t>
          <ul empty="true">
            <li>
              <t>The Status field is two octets.  Values include:</t>
              <ul empty="true">
                <li>
                  <t>1  Success</t>
                  <t>2  Failure</t>
                </li>
              </ul>
            </li>
          </ul>
          <t>TLVs</t>
          <ul empty="true">
            <li>
              <t>This field is of indeterminate length and contains zero or more of
the TLVs associated with the Intermediate Result TLV.  The TLVs in
this field MUST NOT have the mandatory bit set.</t>
            </li>
          </ul>
        </section>
        <section anchor="pac-tlv">
          <name>PAC TLV</name>
          <t><xref target="RFC7170"/> defined a Protected Access Credential (PAC) to mirror
EAP-FAST <xref target="RFC4851"/>.  However, implementation experience and analysis
determined that the PAC was not necessary.  Instead, TEAP performs
session resumption using the NewSessionTicket message as defined in
<xref section="2.1.2" sectionFormat="comma" target="RFC9190"/> and Section 2.1.3.  As such, the PAC TLV
has been deprecated.</t>
          <t>As the PAC TLV is deprecated, an entity receiving it SHOULD send a
Result TLV indicating failure, and an Error TLV of Unexpected TLVs
Exchanged.</t>
        </section>
        <section anchor="crypto-binding-tlv">
          <name>Crypto-Binding TLV</name>
          <t>The Crypto-Binding TLV is used to prove that both the peer and server
participated in the tunnel establishment and sequence of
authentications.  It also provides verification of the TEAP type,
version negotiated, and Outer TLVs exchanged before the TLS tunnel
establishment.</t>
          <t>A Crypto-Binding MUST be accompanied by an Intermediate-Result TLV
indicating Success.</t>
          <t>The Crypto-Binding TLV MUST be exchanged and validated before any
Intermediate-Result or Result TLV value is examined, regardless of
whether there is an inner method or not.  It MUST be
included with the Intermediate-Result TLV to perform cryptographic
binding after each successful inner method in a sequence of inner
methods, before proceeding with another inner method.  If no MSK or
EMSK has been generated and a Crypto-Binding TLV is required then the
MSK Compound-MAC field contains the MAC using keys generated according
to <xref target="computing-compound-mac"/>.</t>
          <t>The Crypto-Binding TLV is valid only if the following checks pass on
its contents:</t>
          <ul spacing="normal">
            <li>
              <t>The Version field contain a known value,</t>
            </li>
            <li>
              <t>The Received-Ver field matches the TEAP version sent by the receiver during the EAP version negotiation,</t>
            </li>
            <li>
              <t>The Sub-Type field is set to the correct value for this exchange,</t>
            </li>
            <li>
              <t>The Flags field is set to a known value,</t>
            </li>
            <li>
              <t>The Compound-MAC(s) verify correctly.</t>
            </li>
          </ul>
          <t>If any of the above checks fails, then the TLV is invalid.  An
invalid Crypto-Binding TLV is a fatal error and is handled as
described in <xref target="phase-2-errors"/></t>
          <t>See {#cryptographic-calculations} for a more detailed discussion of
how the Compound-MAC fields are constructed and verified.</t>
          <t>The Crypto-Binding TLV is defined as follows:</t>
          <artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|M|R|         TLV Type          |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|    Reserved   |    Version    |  Received-Ver.| Flags|Sub-Type|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
~                             Nonce                             ~
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
~                   EMSK Compound-MAC                           ~
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
~                    MSK Compound-MAC                           ~
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
          <t>M</t>
          <ul empty="true">
            <li>
              <t>Mandatory, set to one (1)</t>
            </li>
          </ul>
          <t>R</t>
          <ul empty="true">
            <li>
              <t>Reserved, set to zero (0)</t>
            </li>
          </ul>
          <t>TLV Type</t>
          <ul empty="true">
            <li>
              <t>12 - Crypto-Binding TLV</t>
            </li>
          </ul>
          <t>Length</t>
          <ul empty="true">
            <li>
              <t>76</t>
            </li>
          </ul>
          <t>Reserved</t>
          <ul empty="true">
            <li>
              <t>Reserved, set to zero (0)</t>
            </li>
          </ul>
          <t>Version</t>
          <ul empty="true">
            <li>
              <t>The Version field is a single octet, which is set to the version
of Crypto-Binding TLV the TEAP method is using.  For an
implementation compliant with TEAPv1, the version
number MUST be set to one (1).</t>
            </li>
          </ul>
          <t>Received-Ver</t>
          <ul empty="true">
            <li>
              <t>The Received-Ver field is a single octet and MUST be set to the
TEAP version number received during version negotiation.  Note
that this field only provides protection against downgrade
attacks, where a version of EAP requiring support for this TLV is
required on both sides.</t>
              <t>For TEAPv1, this version number MUST be set to one (1).</t>
            </li>
          </ul>
          <t>Flags</t>
          <ul empty="true">
            <li>
              <t>The Flags field is four bits.  Defined values include</t>
              <ul empty="true">
                <li>
                  <t>1  EMSK Compound-MAC is present</t>
                  <t>2  MSK Compound-MAC is present</t>
                  <t>3  Both EMSK and MSK Compound-MAC are present</t>
                  <t>All other values of the Flags field are invalid.</t>
                </li>
              </ul>
            </li>
          </ul>
          <t>Sub-Type</t>
          <ul empty="true">
            <li>
              <t>The Sub-Type field is four bits.  Defined values include</t>
              <ul empty="true">
                <li>
                  <t>0  Binding Request</t>
                  <t>1  Binding Response</t>
                  <t>All other values of the Sub-Type field are invalid.</t>
                </li>
              </ul>
            </li>
          </ul>
          <t>Nonce</t>
          <ul empty="true">
            <li>
              <t>The Nonce field is 32 octets.  It contains a 256-bit nonce that is
temporally unique, used for Compound-MAC key derivation at each
end.  The nonce in a request MUST have its least significant bit
set to zero (0), and the nonce in a response MUST have the same
value as the request nonce except the least significant bit MUST
be set to one (1).</t>
            </li>
          </ul>
          <t>EMSK Compound-MAC</t>
          <ul empty="true">
            <li>
              <t>The EMSK Compound-MAC field is 20 octets.  This can be the Server
MAC (B1_MAC) or the Client MAC (B2_MAC).  The computation of the
MAC is described in <xref target="computing-compound-mac"/>.</t>
              <t>Note that this field is always 20 octets in length.  Any larger
MAC is simply truncated.  All validations or comparisons MUST be done
on the truncated value.</t>
            </li>
          </ul>
          <t>MSK Compound-MAC</t>
          <ul empty="true">
            <li>
              <t>The MSK Compound-MAC field is 20 octets.  This can be the Server
MAC (B1_MAC) or the Client MAC (B2_MAC).  The computation of the
MAC is described in <xref target="computing-compound-mac"/>.</t>
              <t>Note that this field is always 20 octets in length.  Any larger
MAC is simply truncated.  All validations or comparisons MUST be done
on the truncated value.</t>
            </li>
          </ul>
        </section>
        <section anchor="bp-auth-req-tlv">
          <name>Basic-Password-Auth-Req TLV</name>
          <t>The Basic-Password-Auth-Req TLV is used by the authentication server
to request a username and password from the peer.  It contains an
optional user prompt message for the request.  The peer is expected to
obtain the username and password and send them in a Basic-Password-Auth-Resp TLV.</t>
          <t>The Basic-Password-Auth-Req TLV is defined as follows:</t>
          <artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|M|R|         TLV Type          |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|   Prompt ....
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
          <t>M</t>
          <ul empty="true">
            <li>
              <t>Mandatory, set to one (1)</t>
            </li>
          </ul>
          <t>R</t>
          <ul empty="true">
            <li>
              <t>Reserved, set to zero (0)</t>
            </li>
          </ul>
          <t>TLV Type</t>
          <ul empty="true">
            <li>
              <t>13 - Basic-Password-Auth-Req TLV</t>
            </li>
          </ul>
          <t>Length</t>
          <ul empty="true">
            <li>
              <t>variable</t>
            </li>
          </ul>
          <t>Prompt</t>
          <ul empty="true">
            <li>
              <t>optional user prompt message in UTF-8 <xref target="RFC3629"/> format</t>
            </li>
          </ul>
        </section>
        <section anchor="bp-auth-resp-tlv">
          <name>Basic-Password-Auth-Resp TLV</name>
          <t>The Basic-Password-Auth-Resp TLV is used by the peer to respond to a
Basic-Password-Auth-Req TLV with a username and password.  The TLV
contains a username and password.  The username and password are in
UTF-8 <xref target="RFC3629"/> format.</t>
          <t>The Basic-Password-Auth-Resp TLV is defined as follows:</t>
          <artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|M|R|         TLV Type          |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|   Userlen     |             Username
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
      ...     Username    ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|   Passlen     |             Password
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
      ...     Password    ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
          <t>M</t>
          <ul empty="true">
            <li>
              <t>Mandatory, set to one (1)</t>
            </li>
          </ul>
          <t>R</t>
          <ul empty="true">
            <li>
              <t>Reserved, set to zero (0)</t>
            </li>
          </ul>
          <t>TLV Type</t>
          <ul empty="true">
            <li>
              <t>14 - Basic-Password-Auth-Resp TLV</t>
            </li>
          </ul>
          <t>Length</t>
          <ul empty="true">
            <li>
              <t>variable</t>
            </li>
          </ul>
          <t>Userlen</t>
          <ul empty="true">
            <li>
              <t>Length of Username field in octets</t>
              <t>The value of Userlen MUST NOT be zero.</t>
            </li>
          </ul>
          <t>Username</t>
          <ul empty="true">
            <li>
              <t>Username in UTF-8 <xref target="RFC3629"/> format</t>
              <t>The content of Username SHOULD follow the guidelines set in
<xref section="3.1." sectionFormat="comma" target="RFC9427"/></t>
            </li>
          </ul>
          <t>Passlen</t>
          <ul empty="true">
            <li>
              <t>Length of Password field in octets</t>
              <t>The value of Passlen MUST NOT be zero.</t>
            </li>
          </ul>
          <t>Password</t>
          <ul empty="true">
            <li>
              <t>Password in UTF-8 <xref target="RFC3629"/> format</t>
              <t>Note that there is no requirement that passwords be humanly
readable.  Octets in a passwords may have values less than 0x20,
including 0x00.</t>
            </li>
          </ul>
        </section>
        <section anchor="pkcs7-tlv">
          <name>PKCS#7 TLV</name>
          <t>The PKCS#7 TLV is used by the EAP server to deliver certificate(s) to
the peer.  The format consists of a certificate or certificate chain
in binary DER encoding <xref target="X.690"/> in a degenerate Certificates Only
PKCS#7 SignedData Content as defined in <xref target="RFC5652"/>.</t>
          <t>When used in response to a Trusted-Server-Root TLV request from the
peer, the EAP server MUST send the PKCS#7 TLV inside a
Trusted-Server-Root TLV.  When used in response to a PKCS#10 certificate
enrollment request from the peer, the EAP server MUST send the PKCS#7
TLV without a Trusted-Server-Root TLV.  The PKCS#7 TLV is always
marked as optional, which cannot be responded to with a NAK TLV.
TEAP implementations that support the Trusted-Server-Root TLV or the
PKCS#10 TLV MUST support this TLV.  Peers MUST NOT assume that the
certificates in a PKCS#7 TLV are in any order.</t>
          <t>TEAP servers MAY return self-signed certificates.  Peers that handle
self-signed certificates or trust anchors MUST NOT implicitly trust
these certificates merely due to their presence in the certificate
bag.  Note: Peers are advised to take great care in deciding whether
to use a received certificate as a trust anchor.  The authenticated
nature of the tunnel in which a PKCS#7 bag is received can provide a
level of authenticity to the certificates contained therein.  Peers
are advised to take into account the implied authority of the EAP
server and to constrain the trust it can achieve through the trust
anchor received in a PKCS#7 TLV.</t>
          <t>The PKCS#7 TLV is defined as follows:</t>
          <artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|M|R|         TLV Type          |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|           PKCS#7 Data...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
]]></artwork>
          <t>M</t>
          <ul empty="true">
            <li>
              <t>0 - Optional TLV</t>
            </li>
          </ul>
          <t>R</t>
          <ul empty="true">
            <li>
              <t>Reserved, set to zero (0)</t>
            </li>
          </ul>
          <t>TLV Type</t>
          <ul empty="true">
            <li>
              <t>15 - PKCS#7 TLV</t>
            </li>
          </ul>
          <t>Length</t>
          <ul empty="true">
            <li>
              <t>The length of the PKCS#7 Data field.</t>
            </li>
          </ul>
          <t>PKCS#7 Data</t>
          <ul empty="true">
            <li>
              <t>This field contains the DER-encoded X.509 certificate or
certificate chain in a Certificates-Only PKCS#7 SignedData
message.</t>
            </li>
          </ul>
        </section>
        <section anchor="pkcs10-tlv">
          <name>PKCS#10 TLV</name>
          <t>The PKCS#10 TLV is used by the peer to initiate the "simple PKI"
Request/Response from <xref target="RFC5272"/>.  The format of the request is as
specified in Section 6.4 of <xref target="RFC4945"/>.  The PKCS#10 TLV is always
marked as optional, which cannot be responded to with a NAK TLV.</t>
          <t>The PKCS#10 TLV is defined as follows:</t>
          <artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|M|R|         TLV Type          |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|           PKCS#10 Data...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
]]></artwork>
          <t>M</t>
          <ul empty="true">
            <li>
              <t>0 - Optional TLV</t>
            </li>
          </ul>
          <t>R</t>
          <ul empty="true">
            <li>
              <t>Reserved, set to zero (0)</t>
            </li>
          </ul>
          <t>TLV Type</t>
          <ul empty="true">
            <li>
              <t>16 - PKCS#10 TLV</t>
            </li>
          </ul>
          <t>Length</t>
          <ul empty="true">
            <li>
              <t>The length of the PKCS#10 Data field.</t>
            </li>
          </ul>
          <t>PKCS#10 Data</t>
          <ul empty="true">
            <li>
              <t>This field contains the DER-encoded PKCS#10 certificate request.</t>
            </li>
          </ul>
        </section>
        <section anchor="trusted-server-root-tlv">
          <name>Trusted-Server-Root TLV</name>
          <t>Trusted-Server-Root TLV facilitates the request and delivery of a
trusted server root certificate.  The Trusted-Server-Root TLV can be
exchanged in regular TEAP authentication mode or provisioning mode.
The Trusted-Server-Root TLV is always marked as optional and cannot
be responded to with a Negative Acknowledgment (NAK) TLV.  The
Trusted-Server-Root TLV MUST only be sent as an Inner TLV (inside the
protection of the tunnel).</t>
          <t>After the peer has determined that it has successfully authenticated
the EAP server and validated the Crypto-Binding TLV, it MAY send one
or more Trusted-Server-Root TLVs (marked as optional) to request the
trusted server root certificates from the EAP server.  The EAP server
MAY send one or more root certificates with a Public Key
Cryptographic System #7 (PKCS#7) TLV inside the Trusted-Server-Root
TLV.  The EAP server MAY also choose not to honor the request.</t>
          <t>The Trusted-Server-Root TLV allows the peer to send a request to the
EAP server for a list of trusted roots.  The server may respond with
one or more root certificates in PKCS#7 <xref target="RFC2315"/> format.</t>
          <t>If the EAP server sets the credential format to
PKCS#7-Server-Certificate-Root, then the Trusted-Server-Root TLV should contain the
root of the certificate chain of the certificate issued to the EAP
server packaged in a PKCS#7 TLV.  If the server certificate is a
self-signed certificate, then the root is the self-signed
certificate.</t>
          <t>If the Trusted-Server-Root TLV credential format contains a value
unknown to the peer, then the EAP peer should ignore the TLV.</t>
          <t>The Trusted-Server-Root TLV is defined as follows:</t>
          <artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|M|R|         TLV Type          |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|           Credential-Format   |     Cred TLVs...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
]]></artwork>
          <t>M</t>
          <ul empty="true">
            <li>
              <t>0 - Optional TLV</t>
            </li>
          </ul>
          <t>R</t>
          <ul empty="true">
            <li>
              <t>Reserved, set to zero (0)</t>
            </li>
          </ul>
          <t>TLV Type</t>
          <ul empty="true">
            <li>
              <t>17 - Trusted-Server-Root TLV</t>
            </li>
          </ul>
          <t>Length</t>
          <ul empty="true">
            <li>
              <t>&gt;=2 octets</t>
            </li>
          </ul>
          <t>Credential-Format</t>
          <ul empty="true">
            <li>
              <t>The Credential-Format field is two octets.  Values include:</t>
              <ul empty="true">
                <li>
                  <t>1 - PKCS#7-Server-Certificate-Root</t>
                </li>
              </ul>
            </li>
          </ul>
          <t>Cred TLVs</t>
          <ul empty="true">
            <li>
              <t>This field is of indefinite length.  It contains TLVs associated
with the credential format.  The peer may leave this field empty
when using this TLV to request server trust roots.</t>
            </li>
          </ul>
        </section>
        <section anchor="csr-attributes-tlv">
          <name>CSR-Attributes TLV</name>
          <t>The CSR-Attributes TLV provides information from the server to the
peer on how certificate signing requests should be formed.  The
purpose of CSR attributes is described in Section 4.5 of <xref target="RFC7030"/>.
Servers MAY send the CSR-Attributes TLV directly after the TLS session has
been established.  A server MAY also send in the same message a
Request Action frame for a PKCS#10 TLV.  This is an indication to the
peer that the server would like the peer to renew its certificate
using the parameters provided in this TLV.  Servers shall construct
the contents of the CSR-Attributes TLV as specified in <xref section="4.5.2" sectionFormat="comma" target="RFC7030"/> with the
exception that the DER encoding MUST NOT be encoded in base64.  The base64 encoding is used in <xref target="RFC7030"/> because the transport protocol used there requires textual encoding.  In contrast, TEAP attributes can transport arbitrary binary data.</t>
          <t>Servers and peers MUST follow the guidance provided in
<xref target="I-D.ietf-lamps-rfc7030-csrattrs"/> when creating the CSR-Attributes TLV. Peers MAY ignore the contents
of the TLV if they are unable to do so, but then servers may not
process PKCS#10 certificate requests for this or any other reason.</t>
          <t>The CSR-Attributes TLV is defined as follows:</t>
          <artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|M|R|         TLV Type          |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                DER Encoded CSR Attributes                     |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
]]></artwork>
          <t>M</t>
          <ul empty="true">
            <li>
              <t>0 - Optional TLV</t>
            </li>
          </ul>
          <t>R</t>
          <ul empty="true">
            <li>
              <t>Reserved, set to zero (0)</t>
            </li>
          </ul>
          <t>TLV Type</t>
          <ul empty="true">
            <li>
              <t>18 - CSR-Attributes</t>
            </li>
          </ul>
          <t>Length</t>
          <ul empty="true">
            <li>
              <t>&gt;=2 octets</t>
            </li>
          </ul>
        </section>
        <section anchor="identity-hint-tlv">
          <name>Identity-Hint TLV</name>
          <t>The Identity-Hint TLV is an optional TLV which can be sent by the peer to the server at the beginning of the Phase 2 TEAP conversation.  The purpose of the TLV is to provide a "hint" as to the identity or identities which the peer will be using by subsequent inner methods.</t>
          <t>The purpose of this TLV is to solve the "bootstrapping" problem for the server.  In order to perform authentication, the server must choose an inner method.  However, the server has no knowledge of what methods are supported by the peer.  Without an identity hint, the server needs to propose a method, and then have the peer return a response indicating that the requested method is not available.  This negotiation increases the number of round trips required for TEAP to conclude, with no additional benefit.</t>
          <t>When the Identity-Hint is used, the peer can signal which identities it has available, which enables the server to choose an inner method which is appropriate for that identity.</t>
          <t>The peer SHOULD send an Identity-Hint TLV for each Identity-Type which is available to it.  For example, if the peer can do both Machine and User authentication, it can send two Identity-Hint TLVs, with values "host/name.example.com" (for a machine with hostname "name.example.com"), and "user@example.com" (for a person with identity "user@example.com").</t>
          <t>The contents of the Identity-Hint TLV SHOULD be in the format of an NAI <xref target="RFC7542"/>, but we note that as given in the example above, Machine identities might not follow that format.  As these identities are never used for AAA routing as discussed in <xref section="3" sectionFormat="comma" target="RFC7542"/>, the format and definition of these identities are entirely site local.  Robust implementations MUST support arbitrary data in the content of this TLV, including binary octets.</t>
          <t>As the Identity-Hint TLV is a "hint", server implementations are free to ignore the hints given, and do whatever is required by site-local policies.</t>
          <t>The Identity-Hint TLV is used only as a guide when selecting which inner methods to use.  This TLV has no other meaning, and it MUST NOT be used for any other purpose.  Specifically. server implementations MUST NOT compare the identities given this TLV to later identities given as part of the inner methods.  There is no issue with the hint(s) failing to match any subsequent identity which is used.</t>
          <t>The Identity-Hint TLV MUST NOT be used for Server Unauthenticated Provisioning.  This TLV is only used as a hint for normal authentication.</t>
          <t>The Identity-Hint TLV is defined as follows:</t>
          <artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|M|R|         TLV Type          |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                       Identity Hint                           |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
]]></artwork>
          <t>M</t>
          <ul empty="true">
            <li>
              <t>0 - Optional TLV</t>
            </li>
          </ul>
          <t>R</t>
          <ul empty="true">
            <li>
              <t>Reserved, set to zero (0)</t>
            </li>
          </ul>
          <t>TLV Type</t>
          <ul empty="true">
            <li>
              <t>19 - Identity-Hint</t>
            </li>
          </ul>
          <t>Length</t>
          <ul empty="true">
            <li>
              <t>&gt;=2 octets</t>
            </li>
          </ul>
        </section>
      </section>
      <section anchor="tlv-rules">
        <name>TLV Rules</name>
        <t>To save round trips, multiple TLVs can be sent in a single TEAP
packet.  However, multiple EAP Payload TLVs, multiple Basic Password
Authentication TLVs, or an EAP Payload TLV with a Basic Password
Authentication TLV within one single TEAP packet is not supported in
this version and MUST NOT be sent.  If the peer or EAP server
receives multiple EAP Payload TLVs, then it MUST terminate the
connection with the Result TLV.  The order in which TLVs are encoded in a TEAP packet does not
matter, however there is an order in which TLVs in a packet must be processed:</t>
        <ol spacing="normal" type="1"><li>
            <t>Crypto-Binding TLV</t>
          </li>
          <li>
            <t>Intermediate-Result TLV</t>
          </li>
          <li>
            <t>Result TLV or Request-Action TLV</t>
          </li>
          <li>
            <t>Identity-Type TLV</t>
          </li>
          <li>
            <t>EAP-Payload TLV[Identity-Request] or Basic-Password-Auth-Req TLV</t>
          </li>
          <li>
            <t>Other TLVs</t>
          </li>
        </ol>
        <t>That is, cryptographic binding is checked before any result is used,
and identities are checked before proposing an inner method, as the
identity may influence the chosen inner method.</t>
        <t>The following define the meaning of the table entries in the sections
below:</t>
        <artwork><![CDATA[
0     This TLV MUST NOT be present in the message.

0+    Zero or more instances of this TLV MAY be present in the
      message.

0-1   Zero or one instance of this TLV MAY be present in the message.

1     Exactly one instance of this TLV MUST be present in the
      message.
]]></artwork>
        <section anchor="outer-tlvs">
          <name>Outer TLVs</name>
          <t>The following table provides a guide to which TLVs may be included in
the TEAP packet outside the TLS channel, which kind of packets, and
in what quantity:</t>
          <artwork><![CDATA[
Request  Response    Success   Failure   TLVs
0-1      0           0         0         Authority-ID
0-1      0-1         0         0         Identity-Type
0+       0+          0         0         Vendor-Specific
]]></artwork>
          <t>Outer TLVs MUST be marked as optional.  Vendor TLVs inside of a
Vendor-Specific TLV MUST be marked as optional when included in Outer TLVs.
Outer TLVs MUST NOT be included in messages after the first two TEAP
messages sent by peer and EAP-server respectively.  That is the first
EAP-server-to-peer message and first peer-to-EAP-server message.  If
the message is fragmented, the whole set of messages is counted as
one message.  If Outer TLVs are included in messages after the first
two TEAP messages, they MUST be ignored.</t>
        </section>
        <section anchor="inner-tlvs">
          <name>Inner TLVs</name>
          <t>The following table provides a guide to which Inner TLVs may be
encapsulated in TLS in TEAP Phase 2, in which kind of packets, and in
what quantity.  The messages are as follows: Request is a TEAP
Request, Response is a TEAP Response, Success is a message containing
a successful Result TLV, and Failure is a message containing a failed
Result TLV.</t>
          <artwork><![CDATA[
Request  Response    Success   Failure   TLVs
0-1      0-1         0         0         Identity-Type
0-1      0-1         1         1         Result
0+       0+          0         0         NAK
0+       0+          0+        0+        Error
0-1      0-1         0         0         Channel-Binding
0+       0+          0+        0+        Vendor-Specific
0+       0+          0+        0+        Request-Action
0-1      0-1         0         0         EAP-Payload
0-1      0-1         0-1       0-1       Intermediate-Result
0-1      0-1         0-1       0-1       Crypto-Binding
0-1      0           0         0         Basic-Password-Auth-Req
0        0-1         0         0         Basic-Password-Auth-Resp
0-1      0           0-1       0         PKCS#7
0        0-1         0         0         PKCS#10
0-1      0-1         0-1       0         Trusted-Server-Root
0-1      0           0         0         CSR-Attributes TLV
0        0+          0         0         Identity-Hint TLV
]]></artwork>
          <t>NOTE: Vendor TLVs (included in Vendor-Specific TLVs) sent with a
Result TLV MUST be marked as optional.  Also, the CSR-Attributes TLV
is never transmitted by the peer, and so is treated as a request
in this table.</t>
        </section>
      </section>
    </section>
    <section anchor="cryptographic-calculations">
      <name>Cryptographic Calculations</name>
      <t>For key derivation and crypto-binding, TEAP uses the Pseudorandom
Function (PRF) and MAC algorithms negotiated in the underlying TLS
session.  Since these algorithms depend on the TLS version and
cipher suite, TEAP implementations need a mechanism to determine the
version and cipher suite in use for a particular session.  The
implementation can then use this information to determine which PRF
and MAC algorithm to use.</t>
      <section anchor="key-derivations">
        <name>TEAP Authentication Phase 1: Key Derivations</name>
        <t>With TEAPv1, the TLS master secret is generated as specified in TLS.
If session resumption is used, then the master secret is obtained as described in
<xref target="RFC5077"/>.</t>
        <t>TEAPv1 makes use of the TLS Keying Material Exporters defined in
<xref target="RFC5705"/> to derive the session_key_seed as follows:</t>
        <artwork><![CDATA[
   session_key_seed = TLS-Exporter(
                      "EXPORTER: teap session key seed",, 40)
]]></artwork>
        <t>No context data is used in the export process.</t>
        <t>The session_key_seed is used by the TEAP authentication Phase 2
conversation to both cryptographically bind the inner method(s) to
the tunnel as well as generate the resulting TEAP session keys.  The
other TLS keying materials are derived and used as defined in
<xref target="RFC5246"/>.</t>
      </section>
      <section anchor="intermediate-compound-key">
        <name>Intermediate Compound Key Derivations</name>
        <t>As TEAP can run multiple inner methods, there needs to be a way to
cryptographically bind each inner method to the TLS tunnel, and to
cryptographically bind each method to the previous one.  This binding
is done by deriving a number of intermediate keys, and exchanging that
information in the Crypto-Binding TLV.</t>
        <t>The key derivation is complicated by a number of factors.  An inner
method can derive MSK, or (as with basic passwords) not derive an MSK.
An inner method can derive an EMSK, or perhaps not derive an EMSK, or
some EAP types may derive different EMSKs for the peer and the server.
All of these cases must be accounted for, and recommendations made for
how peers and servers can interoperate.</t>
        <t>There are a number of intermediate keys used to calculate the final
MSK and EMSK for TEAP.  We give a brief overview here in order to
clarify the detailed definitions and deriviations given below.  As
each inner method can derive MSK (or not), and can derive EMSK (or
not), there need to be separate intermediate key calculations for MSK
and for EMSK.  For the purposes of this overview, we just describe the
derivations at a high level, and state that the MSK/EMSK issue is
addressed in the more detailed text below.</t>
        <t>For each inner method, we derive an Inner Method Session Key (IMSK).
This key depends on the inner key (MSK or EMSK).  This IMSK is then
tied to the TLS session via the TLS-PRF to derive an Inner Method
Compound Key (IMCK).  The IMCK is used to generate a Compound-MAC key
(CMK).  The CMK is mixed with with various data from the TEAP
negotiation to create Compound-MAC field of the Crypto-Binding
attribute.  This TLV cryptographically binds the inner method to the
protected tunnel, and to the other fields which have been negotiated.
The cryptographic binding prevents on-path attacks.</t>
        <t>The IMCK for this inner method is then mixed with keys from previous
inner methods, beginning with the TEAP Phase 2 session_key_seed
derived above, to yield a Secure ICMK (S-IMCK) for this round.  The
S-IMCK from the final is then used to derive the MSK and EMSK for
TEAP.</t>
        <t>We differentiate keys for inner methods by counting inner methods
starting from 0, and use an index "j" to refer to an arbitrary inner
method.  e.g. IMCK[0] is the IMCK for the first, or "0" inner method.
While TEAPv1 is currently limited to one or two inner methods (j=0 or
j=0,1), further updates could allow for more inner method exchanges.</t>
        <section anchor="generating-the-inner-method-session-key">
          <name>Generating the Inner Method Session Key</name>
          <t>Each inner method generates an Inner Method Session Key (IMSK) which
depends on the EMSK (preferred) or the MSK if it exists, or else it is
all zeros.  We refer to the IMSK for inner method "j" as IMSK[j].</t>
          <t>If an inner method supports export of an Extended Master Session Key
(EMSK), then the IMSK SHOULD be derived from the EMSK which is defined in
<xref target="RFC5295"/>.  The optional data parameter is not used in the derivation.</t>
          <t>The above derivation is not a requirement, as some peer
implementations of TEAP are also known to not derive IMSK from EMSK,
and to only derive IMSK from MSK.  In order to be compatible with
those implementations, the use of EMSK here is not made mandatory.</t>
          <t>Some EAP methods may also have the peer and server derive different
EMSKs.  Mandating an EMSK-based derivation there would prevent
interoperability, as the Crypto-Binding TLV contents which depend on
EMSK could not then be validated by either side.  Those methods SHOULD
NOT derive IMSK from EMSK unless the method has a way to negotiate how
the EMSK is derived, along with a way signal that both peer and server
have derived the same EMSK.</t>
          <t>It is RECOMMENDED that for those EAP methods, implementations take the
simpler approach of ignoring EMSK, and always derive IMSK from MSK.
This approach is less secure, as IMSK no longer cryptographically
binds the inner method to the TLS tunnel.  A better solution is to
suggest that deployments of TEAP SHOULD avoid such methods.</t>
          <t>The derivation of IMSK[j] from the j'th EMSK is given as follows:</t>
          <artwork><![CDATA[
   IMSK[j] = First 32 octets of TLS-PRF(
          EMSK[j],
          "TEAPbindkey@ietf.org",
          0x00 | 0x00 | 0x40)
]]></artwork>
          <ul empty="true">
            <li>
              <t>where "|" denotes concatenation and the TLS-PRF is defined in
<xref target="RFC5246"/> as:</t>
              <artwork><![CDATA[
   PRF(secret, label, seed) = P_<hash>(secret, label | seed)
]]></artwork>
              <t>The secret is the EMSK from the j'th inner method, the usage label used is
"TEAPbindkey@ietf.org" consisting of the ASCII value for the
label "TEAPbindkey@ietf.org" (without quotes), the seed
consists of the "\0" null delimiter (0x00) and 2-octet unsigned
integer length of 64 octets in network byte order (0x00 | 0x40) specified
in <xref target="RFC5295"/>.</t>
            </li>
          </ul>
          <t>If an inner method does not support export of EMSK but does export
MSK, then the IMSK is copied from the MSK of the inner method.  If the
MSK is longer than 32 octets, the IMSK is copied from the first 32
octets, and the rest of MSK is ignored.  If the MSK is shorter than 32
octets, then the ISMK is copied from MSK, and the remaining data in
IMSK is padded with zeros to a length of 32 octets.  IMSK[j] is then
this derived value.</t>
          <t>If inner method does not provide either MSK or EMSK, such as when
basic password authentication is used or when no inner method has been
run,then both MSK and IMSK[j] are set to all zeroes (i.e., IMSK[j] =
MSK = 32 octets of 0x00s).</t>
          <t>Note that using an MSK of all zeroes opens up TEAP to on-path
attacks, as discussed below in {#separation-p1-p2}.  It is therefore
NOT RECOMMENDED to use inner methods which fail to generate an MSK or
EMSK.  These methods should only be used in conjunction with another
inner method which does provide for MSK or EMSK generation.</t>
          <t>It is also RECOMMENDED that TEAP peers order inner methods such that
methods which generate EMSKs are performed before methods which do not
generate EMSKs.  Ordering inner methods in this manner ensures that
the first inner method detects any on-path attackers, and any
subsequent inner method used is therefore secure.</t>
          <t>For example, Phase 2 could perform both Machine authentication using
EAP-TLS, followed by User authentication via the Basic Password
Authentication TLVs.  In that case, the use of EAP-TLS would allow an
attacker to be detected before the users' password was sent.</t>
          <t>However, it is possible that the peer and server sides might not have
the same capability to export EMSK.  In order to maintain maximum
flexibility while prevent downgrading attack, the following mechanism
is in place.</t>
        </section>
        <section anchor="generating-s-imck">
          <name>Generating S-IMCK</name>
          <t>Once IMSK[j] has been determined, it is mixed via the TLS-PRF with
the key S-IMCK[j-1], from a previous round.  That mixing derives a
new key IMCK[j].  This key is then used to derive both S-IMCK[j] for
this round, and CMK[j] for this round.</t>
          <t>The derivation of S-IMCK is as follows:</t>
          <artwork><![CDATA[
   S-IMCK[0] = session_key_seed
   For j = 1 to n-1 do
        IMCK[j] = the first 60 octets of TLS-PRF(S-IMCK[j-1],
             "Inner Methods Compound Keys",
             IMSK[j])
        S-IMCK[j] = first 40 octets of IMCK[j]
        CMK[j] = last 20 octets of IMCK[j]
]]></artwork>
          <t>where TLS-PRF is the PRF described above negotiated as
part of TLS handshake <xref target="RFC5246"/>.  The value j refers to a
corresponding inner method 1 through n.  The special value of
S-IMCK[0] is used to bootstrap the calculations, and can be done as
soon as the TLS connection is established, and before any inner
methods are run.</t>
          <t>In practice, the requirement to use either MSK or EMSK means that an
implement MUST track two independent derivations of IMCK[j], one which
depends on the MSK, and another which depends on EMSK.  That is, we
have both values derived from MSK:</t>
          <artwork><![CDATA[
   IMSK_MSK[j]
   S-IMCK_MSK[j]
   CMK_MSK[j]
]]></artwork>
          <t>and then also values derived from EMSK:</t>
          <artwork><![CDATA[
   IMSK_EMSK[j]
   S-IMCK_EMSK[j]
   CMK_EMSK[j]
]]></artwork>
          <t>At the conclusion of a successfully exchange of Crypto-Binding TLVs, a
single S-IMCK[j] is selected based on which Compound-MAC value was
included in the Crypto-Binding TLV from the client. If EMSK Compound-MAC
was included, S-IMCK[j] is taken from S-IMCK_EMSK[j].  Otherwise,
S-IMCK[j] is taken from S-IMCK_MSK[j].</t>
        </section>
        <section anchor="choosing-inner-methods">
          <name>Choosing Inner Methods Securely</name>
          <t>In order to further secure TEAP, implementations can take steps to
increase their security by carefully ordering inner methods.  Where
multiple inner methods are used, implementations SHOULD choose an
ordering so that the first inner method used is one which derives
EMSK.</t>
          <t>For an EAP server, it can select the first inner method to be one
which derives EMSK. Since ordering of inner methods is not otherwise
important in EAP, any chosen order is supported by the peer which
receives this request.</t>
          <t>For an EAP peer, it can choose its response to a servers request for
a particular type of of authentication.  The peer can ignore that
request, and return an inner method which derives EMSK.  Again, since
ordering of inner methods is not otherwise important in EAP, any
chosen order is supported by the server which receives this response.
Once the more secure authentication has succeed, the server then
requests the other type of authentication and the peer can respond
with the chosen type of authentication.</t>
          <t>Implementations can also provide configuration flags, policies or
documentated recommendations which control the type of inner methods
used or verify their order.  These configurations allow
implementations and administrators to control their security exposure
to on-path attackers.</t>
          <t>Impementations can permit administators to confgure TEAP so that the
following security checks are enforced:</t>
          <ul spacing="normal">
            <li>
              <t>verifying that the first inner method used is one which derives EMSK.
If this is not done, a fatal error can be returned,</t>
            </li>
            <li>
              <t>verifying that if any inner method derives EMSK, that the received
Crypto-Binding TLV for that method contains an EMSK Compound-MAC.
If an EMSK has been derived and no EMSK Compound-MAC is seen, a
fatal error can be returned.</t>
            </li>
          </ul>
          <t>The goal of these suggestions is to enforce the use of the EMSK
Compound-MAC to protect the TEAP session from on-path attackers.  If
these suggestions are not enforced, then the TEAP session is
vulnerable.</t>
          <t>Most of these suggestions are not normative, as some existing
implementations are known to not follow them.  Instead, these
suggestions are here to inform new implementers, along with
administrators, of the issues surrounding this subject.</t>
        </section>
        <section anchor="managing-and-computing-crypto-binding">
          <name>Managing and Computing Crypto-Binding</name>
          <t>After an inner method has been completed successfully and the inner
keys derived, the server sends a Crypto-Binding TLV to the peer.  If
the inner method has failed, the server does not send a Crypto-Binding
TLV.</t>
          <t>The peer verifies the Crypto-Binding TLV by applying the rules defined
in <xref target="crypto-binding-tlv"/>.  If verification passes, the peer responds
with its own Crypto-Binding TLV, which the server in turn verifies.
If at any point verification fails, the party which makes this
determination terminates the session.</t>
          <t>The Crypto-Binding TLV is normally sent in conjunction with other TLVs
which indicate intermediate results, final results, or which begin
negotiation of a new inner method.  This negotation does not otherwise
affect the Crypto-Binding TLV.</t>
          <t>While <xref target="crypto-binding-tlv"/> defines that the Compound-MAC fields
exist in the Crypto-Binding TLV, it does not describe the derivation
and management of those fields.  This derivation is complex, and
is therefore located here, along with the other key deriviations.</t>
          <t>The following text defines how the server and peer compute, send, and
then verify the Compound-MAC fields Crypto-Binding TLV.  Depending on
the inner method and site policy, Crypto-Binding TLV can contain only
an MSK Compound-MAC (Flags=2), it it can contain only the EMSK
Compound-MAC (Flags=2), or it can contain both Compound-MACs
(Flags=3).  Each party to the TEAP session follows its own set of
procedures to compute and verify the Compound-MAC fields.</t>
          <t>The determination of the contents of the Crypto-Binding TLV is done
separately for each inner method.  If at any point the verification of
a Compound-MAC fails, the determining party returns a fatal error as
described in <xref target="phase-2-errors"/>.</t>
          <t>We presume that each of the peer and server have site policies which
require (or not) the use of the MSK Compound-MAC and/or the EMSK
Compound-MAC.  These policies can be enforced globally for all inner
methods, or they can be enforced separately on each inner method.
These policies could be enabled automatically when the EAP method is
known to always generate an EMSK, and could otherwise be configurable.</t>
          <t>The server initiates crypto binding by determining which
Compound-MAC(s) to use, computing their value(s), placing the
resulting Compond-MAC(s) into the Crypto-Binding TLV, and then sending
it to the peer.</t>
          <t>The steps taken by the server are then as follows.</t>
          <ul empty="true">
            <li>
              <t>If the inner method is known to generate only MSK, or if the servers
policy is to not use EMSK Compound-MACs:</t>
              <ul empty="true">
                <li>
                  <t>The server computes the MSK Compound-MAC using the MSK of the inner
method.  The server does not use the EMSK Compound-MAC field.
(Flags=2)</t>
                </li>
              </ul>
              <t>Otherwise the EMSK is available.</t>
              <t>If the servers policy permits the use of the MSK Compound-MAC:</t>
              <ul empty="true">
                <li>
                  <t>The sender computes the MSK Compound-MAC along with the EMSK
Compound-MAC. (Flags=3).</t>
                </li>
              </ul>
              <t>Otherwise the servers policy does not allow the use of the
MSK Compound-MAC:</t>
              <t>The server computes only the EMSK Compound-MAC (Flags=1).</t>
            </li>
          </ul>
          <t>The peer verifies the Crypto-Binding TLV it receives from the server.
It then replies with its own crypto binding response by determining
which Compound-MAC(s) to use, computing their value(s), placing the
resulting Compond-MAC(s) into the Crypto-Binding TLV, and then sending
it to the server.  The result of this process is either a fatal error,
or one or more Compound-MACs which are placed in the Crypto-Binding
TLV, and sent to the server.</t>
          <t>The steps taken by the peer are then as follows.</t>
          <ul empty="true">
            <li>
              <t>If the peer site policy requires the use of the EMSK Compound-MAC:</t>
              <ul empty="true">
                <li>
                  <t>The peer checks if the Flags field indicates the presence of the
EMSK Compound MAC (Flags=1 or 3).  If the Flags field has any other
value, the peer returns a fatal error.</t>
                  <t>The peer checks if the inner method has derived an EMSK.  If not,
the peer returns a fatal error.</t>
                </li>
              </ul>
              <t>Otherwise the peer site policy does not require the use of the EMSK
Compound-MAC, and the EMSK may or may not exist.</t>
              <t>If the inner method is known to generate only MSK and not EMSK:
&gt;
&gt; The peer checks if the Flags field indicates that only the MSK
&gt; Compound-MAC exists (Flags=2).  If the Flags field has any other
&gt; value, the peer returns a fatal error.</t>
              <t>Otherwise the MSK exists, the EMSK may or may not exist, and the
peer allows the use of the EMSK Compound-MAC.  The peer may have
received one or two Compound-MACs (Flags=1,2,3).  Any Compound-MAC
which is present is verified.  No futher action is taken by the peer
if a particular Compound-MAC is not present.  No further action is
taken by the peer if an unexpected Compound-MAC is present.</t>
              <t>Note that due to earlier validation of the Flags field
(<xref target="crypto-binding-tlv"/>), at least one Compound-MAC must now exist.
(Flags=1,2,3)</t>
              <t>If the peer has received an MSK Compound-MAC, it verifies it and
returns a fatal error if verification fails.</t>
              <t>If EMSK is available, and the peer has received an EMSK
Compound-MAC, it verifies it and returns a fatal error if
verification fails.</t>
            </li>
          </ul>
          <t>The peer creates a crypto binding response by determining which
Compound-MAC(s) to use, computing their value(s), placing the
resulting Compond-MAC(s) into the Crypto-Binding TLV, and then sending
it to the server.</t>
          <t>The steps taken by the peer are then as follows.</t>
          <ul empty="true">
            <li>
              <t>If the peer received an MSK Compound-MAC from the server:</t>
              <ul empty="true">
                <li>
                  <t>Since the MSK always exists, this step is always possible. The peer
computes the MSK Compound-MAC for the response.  (Flags=2)</t>
                </li>
              </ul>
              <t>If the peers site policy requires the use of the EMSK Compound-MAC,</t>
              <ul empty="true">
                <li>
                  <t>The preceding steps taken by the peer ensures that the EMSK exists,
and the server had sent an EMSK Compound-MAC.  The peer computes
the EMSK Compound-MAC for the response.  The Flags field is
updated. (Flags=1,3)</t>
                </li>
              </ul>
              <t>Otherwise if the EMSK exists:</t>
              <ul empty="true">
                <li>
                  <t>The peer computes the EMSK Compound-MAC for the response. The Flags
field is updated. (Flags=1,3)</t>
                </li>
              </ul>
            </li>
          </ul>
          <t>The server processes the response from the peer via the following steps:</t>
          <ul empty="true">
            <li>
              <t>If the server site policy requires the use of the EMSK Compound-MAC:</t>
              <ul empty="true">
                <li>
                  <t>The server checks if the Flags field indicates the presence of the
EMSK Compound MAC (Flags=1 or 3).  If the Flags field has any other
value, the server returns a fatal error.</t>
                  <t>The server checks if the inner method has derived an EMSK.  If not,
the server returns a fatal error.</t>
                </li>
              </ul>
              <t>If the inner method is known to generate only MSK and not EMSK:
&gt;
&gt; The server checks if the Flags field indicates that only the MSK
&gt; Compound-MAC exists (Flags=2).  If the Flags field has any other
&gt; value, the server returns a fatal error.</t>
              <t>Otherwise the MSK exists, and the EMSK may or may not exist.  The
server may have received one or two Compound-MACs (Flags=1,2,3).
Any Compound-MAC which is present is verified.  No further action is
taken by the server if a particular Compound-MAC is not present.  No
further action is taken by the server if an unexpected Compound-MAC is
present.</t>
              <t>If the server has received an MSK Compound-MAC, it verifies it and
returns a fatal error if verification fails.</t>
              <t>If EMSK is available, and the server has received an EMSK
Compound-MAC, it verifies it and returns a fatal error if
verification fails.</t>
            </li>
          </ul>
          <t>Once the above steps have concluded, the server either continues
authentication with another inner method, or it returns a Result TLV.</t>
        </section>
        <section anchor="oops">
          <name>Unintended Side Effects</name>
          <t>In earlier drafts of this document, the descriptions of the key
derivations had issues which were only discovered after TEAP had been
widely implemented.  These issues need to be documented in order to
enable interoparable implementations.</t>
          <t>As noted above, some inner EAP methods derive MSK, but do not derive
EMSK.  When there is no EMSK, it is therefore not possible to derive
IMCK_EMSK[j] from it.  The choice of multiple implementations was
then to simply define:</t>
          <artwork><![CDATA[
    IMCK_EMSK[j] = IMCK_EMSK[j - 1]
]]></artwork>
          <t>This definition can be trivially implementation by simply keeping a
cached copy of IMCK_EMSK in a data structure.  If EMSK is available,
IMCK_EMCK is updated from it via the TLS-PRF function as defined
above.  If EMSK is not available, then the IMCK_EMSK value is
unmodified.</t>
          <t>This behavior was not explicitly anticipated by earlier drafts of this
document.  It instead appears to be an accidental outcome of
implementing the derivations above, with the limitiation of a missing
EMSK.  This behavior is explicitly called out here in the interest of
fully documenting TEAP.</t>
          <t>Another unintended consequence is in the calculation of the
Crypto-Binding TLV.  That TLV includes compound MACs which depend on
the MSK and EMSK of the current authentication method.  Where the
current method does not provide an EMSK, the Crypto-Binding TLV does
not include a compound MAC which depends on the EMSK.  Where the
current method does not provide an MSK, the Crypto-Binding TLV
includes a compound MAC which depends on a special "all zero" IMSK as
discussed earlier.</t>
          <t>The result of this definition is that the final Crypto-Binding TLV in
an inner TEAP exchange may not include a compond MAC which depends on
EMSK, even if earlier EAP methods in the phase 2 exchange provided an
ESMK.  This result likely has negative affects on security, though the
full impact is unknown at the time of writing this document.</t>
          <t>These design flaws have nonetheless resulted in multiple interoperable
implementations.  We note that these implementations seem to support
only EAP-TLS and the EAP-FAST-MSCHAPv2 variant of EAP-MSCHAPv2.  Other
inner EAP methods may work by accident, but are not likely to work by
design.  For this document, we can only ensure that the behavior of
TEAPv1 is fully documented, even if that behavior was an unintended
consequence of unclear text in earlier versions of this document.</t>
          <t>We expect that these issues will be addressed in a future revision of
TEAP.</t>
        </section>
      </section>
      <section anchor="computing-compound-mac">
        <name>Computing the Compound-MAC</name>
        <t>For inner methods that generate keying material, further
protection against on-path attacks is provided through
cryptographically binding keying material established by both TEAP
Phase 1 and TEAP Phase 2 conversations.  After each successful inner
EAP authentication, EAP EMSK and/or MSKs are cryptographically
combined with key material from TEAP Phase 1 to generate a Compound
Session Key (CMK).  The CMK is used to calculate the Compound-MAC as
part of the Crypto-Binding TLV described in <xref target="crypto-binding-tlv"/>, which
helps provide assurance that the same entities are involved in all
communications in TEAP.  During the calculation of the Compound-MAC,
the MAC field is filled with zeros.</t>
        <t>The Compound-MAC computation is as follows:</t>
        <artwork><![CDATA[
   Compound-MAC = the first 20 octets of MAC( CMK[n], BUFFER )
]]></artwork>
        <t>where n is the number of the last successfully executed inner
method, MAC is the MAC function negotiated in TLS (e.g. TLS 1.2 in <xref target="RFC5246"/>), and
BUFFER is created after concatenating these fields in the following
order:</t>
        <ol spacing="normal" type="1"><li>
            <t>The entire Crypto-Binding TLV attribute with both the EMSK and MSK
 Compound-MAC fields zeroed out.</t>
          </li>
          <li>
            <t>The EAP Type sent by the other party in the first TEAP message,
which MUST be TEAP, encoded as one octet of 0x37.</t>
          </li>
          <li>
            <t>All the Outer TLVs from the first TEAP message sent by EAP server
to peer.  If a single TEAP message is fragmented into multiple
TEAP packets, then the Outer TLVs in all the fragments of that
message MUST be included.</t>
          </li>
          <li>
            <t>All the Outer TLVs from the first TEAP message sent by the peer to
the EAP server.  If a single TEAP message is fragmented into
multiple TEAP packets, then the Outer TLVs in all the fragments of
that message MUST be included.</t>
          </li>
        </ol>
        <t>If no inner method is run, then no MSK or EMSK
will be generated.  If an IMSK needs to be generated then the MSK
and therefore the IMSK is set to all zeroes (i.e., IMSK = MSK = 32 octets of 0x00s).</t>
        <t>Note that there is no boundary marker between the fields in steps (3)
and (4).  However, the server calculates the compound MAC using the
outer TLVs it sent, and the outer TLVs it received from the peer.  On
the other side, the peer calculates the compound MAC using the outer
TLVs it sent, and the outer TLVs it received from the server.  As a
result, and modification in transit of the outer TLVs will be detected
because the two sides will calculate different values for the compound
MAC.</t>
        <t>If no key generating inner method is run then no MSK or EMSK will be
generated. If an IMSK needs to be generated then the MSK and therefore
the IMSK is set to all zeroes (i.e., IMSK = MSK = 32 octets of 0x00s)</t>
      </section>
      <section anchor="eap-master-session-key-generation">
        <name>EAP Master Session Key Generation</name>
        <t>TEAP authentication assures the Master Session Key (MSK) and Extended
Master Session Key (EMSK) output from running TEAP are the combined result
of all inner methods by generating an Intermediate
Compound Key (IMCK).  The IMCK is mutually derived by the peer and
the server as described in <xref target="intermediate-compound-key"/> by combining the MSKs from
inner methods with key material from TEAP Phase 1.  The resulting
MSK and EMSK are generated from the final ("n"th) inner method, as part of the IMCK[n] key hierarchy via the
following derivation:</t>
        <artwork><![CDATA[
   MSK  = the first 64 octets of TLS-PRF(S-IMCK[n],
          "Session Key Generating Function")
   EMSK = the first 64 octets of TLS-PRF(S-IMCK[n],
          "Extended Session Key Generating Function")
]]></artwork>
        <t>The secret is S-IMCK[n] where n is the
number of the last generated
S-IMCK[j] from <xref target="intermediate-compound-key"/>.  The label is the ASCII
value for the string without quotes.  The seed is empty (0 length) and
is omitted from the derivation.</t>
        <t>The EMSK is typically only known to the TEAP peer and server and is
not provided to a third party.  The derivation of additional keys and
transportation of these keys to a third party are outside the scope
of this document.</t>
        <t>If no inner method has created an MSK or EMSK, the MSK
and EMSK will be generated directly from the session_key_seed meaning
S-IMCK[0] = session_key_seed.</t>
        <t>As we noted above, not all inner methods generate both MSK and EMSK,
so we have to maintain two independent derivations of S-IMCK[j], one
for each of MSK[j] and EMSK[j].  The final derivation using
S-IMCK[n] must choose only one of these keys.</t>
        <t>If the Crypto-Binding TLV contains an EMSK compound MAC, then the
derivation is taken from the S-IMCK_EMSK[n].  Otherwise it is taken
from the S-IMCK_MSK[n].</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This section provides guidance to the Internet Assigned Numbers
Authority (IANA) regarding registration of values related to the TEAP
protocol, in accordance with BCP 26 <xref target="RFC8126"/>.</t>
      <t>Except as noted below, IANA is instructed to update the "Tunnel
Extensible Authentication Protocol (TEAP) Parameters" registry to
change the Reference field in all tables from <xref target="RFC7170"/> to [THIS-DOCUMENT].</t>
      <section anchor="teap-tlv-types">
        <name>TEAP TLV Types</name>
        <t>IANA is instructed to update the references in the "TEAP TLV Types"
registry to from <xref target="RFC7170"/> to [THIS-DOCUMENT], and add TLV 18 and TLV 19 to
to the registry.  The Unassigned values then begin at 20 instead of at 18.</t>
        <artwork><![CDATA[
Value,Description,Reference
18,CSR-Attributes TLV,[THIS-DOCUMENT]
19,Identity-Hint TLV,[THIS-DOCUMENT]
20-16383,Unassigned,
]]></artwork>
        <t>IANA is instructed to close the "TEAP PAC TLV (value 11) PAC
Attribute Type Codes" and "TEAP PAC TLV (value 11) PAC-Type Type
Codes" to new registrations, and update update those registries with with a NOTE:</t>
        <artwork><![CDATA[
This registry has been closed. See [THIS-DOCUMENT].
]]></artwork>
      </section>
      <section anchor="teap-error-tlv-value-5-error-codes">
        <name>TEAP Error TLV (value 5) Error Codes</name>
        <t>IANA is instructed to update the "TEAP Error TLV (value 5) Error Codes" registry to add the following entries"</t>
        <artwork><![CDATA[
Value,Description,Reference
1032,Inner method not supported,[THIS-DOCUMENT]
2003,The Crypto-Binding TLV is invalid (Version, or Received-Ver, or Sub-Type),[THIS-DOCUMENT]
2004,The first inner method did not derive EMSK,[THIS-DOCUMENT]
2005,The Crypto-Binding TLV did not include a required MSK Compound-MAC,[THIS-DOCUMENT]
2006,The MSK Compound-MAC fails verification,[THIS-DOCUMENT]
2007,The Crypto-Binding TLV did not include a required EMSK Compound-MAC,[THIS-DOCUMENT]
2008,The EMSK Compound-MAC fails verification,[THIS-DOCUMENT]
2009,The EMSK Compound-MAC exists, but the inner method did not derive EMSK,[THIS-DOCUMENT]
]]></artwork>
      </section>
      <section anchor="tls-exporter-labels">
        <name>TLS Exporter Labels</name>
        <t>IANA is instructed to update the "TLS Exporter Labels" registry to change the Reference field for Value "EXPORTER: teap session key seed" as follows:</t>
        <artwork><![CDATA[
Value,DTLS-OK,Recommended,Reference
EXPORTER: teap session key seed,N,Y,[THIS-DOCUMENT]
]]></artwork>
      </section>
      <section anchor="extended-master-session-key-emsk-parameters">
        <name>Extended Master Session Key (EMSK) Parameters</name>
        <t>IANA is instructed to update the "User Specific Root Keys (USRK) Key Labels" registry to change the Reference field for Value "TEAPbindkey@ietf.org" as follows:</t>
        <artwork><![CDATA[
Value,Description,Reference
TEAPbindkey@ietf.org,TEAP binding usage label,[THIS-DOCUMENT]
]]></artwork>
      </section>
      <section anchor="extensible-authentication-protocol-eap-registry">
        <name>Extensible Authentication Protocol (EAP) Registry</name>
        <t>IANA is instructed to update the "Method Types" registry to change the Reference field for Value "55" as follows:</t>
        <artwork><![CDATA[
Value,Description,Reference
55,TEAP,[THIS-DOCUMENT]
]]></artwork>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>TEAP is designed with a focus on wireless media, where the medium
itself is inherent to eavesdropping.  Whereas in wired media an
attacker would have to gain physical access to the wired medium,
wireless media enables anyone to capture information as it is
transmitted over the air, enabling passive attacks.  Thus, physical
security can not be assumed, and security vulnerabilities are far
greater.  The threat model used for the security evaluation of TEAP
is defined in EAP <xref target="RFC3748"/>.</t>
      <section anchor="mutual-authentication-and-integrity-protection">
        <name>Mutual Authentication and Integrity Protection</name>
        <t>As a whole, TEAP provides message and integrity protection by
establishing a secure tunnel for protecting the inner
method(s).  The confidentiality and integrity protection is defined
by TLS and provides the same security strengths afforded by TLS
employing a strong entropy shared master secret.  The integrity of
the key generating inner methods executed within the TEAP
tunnel is verified through the calculation of the Crypto-Binding TLV.
This ensures that the tunnel endpoints are the same as the inner
method endpoints.</t>
        <t>Where Server Unauthenticated Provisioning is performed, TEAP requires
that the inner provisioning method provide for both peer and server authentication.</t>
      </section>
      <section anchor="method-negotiation">
        <name>Method Negotiation</name>
        <t>As is true for any negotiated EAP protocol, EAP NAK message used to
suggest an alternate EAP authentication method are sent unprotected and,
as such, are subject to spoofing.  During unprotected EAP method
negotiation, NAK packets may be interjected as active attacks to
bid-down to a weaker form of authentication, such as EAP-MD5
(which only provides one-way authentication and does not derive a
key).  Both the peer and server should have a method selection policy
that prevents them from negotiating down to weaker methods.  Inner
method negotiation resists attacks because it is protected by the
mutually authenticated TLS tunnel established.  Selection of TEAP as
an authentication method does not limit the potential inner
methods, so TEAP should be selected when available.</t>
        <t>An attacker cannot readily determine the inner method used,
except perhaps by traffic analysis.  It is also important that peer
implementations limit the use of credentials with an unauthenticated
or unauthorized server.</t>
      </section>
      <section anchor="separation-p1-p2">
        <name>Separation of Phase 1 and Phase 2 Servers</name>
        <t>Separation of the TEAP Phase 1 from the Phase 2 conversation is NOT
RECOMMENDED.  Allowing the Phase 1 conversation to be terminated at a
different server than the Phase 2 conversation can introduce
vulnerabilities if there is not a proper trust relationship and
protection for the protocol between the two servers.  Some
vulnerabilities include:</t>
        <ul spacing="normal">
          <li>
            <t>Loss of identity protection</t>
          </li>
          <li>
            <t>Offline dictionary attacks</t>
          </li>
          <li>
            <t>Lack of policy enforcement</t>
          </li>
          <li>
            <t>on-path active attacks (as described in <xref target="RFC7029"/>)</t>
          </li>
        </ul>
        <t>There may be cases where a trust relationship exists between the
Phase 1 and Phase 2 servers, such as on a campus or between two
offices within the same company, where there is no danger in
revealing the inner identity and credentials of the peer to entities
between the two servers.  In these cases, using a proxy solution
without end-to-end protection of TEAP MAY be used.  The TEAP
encrypting/decrypting gateway MUST, at a minimum, provide support for
IPsec, TLS, or similar protection in order to provide confidentiality
for the portion of the conversation between the gateway and the EAP
server.  In addition, separation of the TEAP server and Inner servers
allows for crypto-binding based on the inner method MSK to be
thwarted as described in <xref target="RFC7029"/>.
If the inner method derives an EMSK, then this threat is mitigated as
TEAP uses the Crypto-Binding TLV tie the inner EMSK to the TLS session via the TLS-PRF, as described above in <xref target="cryptographic-calculations"/>.</t>
        <t>On the other hand, if the inner method is not deriving EMSK as with
password authentication or unauthenticated provisioning, then this
threat still exists.  Implementations therefore need to limit the use of
inner methods as discussed above in <xref target="inner-method-limitations"/></t>
      </section>
      <section anchor="mitigation-of-known-vulnerabilities-and-protocol-deficiencies">
        <name>Mitigation of Known Vulnerabilities and Protocol Deficiencies</name>
        <t>TEAP addresses the known deficiencies and weaknesses in some EAP
authentication methods.  By employing a shared secret between the peer and server to
establish a secured tunnel, TEAP enables:</t>
        <ul spacing="normal">
          <li>
            <t>Per-packet confidentiality and integrity protection</t>
          </li>
          <li>
            <t>User identity protection</t>
          </li>
          <li>
            <t>Better support for notification messages</t>
          </li>
          <li>
            <t>Protected inner method negotiation, including EAP method</t>
          </li>
          <li>
            <t>Sequencing of inner methods, including EAP methods</t>
          </li>
          <li>
            <t>Strong mutually derived MSKs</t>
          </li>
          <li>
            <t>Acknowledged success/failure indication</t>
          </li>
          <li>
            <t>Faster re-authentications through session resumption</t>
          </li>
          <li>
            <t>Mitigation of offline dictionary attacks</t>
          </li>
          <li>
            <t>Mitigation of on-path attacks</t>
          </li>
          <li>
            <t>Mitigation of some denial-of-service attacks</t>
          </li>
        </ul>
        <t>It should be noted that in TEAP, as in many other authentication
protocols, a denial-of-service attack can be mounted by adversaries
sending erroneous traffic to disrupt the protocol.  This is a problem
in many authentication or key agreement protocols and is therefore
noted for TEAP as well.</t>
        <t>TEAP was designed with a focus on protected inner methods
that typically rely on weak credentials, such as password-based
secrets.  To that extent, the TEAP authentication mitigates several
vulnerabilities, such as offline dictionary attacks, by protecting the weak
credential-based inner method.  The protection is based on
strong cryptographic algorithms in TLS to provide message
confidentiality and integrity.  The keys derived for the protection
relies on strong random challenges provided by both peer and server
as well as an established key with strong entropy.  Implementations
should follow the recommendation in <xref target="RFC4086"/> when generating random
numbers.</t>
        <section anchor="user-identity-protection-and-verification">
          <name>User Identity Protection and Verification</name>
          <t>The initial identity request response exchange is sent in cleartext
outside the protection of TEAP.  Typically, the Network Access
Identifier (NAI) <xref target="RFC7542"/> in the identity response is useful only
for the realm of information that is used to route the authentication
requests to the right EAP server.  This means that the identity
response may contain an anonymous identity and just contain realm
information.  In other cases, the identity exchange may be eliminated
altogether if there are other means for establishing the destination
realm of the request.  In no case should an intermediary place any
trust in the identity information in the identity response since it
is unauthenticated and may not have any relevance to the
authenticated identity.  TEAP implementations should not attempt to
compare any identity disclosed in the initial cleartext EAP Identity
response packet with those Identities authenticated in Phase 2.</t>
          <t>When the server is authenticated, identity request/response exchanges
sent after the TEAP tunnel is established are protected from
modification and eavesdropping by attackers.  For server
unauthenticated provisioning, the outer TLS session provides little
security, and the provisioning method must necessarily provide this
protection instead.</t>
          <t>When a client certificate is sent outside of the TLS tunnel in Phase
1, the peer MUST include Identity-Type as an outer TLV, in order to
signal the type of identity which that client certificate is for.
Further, when a client certificate is sent outside of the TLS tunnel,
the server MUST proceed with Phase 2.  If there is no Phase 2 data,
then the EAP server MUST reject the session.</t>
          <t>Issues related to confidentiality of a client certificate are
discussed above in <xref target="client-certs-phase1"/></t>
          <t>Note that the Phase 2 data could simply be a Result TLV with value
Success, along with a Crypto-Binding TLV.
This Phase 2 data serves as a protected success indication as
discussed in <xref section="2.1.1" sectionFormat="comma" target="RFC9190"/></t>
        </section>
      </section>
      <section anchor="dictionary-attack-resistance">
        <name>Dictionary Attack Resistance</name>
        <t>TEAP was designed with a focus on protected inner methods
that typically rely on weak credentials, such as password-based
secrets.  TEAP mitigates offline dictionary attacks by allowing the
establishment of a mutually authenticated encrypted TLS tunnel
providing confidentiality and integrity to protect the weak
credential-based inner method.</t>
        <t>TEAP mitigates dictionary attacks by permitting inner methods such as
EAP-pwd which are not vulnerable to dictionary attacks.</t>
        <t>TEAP implementations can mitigate online "brute force"
dictionary attempts by limiting the number of failed authentication
attempts for a particular identity.</t>
        <section anchor="protection-against-on-path-attacks">
          <name>Protection against On-Path Attacks</name>
          <t>TEAP provides protection from on-path attacks in a few ways:</t>
          <ol spacing="normal" type="1"><li>
              <t>By using a certificates or a session ticket to mutually
authenticate the peer and server during TEAP authentication Phase 1
establishment of a secure TLS tunnel.</t>
            </li>
            <li>
              <t>When the TLS tunnel is not secured, by using the keys generated by the inner method
(if the inner methods are key generating) in the crypto-binding
exchange and in the generation of the key material exported by
the inner method described in <xref target="cryptographic-calculations"/>.</t>
            </li>
          </ol>
          <t>TEAP crypto binding does not guarantee protection from on-path attacks
if the client allows a connection to an untrusted server, such as in
the case where the client does not properly validate the server's
certificate.  If the TLS cipher suite derives the master secret solely
from the contribution of secret data from one side of the
conversation (such as cipher suites based on RSA key transport), then
an attacker who can convince the client to connect and engage in
authentication can impersonate the client to another server even if a
strong inner method is executed within the tunnel.  If the TLS
cipher suite derives the master secret from the contribution of
secrets from both sides of the conversation (such as in cipher suites
based on Diffie-Hellman), then crypto binding can detect an attacker
in the conversation if a strong inner method is used.</t>
        </section>
      </section>
      <section anchor="protecting-against-forged-cleartext-eap-packets">
        <name>Protecting against Forged Cleartext EAP Packets</name>
        <t>EAP Success and EAP Failure packets are, in general, sent in
cleartext and may be forged by an attacker without detection.  Forged
EAP Failure packets can be used to attempt to convince an EAP peer to
disconnect.  Forged EAP Success packets may be used to attempt to
convince a peer that authentication has succeeded, even though the
authenticator has not authenticated itself to the peer.</t>
        <t>By providing message confidentiality and integrity, TEAP provides
protection against these attacks.  Once the peer and authentication
server (AS) initiate the TEAP authentication Phase 2, compliant TEAP
implementations MUST silently discard all cleartext EAP messages,
unless both the TEAP peer and server have indicated success or
failure using a protected mechanism.  Protected mechanisms include
the TLS alert mechanism and the protected termination mechanism
described in <xref target="protected-termination"/>.</t>
        <t>The success/failure decisions within the TEAP tunnel indicate the
final decision of the TEAP authentication conversation.  After a
success/failure result has been indicated by a protected mechanism,
the TEAP peer can process unprotected EAP Success and EAP Failure
messages; however, the peer MUST ignore any unprotected EAP Success
or Failure messages where the result does not match the result of the
protected mechanism.</t>
        <t>To abide by <xref target="RFC3748"/>, the server sends a cleartext EAP Success or
EAP Failure packet to terminate the EAP conversation.  However, since
EAP Success and EAP Failure packets are not retransmitted, the final
packet may be lost.  While a TEAP-protected EAP Success or EAP
Failure packet should not be a final packet in a TEAP conversation,
it may occur based on the conditions stated above, so an EAP peer
should not rely upon the unprotected EAP Success and Failure
messages.</t>
      </section>
      <section anchor="use-of-clear-text-passwords">
        <name>Use of Clear-text Passwords</name>
        <t>TEAP can carry clear-text passwords in the Basic-Password-Auth-Resp
TLV.  Implementations should take care to protect this data.  For
example, passwords should not normally be logged, and password data
should be securely scrubbed from memory when it is no longer needed.</t>
      </section>
      <section anchor="accidental-or-unintended-behavior">
        <name>Accidental or Unintended Behavior</name>
        <t>Due to the complexity of TEAP, and the long time between <xref target="RFC7170"/>
and any substantial implementation, there are many accidental or
unintended behaviors in the protocol.</t>
        <t>The first one is that EAP-FAST-MSCHAPv2 is used instead of
EAP-MSCHAPv2.  While <xref target="RFC7170"/> defined TEAP to use EAP-MSCHAPv2, an
early implementor or implementors instead used EAP-FAST-MSCHAPv2.  The
choice for this document was either to define a new version of TEAP
which used EAP-MSCHAPv2, or instead to document implemented behavior.
The choice taken here was to document running code.</t>
        <t>The issues discussed in <xref target="oops"/> could have security impacts, but no
analysis has been performed.  The choice of using a special "all zero"
IMSK in <xref target="intermediate-compound-key"/> was made for simplicity, but could
also have negative security impacts.</t>
        <t>The definition of the Crypto-Binding TLV means that it the final
Crypto-Binding TLV values might not depend on all previous values of
MSK and EMSK.  This limitation could have negative security impacts,
but again no analysis has been performed.</t>
        <t>We suggest that the TEAP protocol be revised to TEAP version 2, which
could address these issues.  There are proposals at this time to
better derive the various keying materials and cryptographic binding
derivations.  However, in the interest of documenting running code, we
are publishing this document with the acknowledgement that there are
improvements to be made.</t>
      </section>
      <section anchor="security-claims">
        <name>Security Claims</name>
        <t>This section provides the needed security claim requirement for EAP
<xref target="RFC3748"/>.</t>
        <artwork><![CDATA[
Auth. mechanism:         Certificate-based, shared-secret-based, and
                         various tunneled authentication mechanisms.

Cipher Suite negotiation: Yes

Mutual authentication:   Yes

Integrity protection:    Yes.  Any method executed within the TEAP
                         tunnel is integrity protected.  The
                         cleartext EAP headers outside the tunnel are
                         not integrity protected.  Server
                         unauthenticated provisioning provides its own
                         protection mechanisms.

Replay protection:       Yes

Confidentiality:         Yes

Key derivation:          Yes

Key strength:            See Note 1 below.

Dictionary attack prot.: See Note 2 below.

Fast reconnect:          Yes

Cryptographic binding:   Yes

Session independence:    Yes

Fragmentation:           Yes

Key Hierarchy:           Yes

Channel binding:         Yes
]]></artwork>
        <t>Notes</t>
        <t>Note 1. BCP 86 <xref target="RFC3766"/> offers advice on appropriate key sizes.  The
National Institute for Standards and Technology (NIST) also
offers advice on appropriate key sizes in <xref target="NIST-SP-800-57"/>.
<xref target="RFC3766"/>, <xref target="cryptographic-calculations"/> advises use of the following required RSA or
DH (Diffie-Hellman) module and DSA (Digital Signature Algorithm)
subgroup size in bits for a given level of attack resistance in
bits.  Based on the table below, a 2048-bit RSA key is required
to provide 112-bit equivalent key strength:</t>
        <artwork><![CDATA[
    Attack Resistance     RSA or DH Modulus            DSA subgroup
     (bits)                  size (bits)                size (bits)
    -----------------     -----------------            ------------
       70                        947                        129
       80                       1228                        148
       90                       1553                        167
      100                       1926                        186
      150                       4575                        284
      200                       8719                        383
      250                      14596                        482
]]></artwork>
        <t>Note 2. TEAP protects against offline dictionary attacks when secure inner
methods are used.  TEAP protects against online dictionary attacks by
limiting the number of failed authentications for a particular
identity.</t>
      </section>
    </section>
    <section anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>Nearly all of the text in this document was taken directly from
<xref target="RFC7170"/>. We are grateful to the original authors and reviewers for
that document.  The acknowledgments given here are only for the
changes which resulted in this document.</t>
      <t>Alexander Clouter provided substantial and detailed technical feedback
on nearly every aspect of the specification.  The corrections in this
document are based on his work.</t>
      <t>We wish to thank the many reviewers and commenters in the EMU WG,
including Eliot Lear, Joe Salowey, Heikki Vatiainen,
Bruno Pereria Vidal, and Michael Richardson.  Many corner cases and
edge conditions were caught and corrected as a result of their
feedback.</t>
      <t>Jouni Malinin initially pointed out the issues with RFC 7170.  Those
comments resulted in substantial discussion on the EMU WG mailing
list, and eventually this document.  Jouni also made substantial
contributions in analyzing corner cases, which resulted in the text in
<xref target="oops"/>.</t>
    </section>
    <section anchor="changes-from-rfc-7170">
      <name>Changes from RFC 7170</name>
      <t>Alan DeKok was added as editor.</t>
      <t>The document was converted to Markdown, from the <xref target="RFC7170"/> text output.</t>
      <t>Any formatting changes mostly result from differences between using Markdown
versus XML for source.</t>
      <t>The IANA considerations section was replaced with a note to change the
IANA registry references to this document.</t>
      <t>A new section was added to explain that the inner EAP-MSCHAPv2
derivation follows EAP-FAST.  This is the largest technical change
from the previous revision of this document, and follows existing implementations.</t>
      <t>Many small changes have been made throughout the document to correct
inconsistencies, and to address mistakes.  At a high level:</t>
      <ul spacing="normal">
        <li>
          <t>All open errata have been addressed.</t>
        </li>
        <li>
          <t>A new term "inner method" has been defined.</t>
        </li>
        <li>
          <t>The definitions and derivation of IMSK, S-IMCK, etc. have been corrected and clarified.</t>
        </li>
        <li>
          <t>The diagrams in Appendix C have been updated to match the TEAP state machine</t>
        </li>
      </ul>
      <t>All uses of the PAC were removed.  It had not been implemented, and
there were no plans by implementors to use it.</t>
      <t>Text was added on recommendations for inner and outer identities.</t>
      <t><xref target="oops"/> was added late in the document life cycle, in order to
document accidental behavior which could result in interability
issues.</t>
    </section>
    <section numbered="false" anchor="appendix-a-evaluation-against-tunnel-based-eap-method-requirements">
      <name>Appendix A Evaluation against Tunnel-Based EAP Method Requirements</name>
      <t>This section evaluates all tunnel-based EAP method requirements
described in <xref target="RFC6678"/> against TEAP version 1.</t>
      <section numbered="false" anchor="a1-requirement-411-rfc-compliance">
        <name>A.1.  Requirement 4.1.1: RFC Compliance</name>
        <t>TEAPv1 meets this requirement by being compliant with RFC 3748
<xref target="RFC3748"/>, RFC 4017 <xref target="RFC4017"/>, RFC 5247 <xref target="RFC5247"/>, and RFC 4962
<xref target="RFC4962"/>.  It is also compliant with the "cryptographic algorithm
agility" requirement by leveraging TLS 1.2 for all cryptographic
algorithm negotiation.</t>
      </section>
      <section numbered="false" anchor="a2-requirement-421-tls-requirements">
        <name>A.2.  Requirement 4.2.1: TLS Requirements</name>
        <t>TEAPv1 meets this requirement by mandating TLS version 1.2 support as
defined in <xref target="phase1"/>.</t>
      </section>
      <section numbered="false" anchor="a3-requirement-42111-cipher-suite-negotiation">
        <name>A.3.  Requirement 4.2.1.1.1: Cipher Suite Negotiation</name>
        <t>TEAPv1 meets this requirement by using TLS to provide protected
cipher suite negotiation.</t>
      </section>
      <section numbered="false" anchor="a4-requirement-42112-tunnel-data-protection-algorithms">
        <name>A.4.  Requirement 4.2.1.1.2: Tunnel Data Protection Algorithms</name>
        <t>TEAPv1 meets this requirement by mandating cipher suites
as defined in <xref target="phase1"/>.</t>
      </section>
      <section numbered="false" anchor="a5-requirement-42113-tunnel-authentication-and-key-establishment">
        <name>A.5.  Requirement 4.2.1.1.3: Tunnel Authentication and Key Establishment</name>
        <t>TEAPv1 meets this requirement by mandating cipher suites which only
include cipher suites that use strong cryptographic algorithms.  They
do not include cipher suites providing mutually anonymous
authentication or static Diffie-Hellman cipher suites as defined in
<xref target="phase1"/>.</t>
      </section>
      <section numbered="false" anchor="a6-requirement-4212-tunnel-replay-protection">
        <name>A.6.  Requirement 4.2.1.2: Tunnel Replay Protection</name>
        <t>TEAPv1 meets this requirement by using TLS to provide sufficient
replay protection.</t>
      </section>
      <section numbered="false" anchor="a7-requirement-4213-tls-extensions">
        <name>A.7.  Requirement 4.2.1.3: TLS Extensions</name>
        <t>TEAPv1 meets this requirement by allowing TLS extensions, such as TLS
Certificate Status Request extension <xref target="RFC6066"/> and SessionTicket
extension <xref target="RFC5077"/>, to be used during TLS tunnel establishment.</t>
      </section>
      <section numbered="false" anchor="a8-requirement-4214-peer-identity-privacy">
        <name>A.8.  Requirement 4.2.1.4: Peer Identity Privacy</name>
        <t>TEAPv1 meets this requirement by establishment of the TLS tunnel and
protection identities specific to the inner method.  In addition, the
peer certificate can be sent confidentially (i.e., encrypted).</t>
      </section>
      <section numbered="false" anchor="a9-requirement-4215-session-resumption">
        <name>A.9.  Requirement 4.2.1.5: Session Resumption</name>
        <t>TEAPv1 meets this requirement by mandating support of TLS session
resumption as defined in <xref target="resume-server-state"/> and TLS session
resumption using the methods defined in <xref target="RFC9190"/></t>
      </section>
      <section numbered="false" anchor="a10-requirement-422-fragmentation">
        <name>A.10.  Requirement 4.2.2: Fragmentation</name>
        <t>TEAPv1 meets this requirement by leveraging fragmentation support
provided by TLS as defined in <xref target="fragmentation"/>.</t>
      </section>
      <section numbered="false" anchor="a11-requirement-423-protection-of-data-external-to-tunnel">
        <name>A.11.  Requirement 4.2.3: Protection of Data External to Tunnel</name>
        <t>TEAPv1 meets this requirement by including the TEAP version number
received in the computation of the Crypto-Binding TLV as defined in
<xref target="crypto-binding-tlv"/>.</t>
      </section>
      <section numbered="false" anchor="a12-requirement-431-extensible-attribute-types">
        <name>A.12.  Requirement 4.3.1: Extensible Attribute Types</name>
        <t>TEAPv1 meets this requirement by using an extensible TLV data layer
inside the tunnel as defined in <xref target="teap-tlv-format"/>.</t>
      </section>
      <section numbered="false" anchor="a13-requirement-432-requestchallenge-response-operation">
        <name>A.13.  Requirement 4.3.2: Request/Challenge Response Operation</name>
        <t>TEAPv1 meets this requirement by allowing multiple TLVs to be sent in
a single EAP request or response packet, while maintaining the half-duplex
operation typical of EAP.</t>
      </section>
      <section numbered="false" anchor="a14-requirement-433-indicating-criticality-of-attributes">
        <name>A.14.  Requirement 4.3.3: Indicating Criticality of Attributes</name>
        <t>TEAPv1 meets this requirement by having a mandatory bit in each TLV
to indicate whether it is mandatory to support or not as defined in
<xref target="teap-tlv-format"/>.</t>
      </section>
      <section numbered="false" anchor="a15-requirement-434-vendor-specific-support">
        <name>A.15.  Requirement 4.3.4: Vendor-Specific Support</name>
        <t>TEAPv1 meets this requirement by having a Vendor-Specific TLV to
allow vendors to define their own attributes as defined in
<xref target="vendor-specific-tlv"/>.</t>
      </section>
      <section numbered="false" anchor="a16-requirement-435-result-indication">
        <name>A.16.  Requirement 4.3.5: Result Indication</name>
        <t>TEAPv1 meets this requirement by having a Result TLV to exchange the
final result of the TEAP authentication so both the peer and server
have a synchronized state as defined in <xref target="result-tlv"/>.</t>
      </section>
      <section numbered="false" anchor="a17-requirement-436-internationalization-of-display-strings">
        <name>A.17.  Requirement 4.3.6: Internationalization of Display Strings</name>
        <t>TEAPv1 meets this requirement by supporting UTF-8 format in the
Basic-Password-Auth-Req TLV as defined in <xref target="bp-auth-req-tlv"/> and the
Basic-Password-Auth-Resp TLV as defined in <xref target="bp-auth-resp-tlv"/>.</t>
      </section>
      <section numbered="false" anchor="a18-requirement-44-eap-channel-binding-requirements">
        <name>A.18.  Requirement 4.4: EAP Channel-Binding Requirements</name>
        <t>TEAPv1 meets this requirement by having a Channel-Binding TLV to
exchange the EAP channel-binding data as defined in <xref target="channel-binding-tlv"/>.</t>
      </section>
      <section numbered="false" anchor="a19-requirement-4511-confidentiality-and-integrity">
        <name>A.19.  Requirement 4.5.1.1: Confidentiality and Integrity</name>
        <t>TEAPv1 meets this requirement by running the password authentication
inside a protected TLS tunnel.</t>
      </section>
      <section numbered="false" anchor="a20-requirement-4512-authentication-of-server">
        <name>A.20.  Requirement 4.5.1.2: Authentication of Server</name>
        <t>TEAPv1 meets this requirement by mandating authentication of the
server before establishment of the protected TLS and then running
inner password authentication as defined in <xref target="phase1"/>.</t>
      </section>
      <section numbered="false" anchor="a21-requirement-4513-server-certificate-revocation-checking">
        <name>A.21.  Requirement 4.5.1.3: Server Certificate Revocation Checking</name>
        <t>TEAPv1 meets this requirement by supporting TLS Certificate Status
Request extension <xref target="RFC6066"/> during tunnel establishment.</t>
      </section>
      <section numbered="false" anchor="a22-requirement-452-internationalization">
        <name>A.22.  Requirement 4.5.2: Internationalization</name>
        <t>TEAPv1 meets this requirement by supporting UTF-8 format in
Basic-Password-Auth-Req TLV as defined in <xref target="bp-auth-req-tlv"/> and
Basic-Password-Auth-Resp TLV as defined in Section 4.2.15.</t>
      </section>
      <section numbered="false" anchor="a23-requirement-453-metadata">
        <name>A.23.  Requirement 4.5.3: Metadata</name>
        <t>TEAPv1 meets this requirement by supporting Identity-Type TLV as
defined in <xref target="identity-type-tlv"/> to indicate whether the authentication is
for a user or a machine.</t>
      </section>
      <section numbered="false" anchor="a24-requirement-454-password-change">
        <name>A.24.  Requirement 4.5.4: Password Change</name>
        <t>TEAPv1 meets this requirement by supporting multiple
Basic-Password-Auth-Req TLV and Basic-Password-Auth-Resp TLV exchanges within a
single EAP authentication, which allows "housekeeping"" functions
such as password change.</t>
      </section>
      <section numbered="false" anchor="a25-requirement-461-method-negotiation">
        <name>A.25.  Requirement 4.6.1: Method Negotiation</name>
        <t>TEAPv1 meets this requirement by supporting inner EAP method
negotiation within the protected TLS tunnel.</t>
      </section>
      <section numbered="false" anchor="a26-requirement-462-chained-methods">
        <name>A.26.  Requirement 4.6.2: Chained Methods</name>
        <t>TEAPv1 meets this requirement by supporting inner EAP method chaining
within protected TLS tunnels as defined in <xref target="inner-eap"/>.</t>
      </section>
      <section numbered="false" anchor="a27-requirement-463-cryptographic-binding-with-the-tls-tunnel">
        <name>A.27.  Requirement 4.6.3: Cryptographic Binding with the TLS Tunnel</name>
        <t>TEAPv1 meets this requirement by supporting cryptographic binding of
the inner EAP method keys with the keys derived from the TLS tunnel
as defined in <xref target="crypto-binding-tlv"/>.</t>
      </section>
      <section numbered="false" anchor="a28-requirement-464-peer-initiated-eap-authentication">
        <name>A.28.  Requirement 4.6.4: Peer-Initiated EAP Authentication</name>
        <t>TEAPv1 meets this requirement by supporting the Request-Action TLV as
defined in <xref target="request-action-tlv"/> to allow a peer to initiate another inner
EAP method.</t>
      </section>
      <section numbered="false" anchor="a29-requirement-465-method-metadata">
        <name>A.29.  Requirement 4.6.5: Method Metadata</name>
        <t>TEAPv1 meets this requirement by supporting the Identity-Type TLV as
defined in <xref target="identity-type-tlv"/> to indicate whether the authentication is
for a user or a machine.</t>
      </section>
    </section>
    <section numbered="false" anchor="appendix-b-major-differences-from-eap-fast">
      <name>Appendix B.  Major Differences from EAP-FAST</name>
      <t>This document is a new standard tunnel EAP method based on revision
of EAP-FAST version 1 <xref target="RFC4851"/> that contains improved flexibility,
particularly for negotiation of cryptographic algorithms.  The major
changes are:</t>
      <ol spacing="normal" type="1"><li>
          <t>The EAP method name has been changed from EAP-FAST to TEAP; this
change thus requires that a new EAP Type be assigned.</t>
        </li>
        <li>
          <t>This version of TEAP MUST support TLS 1.2 <xref target="RFC5246"/>.  TLS 1.1 and earlier MUST NOT be used with TEAP.</t>
        </li>
        <li>
          <t>The key derivation now makes use of TLS keying material exporters
<xref target="RFC5705"/> and the PRF and hash function negotiated in TLS.  This
is to simplify implementation and better support cryptographic
algorithm agility.</t>
        </li>
        <li>
          <t>TEAP is in full conformance with TLS ticket extension <xref target="RFC5077"/>.</t>
        </li>
        <li>
          <t>Support is provided for passing optional Outer TLVs in the first
two message exchanges, in addition to the Authority-ID TLV data
in EAP-FAST.</t>
        </li>
        <li>
          <t>Basic password authentication on the TLV level has been added in
addition to the existing inner EAP method.</t>
        </li>
        <li>
          <t>Additional TLV types have been defined to support EAP channel
binding and metadata.  They are the Identity-Type TLV and
Channel-Binding TLVs, defined in <xref target="teap-tlv-format"/>.</t>
        </li>
      </ol>
    </section>
    <section numbered="false" anchor="appendix-c-examples">
      <name>Appendix C.  Examples</name>
      <section numbered="false" anchor="c1-successful-authentication">
        <name>C.1.  Successful Authentication</name>
        <t>The following exchanges show a successful TEAP authentication with
basic password authentication.  The
conversation will appear as follows:</t>
        <artwork><![CDATA[
   Authenticating Peer     Authenticator
   -------------------     -------------
                           <- EAP-Request/
                           Identity
   EAP-Response/
   Identity (MyID1) ->
                           <- EAP-Request/
                           EAP-Type=TEAP, V=1
                           (TEAP Start, S bit set, Authority-ID)

   EAP-Response/
   EAP-Type=TEAP, V=1
   (TLS client_hello) ->

                           <- EAP-Request/
                           EAP-Type=TEAP, V=1
                           (TLS server_hello,
                           (TLS change_cipher_spec,
                            TLS finished)

   EAP-Response/
   EAP-Type=TEAP, V=1 ->
   (TLS change_cipher_spec,
    TLS finished)

   TLS channel established
   (messages sent within the TLS channel)

                          <- Basic-Password-Auth-Req TLV, Challenge

   Basic-Password-Auth-Resp TLV, Response with both
   username and password) ->

   optional additional exchanges (new pin mode,
   password change, etc.) ...

                        <- Intermediate-Result TLV (Success),
                            Crypto-Binding TLV (Request),
                            Result TLV (Success)

   Intermediate-Result TLV (Success),
   Crypto-Binding TLV(Response),
   Result TLV (Success) ->

   TLS channel torn down
   (messages sent in cleartext)

                           <- EAP-Success
]]></artwork>
      </section>
      <section numbered="false" anchor="c2-failed-authentication">
        <name>C.2.  Failed Authentication</name>
        <t>The following exchanges show a failed TEAP authentication due to
wrong user credentials.  The conversation will appear as follows:</t>
        <artwork><![CDATA[
   Authenticating Peer     Authenticator
   -------------------     -------------
                           <- EAP-Request/Identity

   EAP-Response/
   Identity (MyID1) ->


                           <- EAP-Request/
                           EAP-Type=TEAP, V=1
                           (TEAP Start, S bit set, Authority-ID)

   EAP-Response/
   EAP-Type=TEAP, V=1
   (TLS client_hello) ->

                           <- EAP-Request/
                           EAP-Type=TEAP, V=1
                           (TLS server_hello,
                           (TLS change_cipher_spec,
                            TLS finished)

   EAP-Response/
   EAP-Type=TEAP, V=1 ->
   (TLS change_cipher_spec,
    TLS finished)

   TLS channel established
   (messages sent within the TLS channel)

                          <- Basic-Password-Auth-Req TLV, Challenge

   Basic-Password-Auth-Resp TLV, Response with both
   username and password) ->

                           <- Intermediate-Result TLV (Failure),
                              Result TLV (Failure)

   Intermediate-Result TLV (Failure),
   Result TLV (Failure) ->

   TLS channel torn down
   (messages sent in cleartext)

                           <- EAP-Failure
]]></artwork>
      </section>
      <section numbered="false" anchor="c3-full-tls-handshake-using-certificate-based-cipher-suite">
        <name>C.3.  Full TLS Handshake Using Certificate-Based Cipher Suite</name>
        <t>In the case within TEAP Phase 1 where an abbreviated TLS handshake is
tried, fails, and falls back to the certificate-based full TLS
handshake, the conversation will appear as follows:</t>
        <artwork><![CDATA[
  Authenticating Peer    Authenticator
  -------------------    -------------
                         <- EAP-Request/Identity
  EAP-Response/
  Identity (MyID1) ->

  // Identity sent in the clear.  May be a hint to help route
     the authentication request to EAP server, instead of the
     full user identity.

                          <- EAP-Request/
                          EAP-Type=TEAP, V=1
                          (TEAP Start, S bit set, Authority-ID)
  EAP-Response/
  EAP-Type=TEAP, V=1
  (TLS client_hello with
  SessionTicket extension)->

  // If the server rejects the session resumption,
     it falls through to the full TLS handshake.

                          <- EAP-Request/
                          EAP-Type=TEAP, V=1
                          (TLS server_hello,
                           TLS certificate,
                          [TLS server_key_exchange,]
                          [TLS certificate_request,]
                           TLS server_hello_done)

  EAP-Response/
  EAP-Type=TEAP, V=1
  ([TLS certificate,]
   TLS client_key_exchange,
  [TLS certificate_verify,]
   TLS change_cipher_spec,
   TLS finished) ->
                          <- EAP-Request/
                          EAP-Type=TEAP, V=1
                          (TLS change_cipher_spec,
                           TLS finished,
                           EAP-Payload TLV[EAP-Request/
                           Identity])

  // TLS channel established
     (messages sent within the TLS channel)

  // First EAP Payload TLV is coalesced with the TLS Finished as
     Application Data and protected by the TLS tunnel.

  EAP-Payload TLV
  [EAP-Response/Identity (MyID2)]->

  // identity protected by TLS.

                           <- EAP-Payload TLV
                           [EAP-Request/EAP-Type=X]

  EAP-Payload TLV
  [EAP-Response/EAP-Type=X] ->

  // Method X exchanges followed by Protected Termination

                       <- Intermediate-Result TLV (Success),
                           Crypto-Binding TLV (Request),
                           Result TLV (Success)

  Intermediate-Result TLV (Success),
  Crypto-Binding TLV (Response),
  Result TLV (Success) ->

  // TLS channel torn down
  (messages sent in cleartext)

                          <- EAP-Success
]]></artwork>
      </section>
      <section numbered="false" anchor="c4-client-authentication-during-phase-1-with-identity-privacy">
        <name>C.4.  Client Authentication during Phase 1 with Identity Privacy</name>
        <t>In the case where a certificate-based TLS handshake occurs within
TEAP Phase 1 and client certificate authentication and identity
privacy is desired (and therefore TLS renegotiation is being used to
transmit the peer credentials in the protected TLS tunnel), the
conversation will appear as follows for TLS 1.2:</t>
        <artwork><![CDATA[
  Authenticating Peer     Authenticator
  -------------------     -------------
                         <- EAP-Request/Identity
  EAP-Response/
  Identity (MyID1) ->

  // Identity sent in the clear.  May be a hint to help route
     the authentication request to EAP server, instead of the
     full user identity.

                          <- EAP-Request/
                          EAP-Type=TEAP, V=1
                          (TEAP Start, S bit set, Authority-ID)
  EAP-Response/
  EAP-Type=TEAP, V=1
  (TLS client_hello)->
                          <- EAP-Request/
                          EAP-Type=TEAP, V=1
                          (TLS server_hello,
                           TLS certificate,
                          [TLS server_key_exchange,]
                          [TLS certificate_request,]
                           TLS server_hello_done)
  EAP-Response/
  EAP-Type=TEAP, V=1
  (TLS client_key_exchange,
   TLS change_cipher_spec,
   TLS finished) ->
                          <- EAP-Request/
                          EAP-Type=TEAP, V=1
                          (TLS change_cipher_spec,
                           TLS finished,
                           EAP-Payload TLV[EAP-Request/
                           Identity])

  // TLS channel established
     (EAP Payload messages sent within the TLS channel)

  // peer sends TLS client_hello to request TLS renegotiation
  TLS client_hello ->

                          <- TLS server_hello,
                           TLS certificate,
                           [TLS server_key_exchange,]
                           [TLS certificate_request,]
                           TLS server_hello_done
  [TLS certificate,]
   TLS client_key_exchange,
  [TLS certificate_verify,]
   TLS change_cipher_spec,
   TLS finished ->

                          <- TLS change_cipher_spec,
                             TLS finished,
                             Crypto-Binding TLV (Request),
                             Result TLV (Success)

  Crypto-Binding TLV (Response),
  Result TLV (Success)) ->

  //TLS channel torn down
  (messages sent in cleartext)

                          <- EAP-Success
]]></artwork>
      </section>
      <section numbered="false" anchor="c5-fragmentation-and-reassembly">
        <name>C.5.  Fragmentation and Reassembly</name>
        <t>In the case where TEAP fragmentation is required, the conversation
will appear as follows:</t>
        <artwork><![CDATA[
  Authenticating Peer     Authenticator
  -------------------     -------------
                          <- EAP-Request/
                          Identity
  EAP-Response/
  Identity (MyID) ->
                          <- EAP-Request/
                          EAP-Type=TEAP, V=1
                          (TEAP Start, S bit set, Authority-ID)

  EAP-Response/
  EAP-Type=TEAP, V=1
  (TLS client_hello)->

                          <- EAP-Request/
                          EAP-Type=TEAP, V=1
                          (TLS server_hello,
                           TLS certificate,
                          [TLS server_key_exchange,]
                          [TLS certificate_request,]
                           TLS server_hello_done)
                          (Fragment 1: L, M bits set)

  EAP-Response/
  EAP-Type=TEAP, V=1 ->

                          <- EAP-Request/
                             EAP-Type=TEAP, V=1
                          (Fragment 2: M bit set)
  EAP-Response/
  EAP-Type=TEAP, V=1 ->
                          <- EAP-Request/
                          EAP-Type=TEAP, V=1
                          (Fragment 3)
  EAP-Response/
  EAP-Type=TEAP, V=1
  ([TLS certificate,]
   TLS client_key_exchange,
  [TLS certificate_verify,]
   TLS change_cipher_spec,
   TLS finished)
   (Fragment 1: L, M bits set)->

                           <- EAP-Request/
                          EAP-Type=TEAP, V=1
  EAP-Response/
  EAP-Type=TEAP, V=1
  (Fragment 2)->
                         <- EAP-Request/
                          EAP-Type=TEAP, V=1
                          (TLS change_cipher_spec,
                           TLS finished,
                          [EAP-Payload TLV[
                          EAP-Request/Identity]])

  // TLS channel established
     (messages sent within the TLS channel)

  // First EAP Payload TLV is coalesced with the TLS Finished as
     Application Data and protected by the TLS tunnel.

  EAP-Payload TLV
  [EAP-Response/Identity (MyID2)]->

  // identity protected by TLS.

                           <- EAP-Payload TLV
                           [EAP-Request/EAP-Type=X]

  EAP-Payload TLV
  [EAP-Response/EAP-Type=X] ->

  // Method X exchanges followed by Protected Termination

                       <- Intermediate-Result TLV (Success),
                           Crypto-Binding TLV (Request),
                           Result TLV (Success)

  Intermediate-Result TLV (Success),
  Crypto-Binding TLV (Response),
  Result TLV (Success) ->

  // TLS channel torn down
  (messages sent in cleartext)

                          <- EAP-Success
]]></artwork>
      </section>
      <section numbered="false" anchor="c6-sequence-of-eap-methods">
        <name>C.6.  Sequence of EAP Methods</name>
        <t>When TEAP is negotiated with a sequence of EAP method X followed by
method Y, the conversation will occur as follows:</t>
        <artwork><![CDATA[
  Authenticating Peer     Authenticator
  -------------------     -------------
                          <- EAP-Request/
                          Identity
  EAP-Response/
  Identity (MyID1) ->
                          <- EAP-Request/
                          EAP-Type=TEAP, V=1
                          (TEAP Start, S bit set, Authority-ID)

  EAP-Response/
  EAP-Type=TEAP, V=1
  (TLS client_hello)->

                          <- EAP-Request/
                          EAP-Type=TEAP, V=1
                          (TLS server_hello,
                           TLS certificate,
                          [TLS server_key_exchange,]
                          [TLS certificate_request,]
                           TLS server_hello_done)
  EAP-Response/
  EAP-Type=TEAP, V=1
  ([TLS certificate,]
   TLS client_key_exchange,
  [TLS certificate_verify,]
   TLS change_cipher_spec,
   TLS finished) ->
                         <- EAP-Request/
                          EAP-Type=TEAP, V=1
                          (TLS change_cipher_spec,
                           TLS finished,
                           Identity-Type TLV,
                          EAP-Payload TLV[
                          EAP-Request/Identity])

  // TLS channel established
     (messages sent within the TLS channel)

  // First EAP Payload TLV is coalesced with the TLS Finished as
     Application Data and protected by the TLS tunnel

  Identity_Type TLV
  EAP-Payload TLV
  [EAP-Response/Identity] ->

                          <- EAP-Payload TLV
                        [EAP-Request/EAP-Type=X]

  EAP-Payload TLV
  [EAP-Response/EAP-Type=X] ->

         // Optional additional X Method exchanges...

                         <- EAP-Payload TLV
                        [EAP-Request/EAP-Type=X]

  EAP-Payload TLV
  [EAP-Response/EAP-Type=X]->

                          <- Intermediate Result TLV (Success),
                           Crypto-Binding TLV (Request),
                           Identity-Type TLV,
                          EAP-Payload TLV[
                          EAP-Request/Identity])

  // Compound-MAC calculated using keys generated from
     EAP method X and the TLS tunnel.

  // Next EAP conversation started (with EAP-Request/Identity)
     after successful completion of previous method X.  The
     Intermediate-Result and Crypto-Binding TLVs are sent in
     the next packet to minimize round trips.

  Intermediate Result TLV (Success),
  Crypto-Binding TLV (Response),
  EAP-Payload TLV [EAP-Response/Identity (MyID2)] ->

         // Optional additional EAP method Y exchanges...

                         <- EAP Payload TLV [
                         EAP-Type=Y]

  EAP Payload TLV
  [EAP-Type=Y] ->

                         <- Intermediate-Result TLV (Success),
                           Crypto-Binding TLV (Request),
                           Result TLV (Success)

  Intermediate-Result TLV (Success),
  Crypto-Binding TLV (Response),
  Result TLV (Success) ->

  // Compound-MAC calculated using keys generated from EAP
     methods X and Y and the TLS tunnel.  Compound keys are
     generated using keys generated from EAP methods X and Y
     and the TLS tunnel.

  // TLS channel torn down (messages sent in cleartext)

                          <- EAP-Success
]]></artwork>
      </section>
      <section numbered="false" anchor="c7-failed-crypto-binding">
        <name>C.7.  Failed Crypto-Binding</name>
        <t>The following exchanges show a failed crypto-binding validation.  The
conversation will appear as follows:</t>
        <artwork><![CDATA[
  Authenticating Peer     Authenticator
  -------------------     -------------
                          <- EAP-Request/
                          Identity
  EAP-Response/
  Identity (MyID1) ->
                          <- EAP-Request/
                          EAP-Type=TEAP, V=1
                          (TEAP Start, S bit set, Authority-ID)

  EAP-Response/
  EAP-Type=TEAP, V=1
  (TLS client_hello) ->
                          <- EAP-Request/
                          EAP-Type=TEAP, V=1
                          (TLS Server Key Exchange
                           TLS Server Hello Done)
  EAP-Response/
  EAP-Type=TEAP, V=1 ->
  (TLS Client Key Exchange
   TLS change_cipher_spec,
   TLS finished)

                          <- EAP-Request/
                          EAP-Type=TEAP, V=1
                          (TLS change_cipher_spec
                           TLS finished)
                           EAP-Payload TLV[
                           EAP-Request/Identity])

     // TLS channel established
        (messages sent within the TLS channel)

     // First EAP Payload TLV is coalesced with the TLS Finished as
        Application Data and protected by the TLS tunnel.

  EAP-Payload TLV/
  EAP Identity Response ->

                         <-  EAP Payload TLV, EAP-Request,
                             (EAP-FAST-MSCHAPV2, Challenge)

  EAP Payload TLV, EAP-Response,
  (EAP-FAST-MSCHAPV2, Response) ->

                         <-  EAP Payload TLV, EAP-Request,
                             (EAP-FAST-MSCHAPV2, Success Request)

  EAP Payload TLV, EAP-Response,
  (EAP-FAST-MSCHAPV2, Success Response) ->

                       <- Intermediate-Result TLV (Success),
                           Crypto-Binding TLV (Request),
                              Result TLV (Success)

     Intermediate-Result TLV (Success),
     Result TLV (Failure)
     Error TLV with
     (Error Code = 2001) ->

  // TLS channel torn down
     (messages sent in cleartext)

                       <- EAP-Failure
]]></artwork>
      </section>
      <section numbered="false" anchor="c8-sequence-of-eap-method-with-vendor-specific-tlv-exchange">
        <name>C.8.  Sequence of EAP Method with Vendor-Specific TLV Exchange</name>
        <t>When TEAP is negotiated with a sequence of EAP methods followed by a
Vendor-Specific TLV exchange, the conversation will occur as follows:</t>
        <artwork><![CDATA[
  Authenticating Peer     Authenticator
  -------------------     -------------
                          <- EAP-Request/
                          Identity
  EAP-Response/
  Identity (MyID1) ->
                          <- EAP-Request/
                          EAP-Type=TEAP, V=1
                          (TEAP Start, S bit set, Authority-ID)

  EAP-Response/
  EAP-Type=TEAP, V=1
  (TLS client_hello)->
                          <- EAP-Request/
                          EAP-Type=TEAP, V=1
                          (TLS server_hello,
                           TLS certificate,
                   [TLS server_key_exchange,]
                   [TLS certificate_request,]
                       TLS server_hello_done)

  EAP-Response/
  EAP-Type=TEAP, V=1
  ([TLS certificate,]
   TLS client_key_exchange,
  [TLS certificate_verify,]
   TLS change_cipher_spec,
   TLS finished) ->
                         <- EAP-Request/
                          EAP-Type=TEAP, V=1
                          (TLS change_cipher_spec,
                           TLS finished,
                          EAP-Payload TLV[
                          EAP-Request/Identity])

  // TLS channel established
     (messages sent within the TLS channel)

  // First EAP Payload TLV is coalesced with the TLS Finished as
     Application Data and protected by the TLS tunnel.

  EAP-Payload TLV
  [EAP-Response/Identity] ->

                        <- EAP-Payload TLV
                        [EAP-Request/EAP-Type=X]

  EAP-Payload TLV
  [EAP-Response/EAP-Type=X] ->

                         <- EAP-Payload TLV
                        [EAP-Request/EAP-Type=X]

  EAP-Payload TLV
  [EAP-Response/EAP-Type=X]->

                          <- Intermediate Result TLV (Success),
                           Crypto-Binding TLV (Request),
                           Vendor-Specific TLV,

  // Vendor-Specific TLV exchange started after successful
     completion of previous method X.  The Intermediate-Result
     and Crypto-Binding TLVs are sent with Vendor-Specific TLV
     in next packet to minimize round trips.

  // Compound-MAC calculated using keys generated from
     EAP method X and the TLS tunnel.

  Intermediate Result TLV (Success),
  Crypto-Binding TLV (Response),
  Vendor-Specific TLV ->

      // Optional additional Vendor-Specific TLV exchanges...

                         <- Vendor-Specific TLV

  Vendor-Specific TLV ->
                         <- Result TLV (Success)

  Result TLV (Success) ->

  // TLS channel torn down (messages sent in cleartext)

                          <- EAP-Success
]]></artwork>
      </section>
      <section numbered="false" anchor="c9-peer-requests-inner-method-after-server-sends-result-tlv">
        <name>C.9.  Peer Requests Inner Method after Server Sends Result TLV</name>
        <t>In the case where the peer is authenticated during Phase 1 and the
server sends back a Result TLV but the peer wants to request another
inner method, the conversation will appear as follows:</t>
        <artwork><![CDATA[
  Authenticating Peer    Authenticator
  -------------------    -------------
                         <- EAP-Request/Identity
  EAP-Response/
  Identity (MyID1) ->

  // Identity sent in the clear.  May be a hint to help route
     the authentication request to EAP server, instead of the
     full user identity. TLS client certificate is also sent.

                          <- EAP-Request/
                          EAP-Type=TEAP, V=1
                          (TEAP Start, S bit set, Authority-ID)
  EAP-Response/
  EAP-Type=TEAP, V=1
  (TLS client_hello)->
                          <- EAP-Request/
                          EAP-Type=TEAP, V=1
                          (TLS server_hello,
                           TLS certificate,
                          [TLS server_key_exchange,]
                          [TLS certificate_request,]
                           TLS server_hello_done)

  EAP-Response/
  EAP-Type=TEAP, V=1
  [TLS certificate,]
   TLS client_key_exchange,
  [TLS certificate_verify,]
   TLS change_cipher_spec,
   TLS finished ->
                          <- EAP-Request/
                          EAP-Type=TEAP, V=1
                          (TLS change_cipher_spec,
                           TLS finished,
                           Crypto-Binding TLV (Request),
                            Result TLV (Success))

  // TLS channel established
     (TLV Payload messages sent within the TLS channel)

   Crypto-Binding TLV(Response),
   Request-Action TLV
   (Status=Failure, Action=Negotiate-EAP)->

                        <- EAP-Payload TLV
                            [EAP-Request/Identity]

  EAP-Payload TLV
  [EAP-Response/Identity] ->

                        <- EAP-Payload TLV
                        [EAP-Request/EAP-Type=X]

  EAP-Payload TLV
  [EAP-Response/EAP-Type=X] ->

                         <- EAP-Payload TLV
                        [EAP-Request/EAP-Type=X]

  EAP-Payload TLV
  [EAP-Response/EAP-Type=X]->

                          <- Intermediate Result TLV (Success),
                             Crypto-Binding TLV (Request),
                             Result TLV (Success)

  Intermediate Result TLV (Success),
  Crypto-Binding TLV (Response),
  Result TLV (Success)) ->

  // TLS channel torn down
  (messages sent in cleartext)

                          <- EAP-Success
]]></artwork>
      </section>
      <section numbered="false" anchor="c10-channel-binding">
        <name>C.10.  Channel Binding</name>
        <t>The following exchanges show a successful TEAP authentication with
basic password authentication and channel binding using a
Request-Action TLV.  The conversation will appear as follows:</t>
        <artwork><![CDATA[
   Authenticating Peer     Authenticator
   -------------------     -------------
                           <- EAP-Request/
                           Identity
   EAP-Response/
   Identity (MyID1) ->

                           <- EAP-Request/
                           EAP-Type=TEAP, V=1
                           (TEAP Start, S bit set, Authority-ID)

   EAP-Response/
   EAP-Type=TEAP, V=1
   (TLS client_hello) ->

                           <- EAP-Request/
                           EAP-Type=TEAP, V=1
                           (TLS server_hello,
                           (TLS change_cipher_spec,
                            TLS finished)

   EAP-Response/
   EAP-Type=TEAP, V=1 ->
   (TLS change_cipher_spec,
    TLS finished)

   TLS channel established
   (messages sent within the TLS channel)

                          <- Basic-Password-Auth-Req TLV, Challenge

   Basic-Password-Auth-Resp TLV, Response with both
   username and password) ->

   optional additional exchanges (new pin mode,
   password change, etc.) ...

                        <- Crypto-Binding TLV (Request),
                            Result TLV (Success),

   Crypto-Binding TLV(Response),
   Request-Action TLV
   (Status=Failure, Action=Process TLV,
   TLV=Channel-Binding TLV)->

                            <- Channel-Binding TLV (Response),
                            Result TLV (Success),

   Result TLV (Success) ->

   TLS channel torn down
   (messages sent in cleartext)

                           <- EAP-Success
]]></artwork>
      </section>
      <section numbered="false" anchor="c11-pkcs-exchange">
        <name>C.11. PKCS Exchange</name>
        <t>The following exchanges show the peer sending a PKCS#10 TLV, and
server replying with a PKCS7 TLV. The exchange below assumes that the
EAP peer is authenticated in Phase 1, either via bi-directional
certificate exchange, or some other TLS method such as a proof of
knowledge (TLS-POK).  The conversation will appear as follows:</t>
        <artwork><![CDATA[
,----.                                             ,-------.
|Peer|                                             |AuthSrv|
`-+--'                                             `---+---'
  |               EAP-Request / Identity               |
  | <- - - - - - - - - - - - - - - - - - - - - - - - - -
  |                                                    |
  |           EAP-Response / Identity (MYID1)          |
  |  - - - - - - - - - - - - - - - - - - - - - - - - - >
  |                                                    |
  |             EAP-Request/EAP-Type=TEAP,             |
  |              V=1(TEAP Start,                       |
  |              S bit set,                            |
  |              Authority-ID)                         |
  | <- - - - - - - - - - - - - - - - - - - - - - - - - -
  |                                                    |
  |             EAP-Response/EAP-Type=TEAP,            |
  |              V=1(TLS client_hello)                 |
  |  - - - - - - - - - - - - - - - - - - - - - - - - - >
  |                                                    |
  |             EAP-Request/ EAP-Type=TEAP,            |
  |              V=1(TLS server_hello,                 |
  |              TLS certificate,                      |
  |              TLS certificate_request,              |
  |              TLS finished)                         |
  | <- - - - - - - - - - - - - - - - - - - - - - - - - -
  |                                                    |
  |        EAP-Response/EAP-Type=TEAP,                 |
  |         V=1(TLS change_cipher_spec,                |
  |             TLS certificate,                       |
  |        TLS finished) TLS channel established       |
  |  - - - - - - - - - - - - - - - - - - - - - - - - - >
  |                                                    |
  |               Send Request Action TLV              |
  | <- - - - - - - - - - - - - - - - - - - - - - - - - -
  |                                                    |
  |                   Send PKCS10 TLV                  |
  |  - - - - - - - - - - - - - - - - - - - - - - - - - >
  |                                                    |
  | Sign the CSR and send PKCS7 TLV Intermediate-Result|
  | TLV request(Success),                              |
  |  Crypto-Binding TLV(Request),                      |
  |  Result TLV(Success)                               |
  | <- - - - - - - - - - - - - - - - - - - - - - - - - -
  |                                                    |
  |     Intermediate-Result TLV response(Success),     |
  |      Crypto-Binding TLV(Response),                 |
  |      Result TLV(Success)                           |
  |  - - - - - - - - - - - - - - - - - - - - - - - - - >
  |                                                    |
  |                     EAP Success                    |
  | <- - - - - - - - - - - - - - - - - - - - - - - - - -
]]></artwork>
      </section>
      <section numbered="false" anchor="c12-failure-scenario">
        <name>C.12. Failure Scenario</name>
        <t>The following exchanges shows a failure scenario. The conversation
will appear as follows:</t>
        <artwork><![CDATA[
,----.                                                  ,-------.
|Peer|                                                  |AuthSrv|
`-+--'                                                  `---+---'
  |                  EAP-Request / Identity                 |
  | <- - - - - - - - - - - - - - - - - - - - - - - - - - - -
  |                                                         |
  |             EAP-Response / Identity (MYID1)             |
  |  - - - - - - - - - - - - - - - - - - - - - - - - - - - ->
  |                                                         |
  |          EAP-Request/EAP-Type=TEAP, V=1                 |
  |          (TEAP Start, S bit set, Authority-ID)          |
  | <- - - - - - - - - - - - - - - - - - - - - - - - - - - -
  |                                                         |
  |    EAP-Response/EAP-Type=TEAP, V=1(TLS client_hello)    |
  |  - - - - - - - - - - - - - - - - - - - - - - - - - - - ->
  |                                                         |
  | EAP-Request/ EAP-Type=TEAP, V=1                         |
  | (TLS server_hello,(TLS change_cipher_spec, TLS finished)|
  | <- - - - - - - - - - - - - - - - - - - - - - - - - - - -
  |                                                         |
  |             EAP-Response/EAP-Type=TEAP, V=1             |
  |             (TLS change_cipher_spec,                    |
  |             TLS finished)                               |
  |             TLS channel established                     |
  |  - - - - - - - - - - - - - - - - - - - - - - - - - - - ->
  |                                                         |
  |                    Request Action TLV                   |
  | <- - - - - - - - - - - - - - - - - - - - - - - - - - - -
  |                                                         |
  |                      Bad PKCS10 TLV                     |
  |  - - - - - - - - - - - - - - - - - - - - - - - - - - - ->
  |                                                         |
  |        Intermediate-Result TLV request(Failure),        |
  |        Result TLV(Failure)                              |
  | <- - - - - - - - - - - - - - - - - - - - - - - - - - - -
  |                                                         |
  |        Intermediate-Result TLV response(Failure),       |
  |        Result TLV(Failure)                              |
  |  - - - - - - - - - - - - - - - - - - - - - - - - - - - ->
  |                                                         |
  |                       EAP Failure                       |
  | <- - - - - - - - - - - - - - - - - - - - - - - - - - - -
]]></artwork>
      </section>
      <section numbered="false" anchor="c13-client-certificate-in-phase-1">
        <name>C.13. Client certificate in Phase 1</name>
        <t>The following exchanges shows a scenario where the client certificate
is sent in Phase 1, and no additional authentication or provisioning
is performed in Phase 2. The conversation will appear as follows:</t>
        <artwork><![CDATA[
,----.                                    ,-------.
|Peer|                                    |AuthSrv|
`-+--'                                    `---+---'
  |           EAP-Request / Identity          |
  | <- - - - - - - - - - - - - - - - - - - - -
  |                                           |
  |      EAP-Response / Identity (MYID1)      |
  |  - - - - - - - - - - - - - - - - - - - - ->
  |                                           |
  |         EAP-Request/EAP-Type=TEAP,        |
  |          V=1(TEAP Start,                  |
  |          S bit set,                       |
  |          Authority-ID)                    |
  | <- - - - - - - - - - - - - - - - - - - - -
  |                                           |
  |        EAP-Response/EAP-Type=TEAP,        |
  |         V=1(TLS client_hello)             |
  |  - - - - - - - - - - - - - - - - - - - - ->
  |                                           |
  |        EAP-Request/ EAP-Type=TEAP,        |
  |         V=1(TLS server_hello,             |
  |         TLS certificate,                  |
  |         TLS certificate_request,          |
  |         TLS change_cipher_spec,           |
  |         TLS finished)                     |
  | <- - - - - - - - - - - - - - - - - - - - -
  |                                           |
  |   EAP-Response/EAP-Type=TEAP,             |
  |    V=1(TLS certificate,                   |
  |        TLS change_cipher_spec,            |
  |   TLS finished) TLS channel established   |
  |  - - - - - - - - - - - - - - - - - - - - ->
  |                                           |
  |        Crypto-Binding TLV(Request),       |
  |        Result TLV(Success)                |
  | <- - - - - - - - - - - - - - - - - - - - -
  |                                           |
  |  Crypto-Binding TLV(Response),            |
  |  Result TLV(Success)                      |
  |  - - - - - - - - - - - - - - - - - - - - ->
  |                                           |
  |                EAP Success                |
  | <- - - - - - - - - - - - - - - - - - - - -
]]></artwork>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="BCP14">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC2985">
          <front>
            <title>PKCS #9: Selected Object Classes and Attribute Types Version 2.0</title>
            <author fullname="M. Nystrom" initials="M." surname="Nystrom"/>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski"/>
            <date month="November" year="2000"/>
            <abstract>
              <t>This memo represents a republication of PKCS #9 v2.0 from RSA Laboratories' Public-Key Cryptography Standards (PKCS) series, and change control is retained within the PKCS process. The body of this document, except for the security considerations section, is taken directly from that specification. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2985"/>
          <seriesInfo name="DOI" value="10.17487/RFC2985"/>
        </reference>
        <reference anchor="RFC2986">
          <front>
            <title>PKCS #10: Certification Request Syntax Specification Version 1.7</title>
            <author fullname="M. Nystrom" initials="M." surname="Nystrom"/>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski"/>
            <date month="November" year="2000"/>
            <abstract>
              <t>This memo represents a republication of PKCS #10 v1.7 from RSA Laboratories' Public-Key Cryptography Standards (PKCS) series, and change control is retained within the PKCS process. The body of this document, except for the security considerations section, is taken directly from the PKCS #9 v2.0 or the PKCS #10 v1.7 document. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2986"/>
          <seriesInfo name="DOI" value="10.17487/RFC2986"/>
        </reference>
        <reference anchor="RFC3748">
          <front>
            <title>Extensible Authentication Protocol (EAP)</title>
            <author fullname="B. Aboba" initials="B." surname="Aboba"/>
            <author fullname="L. Blunk" initials="L." surname="Blunk"/>
            <author fullname="J. Vollbrecht" initials="J." surname="Vollbrecht"/>
            <author fullname="J. Carlson" initials="J." surname="Carlson"/>
            <author fullname="H. Levkowetz" initials="H." role="editor" surname="Levkowetz"/>
            <date month="June" year="2004"/>
            <abstract>
              <t>This document defines the Extensible Authentication Protocol (EAP), an authentication framework which supports multiple authentication methods. EAP typically runs directly over data link layers such as Point-to-Point Protocol (PPP) or IEEE 802, without requiring IP. EAP provides its own support for duplicate elimination and retransmission, but is reliant on lower layer ordering guarantees. Fragmentation is not supported within EAP itself; however, individual EAP methods may support this. This document obsoletes RFC 2284. A summary of the changes between this document and RFC 2284 is available in Appendix A. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3748"/>
          <seriesInfo name="DOI" value="10.17487/RFC3748"/>
        </reference>
        <reference anchor="RFC5077">
          <front>
            <title>Transport Layer Security (TLS) Session Resumption without Server-Side State</title>
            <author fullname="J. Salowey" initials="J." surname="Salowey"/>
            <author fullname="H. Zhou" initials="H." surname="Zhou"/>
            <author fullname="P. Eronen" initials="P." surname="Eronen"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <date month="January" year="2008"/>
            <abstract>
              <t>This document describes a mechanism that enables the Transport Layer Security (TLS) server to resume sessions and avoid keeping per-client session state. The TLS server encapsulates the session state into a ticket and forwards it to the client. The client can subsequently resume a session using the obtained ticket. This document obsoletes RFC 4507. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5077"/>
          <seriesInfo name="DOI" value="10.17487/RFC5077"/>
        </reference>
        <reference anchor="RFC5216">
          <front>
            <title>The EAP-TLS Authentication Protocol</title>
            <author fullname="D. Simon" initials="D." surname="Simon"/>
            <author fullname="B. Aboba" initials="B." surname="Aboba"/>
            <author fullname="R. Hurst" initials="R." surname="Hurst"/>
            <date month="March" year="2008"/>
            <abstract>
              <t>The Extensible Authentication Protocol (EAP), defined in RFC 3748, provides support for multiple authentication methods. Transport Layer Security (TLS) provides for mutual authentication, integrity-protected ciphersuite negotiation, and key exchange between two endpoints. This document defines EAP-TLS, which includes support for certificate-based mutual authentication and key derivation.</t>
              <t>This document obsoletes RFC 2716. A summary of the changes between this document and RFC 2716 is available in Appendix A. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5216"/>
          <seriesInfo name="DOI" value="10.17487/RFC5216"/>
        </reference>
        <reference anchor="RFC5246">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.2</title>
            <author fullname="T. Dierks" initials="T." surname="Dierks"/>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2008"/>
            <abstract>
              <t>This document specifies Version 1.2 of the Transport Layer Security (TLS) protocol. The TLS protocol provides communications security over the Internet. The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5246"/>
          <seriesInfo name="DOI" value="10.17487/RFC5246"/>
        </reference>
        <reference anchor="RFC5295">
          <front>
            <title>Specification for the Derivation of Root Keys from an Extended Master Session Key (EMSK)</title>
            <author fullname="J. Salowey" initials="J." surname="Salowey"/>
            <author fullname="L. Dondeti" initials="L." surname="Dondeti"/>
            <author fullname="V. Narayanan" initials="V." surname="Narayanan"/>
            <author fullname="M. Nakhjiri" initials="M." surname="Nakhjiri"/>
            <date month="August" year="2008"/>
            <abstract>
              <t>The Extensible Authentication Protocol (EAP) defined the Extended Master Session Key (EMSK) generation, but reserved it for unspecified future uses. This memo reserves the EMSK for the sole purpose of deriving root keys. Root keys are master keys that can be used for multiple purposes, identified by usage definitions. This document also specifies a mechanism for avoiding conflicts between root keys by deriving them in a manner that guarantees cryptographic separation. Finally, this document also defines one such root key usage: Domain-Specific Root Keys are root keys made available to and used within specific key management domains. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5295"/>
          <seriesInfo name="DOI" value="10.17487/RFC5295"/>
        </reference>
        <reference anchor="RFC5705">
          <front>
            <title>Keying Material Exporters for Transport Layer Security (TLS)</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="March" year="2010"/>
            <abstract>
              <t>A number of protocols wish to leverage Transport Layer Security (TLS) to perform key establishment but then use some of the keying material for their own purposes. This document describes a general mechanism for allowing that. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5705"/>
          <seriesInfo name="DOI" value="10.17487/RFC5705"/>
        </reference>
        <reference anchor="RFC5746">
          <front>
            <title>Transport Layer Security (TLS) Renegotiation Indication Extension</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <author fullname="M. Ray" initials="M." surname="Ray"/>
            <author fullname="S. Dispensa" initials="S." surname="Dispensa"/>
            <author fullname="N. Oskov" initials="N." surname="Oskov"/>
            <date month="February" year="2010"/>
            <abstract>
              <t>Secure Socket Layer (SSL) and Transport Layer Security (TLS) renegotiation are vulnerable to an attack in which the attacker forms a TLS connection with the target server, injects content of his choice, and then splices in a new TLS connection from a client. The server treats the client's initial TLS handshake as a renegotiation and thus believes that the initial data transmitted by the attacker is from the same entity as the subsequent client data. This specification defines a TLS extension to cryptographically tie renegotiations to the TLS connections they are being performed over, thus preventing this attack. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5746"/>
          <seriesInfo name="DOI" value="10.17487/RFC5746"/>
        </reference>
        <reference anchor="RFC5929">
          <front>
            <title>Channel Bindings for TLS</title>
            <author fullname="J. Altman" initials="J." surname="Altman"/>
            <author fullname="N. Williams" initials="N." surname="Williams"/>
            <author fullname="L. Zhu" initials="L." surname="Zhu"/>
            <date month="July" year="2010"/>
            <abstract>
              <t>This document defines three channel binding types for Transport Layer Security (TLS), tls-unique, tls-server-end-point, and tls-unique-for-telnet, in accordance with RFC 5056 (On Channel Binding).</t>
              <t>Note that based on implementation experience, this document changes the original definition of 'tls-unique' channel binding type in the channel binding type IANA registry. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5929"/>
          <seriesInfo name="DOI" value="10.17487/RFC5929"/>
        </reference>
        <reference anchor="RFC6677">
          <front>
            <title>Channel-Binding Support for Extensible Authentication Protocol (EAP) Methods</title>
            <author fullname="S. Hartman" initials="S." role="editor" surname="Hartman"/>
            <author fullname="T. Clancy" initials="T." surname="Clancy"/>
            <author fullname="K. Hoeper" initials="K." surname="Hoeper"/>
            <date month="July" year="2012"/>
            <abstract>
              <t>This document defines how to implement channel bindings for Extensible Authentication Protocol (EAP) methods to address the "lying Network Access Service (NAS)" problem as well as the "lying provider" problem. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6677"/>
          <seriesInfo name="DOI" value="10.17487/RFC6677"/>
        </reference>
        <reference anchor="RFC7030">
          <front>
            <title>Enrollment over Secure Transport</title>
            <author fullname="M. Pritikin" initials="M." role="editor" surname="Pritikin"/>
            <author fullname="P. Yee" initials="P." role="editor" surname="Yee"/>
            <author fullname="D. Harkins" initials="D." role="editor" surname="Harkins"/>
            <date month="October" year="2013"/>
            <abstract>
              <t>This document profiles certificate enrollment for clients using Certificate Management over CMS (CMC) messages over a secure transport. This profile, called Enrollment over Secure Transport (EST), describes a simple, yet functional, certificate management protocol targeting Public Key Infrastructure (PKI) clients that need to acquire client certificates and associated Certification Authority (CA) certificates. It also supports client-generated public/private key pairs as well as key pairs generated by the CA.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7030"/>
          <seriesInfo name="DOI" value="10.17487/RFC7030"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC8996">
          <front>
            <title>Deprecating TLS 1.0 and TLS 1.1</title>
            <author fullname="K. Moriarty" initials="K." surname="Moriarty"/>
            <author fullname="S. Farrell" initials="S." surname="Farrell"/>
            <date month="March" year="2021"/>
            <abstract>
              <t>This document formally deprecates Transport Layer Security (TLS) versions 1.0 (RFC 2246) and 1.1 (RFC 4346). Accordingly, those documents have been moved to Historic status. These versions lack support for current and recommended cryptographic algorithms and mechanisms, and various government and industry profiles of applications using TLS now mandate avoiding these old TLS versions. TLS version 1.2 became the recommended version for IETF protocols in 2008 (subsequently being obsoleted by TLS version 1.3 in 2018), providing sufficient time to transition away from older versions. Removing support for older versions from implementations reduces the attack surface, reduces opportunity for misconfiguration, and streamlines library and product maintenance.</t>
              <t>This document also deprecates Datagram TLS (DTLS) version 1.0 (RFC 4347) but not DTLS version 1.2, and there is no DTLS version 1.1.</t>
              <t>This document updates many RFCs that normatively refer to TLS version 1.0 or TLS version 1.1, as described herein. This document also updates the best practices for TLS usage in RFC 7525; hence, it is part of BCP 195.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="195"/>
          <seriesInfo name="RFC" value="8996"/>
          <seriesInfo name="DOI" value="10.17487/RFC8996"/>
        </reference>
        <reference anchor="RFC9190">
          <front>
            <title>EAP-TLS 1.3: Using the Extensible Authentication Protocol with TLS 1.3</title>
            <author fullname="J. Preuß Mattsson" initials="J." surname="Preuß Mattsson"/>
            <author fullname="M. Sethi" initials="M." surname="Sethi"/>
            <date month="February" year="2022"/>
            <abstract>
              <t>The Extensible Authentication Protocol (EAP), defined in RFC 3748, provides a standard mechanism for support of multiple authentication methods. This document specifies the use of EAP-TLS with TLS 1.3 while remaining backwards compatible with existing implementations of EAP-TLS. TLS 1.3 provides significantly improved security and privacy, and reduced latency when compared to earlier versions of TLS. EAP-TLS with TLS 1.3 (EAP-TLS 1.3) further improves security and privacy by always providing forward secrecy, never disclosing the peer identity, and by mandating use of revocation checking when compared to EAP-TLS with earlier versions of TLS. This document also provides guidance on authentication, authorization, and resumption for EAP-TLS in general (regardless of the underlying TLS version used). This document updates RFC 5216.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9190"/>
          <seriesInfo name="DOI" value="10.17487/RFC9190"/>
        </reference>
        <reference anchor="RFC9427">
          <front>
            <title>TLS-Based Extensible Authentication Protocol (EAP) Types for Use with TLS 1.3</title>
            <author fullname="A. DeKok" initials="A." surname="DeKok"/>
            <date month="June" year="2023"/>
            <abstract>
              <t>The Extensible Authentication Protocol-TLS (EAP-TLS) (RFC 5216) has been updated for TLS 1.3 in RFC 9190. Many other EAP Types also depend on TLS, such as EAP-Flexible Authentication via Secure Tunneling (EAP-FAST) (RFC 4851), EAP-Tunneled TLS (EAP-TTLS) (RFC 5281), the Tunnel Extensible Authentication Protocol (TEAP) (RFC 7170). It is possible that many vendor-specific EAP methods, such as the Protected Extensible Authentication Protocol (PEAP), depend on TLS as well. This document updates those methods in order to use the new key derivation methods available in TLS 1.3. Additional changes necessitated by TLS 1.3 are also discussed.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9427"/>
          <seriesInfo name="DOI" value="10.17487/RFC9427"/>
        </reference>
        <reference anchor="RFC9525">
          <front>
            <title>Service Identity in TLS</title>
            <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre"/>
            <author fullname="R. Salz" initials="R." surname="Salz"/>
            <date month="November" year="2023"/>
            <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>
          </front>
          <seriesInfo name="RFC" value="9525"/>
          <seriesInfo name="DOI" value="10.17487/RFC9525"/>
        </reference>
        <reference anchor="I-D.ietf-lamps-rfc7030-csrattrs">
          <front>
            <title>Clarification and enhancement of RFC7030 CSR Attributes definition</title>
            <author fullname="Michael Richardson" initials="M." surname="Richardson">
              <organization>Sandelman Software Works</organization>
            </author>
            <author fullname="Owen Friel" initials="O." surname="Friel">
              <organization>Cisco</organization>
            </author>
            <author fullname="David von Oheimb" initials="D." surname="von Oheimb">
              <organization>Siemens</organization>
            </author>
            <author fullname="Dan Harkins" initials="D." surname="Harkins">
              <organization>The Industrial Lounge</organization>
            </author>
            <date day="6" month="February" year="2025"/>
            <abstract>
              <t>   This document updates RFC7030 (EST) and clarifies how the CSR
   Attributes Response can be used by an EST server to specify both CSR
   attribute OIDs and also CSR attribute values, in particular X.509
   extension values, that the server expects the client to include in
   subsequent CSR request.

   The Enrollment over Secure Transport (EST, RFC7030) is ambiguous in
   its specification of the CSR Attributes Response.  This has resulted
   in implementation challenges and implementor confusion.  As a result
   of some of the implementation challenges, it came to light that the
   particular way of that RFC7030 (EST) says to use the CSR attributes
   was not universally agreed upon.

   This document therefore also provides a new straightforward approach:
   using a template for CSR contents that may be partially filled in by
   the server.  This also allows an EST server to specify a subject
   Distinguished Name (DN).

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-lamps-rfc7030-csrattrs-16"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="IEEE.802-1X.2020">
          <front>
            <title>*** BROKEN REFERENCE ***</title>
            <author>
              <organization/>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="KAMATH">
          <front>
            <title>Microsoft EAP CHAP Extensions</title>
            <author initials="R. H. and A." surname="Palekar" fullname="Ryan Hurst and Ashwin Palekar">
              <organization/>
            </author>
            <date year="2007" month="June"/>
          </front>
        </reference>
        <reference anchor="MSCHAP" target="https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-chap/5a860bf5-2aeb-485b-82ee-fac1e8e6b76f">
          <front>
            <title>Master Session Key (MSK) Derivation</title>
            <author initials="M." surname="Corporation" fullname="Microsoft Corporation">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="NIST-SP-800-57">
          <front>
            <title>Recommendation for Key Management</title>
            <author initials="N. I. of S. and" surname="Technology" fullname="National Institute of Standards and Technology">
              <organization/>
            </author>
            <date year="2012" month="July"/>
          </front>
        </reference>
        <reference anchor="PEAP">
          <front>
            <title>[MS-PEAP]: Protected Extensible Authentication Protocol (PEAP)</title>
            <author initials="M." surname="Corporation" fullname="Microsoft Corporation">
              <organization/>
            </author>
            <date year="2014" month="February"/>
          </front>
        </reference>
        <reference anchor="RFC2315">
          <front>
            <title>PKCS #7: Cryptographic Message Syntax Version 1.5</title>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski"/>
            <date month="March" year="1998"/>
            <abstract>
              <t>This document describes a general syntax for data that may have cryptography applied to it, such as digital signatures and digital envelopes. This memo provides information for the Internet community. It does not specify an Internet standard of any kind.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2315"/>
          <seriesInfo name="DOI" value="10.17487/RFC2315"/>
        </reference>
        <reference anchor="RFC3579">
          <front>
            <title>RADIUS (Remote Authentication Dial In User Service) Support For Extensible Authentication Protocol (EAP)</title>
            <author fullname="B. Aboba" initials="B." surname="Aboba"/>
            <author fullname="P. Calhoun" initials="P." surname="Calhoun"/>
            <date month="September" year="2003"/>
            <abstract>
              <t>This document defines Remote Authentication Dial In User Service (RADIUS) support for the Extensible Authentication Protocol (EAP), an authentication framework which supports multiple authentication mechanisms. In the proposed scheme, the Network Access Server (NAS) forwards EAP packets to and from the RADIUS server, encapsulated within EAP-Message attributes. This has the advantage of allowing the NAS to support any EAP authentication method, without the need for method- specific code, which resides on the RADIUS server. While EAP was originally developed for use with PPP, it is now also in use with IEEE 802. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3579"/>
          <seriesInfo name="DOI" value="10.17487/RFC3579"/>
        </reference>
        <reference anchor="RFC3629">
          <front>
            <title>UTF-8, a transformation format of ISO 10646</title>
            <author fullname="F. Yergeau" initials="F." surname="Yergeau"/>
            <date month="November" year="2003"/>
            <abstract>
              <t>ISO/IEC 10646-1 defines a large character set called the Universal Character Set (UCS) which encompasses most of the world's writing systems. The originally proposed encodings of the UCS, however, were not compatible with many current applications and protocols, and this has led to the development of UTF-8, the object of this memo. UTF-8 has the characteristic of preserving the full US-ASCII range, providing compatibility with file systems, parsers and other software that rely on US-ASCII values but are transparent to other values. This memo obsoletes and replaces RFC 2279.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="63"/>
          <seriesInfo name="RFC" value="3629"/>
          <seriesInfo name="DOI" value="10.17487/RFC3629"/>
        </reference>
        <reference anchor="RFC3766">
          <front>
            <title>Determining Strengths For Public Keys Used For Exchanging Symmetric Keys</title>
            <author fullname="H. Orman" initials="H." surname="Orman"/>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <date month="April" year="2004"/>
            <abstract>
              <t>Implementors of systems that use public key cryptography to exchange symmetric keys need to make the public keys resistant to some predetermined level of attack. That level of attack resistance is the strength of the system, and the symmetric keys that are exchanged must be at least as strong as the system strength requirements. The three quantities, system strength, symmetric key strength, and public key strength, must be consistently matched for any network protocol usage. While it is fairly easy to express the system strength requirements in terms of a symmetric key length and to choose a cipher that has a key length equal to or exceeding that requirement, it is harder to choose a public key that has a cryptographic strength meeting a symmetric key strength requirement. This document explains how to determine the length of an asymmetric key as a function of a symmetric key strength requirement. Some rules of thumb for estimating equivalent resistance to large-scale attacks on various algorithms are given. The document also addresses how changing the sizes of the underlying large integers (moduli, group sizes, exponents, and so on) changes the time to use the algorithms for key exchange. 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="86"/>
          <seriesInfo name="RFC" value="3766"/>
          <seriesInfo name="DOI" value="10.17487/RFC3766"/>
        </reference>
        <reference anchor="RFC4017">
          <front>
            <title>Extensible Authentication Protocol (EAP) Method Requirements for Wireless LANs</title>
            <author fullname="D. Stanley" initials="D." surname="Stanley"/>
            <author fullname="J. Walker" initials="J." surname="Walker"/>
            <author fullname="B. Aboba" initials="B." surname="Aboba"/>
            <date month="March" year="2005"/>
            <abstract>
              <t>The IEEE 802.11i MAC Security Enhancements Amendment makes use of IEEE 802.1X, which in turn relies on the Extensible Authentication Protocol (EAP). This document defines requirements for EAP methods used in IEEE 802.11 wireless LAN deployments. The material in this document has been approved by IEEE 802.11 and is being presented as an IETF RFC for informational purposes. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4017"/>
          <seriesInfo name="DOI" value="10.17487/RFC4017"/>
        </reference>
        <reference anchor="RFC4072">
          <front>
            <title>Diameter Extensible Authentication Protocol (EAP) Application</title>
            <author fullname="P. Eronen" initials="P." role="editor" surname="Eronen"/>
            <author fullname="T. Hiller" initials="T." surname="Hiller"/>
            <author fullname="G. Zorn" initials="G." surname="Zorn"/>
            <date month="August" year="2005"/>
            <abstract>
              <t>The Extensible Authentication Protocol (EAP) provides a standard mechanism for support of various authentication methods. This document defines the Command-Codes and AVPs necessary to carry EAP packets between a Network Access Server (NAS) and a back-end authentication server. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4072"/>
          <seriesInfo name="DOI" value="10.17487/RFC4072"/>
        </reference>
        <reference anchor="RFC4086">
          <front>
            <title>Randomness Requirements for Security</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
            <author fullname="J. Schiller" initials="J." surname="Schiller"/>
            <author fullname="S. Crocker" initials="S." surname="Crocker"/>
            <date month="June" year="2005"/>
            <abstract>
              <t>Security systems are built on strong cryptographic algorithms that foil pattern analysis attempts. However, the security of these systems is dependent on generating secret quantities for passwords, cryptographic keys, and similar quantities. The use of pseudo-random processes to generate secret quantities can result in pseudo-security. A sophisticated attacker may find it easier to reproduce the environment that produced the secret quantities and to search the resulting small set of possibilities than to locate the quantities in the whole of the potential number space.</t>
              <t>Choosing random quantities to foil a resourceful and motivated adversary is surprisingly difficult. This document points out many pitfalls in using poor entropy sources or traditional pseudo-random number generation techniques for generating such quantities. It recommends the use of truly random hardware techniques and shows that the existing hardware on many systems can be used for this purpose. It provides suggestions to ameliorate the problem when a hardware solution is not available, and it gives examples of how large such quantities need to be for some applications. 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="106"/>
          <seriesInfo name="RFC" value="4086"/>
          <seriesInfo name="DOI" value="10.17487/RFC4086"/>
        </reference>
        <reference anchor="RFC4648">
          <front>
            <title>The Base16, Base32, and Base64 Data Encodings</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
            <date month="October" year="2006"/>
            <abstract>
              <t>This document describes the commonly used base 64, base 32, and base 16 encoding schemes. It also discusses the use of line-feeds in encoded data, use of padding in encoded data, use of non-alphabet characters in encoded data, use of different encoding alphabets, and canonical encodings. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4648"/>
          <seriesInfo name="DOI" value="10.17487/RFC4648"/>
        </reference>
        <reference anchor="RFC4851">
          <front>
            <title>The Flexible Authentication via Secure Tunneling Extensible Authentication Protocol Method (EAP-FAST)</title>
            <author fullname="N. Cam-Winget" initials="N." surname="Cam-Winget"/>
            <author fullname="D. McGrew" initials="D." surname="McGrew"/>
            <author fullname="J. Salowey" initials="J." surname="Salowey"/>
            <author fullname="H. Zhou" initials="H." surname="Zhou"/>
            <date month="May" year="2007"/>
            <abstract>
              <t>This document defines the Extensible Authentication Protocol (EAP) based Flexible Authentication via Secure Tunneling (EAP-FAST) protocol. EAP-FAST is an EAP method that enables secure communication between a peer and a server by using the Transport Layer Security (TLS) to establish a mutually authenticated tunnel. Within the tunnel, Type-Length-Value (TLV) objects are used to convey authentication related data between the peer and the EAP server. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4851"/>
          <seriesInfo name="DOI" value="10.17487/RFC4851"/>
        </reference>
        <reference anchor="RFC4945">
          <front>
            <title>The Internet IP Security PKI Profile of IKEv1/ISAKMP, IKEv2, and PKIX</title>
            <author fullname="B. Korver" initials="B." surname="Korver"/>
            <date month="August" year="2007"/>
            <abstract>
              <t>The Internet Key Exchange (IKE) and Public Key Infrastructure for X.509 (PKIX) certificate profile both provide frameworks that must be profiled for use in a given application. This document provides a profile of IKE and PKIX that defines the requirements for using PKI technology in the context of IKE/IPsec. The document complements protocol specifications such as IKEv1 and IKEv2, which assume the existence of public key certificates and related keying materials, but which do not address PKI issues explicitly. This document addresses those issues. The intended audience is implementers of PKI for IPsec. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4945"/>
          <seriesInfo name="DOI" value="10.17487/RFC4945"/>
        </reference>
        <reference anchor="RFC4962">
          <front>
            <title>Guidance for Authentication, Authorization, and Accounting (AAA) Key Management</title>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <author fullname="B. Aboba" initials="B." surname="Aboba"/>
            <date month="July" year="2007"/>
            <abstract>
              <t>This document provides guidance to designers of Authentication, Authorization, and Accounting (AAA) key management protocols. The guidance is also useful to designers of systems and solutions that include AAA key management protocols. Given the complexity and difficulty in designing secure, long-lasting key management algorithms and protocols by experts in the field, it is almost certainly inappropriate for IETF working groups without deep expertise in the area to be designing their own key management algorithms and protocols based on Authentication, Authorization, and Accounting (AAA) protocols. The guidelines in this document apply to documents requesting publication as IETF RFCs. Further, these guidelines will be useful to other standards development organizations (SDOs) that specify AAA key management. 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="132"/>
          <seriesInfo name="RFC" value="4962"/>
          <seriesInfo name="DOI" value="10.17487/RFC4962"/>
        </reference>
        <reference anchor="RFC5247">
          <front>
            <title>Extensible Authentication Protocol (EAP) Key Management Framework</title>
            <author fullname="B. Aboba" initials="B." surname="Aboba"/>
            <author fullname="D. Simon" initials="D." surname="Simon"/>
            <author fullname="P. Eronen" initials="P." surname="Eronen"/>
            <date month="August" year="2008"/>
            <abstract>
              <t>The Extensible Authentication Protocol (EAP), defined in RFC 3748, enables extensible network access authentication. This document specifies the EAP key hierarchy and provides a framework for the transport and usage of keying material and parameters generated by EAP authentication algorithms, known as "methods". It also provides a detailed system-level security analysis, describing the conditions under which the key management guidelines described in RFC 4962 can be satisfied. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5247"/>
          <seriesInfo name="DOI" value="10.17487/RFC5247"/>
        </reference>
        <reference anchor="RFC5272">
          <front>
            <title>Certificate Management over CMS (CMC)</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <author fullname="M. Myers" initials="M." surname="Myers"/>
            <date month="June" year="2008"/>
            <abstract>
              <t>This document defines the base syntax for CMC, a Certificate Management protocol using the Cryptographic Message Syntax (CMS). This protocol addresses two immediate needs within the Internet Public Key Infrastructure (PKI) community:</t>
              <t>1. The need for an interface to public key certification products and services based on CMS and PKCS #10 (Public Key Cryptography Standard), and</t>
              <t>2. The need for a PKI enrollment protocol for encryption only keys due to algorithm or hardware design.</t>
              <t>CMC also requires the use of the transport document and the requirements usage document along with this document for a full definition. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5272"/>
          <seriesInfo name="DOI" value="10.17487/RFC5272"/>
        </reference>
        <reference anchor="RFC5280">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
            <author fullname="D. Cooper" initials="D." surname="Cooper"/>
            <author fullname="S. Santesson" initials="S." surname="Santesson"/>
            <author fullname="S. Farrell" initials="S." surname="Farrell"/>
            <author fullname="S. Boeyen" initials="S." surname="Boeyen"/>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <author fullname="W. Polk" initials="W." surname="Polk"/>
            <date month="May" year="2008"/>
            <abstract>
              <t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet. An overview of this approach and model is provided as an introduction. The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms. Standard certificate extensions are described and two Internet-specific extensions are defined. A set of required certificate extensions is specified. The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions. An algorithm for X.509 certification path validation is described. An ASN.1 module and examples are provided in the appendices. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5280"/>
          <seriesInfo name="DOI" value="10.17487/RFC5280"/>
        </reference>
        <reference anchor="RFC5281">
          <front>
            <title>Extensible Authentication Protocol Tunneled Transport Layer Security Authenticated Protocol Version 0 (EAP-TTLSv0)</title>
            <author fullname="P. Funk" initials="P." surname="Funk"/>
            <author fullname="S. Blake-Wilson" initials="S." surname="Blake-Wilson"/>
            <date month="August" year="2008"/>
            <abstract>
              <t>EAP-TTLS is an EAP (Extensible Authentication Protocol) method that encapsulates a TLS (Transport Layer Security) session, consisting of a handshake phase and a data phase. During the handshake phase, the server is authenticated to the client (or client and server are mutually authenticated) using standard TLS procedures, and keying material is generated in order to create a cryptographically secure tunnel for information exchange in the subsequent data phase. During the data phase, the client is authenticated to the server (or client and server are mutually authenticated) using an arbitrary authentication mechanism encapsulated within the secure tunnel. The encapsulated authentication mechanism may itself be EAP, or it may be another authentication protocol such as PAP, CHAP, MS-CHAP, or MS-CHAP-V2. Thus, EAP-TTLS allows legacy password-based authentication protocols to be used against existing authentication databases, while protecting the security of these legacy protocols against eavesdropping, man-in-the-middle, and other attacks. The data phase may also be used for additional, arbitrary data exchange. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5281"/>
          <seriesInfo name="DOI" value="10.17487/RFC5281"/>
        </reference>
        <reference anchor="RFC5421">
          <front>
            <title>Basic Password Exchange within the Flexible Authentication via Secure Tunneling Extensible Authentication Protocol (EAP-FAST)</title>
            <author fullname="N. Cam-Winget" initials="N." surname="Cam-Winget"/>
            <author fullname="H. Zhou" initials="H." surname="Zhou"/>
            <date month="March" year="2009"/>
            <abstract>
              <t>The Flexible Authentication via Secure Tunneling Extensible Authentication Protocol (EAP-FAST) method enables secure communication between a peer and a server by using Transport Layer Security (TLS) to establish a mutually authenticated tunnel. Within this tunnel, a basic password exchange, based on the Generic Token Card method (EAP-GTC), may be executed to authenticate the peer. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5421"/>
          <seriesInfo name="DOI" value="10.17487/RFC5421"/>
        </reference>
        <reference anchor="RFC5422">
          <front>
            <title>Dynamic Provisioning Using Flexible Authentication via Secure Tunneling Extensible Authentication Protocol (EAP-FAST)</title>
            <author fullname="N. Cam-Winget" initials="N." surname="Cam-Winget"/>
            <author fullname="D. McGrew" initials="D." surname="McGrew"/>
            <author fullname="J. Salowey" initials="J." surname="Salowey"/>
            <author fullname="H. Zhou" initials="H." surname="Zhou"/>
            <date month="March" year="2009"/>
            <abstract>
              <t>The Flexible Authentication via Secure Tunneling Extensible Authentication Protocol (EAP-FAST) method enables secure communication between a peer and a server by using Transport Layer Security (TLS) to establish a mutually authenticated tunnel. EAP- FAST also enables the provisioning credentials or other information through this protected tunnel. This document describes the use of EAP-FAST for dynamic provisioning. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5422"/>
          <seriesInfo name="DOI" value="10.17487/RFC5422"/>
        </reference>
        <reference anchor="RFC5652">
          <front>
            <title>Cryptographic Message Syntax (CMS)</title>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <date month="September" year="2009"/>
            <abstract>
              <t>This document describes the Cryptographic Message Syntax (CMS). This syntax is used to digitally sign, digest, authenticate, or encrypt arbitrary message content. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="70"/>
          <seriesInfo name="RFC" value="5652"/>
          <seriesInfo name="DOI" value="10.17487/RFC5652"/>
        </reference>
        <reference anchor="RFC5931">
          <front>
            <title>Extensible Authentication Protocol (EAP) Authentication Using Only a Password</title>
            <author fullname="D. Harkins" initials="D." surname="Harkins"/>
            <author fullname="G. Zorn" initials="G." surname="Zorn"/>
            <date month="August" year="2010"/>
            <abstract>
              <t>This memo describes an Extensible Authentication Protocol (EAP) method, EAP-pwd, which uses a shared password for authentication. The password may be a low-entropy one and may be drawn from some set of possible passwords, like a dictionary, which is available to an attacker. The underlying key exchange is resistant to active attack, passive attack, and dictionary attack. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5931"/>
          <seriesInfo name="DOI" value="10.17487/RFC5931"/>
        </reference>
        <reference anchor="RFC6066">
          <front>
            <title>Transport Layer Security (TLS) Extensions: Extension Definitions</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
            <date month="January" year="2011"/>
            <abstract>
              <t>This document provides specifications for existing TLS extensions. It is a companion document for RFC 5246, "The Transport Layer Security (TLS) Protocol Version 1.2". The extensions specified are server_name, max_fragment_length, client_certificate_url, trusted_ca_keys, truncated_hmac, and status_request. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6066"/>
          <seriesInfo name="DOI" value="10.17487/RFC6066"/>
        </reference>
        <reference anchor="RFC6124">
          <front>
            <title>An EAP Authentication Method Based on the Encrypted Key Exchange (EKE) Protocol</title>
            <author fullname="Y. Sheffer" initials="Y." surname="Sheffer"/>
            <author fullname="G. Zorn" initials="G." surname="Zorn"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <author fullname="S. Fluhrer" initials="S." surname="Fluhrer"/>
            <date month="February" year="2011"/>
            <abstract>
              <t>The Extensible Authentication Protocol (EAP) describes a framework that allows the use of multiple authentication mechanisms. This document defines an authentication mechanism for EAP called EAP-EKE, based on the Encrypted Key Exchange (EKE) protocol. This method provides mutual authentication through the use of a short, easy to remember password. Compared with other common authentication methods, EAP-EKE is not susceptible to dictionary attacks. Neither does it require the availability of public-key certificates. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6124"/>
          <seriesInfo name="DOI" value="10.17487/RFC6124"/>
        </reference>
        <reference anchor="RFC6678">
          <front>
            <title>Requirements for a Tunnel-Based Extensible Authentication Protocol (EAP) Method</title>
            <author fullname="K. Hoeper" initials="K." surname="Hoeper"/>
            <author fullname="S. Hanna" initials="S." surname="Hanna"/>
            <author fullname="H. Zhou" initials="H." surname="Zhou"/>
            <author fullname="J. Salowey" initials="J." role="editor" surname="Salowey"/>
            <date month="July" year="2012"/>
            <abstract>
              <t>This memo defines the requirements for a tunnel-based Extensible Authentication Protocol (EAP) Method. This tunnel method will use Transport Layer Security (TLS) to establish a secure tunnel. The tunnel will provide support for password authentication, EAP authentication, and the transport of additional data for other purposes. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6678"/>
          <seriesInfo name="DOI" value="10.17487/RFC6678"/>
        </reference>
        <reference anchor="RFC6960">
          <front>
            <title>X.509 Internet Public Key Infrastructure Online Certificate Status Protocol - OCSP</title>
            <author fullname="S. Santesson" initials="S." surname="Santesson"/>
            <author fullname="M. Myers" initials="M." surname="Myers"/>
            <author fullname="R. Ankney" initials="R." surname="Ankney"/>
            <author fullname="A. Malpani" initials="A." surname="Malpani"/>
            <author fullname="S. Galperin" initials="S." surname="Galperin"/>
            <author fullname="C. Adams" initials="C." surname="Adams"/>
            <date month="June" year="2013"/>
            <abstract>
              <t>This document specifies a protocol useful in determining the current status of a digital certificate without requiring Certificate Revocation Lists (CRLs). Additional mechanisms addressing PKIX operational requirements are specified in separate documents. This document obsoletes RFCs 2560 and 6277. It also updates RFC 5912.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6960"/>
          <seriesInfo name="DOI" value="10.17487/RFC6960"/>
        </reference>
        <reference anchor="RFC6961">
          <front>
            <title>The Transport Layer Security (TLS) Multiple Certificate Status Request Extension</title>
            <author fullname="Y. Pettersen" initials="Y." surname="Pettersen"/>
            <date month="June" year="2013"/>
            <abstract>
              <t>This document defines the Transport Layer Security (TLS) Certificate Status Version 2 Extension to allow clients to specify and support several certificate status methods. (The use of the Certificate Status extension is commonly referred to as "OCSP stapling".) Also defined is a new method based on the Online Certificate Status Protocol (OCSP) that servers can use to provide status information about not only the server's own certificate but also the status of intermediate certificates in the chain.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6961"/>
          <seriesInfo name="DOI" value="10.17487/RFC6961"/>
        </reference>
        <reference anchor="RFC7029">
          <front>
            <title>Extensible Authentication Protocol (EAP) Mutual Cryptographic Binding</title>
            <author fullname="S. Hartman" initials="S." surname="Hartman"/>
            <author fullname="M. Wasserman" initials="M." surname="Wasserman"/>
            <author fullname="D. Zhang" initials="D." surname="Zhang"/>
            <date month="October" year="2013"/>
            <abstract>
              <t>As the Extensible Authentication Protocol (EAP) evolves, EAP peers rely increasingly on information received from the EAP server. EAP extensions such as channel binding or network posture information are often carried in tunnel methods; peers are likely to rely on this information. Cryptographic binding is a facility described in RFC 3748 that protects tunnel methods against man-in-the-middle attacks. However, cryptographic binding focuses on protecting the server rather than the peer. This memo explores attacks possible when the peer is not protected from man-in-the-middle attacks and recommends cryptographic binding based on an Extended Master Session Key, a new form of cryptographic binding that protects both peer and server along with other mitigations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7029"/>
          <seriesInfo name="DOI" value="10.17487/RFC7029"/>
        </reference>
        <reference anchor="RFC7170">
          <front>
            <title>Tunnel Extensible Authentication Protocol (TEAP) Version 1</title>
            <author fullname="H. Zhou" initials="H." surname="Zhou"/>
            <author fullname="N. Cam-Winget" initials="N." surname="Cam-Winget"/>
            <author fullname="J. Salowey" initials="J." surname="Salowey"/>
            <author fullname="S. Hanna" initials="S." surname="Hanna"/>
            <date month="May" year="2014"/>
            <abstract>
              <t>This document defines the Tunnel Extensible Authentication Protocol (TEAP) version 1. TEAP is a tunnel-based EAP method that enables secure communication between a peer and a server by using the Transport Layer Security (TLS) protocol to establish a mutually authenticated tunnel. Within the tunnel, TLV objects are used to convey authentication-related data between the EAP peer and the EAP server.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7170"/>
          <seriesInfo name="DOI" value="10.17487/RFC7170"/>
        </reference>
        <reference anchor="RFC7542">
          <front>
            <title>The Network Access Identifier</title>
            <author fullname="A. DeKok" initials="A." surname="DeKok"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>In order to provide inter-domain authentication services, it is necessary to have a standardized method that domains can use to identify each other's users. This document defines the syntax for the Network Access Identifier (NAI), the user identifier submitted by the client prior to accessing resources. This document is a revised version of RFC 4282. It addresses issues with international character sets and makes a number of other corrections to RFC 4282.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7542"/>
          <seriesInfo name="DOI" value="10.17487/RFC7542"/>
        </reference>
        <reference anchor="RFC8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton"/>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <author fullname="T. Narten" initials="T." surname="Narten"/>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters. To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper. For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed. This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
        <reference anchor="RFC9325">
          <front>
            <title>Recommendations for Secure Use of Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS)</title>
            <author fullname="Y. Sheffer" initials="Y." surname="Sheffer"/>
            <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre"/>
            <author fullname="T. Fossati" initials="T." surname="Fossati"/>
            <date month="November" year="2022"/>
            <abstract>
              <t>Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS) are used to protect data exchanged over a wide range of application protocols and can also form the basis for secure transport protocols. 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 the latest recommendations for ensuring the security of deployed services that use TLS and DTLS. These recommendations are applicable to the majority of use cases.</t>
              <t>RFC 7525, an earlier version of the TLS recommendations, was published when the industry was transitioning 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 and obsoletes RFC 7525. In addition, this document updates RFCs 5288 and 6066 in view of recent attacks.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="195"/>
          <seriesInfo name="RFC" value="9325"/>
          <seriesInfo name="DOI" value="10.17487/RFC9325"/>
        </reference>
        <reference anchor="X.690">
          <front>
            <title>SN.1 encoding rules: Specification of Basic Encoding Rules (BER), Canonical Encoding Rules (CER) and Distinguished Encoding Rules (DER)</title>
            <author initials="" surname="ITU-T" fullname="ITU-T">
              <organization/>
            </author>
            <date year="2008" month="November"/>
          </front>
        </reference>
        <reference anchor="RFC4949">
          <front>
            <title>Internet Security Glossary, Version 2</title>
            <author fullname="R. Shirey" initials="R." surname="Shirey"/>
            <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="RFC6238">
          <front>
            <title>TOTP: Time-Based One-Time Password Algorithm</title>
            <author fullname="D. M'Raihi" initials="D." surname="M'Raihi"/>
            <author fullname="S. Machani" initials="S." surname="Machani"/>
            <author fullname="M. Pei" initials="M." surname="Pei"/>
            <author fullname="J. Rydell" initials="J." surname="Rydell"/>
            <date month="May" year="2011"/>
            <abstract>
              <t>This document describes an extension of the One-Time Password (OTP) algorithm, namely the HMAC-based One-Time Password (HOTP) algorithm, as defined in RFC 4226, to support the time-based moving factor. The HOTP algorithm specifies an event-based OTP algorithm, where the moving factor is an event counter. The present work bases the moving factor on a time value. A time-based variant of the OTP algorithm provides short-lived OTP values, which are desirable for enhanced security.</t>
              <t>The proposed algorithm can be used across a wide range of network applications, from remote Virtual Private Network (VPN) access and Wi-Fi network logon to transaction-oriented Web applications. The authors believe that a common and shared algorithm will facilitate adoption of two-factor authentication on the Internet by enabling interoperability across commercial and open-source implementations. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6238"/>
          <seriesInfo name="DOI" value="10.17487/RFC6238"/>
        </reference>
        <reference anchor="RFC8146">
          <front>
            <title>Adding Support for Salted Password Databases to EAP-pwd</title>
            <author fullname="D. Harkins" initials="D." surname="Harkins"/>
            <date month="April" year="2017"/>
            <abstract>
              <t>EAP-pwd is an Extensible Authentication Protocol (EAP) method that utilizes a shared password for authentication using a technique that is resistant to dictionary attacks. It includes support for raw keys and double hashing of a password in the style of Microsoft Challenge Handshake Authentication Protocol version 2 (MSCHAPv2), but it does not include support for salted passwords. There are many existing databases of salted passwords, and it is desirable to allow their use with EAP-pwd.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8146"/>
          <seriesInfo name="DOI" value="10.17487/RFC8146"/>
        </reference>
        <reference anchor="RFC7299">
          <front>
            <title>Object Identifier Registry for the PKIX Working Group</title>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <date month="July" year="2014"/>
            <abstract>
              <t>When the Public-Key Infrastructure using X.509 (PKIX) Working Group was chartered, an object identifier arc was allocated by IANA for use by that working group. This document describes the object identifiers that were assigned in that arc, returns control of that arc to IANA, and establishes IANA allocation policies for any future assignments within that arc.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7299"/>
          <seriesInfo name="DOI" value="10.17487/RFC7299"/>
        </reference>
        <reference anchor="RFC4334">
          <front>
            <title>Certificate Extensions and Attributes Supporting Authentication in Point-to-Point Protocol (PPP) and Wireless Local Area Networks (WLAN)</title>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <author fullname="T. Moore" initials="T." surname="Moore"/>
            <date month="February" year="2006"/>
            <abstract>
              <t>This document defines two Extensible Authentication Protocol (EAP) extended key usage values and a public key certificate extension to carry Wireless LAN (WLAN) System Service identifiers (SSIDs). This document obsoletes RFC 3770. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4334"/>
          <seriesInfo name="DOI" value="10.17487/RFC4334"/>
        </reference>
      </references>
    </references>
    <section anchor="contributors" numbered="false" toc="include" removeInRFC="false">
      <name>Contributors</name>
      <contact initials="H." surname="Zhou" fullname="Han Zhou">
        <organization/>
        <address>
      </address>
      </contact>
      <contact initials="J." surname="Salowey" fullname="Joseph Salowey">
        <organization/>
        <address>
          <email>joe@salowey.net</email>
        </address>
      </contact>
      <contact initials="N." surname="Cam-Winget" fullname="Nancy Cam-Winget">
        <organization/>
        <address>
          <email>ncamwing@cisco.com</email>
        </address>
      </contact>
      <contact initials="S." surname="Hanna" fullname="Steve Hanna">
        <organization/>
        <address>
          <email>steve.hanna@infineon.com</email>
        </address>
      </contact>
    </section>
  </back>
  <!-- ##markdown-source:
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
REfTECbv86enGmXCGJMzC31bbL/KWdmkbh+8RbWWncSmDxdcFM6oRwsXrVNr
sGO4zpPShbjaXMosKd2mkUrsrBhq6aqaz3SeXK75fSFR5oSRWie14IK4cZaE
rSk73A/MpWw9kiwtPOx0yFHGQU9aV81EPFwRuCs5m9y8nnvb5gMLQ2VSYqnk
bqzYNX6hSg/wzcW6JazVHrzHZN5iNj6ynXmKQkuW5mIxDAzCRSL7OTEWzcUd
dhOKfJjPLSmn7LT6cqLWANSfBjrGyLI+WKIFPGnk67GkgQPjZlG0A0V0jLfB
1svJMaaGdar8bkg2txIIWm3NMtVdaClZdvn0j/3RplR0VdIT/IQOfLtW5UmH
26m0vJN19RoJD+4n4Rgpqe4XC1Eub+ht4ngqtGxiTaBLf4PfJZMCpZok/BLL
L/24nEt8RwzAIhCcOxTHdljM7hk3v1jlILkZhyE4RLYqL+6wQAj7t/RAt5wV
rycbq7XLoe4mufpmmuAQL2ryi5som1bTSuIwLa1J1Vn6UKFQTD9S7vNUoabR
ikvVrHroY1o0SjIUCFqIhe4mDs3QhYk3zrgiM4bdMHxmiJFbVLelrfGEE2LS
TOpA+SBT5UN9BDHN0OjMhGlSp67ptd0BWekLZ2cVvtyhI5jVjW624XJKtDxe
LnEsUh4BD/u80lo3ybzYl80R3kVtIROgAbhy5LqO11c9iLDO8Di61fitQ2Yi
kipQwtTYsqLVqBPGy+bMOQfN3LDyj8eV0SbcK7JA8pKySbGBdHV+YqW9g0a9
SsgrNyA3retXuHMebxjaE6knkfALMia0Vegee9Kwq5YDb/AayzGMkOx4yBlH
LlmOELOXxaV0tABRsG24PJvPukC77qwgYHgKaZBBqH9MkvFvutgdVV3+J7MN
DSmgugJVbxOLWYLY6jD0WYTneKMAsqaPKNqi1ORqebPAublvtjMurOjTtAhv
iVoL6vLwbckLrCHY7JIMLhD7qIhpSKbGrhk/L3XWxlS8NllBwsINUkUGX7im
05+0yt0ZfpH/ysoziLC6cRmd0Ck908RdxxT4NG3D+3JJ6WuDJW3koc4gqGaP
IppxmiZjqC9vkqxRuPjTcKBe5UnQJjw+a9MtLq11aNWo7HfNkIWYa1BhOfe1
xcBYMFGIFePkImupXprGEKLYLQ9TtJ/daLjicUET/FhxyxF6Dd33vuFoDNcL
1fQ1KfYU7RO8P/A8oiNzem2nViRl2GIvHk0rlpUaZZTrSLm/5MloN+4fldFL
lkatBN0Z7Pga40Rw05aLvCaCSsIhMORSuA/5ki36h/KeuA7hUvNf5glXE/7H
bSWyitikmX6b3marWIpg0LO8ThXCGPmsDJYu7ymwv7z1CDA6CTY8UHq52m/x
W1CC0qBGlshiPONNCkhC/LX4uOLa6UIJ3ZHTvUzVwDQvQpE/tEa8kxjf+Fn5
0s1sJBsSIUNIXuLsXo6m7ea2OsQV1nnPb4Kr94QdnZLHI3vz/Ynq8N+ak5B2
VswGD/bhYHOw+Jvvj0+/2dul7aPfH5CNcESWnGLKahRlSPG9rNHDrq8gfYm5
Ks+0Tbc2+ggNYP/RQ8xQBEGnmtF8pMrVeTW74SXQFtDWstUUBWuQ76fN3i6H
eHonqolHVHs4D8kqyOyToT2QYdzfQ+iO9VLCfrbKHVAtZgWnlbfFdnbPzaAJ
r4Es75lxvzv6rDP6Bzb4oIN/wGMX6ZSTU7pyNao6hAq+nGkpZzJfW+grfEg5
KlFqoRwrNiekNBMYbYMWZtYHdSAhaV4u3yehteIDqC7G8H/k9FbBNEQ7jw+k
9AWYN2gnnKgeYr6lHQ1Z+jjuMgKIOu1NtkSzG1QsFBOkuzZdhBbbL80HQ+gG
wJmpXHAHfvbesRidxETdaHjVvYHYNdNjQ7SBGaYVD6UfWiej0bIHOp8IsHKc
rMAplkamCBie6Nbx6dshPFxZ69DryAWS6l3UT0crG3laQov8aVLYp3sxjKq9
EnEiWr3aalrN1SfCcHHuibFE1QzVFb3Hs8lrjwsn44jpgBofZbhRXAU65sok
ea0thUd1nkUR5wt7vOU2eRRcPN62Aq47PgvrHYuQjoiu75FEXrxLvlLSeUDZ
2B5CTYS33p6VXGV2fHQwVuaSN67wrthmhAFJ8U8QqKsLLhp/cIRQdeYdFl84
mWXbmhlBlmKFJsfOLCNTxS8y0CKOH95S5n2IvUQx8YAX6gzzMTa8SrhZi1KC
2vYPDxW1bUubeQDNPLKpHO7TqsWsHyIWdGZ8ZIElqcIsAQmGiE8lVchMFSOe
IuyaAl7H5e+EhWPmYrEAmtJ0kKHVSplUb97BhVxjFgKFefukvjZJY5qVM1LP
FYoWKblaqU2GCdegcPxwt1BWY/KBo66QH43L4vQpvhS+NDjv7VRRFsbK1ugu
K3OvqVGwWDbruoiiWujx9ci0CWsD5xGBH6jET/fCMDZrBb8QhDxeSAq0GE3e
MofbpKDIeLvObvawRgIkGen0xeSHH4jp3WhU8Ch62ouPDgCVfFho42BbWhMT
TiR//sI8XQkEgV9vBTDtOwW/zmf9R8w6RO+X5JeR6isiVTSpwFapqMMMoxDn
aleuPa4o+zSTIpYNSBIWG1QsufJVFYlFCBuuLPO7JGFpIu2l5Z/LRnWPDh0I
mPOZtFi2TTG/iAjKjWT55EmWTNo2/D+9Xiesb2F5kuPJtmY641HqCN0mOp1R
GAXlE5KIR0NpJDXso/laNBiM6lfmpEMgzuGasRa7B4cKz8SzbIV4MGiTFMOR
CwkgeOTpPC+5uqtYJlZXNw16prTU0ogzUdyf7dRQeHroKCwMNanpiq2lPm8p
mBKdbC4ZcxNxxMIM0PwliARzKX1H6UyKqRZjZJNXugWMYJ0nsix1cYFIishC
ibOnDLlQCyiOSxpH2pEQXI6XJSUPjbrBfeqezpPxEPggB/USf1UanJBxblHN
kNgJJeuCAaecKx1HgfK4pAPxiqK8OS3hZi8VlWd5Exi1KvGhchXFBu81SwP9
U8FyjK3/vck9FmomqJHkS27xnhH2vZFEN9DDb+Xh07f69D3hjPd6cNEUoUSQ
BwzbDRNGCydwEjogvKdznGKTOSTyyMxxi9Ay8Rrt2BIllUZ8DQr+hRP32Qzn
7aRwKrby820PDKkRhJjB2sSCjUsLQHSUFLrkMnUhjGJeEeQhohIqWE+fvjg7
e3NqJwhtDskpYrSxJMlvyARLgFa4fIRKRisiwjOicS4N5AvvEeQIUz6IoMI5
yDUxNpNJIgYvHE/Y2urDGWKCA369bTcoHpweOFR8cc2QYMkRNIS04IGOePnI
eUBwCccTPu20brgiQ6Opb2iwaZ+DkHFYFQrXXa5H7Y/O2TJozGeyCGqbso90
gfVlsg+eF65qKDIT42xD0FmkpqsCWZILHhpH/wXOlxf1WlwOfMmze5Ne4Rs7
bS8JdYsOdkX/Im8cE3KkBxJc9fJfiyrW1fRNoyd/ctlaWJGPZBaFWCxd5oxG
7/OPHK+IDFEwqh7sP2KVN6EGGvZs/H6F5Qdfw9b8MHklsFMH9+8fgMREnYT0
eA3IvWXPvmWrccHRxIxIpidzR2UO3GDksuSswqwnrjbOIYqEGSMhsaKYE0cg
kQDz+XYCFU4DnkZiwWVuOqZ5BbWalS9mK2H/1+z5CBFcr6JSb+clqAoCJNLJ
uAVOeU3+OMQmULhvQzaUA41AnVQklZaXzFiKwfu+EFUuR7tNfs1qOfsGZcAC
PimlFrV+JMdqZD92/E+JtfElyoyfhvz1n8lYdNc2Rnx1pjE/EaTI0jM7Xh/V
U7uhHgaIE7rGsSrJs+oA+PWDJmJJ4IHQjZGZwEBzCDGzjsfFofAlCXF0lTPq
lcljhoYF0vqM2TOVNI8gYUsBdlPHaXeE6ukaLoJl4W7P+Oh1sswEuI0gR25U
YoN7H4tUmhKpyHAOhM5AdJ99/4w/P9rbP0B1Hl1wKJn14KRJ+C07MuICKaeg
QjKNGD+rFnHNVljAB21azAljPBDu8ZyWkA9jqXWNNoQ8hCT4dy9uMs1NouJp
cZEUYkEYbxcIEVrJwfnKrnejmBhCzBoKiYHBNWQBQR09g2yka6fTw0FfW6kd
J0G7Ih9VEqOBjI9CFlgoVKwRh1yUFiRsu5FC8UykdZ7VJRbLpm6AHEILQ79Z
Ag0kD0uS4orXPan9YslbdiDiyJSNthRyn0itNeJPp67oK7kS7sqrMJtcrCIc
y59sEogS756+eIdu53d/Ojl78W7y7PTd3v7Dd8ffHb8DTb6rAhHaKV/Td+d0
uMV8RZt7OyEVrieFsfXmr4FloCgxwVEl1M26GC84CMxCSkJUxkmAQNG2LqG/
UpF+rNxfE13/Ep/SLQwtoNIi2g5PLwxMr+PgZTXFIkKS0srLkO43M70C5C9U
XO/aJVFJrwyZ+nKa7N/Rme1CtEOX4okwV8VypNB7YhXy1YMZwhkvY8kySCx+
Cc6UxJCw+3VtwYIZjprPMkPYkwJY0vE+p1jLGDazsaqDnT/EeVnAjcQpJ3rR
hi+SHy2xBJKTAOAApukQIl8OFJCCsMlchxdP6Lcdo4riIygadGxBlqGtQtzo
G4riER3d4+RvMCuILN1Nv+riZCac31nDKHYNOcp87suG+xBGoQUFWCKVlrmQ
CfJc28YrY7wWKlQuOT5B0PwcjRcgVDVjDOlfSbAZ3SvmyU+c7s0dGAdlfwnw
7EauUSoIcoLuYPDx6cPmlQa5BVjJVNEL+5l/o2yyorC5j9nxzuHnz9si0cuT
o17EhF2PqWqeyGpCGRrb2AtySkSFcw5wuyUQGrahXAY2iBBCfNuwXr+0tLyO
7yawkfbo6AEiW7Ajr+lGjjcKpqzSEoZmsz1kThHWryan9+gsu89k+vU9rW3X
jMx3HKO8nbxhVupLMm30ob/FPVDnU5TOGlijxt/7GNBg0emD1ktxq0460uvE
x4wwT5pMp2hqpHjVyWSyHUPH1cHmvBm3CZ0kanHCqEcw8Ube7ihVQux5KICT
RMsvK1BZPyc9dcJYMUBRvsumYy3G/KJiPtcrNXFHM/yQLn73VQ1Eluu54ZrS
KeU4a7sQXoJR2Ski0XHPdGqqeiv/dY5JF23lwxrDbd6dTgZi2SoEogAHhYHh
dbRt87v4amlW71RM8TqepKTsUNsuNynv+qWCRkYMlOvik5rmQ6tI3AwugzVm
kHWShTM0LIm/F7zYqdyUiXAdPWwO17fbaYwNn0WihSOLWrzunUF+3rZxsq4u
W1VMAIxGe+MobAiLMCYVYCsDM+6VvuN45yLmz9iuJByJQk7KloUu0ys60csz
v264FF6Bd8KVyRHIpC3T4Dm7pbNPXUf1524yqqQ6u3xUbNySZ6UdxZPnPCVq
gdEvyBRSw80vthg6LPPigvT1muwp5dLiJs9v2oKjXxzOUjpmhp5GuBvTzOip
nhNR8BbEH1RSLbjrJePj7Chy0W7W/9kb+Gx/4LP7+PoefHU/O8gOs6PsQfYw
e/Q1n4V/HP83/xd+pqFQpgj94N8RkIr/tp8fGPjA//z8i42B0JlsDM8R4wR+
+wkGYWPQneyM4/EvMIbH2e2dxHUwTBh54hfrvNuwW2T7DSW6p+hD29n5xRbe
9dzcqV1B4kKiwfRbcpghAVkUCAVHY+gHnk1ByyDTi0cBywwF7El48gQIXE4g
/IF/71tYH2ggDiGN+3MkOtArua9Kth9SHiyzfa1R/YS5ribvCJvtNWkofIKb
jUVB8ukVvK4BW8wiNr0vIliXoVAK0BMeFz3Qe9EEghQXU6/4EITwZC2EWmwd
sPiLBN6wvSuG1xS6G8L5OJ9VBhadk63s6MiNbST9jOigjviAjvB8Yjp6emhG
Rqc9sHNm6+gPk4KO7C2RjPZai3S03XlFjb1FjFKmIOwh+6FcvmdII5rKjAWb
pX9FcUQqV86W8z2JgA8PLUc2BJpXCI7FGfN1H/rT4M7pD9nL7DR7nb39ecOz
+vEPxkwVkvaPpM53xTp2uE4julC1rse0ua6DDsdS5M2T1khYMTDVFke1gFwL
mizMXif9C1YsYtycuIrPaYuuHdLtxLUlGEP67Uv4P/pwLC+ZJ0yppXOzqc5z
xL+WR+LLp5mI2JjdzS9GqKNTSvlWiYJH1YHMBvUkDlJlvtj8a89853/Dvvil
tB3qM/RbdkbRSdNhany+E1lj8r1i4UUpWB53jeiqUOCN7qqkUZQbRiEYwm5K
VDmqvytvM2RuuMKzbEubQoQk5jty6NYGpb1qt0P4SZl42aSxGcyftF6CxX2Z
A/3MlwszlIRzLsFA7+xlW7u7e0gZIBaDfLftYAHTM6Ksc+jkcDGwdZ3w0C6M
rMKY/ABdsXAo94DNKvEgtBViFqS8V7aGOF/eKqKzO3tW7ZAMciIPJ8DLDBuA
URhdmUTmN0yBd5uhsOTXf/MMoQHH+GHJpAPkvHI94Dgty1c/jIOUFxQuHK0J
jYbYGcxXMRM4GbvGPGAci++x+IuB7sEwWcZE3ecJ3mOcVitBRMiQ6CGiZ5lX
OsKRyxAlQImZM3LmVhjHomwkR2WIv8I1KZOYpCBkFJyDnz+Hs02qWWSscXF7
223GFyU2CzMlWlJ//VUxX0XHrWy4rz3Dmqqt4Zmm13BqA4pvDkOR7pQnJH4o
azIkt04wjGQXuvfQI8nMetxWY04cdsYBZkH4MX4dH+6CsOFVAGPQeqZuPdhS
zNVWnYiFA0vOBpPDBtYdlUr86nksPaDOrk/fIPIsWodEIRZ9OCkIbthihGJE
mMIqhLpP0ugltPczdGlew4GsUX1FULgFQh3HzAQfiSVeYLXfOqvghsqCZ87S
aTnLWsSjRKZgNajwzm51XtEJ5hGvNKP7TLGtOKArDdwfRXBN4CQKzBv4BZlM
tEtiIhhxRUra1qoWrvfUWBvNL68m3zuDygLz09oKVpBY21LbctUnKOs4aGiB
2gm4Q8X36hRjQb+uWKHEC23vc/uLvH6PB1h771zDAnAlQ9VMB73tNc6Sl51l
LOary8SgYuVzBHoUxxg8VcRhCk4XBnXENbR6CFhRjwecNxalbkYuF3LceduJ
N9FcRdMKwktkOSzgu7suxHvVu7mEE9u0VSVlk0wEpRW4JiiqZN14U7hMKa9O
bjdtTonM1JnxQ2x0iZoj18bW3nwos6UPO2igCItEV6ZY73lbKPrLlVgLWulC
XUxJOR+aKgN/qD9W7Y+RGBicYWhS2cCkEt9V3t12qmiUEKZZ55ODEVDuxa1Q
TiCro04ic95IvryLQUugTbOUuKgzedcoLd1qbyfo4yFjI11k2yEcSAa5yDcj
4ibhQ8HXD2m6rocU3s2W6VtdcVyrlrxRij3MlNgb0tISOSt2W2wekeh7akfF
nX8cwj/EsPbxyVPyVPyDaOnwCdnQ+DNX/OQflI7gN0s2oEe6Rml8IEWbw9aH
obThm4HSXv+QfYclPMeaIjPG4cJb/3Hrt82KwQXRC/gvXO/X3bAoL9olYeaj
mBTGJlnFZtxoNg6J2ZhRaXunwwFWJkwKKVThfiWfmy94jjr2lcskXbmY2fGO
FdAFSxUGMa8uIygaKNGz4nx9eemdItK3u5Xwb+zpKudsUcZyY6BaSckRhyZ8
t+OS+mn9Yhj3Ip/j4IuZR7WW9AZKuA8xie1/i5375c9vE1s2rmM0Of+Gdu6N
Pz9RAsIvYthlA+1L1Atg517rZYdnDLED96jAtbB6OnhvA5k1WZkfqcmDdJ+t
3W06gBmbyybZ3sEY5SbRgagIg6G0ofQAj3EcTiV+JipGJPaUxzKmH5daiEFH
1OVrGRX+ye3TcsaJ1fT8ftZnetmmSkH0xv3M399bXPoL/3bPHGR249IDy/y9
+/Ywc6la9D3XUohPHGWDjsutTQ5kfusBbD1c99DSqSZZ21sf+Au9JdxbD7Mh
p+LWhpJm/M6jrMveZR6gsqz4Q/f03u7G4n680v7L3lru7WVvJsf89NNnb94+
O56cPXsq3+0PhSZubcAkk3fu33az8MvnKwLrgMH8h3/z4NZbJ2anHuzs7+wd
ykuHSYJ/J7mfHzlKEQy66AX8EDSAAE3FbCw1YN5WlVvEVr4U3beGL/3bDzEF
ZzxpOUYQjlFcqKYe5/a5f+dRPBovymU7cDRAD9ReOr6E1ET1E+cSqDeDzUVw
J9Dn+oov50dyD1/jveP8qXeWP/8vvV06V8vfx+1y8vRXuFrG6d3yFdcIsvxx
QiRf6dZKrMYp2UJbTwaoFrt4ktGR0Ljq4RBttYzFiKYquuugCQ8dk3/Iy3mu
UbSxEZb9ogtKsqrzaQ1anljaYpiknJn+lfapf5+JRan/rGD/96wmoktelayo
6tSCmQSaYo7yLDngOEMFm8QYPQPQSoqdcu0LrKBNQHQ77Jz5sDcMxR/VmbIR
veg1uxmK0J9EVKzVHO1NiK6opuqYUoRih+I6BCFOopvawWUyeLigKRS8Ysm1
SFaK224NlHCCgeWwy/G2zlT+CV/fE6E3dvIrBzuU1QlpnrllifVHN1B4U6S3
Ey75mb7CR6qX3kt+dz5AaS0cIJHS/MwCgaAvU3CrR7xJfd0SWpWUgoyjdMBq
vh5IZ8ID1GUTljHH05sWnfTUdMuCC2mauYNr710V0/fqIUoux9tf9oDdSYnc
9DVJSMylnK+1ouF/E2FVLly6jdG/aLuTOrKyTGmVzxBMZ5Stk6K6WHS3arnt
BG+322IXOJgQd2febeaMGsjTI5gCt87UJ86S6gtvGD31B0ZxFpsLR0DLsX7C
E8w96nNVl+vPOxJzAlPEDU03lUUkDWWoQW7lOtckJQM6toznfHMNcwUoIFeI
rYGxfcfxkwRYSefAUii4CeHHpofWw9nQ80YcOy8FYDQNRibaEl8CuyaIr3G4
+4DImZKnGQRlLCHm8Fqx2g7lpCnEsRzrhoHoHDVZ0737nizd/R60Zm5gw60L
olRMhqUre3dit2Flxbm4xiY9wxXfegnG9HRS0MvinsmO+3by9OTHU+SVT0v2
5qiPMg0Q1Rhjxi7cmM8fxOirlZg5p1XvYMot+lEha3Wf++seyNbsOlQsyqZA
wnPUl2DCkFvGFxvwkPtE18WsSQ6pnV/JHBNUDQGzSrKAcFj0JtbeTI5VN3+Z
hkFCShfkHVP1+/mmFxEVoHWrel4si4uSE0ORwITHYritw1LuLB5iAeQbqg4g
uDrnQM1vyGw41FVdrAqpXbXsNq6bobJmoLXAmf5RjxmyN0o6pRtaU3i06FC6
dzQrPixNjCqoEVKci0cr3lH2rfmhhuaLXd+im5t8GCwcX+JMpDPsa9P7zPnZ
tbhJShLTr8yergwgRm7axSzBxvM5vG2st65VkoLk82moTgiJ2U7qME7IV/aV
+BJozwS/raG7YOAeCLffAxs0gA3xlb9r2b+Glp0u/1f04VXol9EZLMoynoqt
ve2v06X3QZfuO4GcQr0fUjEyjaNNBfxE194Ru7Qz4FJ4LlIOXiQWrau3CWuy
TtD65Oysoru6by2IqHHpwjF4BhP6pFSrguNj4UGLL7mofOKTFXaM8JMCEyOO
+lPQTNcSvxTursik2obkm4kEIlUOCgW8yHulry5uKc3EgHrnBahDZWXirq9v
5kowdOs32MTHbuJUhyJYLQ4rardNOs1w5TQRhJMAz3yKDtR8Wcawjo4zEm3l
o67mTOJO37jb7fwkdn4q+2tY0UnHg1nsOz0y+p3z/YacD3/kJH1dH78C57sP
nM/5pFOWx4NUXucP/92YHNCIUGdkc1r7lNiceos+qasIGBz1pV+YcqZ2RC58
ymzAsFGpJooPonLRJBSp3A1fRKVbudYuAaZgNI50ygoSBtywHsY2SC0Mkp6u
GEikL0WzlUhNpsh5JS7GnyTJgnEnRhE7P3TUbi3ZF42j0kO3kmNS1C/o619g
pjGA6neW8NuyhORHPJons82P/ApjgL1PxbF0Hc7umuH0P8DIDoCRaZiO42L/
9uSfjjBoXlZTeVlc3o0R3YmDJD5faWC3RfqpOco4kBwkRKwacxCbJHM12e5I
AmTJ61Jdy/ftVV0U1rkEBp629Xra4jmGUwurBNxCQvdPPLbt6cuT7eyVJHDG
x7I3Avn6DN3MKyxSlL3SGrwyAJ7VhgTQbHChRMqABmgbLqTUfMqLB9zxaABR
6tJNMGobvlIsHCndCnGu3GUXJsrzSLKkF2n8ERniieWpZBbbayWjxS9yZhHi
/ZSLPJtLlDgth94kZ1QcALPd8CuG/H4SbwVGJOtF0mqGAEJZVM4vyCSBWu0T
EGaJIgrEpWvKCBCFeG7rJQfQX1+xcbW6uChc+nfeUNYHy7oG2eLCT8WLFoM0
PsUIDdE84nept6wTBebTfaQeqngk5FLGekx3vJWtS6GJQB+MXcZkzGRx9CE4
vRpzgunuTbY3fvToUagL9Y05G0G1bmENsXysmTE/xByh7VG2t7u7O95L37/O
a7y5BYhuH5/Yhyey+ITTZFhEoA+CK7+5SWy/tUjzyLLvk+rgSOVacbMT5OcL
DCZKzUsBFMHGCrdWFBWYEZgjbp6VtU2tkkk50piGUxdtTUXG0Ji4yNFJaK4i
Mf1TM8Ese91YT9YLEdpvqnB+MjxTXtmnEhBVMseYQKwzRhF/CcRAWqurB9S4
ptBmpRcTy/Z27+9lW2zqZcCQxG1t4MPbAngaHL7PCFaAS7iXrTsnHh/KjiED
PAS0QWKpyQZXx6yfpULB+JqxlHrBx8hScslbHkQgJOOgokqSpbOu1ohBd1Vx
pNlqXa+qplCbdKTF30W++PM/EGXiGNvGn19iDL+88HUIwleMjHbi10Fw7Frv
/R4DT6UvIOZjrtiB6LVCj+JG5UvQNdBTOLMsS04t1y5qsqaqllEL7T4Vz/bQ
C/f7L3RKqAlkmXvngN45nlfT91nzvrgWzRXjNen7Q/4erzusbTVDtDPEhmwr
tQke3TZM61KzaeQlrDqdDdSjjl/vY/BorJfRdTcvL+q8MclTwqHj2/dvfVvt
i/b4Qf/xWMKr9/ThLdNdL+0GiS8cDW62W4sHnQdwO4rZY2CJcMVeoqDBFfHs
hYcbXqAN4vQrxDDW2hZpb4+ybgnZznIOTWJv90tvWZVK19feXkJcePldohE1
PoAhvgLNzjc2fD2PO7l3H1PL3hfkfcX7H+vJPE4J8Qvz3TsYbOLNyauNxLl3
qK/ArQ3/um+O5JsGdvEq78z2AUUGizetu8t7D/23+fwSQ+KuFtmibCisIT74
CBet62E2tQFLANqz+7uDz9bFv/tTDM/tYSAxrKx1Z8mEvOwUvUFOcI2Rie/y
WTTL1cSGfrJMakt0Kh3FBu6nDTxjtQA2664NwBZ+l8/Mj3Hn9w75vTs9e5Rx
IDSqM8eTDj/ah63VlBUsRtL59qEyMxYU/9D0EKUoI1cJTRF68e3+lj66W2Pd
OjOOir1wae3e393UrmGlXRDudnxj7xZOZ7Jl9m9/+fF08i/PuoD6f43t7Kc9
pxqwXnd0JUh5Pax5DQIkWgP8Su/LvbDBNBifui8FHvrh57EWZLYl2eDkzHgr
4RpjhDrBD07X56T2b8dWD1Tbx9CcJLhA94ITjzOs/x1fO9w4mO4WOgqBFqzy
9/jl5Dg2d8TNdR+QUtG+Mlh858HfMoRnm8fwkNvrPXHrIB5teokKQTVWOvbL
S+txJJPZfBpKwBCjwNDz5pfMXR0yKsmOSdgYAzJ49BIsv36Ba7Zo99DbUt2o
84o0windHY3Yw+6FTUG4k3/txeC6CsTsF9BAOTarSLRcklLbDixUBKagQJ5w
B2eqVGfpzLGXMR0Har7XpOJrTD92ZVsGgRJ/1wnjz2+hExI+xt9ZqsERvD2E
8ekUvQ95TTjPISguCXIGR+DOZLoRxdJDYkILsXjefTwKyWElRjWU9vVpKOdL
GNXQ86XPQWgVa4Hb8LF/aGwrayp6UWhRkJg/JBdv2Voqg+Sssn2Jot2HercW
EuMnnf3ElKw1VRDGApZJDPfRKGqZg1IcN8YQxkcH0sJ5moL67TwCZ5wm3zDG
MVr35oOrF9BIaOHmEpqlbXKEpQCHWHhcpxVOTSa+HYP+dPW1/Ck2G4FK2NAA
NDSbM6JoSEfu6uAQg6Mv/sD1SqwMKxu2tZEQ7yiuq8L9SiFmNlJ726gs4456
lnjBxPZppnvcQrWv7GTJ2jaK6huimTeGcBhwRIQksDtkaBc81sQQPgaWF1HB
zopjxbh8ApBD8HKB3Z1WIMj/p1+97OTpCIkK4xeBUvxMOE6I7dEztMPS5Vek
e+SwUwZPgSfMELtlAH90ZA++hqIElgnrB3pa0VWrdxrlnpEhhnCfzrREoh/B
vsAvXNWUb8lGMhEaX1DdQ+Fw2uVlna9ALsBqi1iO6IPEPt2Y18xxWaoUf5Uj
7rhUANkUVikoSTu38rDf7+jf8I5Of/5nXPUDQ1D//C8uO0DTe18nMTwAiWGI
U3nTcPaP2XS9QAgyVD9iCiJyGPPKupn9am78L/rrO976+9I+tGC++pcnX+uD
l2TIW33wyf3S8UGXFGMOIhSefKzswivIiZM26+51+0QECsqdEGzmVCiIvJcD
UXs58p8GEuQtMLX3tBZ6IdSrlhAu23KhgGPpC8E5ln24aNTkkrqsDi7ISg81
PrcgLQfFoa4UK3mW4nmscgkLlcJzoR2ci3Dg9OK0ghBTLmJpSZpnVwnujaa3
yn2d8OknWdqu2OJw6aZXVSV5P9KFc9da5IVQYjeWwbDuMKFK5IdeL9wDV23s
dHMWcbSeUKBDFCkStHnnqrZ0GxLapuyikRaSAEIL1e2vsozWRMb+M41M1+fu
aV4MpXhglrEI1IQcRVl06bqVXKpzCFkefRK6EHTx/i3jidBYymsWUv+Bm3Wq
OdVA40iBhtfIJT43qg51Ipvrol3XS4VRy/VNt+Td0/VEhYUOXJSc+y5lxM22
pGIcRYQPTuK0MS25FUyx0TClkSWFk6kHVt0HQvqizrBnnO1BNsqtjTbKbSac
CaH3J2EJsuFVmlDVIx9Jb4E2LKvGLbeVJWJotul0zcnhN8vpVV2ZvAycNJ9D
E7IbmCSHOWPIKdTfrlzNG2V0ZW6lsSSEBltELnNdDT4bgd5opF6TIpxmBfu8
YAHVIpLoCTmovqKv3IsXbmXDrYNFc3BiScN0fVSbl60pM6HDSvVsMPc3PWoL
68ESqW0DNWIpZjIUSx2uEHHfVLVhsuRHKZlrVjYoaYM6TKlH5PPTa+guQ/EN
St8ce6NBV3i8sD0rWAgHuG7pBr9ly/kIw4CWxTWjOV8MrWXgihTeKlBdeNpF
DkFjs8C2yGZUfnFkI9XELmFt6c1YtkOrdlAqpgfa23i9/656xJ9fVfWwhAHp
UvagOwYZ5tepARu/+BVCRR5SwkEPOM8nHtxJMWCJ+PYMBatoEAtjeix/SXg0
MGqKSgSxsPJFuFmeSypjiqSHMXuc2M3JDzGY9C7pD3Iny8hlJQZHvim14g2P
ZIzLZ+2/UkF4TGj8f7PeEIN6ZW2QgwmfuPJIL7IeGjvaQef41MXGQkVBjazT
ChhQM9UbfxifhCXKmGfBxdi6/UQ2NDLcP6mB2gG7zmLAaWBvkkbwJiG3eu31
wnC1DBmFIm2KxtX6cIgZ0/gSZxzXRHUj8i46gKK69BZRy4xpyruJ9WdXgw//
zpB/C4Y8+BOJ65etMDP88/ecj/EIQwI7WKiOyUeuXizOi9ksOZgbLwBT7cWO
wci1cpo3huhLQeDC9TDqVGvhQi5XXEB86/baLduxCAseQBseqWiezbpYe1Gx
EkwujblOkfgdBXXY95Yyo+3NWQjMppqmmnIdZiuP5hu2OhpnqhrdJTNBbqp+
oQI/ZeDfFIq9abY8jjThFVZo3fRfcBUYZV98E+lUBP5rA9rip01QiwoFtuE9
FpGb4N+2dFu8OzTvN0mnZiklxrZbfaQNvajTx0dsWxtqvGIQq01NlL1s4PB1
2cB3a1unGzHGuq17vb0Pv9uriKlBoObcSK7b0KdjEca69/CmrJjwpXuYSeH2
DQq/36jx538qN/r/DzfeHgZZbCKiu+g3dBvobeiI/y6qzn8zGftWPcFSinwt
Ort8ksQ371YZvIiSBXL2NX8bibXTRnKn24luAEHMlcrHD/Ye7FrlY5T03xjS
xYSZ+HEM+9+Cd7cJqbKkuEi8pp5PoGNq6uDh4R6VZo3wbqlxC42SdUklrTjr
Op/fNGUTfL6dmqdwlJquqOVBbnzVck6Kk/rRQUzaxKwWxCBdYdRXxfUpf39W
0oU4HExDk3i092h3ZFE1+zt7O/uwPFR+xX12H8NBqPCp4MHpoqLViGxLsZw2
Xh2Nf4jFHv16xMoXGX+jfS0alNkYHL6c6dazCHeswCEmsUsIYz8e89MANrIG
MA5Gs2qVH7xExLhItlzzTHHVXUIx4YCbcqU1xvEZKQJk9YG48Au9g/BcUlM9
uQ05kUvw2DSC0sd8JiVXMd5nFLR6l7nAZr2igWq7RofChQb+xdI1IRkiQY10
VmSTNLFRbAh9kWRn41pr63GYOH6tfGyDzpc3Yag7ijE2CmJfAUW85As2CNTF
ZV7P5njgYcWlOA2uAeOH9fDMajyZSZm5YGanQT7m5SVG6MOTmwaFBI12Y2Mu
5Qa79NOuZyL3VJLKkyNdEIGN1AAbdWB0MdNOLhAiDUNbkK3hv3aSOUitlRUf
Eg59wR5zWIV+dHI/Txs/Zj71vrhpfFdTrCyGDgRYK4LihpbWSCrjqba5yKfb
mwmmbJg6NqBiEoJoQ15dBCcsqRYUF1uhCiAcOeDqlVngXe5jbUfyqA9gl+c9
1igdRT2E5OZO/GkYnbuunZ6ZdQ8sBspLVxoaH69gkTjY28BZAUzh7E8u4+HW
NrgqW7eBwZn5LdxqtrVuvXQ0v5EaH9FxChL0h0LXlyLSnRczTQLAWwTWXjIC
hjcxBXqSMnoUNMZlk76UvQxCUVEYY5eDNp7m8ykJV8BPPwsoKAkncBeTsqFI
UMxPw1V1zdHZPYJmix+WgqNcLGVMxI9NZxme2u8aw2+gMVj1TOlTDzX/7c/t
zs98Ln7WE/YbIMZ/8efn8F+3fv+qQvZ/289//QJj+Htdh342y+af/83r0M9H
2vzz97EOv4JqjQCNA9WynFb94CgEbe0LLQubiEGEXhSga0ki3kmhHsUiVu4y
lks8UK3MgSvAJAMV6RoWhgSCIifomVSF7BRc43SkUae3JYcPqsicLuoOLkFk
ejrBAQGmN8tYHTC2ysbWRL6R7g2CWUSbAZFmB/lXa+V5nTpPQptpNwLCSBix
mJDdtNkMBBW4zKmqOYNmNLgJHAjuChyrx7CkMXgATLMUluiVNfm1E42D4ULP
pXA5r3TZdGe6caGlzvmTIZmLYlDPS7LFPE0BDLSMgZpk+lwu1u112KBffOh+
ln2HU3umIey9V9ho6t/BpA/WGDS3jKU8PxtX4AwmrbenWaF68updpw5CkB6X
Tr6w/0JKVNw+3M4g0hHTHWqAU3Sh2ljv70eTmfd959n+4RHV6FrSC1JlEUm5
gAWVSnRUkGQUbfbJYoPKwwkCfLQRuyYnDKhiqY4XbpuUDnV7R3Aq1FnmBRZz
RycEqf+oWJQY6dnhZzFCOWnRl1RIorsoWUvQk324Ir8N2kSxklryQ/1zWYAn
g0ein9aqgB8b9EXYg/1dD/hVWqFh2li2rTwhVXLru713L9FEJ2FUkpvPX+3T
V7KwrE56c4k0UQ7gIW3UPZE5xCqgqZcrn1/nN27s2JhFUUxAXZrn9aWNHC8O
ZPU3COKwZLsZZ1yJiYPSTCm3aLHK67Ix+CPMMsEyL0+0LKY1ILF5oaeJW2X2
31f8V1pxNC/eVkntU7eMmhgZb3tHrY3ngy4ysTG68HeG50fAKDr8K2k0TZ/u
crWllSFmcH/EAVhFg7EGqMdSKBa5mOSPVaE6J2MJPjw8DDZyMldaMEP6QoWe
u6zQ7yq1/PyKKvUbpolfPonol1IEEK/4tgq5gynJPCv87NYTAIT649nz8UN2
+dw/2n/0+bPkyNx27KUMoj/3zeqLB1/e6px8hT3QujtoudtQt+E/Yr7FBnYQ
fWrByTa3PbrhOJNEFTatzc7dpvn78f31jy9iysC12O+TvsGd/QU64gaBQyQN
y2e/FB8CMhqeiBLYLz4RbfiXm8ivwP4ONrI/LQE+xP+ELPDDHyzawDauU+mR
5DA80FZETanKlzfA8e1wy0RW8I41eBsf1ca1gr0fiHiFmTsQO7xcg6Y+B7bB
thcKDGBX9sH+g+jKvr+zt/MZuK1QTTpP29cvzlOJbmCeRnXwjjX4pXl6YXaw
2BR/qXwWfXLZ1XqRY5UxtFrkM9w+jAw2mTd3TyPcAGl2og7POSwdpPndj/u7
IwtHR1V69+PursZIxLK8n2JNXrmr3JedmylF1MFdocJtEf8LHUggHDrp84y8
cpRiij4UhCJieAoPqFYljSA2SIluI0TOyuub7OmztxghWdEs/vLnnaNHu3/l
hZgV6lL0KGQNhVEHmccpVcgmSJVjIbgkLoJ37vDocJ8wRf6ErixJuOvA9W8q
QqwSuUreVNNy1F0xLuSp2TV+kQVjI2xon0EINg1Kyye7BQzFsobzs+DotnRs
2Z3HFlS0wIC5jZOXLU5phjW10Iew6GEmqZAziJlEaEw9LCY6LxHjqNi4LVLf
y9eX3lRM9Q0siouAheO1XsRjG6aetojw3Hwl65M8pJKwfRaXtvFJXk0xvxhz
xXa/X42NgHpk52fY9DDNC6cMXU6vKj9uXKpyWras9DaEVwN0kry9AC6EmKrr
Qsy7ZS0mwanljHpaOs8vxYz7WAaJE85nH0oJjSF8ZsKdZJTmEoODpiWHJHCc
BaqtVOMwGo39eac0Uj8lIaqk7FxY5oqD7wJroDNJ4dYtgfFyvIJ2xLU1P/AR
mxcf4C1fxVCyNTrTblRn5oiHuiiXuklhaP7lEg+jAPlhW7QVEe001kfGKHMH
ZEaw7ehbVm2a16FkJHQsB1WQ3a6u1pdX8YHAC9WpgxipcmeIlf8ufcvPbxDB
KiuP186dBMkvPfAL1gxHoOZIGLdXr3fTsDB799mmfAt8FW7tMd3aQHF/3jnc
fdS58jE9v3vpMxn7q3xMGVG9qxxetgyoKNEIl2eRZm+3K9PI1xvUbUyEo4BU
/PAe2Q7xvZN7QZwT375NIAZZbNh/sE8xoU7OSfNy6T5sQsQ/himqzHq0c2Cg
ZgePDg6tpc5wf6n7dGgpfmcKvzFTgKX/e+QKR8oVmDTuwBZkIilfkA/vyhgG
pFczPvPB3iTdffpG4LDHfJuOa/hGT/yGdy7yKaaFuOTfiNIh2gzd03mQtq1+
ObbgxqhWtQ39sDclxFhWktovCYuPZMOOcX+BeB0MTQNiBXxCiIjwIad3buom
+kT6nIHj84kthE1sobjk7IOJlYoklWEL+MV2lO03riaDYEihiUb0KgoHXnLQ
MZZRIdWGdKLo409EOKqpSOGwxoyv8iRvjl2vLSMWWLQsdJvKhx2VJg0fbgeD
9BgGTnE30OdjiIvDc26yrf5Sb6egRMWXiKcZgqgVivJFMd24LLei35Zs5pv1
OYj+2ffFTThOcOhOb2Asiwxuzy2+Rbe90rlBfwpRs/NaIoyIwtIFkIgw6avs
qlp23EbhVrLtgjshggojwtgiVprgrV1zBKdmOOoC42poap08iAYRX7A+3L56
cDBFtqBLeP/+3qG3aZ/0UHabQrLfXbUIuffbSkQjnbGTY2j2Pk52w9oI5o/G
IuMq0KDlyPQFpoEvStBeRTVJ9Q1Ml8wvB5QFA5aUB9PWgB1u0EXdhGiUpQID
2NNedY7ruZFv9tbU+SzIwhXWS45hdojObhRWhkrW0WEcRwHoFnb6uzD02wlD
Me9q/Jw3W8eA39w9y+83lJEQ0XAD9XTqDWpUUQi9aapE1Z//VyXyqQ63idlw
z9l/D/wjJu9BE5b20jumPk4AGfC84GAj67JYrLDkBWOcauKahOe5y1Nty2QC
YeYuqVynb8eTCLRM601r2Ps8BhX6EmB24SZ48IEhmZYZRv97ntdIFQsZl4di
wzat5rQU0aLwz9O3Hgq6G/SiGt/BzqFpfA927++iyfnUGQrNBjsws1nJGRmS
PdRK/pamBoJ4FCihxzK5pP5h9/amPgZglSkLjzdCoWhq8g3R3et0A0PSkbyp
mcqxflkt01G6v6YVnJfvi46TG3GvKD3HGR1jbuMqxzG0uD6W7U1jN9utLl+D
1V9iooYWxqOUH70mB1YVhUqvm/9/7X1bdxvHle57/Yo+zEPICUCLlKjbjLyG
pqixxpasJcpOfBwtTxNskm2BaAwaFMUkPr/91L7WrupqAKRoSXEEP5gCuqrr
uu/727o1A7tpmCWpQAoUIIczlllGPgrrPBJNB9wZZVvdvcOXhf4R2ohVwg7B
v1OqyJHlr5y0aLpWbGPKT0TPEvuUoPrfuzkgMEjXmFWKSwEFhTiz1JxV0FZC
1+XssPb/wrRa9L4AfjuEffIyY1RAMJcnjroSrMhmo9zf//5/ng4fb9bV/Hg4
Ls+m7XB2PIK5DUftDAbRwsICWRiBCVm2vbtRm2Kk98fYsHXZYRdgHRXQrqRq
SwzqfuRPfqNlMCZqnweCBVqSgDotUEnbEFiM8duXWoOvbBUgLXPGPksWH1Sy
wA9cyH2+e0CczZbkPiuM4QMKGgCQFp+jXvkCQU+4ctPw63pCsizgnciXAHxh
kU46DxMdt7gbwayoun1iLTWUnSngYXVST5BtipEIEvX8kXvVQRJkcSFwT725
rUXOKos1GPsaRinTK2VSCORJf9eVwPjq+ASAkdiIH3l7fkiptHFlIUXjtCPR
rAFUTJsxh02vHYI84injdOo7XZOqeBoyqWq8p7Vc0DlkAcf2noFdvTOQdVih
TrKQLdSAaXGKsAGF2GwqKi8MdVcZ5BjoXqgHZjYOPMni0J2EtYRFjt6gdQD8
JHFhSsXN5zjzSYgnxxVXFEt1Tpvkb1NuQKAqQ0YMGBG0+IZIFiaHBARfoK9s
spsodDYBtPr7MTXZycecysF+NRSZB8S4/ZIZWOhDL3cc13Nx+M87F4P58SDM
EW4DwQFJNlA4gGye0omIYb5C9pPi5eW3O+QY+TPmF36G3gg6X2AB4+FZONEI
Q2GSudrQGtPM9SckzeFNtuxJPU+L43JatU7f81BMnnkGjskJhQhSDbPkgLP/
ksRZr810RtbyrnDcytpp086/gAigTX755qg5WyvWOXWX34dN4FGMFVrrPM+J
EGsQw/ifuY78hfScmvrR8999XPLOU/mxu8ABB4kl6uAE8vN/vvuUpbmdO16C
JOnjAi1nHF7gD81J/RYLBWJzHgVlWQ90oc1RO6tPTrG+XZC9ynlQxAiLo42a
YE12oCMhU2V3dxduEN5PMLdSNrSVP/2ITXQVDN5MjyzmqD8Gi273pfAPDDdo
Uc9sRljF5GVziD7uXLVnCc4IYijWD5LAhBAxFqpbhQgnllhZdVZckjzHY+Yy
kHuZDgfrrc8quhlB4CQYKdwzOmz+TgD1xeW1QAmHNOshzrqYNhCZofjP2SHh
5qBBHSMiMPCNZOO2GsNGYEQFIWpZUHuKrhDaCZ0xiyDp9KwqgS3TaKXuCWsn
AW1MhVlmhqBZccEAyHXa7Fsm7Y3yKCrLpuEY0Om22j4hL3ceKVsEX5WrFvNp
qSRE4XNo4Qz2CNgSiDwDMIKaKhFREU6YlGX9cuGV/JmaKt0dya4TqUHF95PI
+QAx8+q5sRuBMK6QKdYKXDoMFnuawE0aJ5Rz0fH4rEJ8YBWCP1oXFTej//Np
qRCAvRkdowUaBC74y3MQVP7+B68pDGfwN8H0tiDnGVlrEPDp0URodQTCrKGM
YoMwb+VYbQxCmoGAtP1icHMI8k4KI9PDSLLSTsQZtrQDKUYFziEzXgGUrNu4
iCrVFzOJwZoozeShtYj2ivRunHkKJr1g/nOutIAdB7w1MDh5vjdhTqxUr4Ob
RlqHRsS9ErRiY4Eqo2lqxUhPLeewOae0S2xQYrUw0ysHIRPWGLDywwCWf+SJ
0tZmLlF/e7MXKer2poVvQjCnDjr4nc1EiIUvdzZTLNG//qRPcSevocNF+UJ3
N6lsBRvLX1Gq7yAp6CXYTZAtCeA3ESiV4oiz1oCw0okwlLQi3YqBr+PiZJSV
65RfgYmqnhyPCQsKBSEvBFeJtkisI0AgcWkzeJxFAPW8o8TvO8fSaWIKpgPW
Yj2/C2EtxFmUn9lDz4nknUIz7tafoM3/tZiAkNMPtsE20rG5LlDcEadkmO6G
W6Y7uLLS2/LOTDfED/fflWhD7++GU0AXD4roNBpfAsZaugG0zKYKLkl0EIER
7hIXDDRle9Bybe+pF9ODs/7bA6mdKTrmm5oKldDTLZXhwwvrz/H/npd4hmQ/
xcKvifUwLcGzVTBI4sEtL73/WAHjVuavXQlzHT59bFoNtxa2iu4zHxt44E/F
wmZpPSvaDIN1t7CGYqa8JYb85Irq9XdEcrktthTev9kZC98Y+7jiBQdvDpW+
BnUZmac+IfY3BRwEkifBJRV4LyCMB2T0gmlX6M6FZ4eeHpOLTvw9kyN+J3wN
P5uOQ63Np1QLSzMkIX6lxFAhMY9cnDbjSoqX6LCBUEI8NOF4wYWzfVpswrRu
Vd/aOFkbfSKurch6WsCCnlzzZoaWfD9dVD6gnuA9hP8hGydD5yBwydyVhJsd
XUlm22Gys8rK9sIDSVnFE/FSyhTp5dXf9KuB3ua6DXUCTGUlV1rMwcB2BxGc
dU9jhGvDMvZG/HhP0nI1IpFrlvuLxrc6UXm++03Pw3/q/oU4pKtPIambvPp7
Ukq3csOk6tfKIzXCVE8j/Tv8lZHqVm8cC4qrc5wegc7pE8um2pdC2TOEMHT9
jvOkVn4jexaXro1+l4vMW3mBMjETYaRLLkPH/sA81vOx/YcRB123dDvDQtuN
UOc4hvldyKR3x+CrzXuCHToIKFCknLRn9TxxcxAlaxtkhLZUHfsfnAQQIBsA
ZlHEMZN7Bj1yMbSkc2AvT5F+IPQ2whlmp/u5eDFetNW5Xyn/YHPmnpxPSMtZ
f/HyyQbploDVND4Bier0rDWwviLWYuW+8SWpVgcCDw02u5pVBCzTrD1Q3TUB
NAHmZVRZN6qnWBfsvIaYvmzWHbiEkCNIjWxMAOUYXZSQrW5sO4QhQwQDG+BD
VfIwaIilSYHQygkpxBT8UMfxPNHLieX6tXOdpRPTKBk5YF6JLYBY99ZDCJwt
HusWwq77TR2GTYWt/nMKyQbreFa2c4wLHc3IcmBAbpPQEv/4JoRAZsC8rbeJ
FZe0X0JcoW5tbBHheu/cuncP81dpfL75mwr7DO7VA5gkhqeAARait/bfoX1j
1oUJ37l3CwJhcZ2hxDVriDjun/3K/NxWeUtk0X3qEbx7KO9ad0X2s7b/lxff
vXy1//JhMa/KqS4S3C3oZm0wKO7c2hBC1JAv4N2c/QMheoa8KBImY1CnOwNL
EoFykfks2jnrvoZVQS9YRBcQEAyue8d6bZKiOWvRr9tFNcb/a/4y+UeBOuKl
JtuRLgFbwJ3UwDqALzFLgPeSxEepRw4XQUzOna3dvnMXT0pSLUWhojJ3Iaqd
opBNfgi/opOFPPz+xs7OJ8HCFVnwB2xUUtcyIIkXFyWW6OhZSHRcRh5SjgII
sOXskF7cRdzYK/Zv6wbrcqrPhMk0lvkAReWQ6TlJvMHnHFWBgW2h93Oih/i6
nSVVfCKzJVfgVCa8A5UmTOMtmavZ9x+Xo3kzaxHvKgIEJ+8sXdVnB9+gfXS9
5OyAQzSHKmjABho3+WHfDOrcu93EF236Azur9DmtZqdeD0p6kJ9d25yRZRNg
6Ul34qeO6uPjiuqe+YdbDZtQndbEUDhE+ROX4gh9/2Jm5Bxb8sbQ6s8qqMFZ
TQTT66w8Qm6DoM4UqhZQ+slgjfvYTPHm0T6A7oXYkgs2W6sBiAhgy70K5iLi
3EkYAgRcVOjf8j0fzurquGj8IN7W1UVBNtYQLOJGnikC9Db0GWCq1cnastMV
jiXPlBxnaK9Dz6/r3pj4XBTrBGzPfnLz4z7/6ujXcFn5rrYVRGIiN49XpbDy
EE7c94ScGP6GbjmoYB4CbYIVUFZjAF7xX2CPhbWhTGH4L1VthfrsBSZxs5A3
Lw2+Brz6C5wJeQhrrAQ+q1rDGmIUcOQgtIAkynVWEEcWjjpZBp7R4nLVDSSY
60/9ezcgYctPiy71FOtjs8xFfcIP6wTDj2uzIRToKY0a+b+b11VE64QR+I2X
74Ze3jHsORmZi2i5H9reN4LTB3/byhbKgMoOeqVb33um7fyf0OysficVEDh+
Y4bEFLmwhlmjtcIG8cClQUk8B0gowbmxJqgRqtafmifzbYfnaiiyVnuJ+QU2
IGbKKO8kRYbiuUHmpiS8vDMAmAkFiEyG0xJUHMKqFT8uLLbGjMb1HWiv7YIi
jcE1FB7lEh4aYuzUDWQtUB0Rx6lAQOEkfuKXBJAKkR1gjXkK+7p+MMQjEoaK
Dj+WOejHsLlI73T8co6MnJiSQpRJIdLKsIFAVI+TmtwtMD0k8uhtsb84f91n
VBgGBnNrIIIOx6FX74q1X9YorPyYQq0AREFDSSzH9JOrNk82cYv++hMAynCw
SNiySuo8+3+t3VpLvC1/Pq3ZbejFbWDbVE/MH8lx7XVSWhXOPgO7ZTzH9V8e
3QKO6f832PIE9/h8hqfxfHrE8BMQLk81Uo+DF8UcIMkulRyJ/6KLLBHUfYTK
uf0OkxAa0K5A4eiiuIS6EfuY4rLPqiPFC0WqdgxezeodYP/gWlZjsFwinC6E
7IMDuyVOqdtGO8GcNBorbHBJ9PKvP/3yWspTxA+x57YVRYCisfahNByYKp6R
bmVXZR2psdG/8O0huksuUkjdhN81kKQrZD8I2fzqM0AiqRkN4ma2iktgeExB
qNpGLCBiyKTFkEKPIcpeIO64VHeHmpCo24CAAxkgmkJnxDhabZgdSnOO6SRG
r3QeIa5uI10PCQHWvxEs65h5OQcfZWpIIMWZ9VIqRKNxPXMS3bSwF2QdiEAp
9wZESpxDHH8aBLyOwImQxHC+CH9NKg37L4eQg3FkF5fEHkpVYdLugqxINQXF
PZtDfNd4QToYanUhWGS605g1e4pym61vdFlU9Vyqs+PBgdWTadNBBPtbfr+K
88lYKlLzHcB4VNawAjcDH7/T84snFw+2n9W40SJC2IxjXUPRq7TgFW6BXIy5
ZBOhyOdvJRotXu7vfffs2f7zx/uPNU6xoINhdjWtpNYSqA4wcMLhmFFILBAu
EMzBywNLTnoHli2iPPjsQSWRTDuoGSWtRQY4EGICcWWwAhDpmgoZbqGQYdRR
zLc6rOZouWnG53JjvXTfnp+cUIJ4CXduOm4uzyS0FG8n05rybVMfYeW1JEjd
HFPfROhfIEi//FGg32sTUte1z0BLaPioeIK+P0VAp9qxKFlaI80+PT8wX63B
gGFNPAP/T0jt2WxmJ2v2CcCaK/4R/hcsN18yiv/aX/+x5ucEkbAItgT67iTY
T62YG9PXL4uf2Irx2k8Q8yEL7PpLtLH7wZPNbFCMy0OQ+EAQ2vDTffHzf/g7
cfpl/LsfHj6gvXB6ZjC86W2JlzpWEoiqgbOMeiWiDnjx+cUSNDwTlbF7sPf0
aVTZCTCoqbueTtYFn+1/z2EdNySKH/M1Ld4efL321796IWZy7lkugF2AjDIr
1mGLyOi8PaQqEOcTzt3+EpU9uBEB/ePuHYO+Pam8YDN744nXXMKP1u2WB/Mn
9sUb92Cnh2tLPJIGAQfujesPwdP4DH3v8PbHDBvNJ9PaMmrUtroxpRqu5bgd
X34ET9Q7MVjY9TFfICcPy8mdVQRUwO3ELa0RYvx9e4omUXmnM+/kOR0867xY
aR696Iwdsxwm7WSs0/JIa9WhhEVwgWEno8oHQk1UAz0NrEFRz58e9+yXJOww
BzP67YAoGViioNvYEpUaWzUEekbRFZNYaNaSdW52PhkQC8VkBFY3dBKY/8Il
z1i+rMBTtVltDsJTj3DjH8X0D05vu4E1I8SucC4xWnyQTJdeKvC86nyqKSes
BTqtWBKF1qOdAQPs/8DmlBoabA2n279S9jUt/wwDxJDZR/yTQPRiPYIEDfDJ
x8r8xBb7IznUiBOczyzgLSKBeorxizijbDXBSA0V2aapNCVXzD6y6zIOEmNp
Xii0dcSBV4LY0GqgoZ0dHh40qcbz1XmSMRHLmlCqVYivi1scobDr4oYAqwpv
7SiammJ8VuLXfpvPMbUWhhJufnwbKrA0tBRJH1kD/Oykguml60lFE4YR9p8F
FLFLSUqOqPokTEqCWZyVE18rPMAYB+QZ6oAlAhI5M7k7amRaHoVLKgDuIxhp
Y9GeXseyNOmx5cTJgrDKQGtWRTVJIRmn/WMgElAlt6WapKHwLh6paeP1N8xd
EvtfqgtgkR+TMQMSq1NJdVROS60TLsxmv6vbAIlFOJaz8l19dn7mjsdem+WW
F2gGYGVByxYhycC5StqMhB6pB9WhRaiYjstR1VXhyeji3HfgzlWaZcrvCjyS
LAbZkVILIStiZKmlPn1Hw63XA2ImZXCHBJMPpBLW7yiEdIZRy6WDLH3og3t4
LUY5+K7HFIRnUt/5Gi1BwbhEN2Lvmf5mDU85iZfNUAinlxFr6Wcw5DzqmsEK
MkH/4n/bQnVouOW3SuVVbIkicbjbd29lxGJ+CS5g7Mdcs2aTNvKltWvJsyyB
b+i30i2MgN5+x76df9TH/aLRs2MozrOde5RkbZK0jRgN04M/g/+Y7AsmwKBs
naThwP0FMNr2FLQx6zwsDGj2L2S1IfnCYd1QhF9KiSqsPMOYSgYwioflWNG3
nZwWMsfJedLMWxy/9TcENwYXbUGoxaaZiI6O4bIheN53atAxqLUJ4o5K7CJX
8ZIGcDCAkC19FyMmchF+N7HlruyDUdeM6etJn6q4HODvO3zDhkGyEyD9MA4P
3k64HwM0JGYtb0EF5sq/1vSAT6kEwGHtFxVp7ng/Of8yMm/55xN98Wc6seGe
mS/8aZR/0anTFGFk+bkX7GfesN95xX78jv3oJbtE8CnHV4rBlTE+nFhI8+X5
4PA4Tv4wVArEcsy2A65UUkYer2nkuqAz65mTsxFQPXYh1RhGWD9pE/SAbqUs
4HTS2SAZExhEGMfGLA9TYsxeuKg9C3bLWgWzKeLqQCIyDDKmXuQb8Cv49z+M
+Ikh3o0h341f8U4ogxTjNUksKNR1TToY0QOEpJ1XUzSJSGY3rEzNrYGlgv3f
Xz7axCYroBEmuheS89EGBP2BATXpMNjMoinYTl/QNkGQyMh3IqDpTRTu6Nji
9STkJJH4YdKg4UD1dUyiEKAPRt3yvaWALh1kc5xKqqSCNXIEgM54Oaak1AXc
CSBtnDDCQnabxwdgCqPJSsSRFdTPTJDC7Hh6vJYA4hNj04vLXUHovQQQhYBB
mABMyQJyRxARkniuCbhe/p5JFDQ5/wl4IJtKH69ksQu1JQeQ8DWq3OorWmRX
1C1dUQE+wqGka0rLtEnynfql+QIlErkCX0q8vSAJgEqt0DTBoymrmnQjNgNd
VGbULgB70ZTy7YEPZq40EnnRAz05Pq5PzmeMugU1JAea+gza6FEzOqcOqm7g
BoOOAFBRM8YByUhiL6AYCbhUOVEPwt4XRTcaSEv6R8cvglzzyEvRNUgXEFjD
sBHyfkuUQD0AJdAFNT+od7Q26dJMQUSf6yvsG45PhFBasuOCmqDv5ULrlMjn
L9AIM+z+jScfwWtchWixmZ4tUrWeehCiBklRdpav6KpBclv39fVxEKCCQhze
NCgMCAhB1rs09lsBK+YBzMSWrutyTB6//GS0oxAGN2ny9VW9XgAJ/L6HBVNl
ReSkKU1AElvycZsJJYY3xuq/YjR20XsJUmUuzCCK8kMu3T1Zkn+TvBghHfx+
yZmw2KK217p1b8/HoFZSqPOzpp3npyI9Tih07W0VvIrou8X4uAxGQuRMDHBg
Z6hEe15f0tg8Z0rfhtoJIq+jDQOB4OQFZDNRl5SL7+lALboQ5wPUcYaKowIL
tueHv/hVZjHnWTkpT8iKd4QHgXAvkoAThiFOWYmeKozLqxDYN0IhtiGfDkMa
1KdmiHWL4niZrRMdsExDulVnDJR3E/UZDOaEn5tMKAQZIsnHK1tXvc5LiDWc
TseXEkGASeDieXFSuTOKawdYqQ0ya1PvzGrAeMPJWYIPhKymJV4DkgIcmhwi
c4ByEsAJf7iAxcvwMYQaVapLz1ogPyF6NSyTvNkLGgL2QPHQcDac2E7Y5SuJ
1gLSQ0HpjOXWXSWkk4DcAKgmnCDasZtKmO4PrRPAjiOG07XhcxTv60dLITX6
z0akBoz3iQKpUMvBmxL7MgJsEj2nRyMIhuXxsRCebDQqBbT0bDKfgzbQ8W4g
V+uQUPTrQSgx6shspJ9RfFF/PIMbS9oy3nSQL+kdMtdMzGz1jnNfrRUV4Ffg
zsIXkZM7yEsagstxlZ1Maooz5wU4ZbhDgzNOEhXSlWqAl5EGgiQ5SCm5Jctt
BVTNBu0dpdNJlxqggRMyK1CyuhxkIxHKiaJIg5nfsUcgGsI6Vvl+tL1BRsR5
p1UPGzPtIDwnbodmBft46/j520AqMPqIbqa4zyMuSIY9JRGUVErgjEdkg29k
qQnjfeHyqiXRXnnBzE7BQbOXHUsBS/SrX5HjXJAokcCIKEGPEWHys0hCLA2p
kgFiTCEuDokgbSKKlUC+kmLKU/AIDLeH+AQ6r/5M6etaw6riwImciRxNQeE0
KZqeYxuXhgyn0k23uPzk6AsO++ocGRXM9SUsaYn8UpyMm0MkqpgnNB7HxrgB
B5RddtqZrfGL3N0Zl75XkHwJmg2dkA0IPBROemGhxDVU06mQw4Em1tEWolCo
76A4HhpFhMSvV5avUb2ZluNNNKYUkw/CcaDdsItJCSWwF4NCK2mzvoJmqXWI
BADHAn/vQmIJ9hO6wbpVfcRaDXltxekR80hW4emQOQctTbHmy2hQNg5lEwJA
nna98XDTdI11cZEESepBbSHqIbCCqB+L4BxI15X1W0bMNivP5KPNH+OAPZxG
DkA3huF2xTAB6u2pdb8JHSjtxEgTtdyFdhaVjwqiR+D8rcybtMt22bWMpg9Z
g0umn3BIvMm+fXyZA0HPzCIZp65OqUjBYbhQFjU34Ox2RRwpy8m2Nq4i8Nbz
YJZJEMI3wWuNZ3dWQSE3zqQRrpTcWLV6xVfXdc3Gn8DVjeqNMGyNpGMIBjL4
ScifEbGfgWMAFglIji6aVOIDZzw4NXsM4k4H2LL7xC57H0khtrWYoFDlhyAY
GUjsrmLed0lIliOjC5McPFtaOvaIS4fgG6VwopzmL+O+C3s2YdVub4QgINst
BmsKBB90g4chUqAy4gAQlAXj7qiQwS6ibu5juJoD6GTpqzoXvbPeetVFdsgZ
RGJaEkKZyGVWIrQvY3KT4SEigqszDbb+zNnbtHCl+nYYgDyF6GQIIQe1B5p+
w5vbWXGYlgTSL1wzXVbgk3h1QtGdRRchreSAARNfhjKTJp8hvvtyyAfbAzzj
u36+kXPryxAsr9BKrZDoIywxWhyfE81RZ22HBEAc4XGcRp4a9iggrWJItufB
O6Xd+k66tAUtmMX5pHo3Jedf2q/0mZR15kKqVTnzbGImEd1GzTAnwTdc79Gv
ISNvDoUzwDw3SXQZTH70B13vQ7zc9n5oAS3dsozih+qecsca4Vxxl3MqR32c
MbDoneyILOFCZ4eSJQHd0fSOBWqaZ0YTmD6lmUHD1Zj0pylf3xg7XHQMUqGH
uaBCSBAVJYUnUB2wrvoBmepzEoe1qbQDulksZkqGlXrCikQyNpNor8fUB4ap
wzLgwvetpY3wC93xrKGbOEfZn2uWX7J+Ceu95GUQFpvRDbpL8SrlSdiccsOO
NsPtv51qEfVxOviOaGO3ZZXB6FigG60glB2LVW8FD7KNuovrkGu4mvF7wf48
dKnW895inegSn5JgpxBuS0S77NivLtwted2NylhXWu7fXspaPvV+OWu5fEpp
sl/aEoRoVbuq1OS7SMWmlYSmJeKN2JuuKDf5bjpd93a8SHICEdTKTvHF/jRk
lZ7B/FbSikZ9UPglMSU8M1K0Inb0sTIOFut6cu6ZSRLaYYP1k8QkMtCHAUa4
feAc/X4CPinMiz2AGI59dBMB6kvTTDnSS6Tbo1l5PA/oDRLNITZsMExPNXgR
vgMUARvTCGyTfbZ0si/AB0xJpnU7AjgIWHl0xKJfABpgzseFH5t/KjiIj9Sm
zB0atAoZGNkgFGGDTL6C/lHO6F+xT5vKBkBammbNow+cVtWmolq4FUpNMvm0
knch1UUUu56sxXWc60GXT8PZJYTaRYF+xDtrqbY3Om1qYlAhBi5xz0N0IgqI
UMkGfrxkL5YJvixsrGXxyP6zGBZbEm/JPjet+MBm+Dl6zcZ2Y+hEYvUDfOOb
qpqi792NSs8PwEo+vZTg1p/pTgKeNCYwUe02SHso8jdWloRBLEgKkZXphL8f
i1c24CA53NS4+6gGTZRSJiOkaE9Py84nZ80RUV9elMPKX9waXLZly0wB4Htq
rNQHV7SeaoZv9hppUBTnAFHQBPji/fOKlTQB6BtEhIZYlPP5CA5lcxxCMsRq
HWGm0AFWay5m/VlP8pm/O5gdIjHCdkJ1a+cC/hHgZf6kC3QNCQv+MlG6m6OA
CJmO4FjBjWLSdB5oDWQnYh7MCG+GFPgIwd0iemUdpBjMTHWMkVySB1gks27+
tWozAkshPkACbegU5BYr/58pRgUg2PnJvtw3dQTltT1sAOA6MmJQUK0w2Qnb
FpnjqqNYMAinq7Xs5aXG5q9JvtsapUGCB1Iz2vhAs56aGJMNtaiNYkWxDjlz
PLj+mc4i7df4bRG3kqXrGbyjfaiwqs6xXjpLuvm0TTmXSl+klQtL38vBM70S
PDOoXjm+pOoqUjy9ZHbZTDRmD5Yf8xxgx+BOAHH0MhRSLK5fzIsxr8+ofpdv
p8FLSg8cOy/9jtUnGE95wWLCxIuUvj0mstPgGDk5hEMrasE4BVdksI1QhGhO
bDThHm1VIYAiB7Y65NKS16VSsf/3k92DV8NnB3tf7754u42IQCXFbcCP8r2E
qbsuI4Xt5TxiJXLEUiUmjRce8JnpOUdLotBSkTByUSF7wvGSXh9OnxI3T64C
dktMuED4ktND6AeWxKOsK2TMWTLmZ+z5zbiCwGaIGKmD4MTgmF3Ribz1JDpH
m8FCEleyi2CsSjCUnmPJTyo6I5MhUL89a7KKhfG//0HtWQHG76wcMY5pUlYI
RqMqX4I3qIg1ArGEXBYCrNGAGYEhkfrCN4tzgHoA++AVyZtsxg6cEIwvQYAp
Bu/EsxjBIFm0RgTLQ3kSYwMM9DX5dLugjwM8nPvMLr6g1FYu4dBBhvCreIjI
BILgFMaNQokZ11YP3JaLQHa6kFt51LnYaRuStvrYTxo1krFBc/Cd83RlGnJ7
S38SZyUpLFLSF7Ino9oW9eQtVEqk4zkew7Kc+VsyYlLCSOkQ2XQ+k5PZ5fWJ
+Q6ZtqKEwTWtUQQJOe0SpmfXgk64RoZlkwWjBjbrL0qmAxsuJttNXg+Kr75/
8mT/ZbERpdZNJKkuoAaimAVW/CQVyfMGotEhqmVQsOqtExVxNQb8BXq7jmBV
8NfW5nYhRdooHY/Q/ByPEKLhBPQYz70B16CV11g64YNqfqOsCKrgAgtL9dty
50nR2RhisjHxAgRh7DXnbMAb5s6jHOl3b5veA5cEa7rYUqNcjgyjoWSguEm2
AsCAneyCJk25R1LypqTId8K1wPT+2/f8W29vFgAxCT2aKgQJrIN9i47LlPTB
8p4csRuXPcqXSiBfgDBoZwp8WMQHMx66SjQi7oX5B+bD0yu08gGbDfzs7lx7
dmqXZbjaMNurzTJkZV17lo6TAHpnicbNjqkSkCHoNf5Hk4vphJEqOvOmpA4Q
+I+BpQ0AzjreZwxpGRR2Ug8ZxmMR1oQnL6vhTFgjwSFcGkCsQ3D0GUAKXVSV
3AG5umQ2Wr+9gWNbv7PRUzBWGQdRmkjy12gn15g9wYjy4EQu4t/UQhYZ80HA
I0WLLi7k3kfVU1cYBL3IXW8QelJ3IWGdpGJqTSq7oIxwtfNa2aXpWI6JABO4
qP76RcOIAvhY4McB3JazXcWLIrN0mKzCZxaEhJOQ6Z85wrkTLENz5gRf6QAX
0QF2N3KAUd6EK95F1FMwA6+QuRy0NsoV4h7sNgeUVMIlEtg+l3sKYftgBz3P
p6Pg12+iENpSkFLFNDoWjnFcOriTZl8QCjEE668AqXrmpXKUZMUVEzlrKR5c
YyPbrkjWi7K9QZCYMAUTm0g0PYYIXUUMjUK/gOlHhhFYsXCAEtDP9bXJ2vx0
IzExJ5U7KQF58hqHceq1n3I2Or0U25yzBcrEUkWiGUhmMIQYh+FOPw7DJEYl
y50+/xqpr7CGgAv7dJiv9QIFkFz+JjaaWhwxSc32KxNLjy4jPeoW2Ixu3I3F
J4U3l1DDWLREYDEXAYuBoVVgZAN+mIa1UtJgdTb1otf6LQaN2pDkioZLbujh
6KBWimF1fjll5Q6VcXUkoo1W8ohtNDrWSSI7WdAYIZXYK82zIxIGeZQxOogp
7Y0pWHjdgMxj6m5cpBgfSHvFg28rrbWjZlq5jL6ekTzAIqRC98SS7UEkP1hC
bm7ZkReysSqd4WVJrQKu4GcRMro4J+S74PrS6r7g2NuE2KkiGmFoEfZn20An
hLBp4G+WgFWEg4pwFU4zJQgIjaC5+B0KISOUxewm4RWZ24LhT5xkjucIZXq7
m7QrPapvJ4XUyh5BKHVxRpGBToB+I9CFSQS6IM4caODSBvI8FJl5uvt816tE
WHOOM5PZh8C1F0NFMqhHRjo3Y+HChZ94OrLbEjhf8RxpRuu08p7nSb7/DU/X
T8oZRzydUMYkn34WTmYVVTEz9xCNOM2oGWMNM8DYn9HrkZ18tfei2L5LGuf9
rW2qHrH/blRNsX45HTYENxvQHNGeT64ceg/5afB1a68QKdMhLSV/V1qThcdS
rMPQNooXApjbrsmUqGoE2Wyh05cVyl+jSqMLSKkA4yerPlTUfOveLSpr8tef
Xn399GD4+Lu975/tP3/12pSIkTK6fnOWzmYmL1Zdei3uY82ZIa80EkZzOaKK
tlv3ybwFfz5AvazhF1OvfIm+n5RyMHiX5wQxe1KjrXn7lvqVGkxU2rovZdt+
wDCJx8F5O9DVdFv3B936S4NkwG7rwaBTMKrz0Pat4dbd2/dvD8JQB2xLya/y
aNy0lVnSF15RgGVYJ0a2tbUBXzkdGxkQ9rze788JrNmiZlxBFirKcQsEyb2I
7gwHf/B2667DsPgxTQxg2Fysj8Xryo4D3vyQRQzT8rL7QVUVnTNI6yEHEavM
2cHvbPB3OOYVjufaKv1EtwoPXmQTkjqxa6ucl1u3twdPLWeM6ihnDsWt24NX
ebKN88Jw2mL9BzKfD6g0MCl+wx9AzYWS7OeHuJ0bue7vDF6d5uH66iMLf42M
L9N+p2940j74pDgs7agbwpLp9y722w2/gwCRKGYk1/jeNQbVDY/MdHx/oNLb
NYb1oKe1RFKBR2eexpetsg/hWnx7oEWrim9Bxl3tFnSbxYd+ASsBKQaP/PIK
VRlbM18WUCu++8ZfFAY88VchXJol3Q6eD37sX5EFmPaiHAf+ucpaISSkVvCD
koOIYVesf3/w0ncG/V5/BfMoxr3LlqUxuT4GSOfEgWRwmJcs3BL5A8WPlzzL
VRaPqyYQ57/G+uzsXHU1dnZw7n3zJCgvkA47cidW+WvZtyxeldK/e4S1sfy/
Z+RfRj1zwDorTAC+OD9z9bytxse0IKdk/sJEiLdVezRrphD0I7ELCGyGPR5R
dxEWKGGEiroBPsRienrZguYIsiji2pPUE3o4Pxu4eISc0ItBoKAgoMdsin5S
W4+rbLn0hC0e2TCcUlHWswF1RJnY/jKBj5+LuoCsdQ6IRjw6F1B6yglSsUPy
l50JuKA+ICAsABoqTrPjcuZOUGuUdLz5KfwT7JUCIa76uuIQAQtXkR6F9wgf
Hc1xKGLevnfnvhR6e4amqfSkI2oyQHxjzy/UkYtqZEllnbkepGomtnh0rW2N
E/jw0qnHluqnMaoVF7+DGcnjbMyyTrH1VmwYmDqNcmWJSKu9bwzzd4eXhUQn
6IjVY6lr6C8lWjSgwPQxuLzQVAeFNKszAObnYc9nDYs/ELHWnpZ4+GxdRh5p
GFVzrGirPSbeNvgC4cbVAbPH8QKZCF/xlvf6SzM4Hih3dtIZuG/PKxCeoFXL
KK5M2Xb2ITyK0CBw96kMLega4Rj5Mb6AhQamg1NtAxIzHx0J13c6GFqPqW3H
L7WA0rmaE11MMjjc1PZ5gEnBAww6+YxNXhAYbpyqfKJZ5YV/Pd/9Ro82O9y1
ZAOinIH+jcDRXUu2wHLM2JN2Pgllp/zQB47w204H9AhBE2FkzbRpjolMsl/c
Ng0hMhYBZoBDZZcaVyenaJ9f+I0txmsHsgVTOayPhkcCYVBcVCXQXURd6uC8
Bch2DN95vOPWycWKphe9VZ7EDqFKSAZkziC8UHEyx5bJr8RL3MFpPg0soNQi
PoiaiGYRzPug86MVt3w/Z6RQ6+qATZknyVMMcJFP7dm2iDr+ZGJ6gayWeHwY
Y1q3g4z5To388SUINUBsvAoU5NVZaBmeFuLc8mdIlw4jNWmtmjnRwBQRo20Y
OuVUIC0UuBRRLAyKAJR3VHbreRXl6JZH9TjkwlVd2RwRNF1Flh4p/QjrMPN0
00uH5aQce07YKng9ggEGuETasFxJojA9zt/x1JRJfSvR7P4yRGsMyef0VTOr
/1bJ4SEacKCA+tCbjQySoKADhiXIgO87FzdX87T0o1a9XIQRTNwr/s6A22MF
awEP0mZbRaeMbBXwp44QP8YFX6KiPFIp5Py7uZrlrDk699JgKmVQ4k2orwRw
3xAUCISxnZMlEPbjtJ6ixdwwVS3QKdKw9UGjJ5TWE454c5Z5NamgiFX4bdOi
hbhmK5Fh3v7X746Px3D8jmr8BtzefBehKaAk+6ac+sWwL3CS/I8aZxbTu/XU
uUYWt1vbD379dUOqfTLlpOqiJNuWuWXh5CMze5c7XbwagXhiEO2oPJuCNG08
+BeNa+DysOWI+T/h0UMBrcmlEbU1IOCoxOIkNeB9vq3KcSQ5hXWlyuPhJlnM
H8QppJAt17+XCOivZVcHUv0CduzdpdY0cuI38kLC0AsgFclb84TSPdv9UcpL
sKSEco5XXEBu8R1/cVTJn17un1fAUCDWY0DVPiFD98xL+ioWSGEYAJJ9+sLL
YIMCaxo0EG5wVkNak5ULDURxhFAahEqnx9x3G2NDhTtmV0tGaeJfXQiRmagf
alC0eZJiHF1kKBNAG87QhwHFsXkBhrpDoMHUgmTE88aLcsbsv+/sb7pcgp9i
/JsAdq5+weoIVheY1yeCDx/Xss8BGtaWmezzKHEJ+quZDuKhU2ZUFKzIcZdD
iwC/gdlUFMYBFwYB6wfZJMnaCCU1Vw8ruEay66tJozwnsHort5rVcrxa7Rz8
e0Q24Eyklc1Czg/nK6W8MPHoRyVkolWxkNxD7IXXhKRi2jI+f9+g6/WHVAud
HAVzx2OvQ41qfzmBQnDIBocd006T+/bIPIYdgKg1oacgKIkr9qUpakES++qy
iNQs0qvYT27vWiolQgaXyFaqVobKrpQzQEYAZDsv/OqQoLyyLulboQEsz6m+
4spugQrBiQqhRaxAAN96oXJjdAYjQZ5YJB7FIOr/mxdUMJ48h02dbwPvOyBl
tROCAnEi/ufdEWzeuDo6CfClX4BVl8wjRzwD/+QT0m9n1TDewFZ1Ubm/iDA3
5WbxaWsWsfTk0ThWvPM7nie/G37jhs3xEI4CpL3J44DTFARgckUSIvGEY0HJ
9nSmqcHJDVfXJ3h7el8k+W5nXHwcMhWOkEOAa8QxgAPmfU4qqKYiIjLk8tXt
7Hw6j6QpSSwBmRm+9GcWInlomF0SBPaE8mRWESKmjpjDJUxUFy2AlB9H6laN
x5t8nS/KBfa+afbEitaugRwzRtqDW29ljSD5CCml8pqOLjYazxjpugLTKyeN
5iLDhNmAX9yvcTlOhUsjZfUetAHsUWJngjG7MGau/9lBUq0S45LwX8cWobgU
dDk+Af/76VkrsdpG3GCK4BbSH36phQ6OxG+mP37lEUV9Ipapme/F6yWjU8jM
g0rAIWZG8iTSkp18IArKY7GZFXDE8EjEZq8uB3N83QLUcwLkrlLHnVv37/76
KymjxhpGw+agJ6lejFRXvMjGFImD/8E4nijAiMATx4FOS4kBBZrQnK66DTi9
kJsDqTnOBvp0BVfYEDnwdEyfc6XDXaScjgZ6DJk96893n26wlLVzZ9vPVxIj
w9B4SJTLAakniMgaoDbK8RmR+mCmJhoWkj9mEKRKJuqYfAX8fw4MwGJXUeQ2
UhpTjMaOzunoQCESDFewT0yayeUZkLJIu/gFY3H4MRy5M8PmwllIZlmBiJYi
yugDDE6QWlD59eKvv1IVtlStFUOy8CsaPUYUWdvyHOPAAJtcFoOXktaVClfg
mCYNDkh4BWnNHEPniQYC1mFZB1IB0z20W9O7v1hYoqjnDvP8YqGRQI0vtQoZ
WiTBffHWhPm4uI28AbYQvTVpgt6pFhT2RA+i9TAsBrRIKWgkYwQJEgMPQtou
XSC9EnhknnZOBctPnEEMoQ/8DEp/8XAnog2TxZg1WwaJSJ4edK7uF52ri3x1
zlksyiyCldySL0QdVA6GgbFR1Desf+SaQhZuUPYh/42J5FKBXyPGgzKjdlFP
3ufjyoVcUIXDypi7CdirApriBYlgXiWFIlJlMXhHFrbkQkLFqJqx/BkIndA2
0TqDZVJ2yG2ZwHzMrZCAAY3jwfgY4hIaHj+IwBS0PLQp0yFbKiDuUBkwO9Bj
wF15QhmEAzZXXmtOAxtUjVNB4CGRb+RACmKMGlTEbgOoAwMGSTi1GS/U2az6
RTDTAzL8U8rNNHF0KXvH3PrMdPwpdT3KHD09hKfbISYmb20k6SHRoBlsmEEW
wO9ooD1o8hjs4w5I2k8KfPd6jqJ34FKgClqa28X6g9Eb4qxw4f8Pth7cGoAH
Gh/Z3tza3Pr1V9RNHwdxbZfk65dohQda+InIqqheqSDaL2ciHTG23qCiCnp9
WfT4DNgOFnkPHFEA6GyxzpqUEllBtOWFDZPKT4ZwhTN+S14zrCQ6vTgycK/A
gUKVEdJ50q7l9bmyYDIkkItgldcOZyDtoKl3zcV9AZvDcRKWBQsBIYKeymSk
UpI2RGeghUFSJktyqJU8OZv5u8nwBWiou6Jyxg5xazPvlnBpOWG7uigAK49S
K7+6VLuqoQ5oJy6Vo/gBvqG8HDk+kXiQtZAckRcxp1Sx0Tp3PKVsWyhjj4mZ
il0TsRApOIK2F1SyQvYWajAhrJ3TX+wpcusZyxzXkYl85huKCBLZQp1KkHQb
yCarmUYGdsjkj7/TulzdWgo9edF9pkZc2QRYUn12J+el123mVbXsTDheBOYQ
bPktbaVK8NOCBwzFUfV1BcJVU6odyrQhMoc7tLAg/jp7wsOwpBag+4+tM4cv
YKphycx6iil854C6JwZi+DGKfgB3QAWKjFY3hNJZEIwrtht6DFkJr0NVGD7u
IjP7uszNvj1o38XLg13cWE3roHL3iBoSYolOG6lG8VZxLHlZiFHDCpM4ODnB
9NVJaqpEn9qZX7i2mciahS4EZkuguRgoohTrQGpzzoV78DWza+5WXPO+xRbe
RQ+g8k+5ijmPxno4RvFqO13tx/Wx12+HX1fj8Vk54aVOjz6sFKVKFmYTnFzd
yEl6HEJq0iVCBxEKBi+CwUbIrxfMwWi5FykqLyj+wSF8A0s4lFzi//2E7ZoS
JFFC5ZdabBDjgdgDXFB+RD07RK5zwhY+e67Y4UWzJVWXRuZyr2RzoWjvQT0L
B9NUUgRxGuHP8HBqz4WdXBLx0e3ZhZ65Uyw821tKUFFODFiNebohNDxULmM1
j8L+4kIQX4nqQsoNxdEsFGCSuLIcjAg5IkPwnaLmKdtLuDxfyfXdg41Cymv0
WhlZ0CWI3zFC1lA0XSKgoB7QeqFiMmeUunKGFc0T3VmM/wOvP2JUomIiZDPd
0AggKJhBpm5mTszyxvXKwq7WDveL8aL7rTrdndDxcuwpfHjA6qLc2NbFCaXJ
uzVmpMHQNJBiC6k/4aga1YR2k0S4BT30SGUYJ/lfI4Gy6d0xS08U1cXT3eT1
DNakGRdhkeFO55aTlMiwTVi8kUshpBFZPcRGABnaf4cCUSEF36jYVMIUzDI9
fUKAixAS6c4wd56XMncv4HClNAu8VbncefEb5WnFIbBevwgmPDRboy4+2Afh
aHZJHdIBCWFRFTrZKQUloNKrK9JsriRg4nRpsHhgHL+eyeG4QUMflTArcSuH
+X1rEHvKJbMwpjRUpelQ8o8owb9K5zUAuG7Egx15WTh20o+g/jkb6ajWqUJJ
WrrvzGtRVz2fcgeLTl164ohzfk9xVMgmh7h3L1i3FY0FxaJy5tWoUXhIFGDN
X/uqbL3cK22HEDE89Mr51BHwXurO5hlgYedRSfUcg14Kkble+COO5mX3EloP
zEvNAmhVPdzOkxMJoVbPPPTkbLAbF6n2pOr88FDykc+qs2bGdZwohG/SFGD5
8Od7gmyP1mvXoCnOLAjqVwz25dzjc82/5PpybNthxyITUzSrIJCbOK9Nhp+j
0uyXEPYJ9g3yWkSLODDWbvL/2aE5g5koOGQBwE7ciVyxDtOcQMgWwL0uPJv4
FEI6oEtg2ugS2SxFiS4nGk717m0jWAsHUGcGBhQg1mb2n62+Et/fGRnDKDOs
6XEK64YGIcbBRYBUGBLXQmR0NQ2IJ8uEviYMEzHOaBDQh3RtQGV1jbFwmICs
UjIw7hIMw7YVuAkAHOJtYOy2yCAGTBTwdDfYbkdl1yQgnfABOUVq0jgJrAxM
TIOqO+ivIiZ0ARvdUwZXXQIuAVM6KznqGg2KAPl5SaPB4ToM7CTkQQE+TAev
pfYU9bEfjcw4o2qDCpnB+pR01jN0a1H8DoN6ogwG4cA1eKn4OX+cbS67eL9C
dIxd/965DByiD2IqyqQpFm0H4vdJpLhaakW2ldBJguojkR1/kyO7LaBrNCwO
uGHRlw4S7TgTCNDomxZi+0omsEh5IMSbglM45hoGAUiMsDQJoF7LYYLWiS3m
FZPSb/l2F+s1Qnm1dwDgFx2O9Ny46aKLLGi0ZQhKwR8MDBIYyv1eeOWgIkQo
CpaFUyrxvpLXNC7rs948erQNItUPezyCFpKVgC8+ZqEgTpvBFCrgf5tBkHqo
YCB7wXZCxtYBRzINSRGXLyGstuj7yA6RXNwxWxrR3o9njxT1AzQQmECih8WP
ELDFKT5xDzBe/PVpJtgJJ/MjHjDAnZe8j770lN5ZBNNgJ6RK6FV/41jWPPWk
GYK0rX+eu4cj0dsLJb3mXk5h3/0tFzn7wjniwm/93Rj1Ndq0l9V0XHYWXXZl
L9aQw+nCX7+RurSlbWh/lUSmh3YokFmOfqMtAmXwo3icmuNxQJsPw7Pb+iwE
gGFEBxoj0rfu5ciGnjLJPg0oIaPqobZ9wvhu6XTCfL4WtKDOr3t+SeEUmDeG
XynZEebRsssMjOx7L4r7d0XXuQuRKA2E1rcQuYW8cwIY256ezmoGOPXM729C
b91zHKa/UVDFvJ6zQ6I48ELcUQmyK+Iy+L2eNF5cvSzWnz89eLWBKRButRch
a4ZWw4MXw/u3bg137r3edGbAg2UWaXwDBF6aKighcV9zv8Fy6iXJx18X64lZ
D1INz8dkTX/sn/K/n9QgeB6AdxeTJ3clvmnDa9qHJ7PmfIrDh9Ef1upSOanB
ljT2/GJMEBN4zGbq1gN7GzwOAaBWVUKMDkEPKYvtW3fuD/1zau1FEAWahzOB
VVtb2/gY/ORZP1DxN/ZCGID7jocRzw2tSeHX5BksgSfC5gNLIZOlO78OY9/o
3ntcifyP5ifsY5h+iv5v+WO/F9pz71Z3FPR5cOde309b2w+k/f2+9lvb2/d7
29+5L+0f9Lbf2bnd2/7uPW6/dau3/YPtu73t79+V9jt97e/s3Nvpa799/w63
3+59//17Ww/62t++f1va971/687Og97x37m/bagUBCSohIjo4Yqc3O9nvqBK
YSOK2DWZYCgXSo5FvtdJv/PaXcWP2vWfOus/NWHGKLX52ZJWCJI6kydBxu4q
d6RkRVhYzmihm4BZjuh04F2EKDrWzT11OkFzDaWGtVyR5W1dXQARhlwRqtQX
yiy8iqRPkjCJgIW4swnXokY/FcUjscvbAq6n4GC74+pdiWV298YUOKMxmdYC
gGmS1ZzWeA5MBLPdj72oeugH5hADGJcOBHC/gC0ChPMatgzPIPY1VAib2Ywk
jFbGpYUlcEJqoIIRQzAjqS4XEEyPK1lO3rC/CUPTZP2osPUZqsfB8rD/7Pvi
z/81cCYefVx7IexbP+pB8d9NVRyUnqRXXov8uqrfvKmLH/xo/XGsJgP3lVcY
GgjPB32k+KE+AqcMggb75S09A3kJ//c8Fmf3DMbjpzeRoEKUqUFrsHY2LCQz
Ks9BTaQh43pwQmxsIq1nTlbaL8J/e0249m8ZA7qiBMaNuY57RRUv5kGtR/XF
n8oCjiUuftNWjlcoRuO3O87WANSL7RICvBqkc/l7KGU7McGVAkbi41UUNFbU
xlFjN29w1iFIYQegtv6NFLOweoPsKdaL6dRSgTd6j08+2tZk1nDMy0nxuPqm
eUOY+EeMtlz57WikHkR0u8l0yvFSz8rZG8jUHQR3ZoSKBUMhTE/MXcWL6NVX
JFNyF8+ado4xPrix2I/kTkJyndjiyDwiL3Sgd3te/5dn35K1ozmfjcRug/ge
owgnQzXKC6wMxXWNORyJCihYbA+CCFHcD4MOhjcsIRVou7IvoGWERL13/k31
pEgy5q0xy8LVMV6I2tRMdgEaKMsZWSeUztCIg+NerSimokCRVFWAkykvwuwm
jBDqFE/C29qeoX+MdwptLWg2wTPLeSRyrfSUoHMULy1QFdiGdk5pRmxrbdQ8
cgaS3BvSXCFR8LQ+OSXZExN/AP668foH5GNA7EEYgNZR2ITHcAPALFasWZf0
WrDzsOUTno6NWy2TcItB+RTT5wj4b1BU89GmebOhR0Cd/J5wFSHuuS49X6Mc
gt0p6E71u2LPtJdSRwjIKI4fyigED4P/cuS19Qqu5piS85hZAAAaEsdZdda8
JeDrOdbVIm9HNbH2z4EA1YKpE0FKGwiOnmDIVWTNZTtwjWVK4MKGE4zJQTYl
gOQGWmOYPnHGWiOJfRfBQBr6QXBlJk96TMb1sSf0l6NxFcejBmYXzOehcAeS
PLKxMcWoOQScskouHRvbUIyRDdgt9gPcikhTBGA4JC0G01zJcPIyWJRa9/eH
JEpVR4/Wjj29rtZ+TWxUDOQC7AygCqnTQ+2UrTEz22k3sfPu3Xv3PcHUoVnT
4hY7OjYB8dcMrrgDkZgPkZrvse97VPWMeB9LpJxVFSIuBGUMO4Isk4r4i7jQ
lTuCGc1Fjkb49s6trXuSHLJ1T77d2b5zTwsa4LdwSPD5B3e3qRf4C4RAizSQ
vBaOyVpPco4rT3Cb19IJjDHF6ITMzVRdAWVcoF+2K6ddWdubLPF2Z4m3YYmh
xxWOxbJFPivxHvEQw/5uayoixN8GCCD02FMIsQzwdm6AdA4iu6IFUbneYInh
JnlQapGLw5wyK3mnZ6DbD/niFY+BpJs4TTVQvP/yxrFQZYSrlFnUnZ6x3tax
ZgCXwM61b4Mwb3bURQBrkXJfyQMoVADpXpLORorFpeO6hvnOTNSPBjlL5lAa
VwfyFggKoyS4LOkyWnaXWfa72WUPB4RtrgbP6gZPcnt+TPnPczdLbbsywHvZ
Ad5+yPiFCDwHmXTXG5ZGm0NvlfYWYkMhmtC4J8BkOfey3UtOkdMmzEJuoW0U
jiabb19h5LFLntu5dQ9JM3li0Lkq4cYZ7BuWcXE57meX485DrwHGSX9elhpd
XnNVOnHNSeByAm8SZA/VpsWekOSDRqAOGF+DIUJmfTnYD6MKbcybvwtcR0Ej
/fUMP8iuyc5DBXB8GbKr35c+CJMgfHsJMHchf7voUjr8sRpSYNAQRcwNRiLO
9hCCwEN5VO1Qs0E4/cOLJLcy8/c3OHIRXHPihqMf2+60kJ3NksUouc7so3a6
Z1tdQWobbrXhRX6JkT3BJZ9helTDVOmakwn2FZX3hf9Td04LoWjUbah/1e+B
7xLZTEEwnXhXvLkNkoPF0IxgmK9L2jiWYSI0CnpGXFtYU09rMba44xjsbB/g
qMIEhmQ2CPPoSkG34dQxZfxiTzKp4fZRLuJ3Uyli8p7EOpREgjozREQlDlnr
KglcHvrYZ0WShYmWm3GlgPxyKvyoj4dH5xCg5BoZr6RBcR1GXYKufHUbzvBT
zuXyXe5BLcqRJrIF8O9rLgGoYBihQhQJorPAc4PVET3Dgrqk8ybEhF6cchYw
Ac9om1CJsiDcjcwZ7t34rqR2GxjQD17Na2ZDhbs9YArxnhNNu0VMnIYQfvz1
hR9bE8SEFsmCqoIq0Hp3ctRwKOwqvqFdmeg2cBNOCXwaED7ec2omxxDtVMb2
RTGTkaE1G8bbNiE0OsUnYATA9nIyOvXCKcG8oX0jz6LG83gZupLX7c27D7l8
Ajt0678pcXxctyjCHWA1lOsecD6WsEDfv3oyvM/WSibILh9R+b9dMoyzOpwi
8MrQvwOnJmGGPd2006X9tNN4jbrimL8JsE/sY1c+cQOaq56btG++EvYAUeQw
P6fJVUD5u7NLHosn2JWtdljTzSQkaGDMNWcosU94mvMgUsKzbOx5lGxHJoSu
SLRDak2iREKpFbot7ysYpvoZxY9zMPghoVRl5ep4HnxCJ7IWDGDVB6m1VK3e
7spZO6Q/MQKtVW5eVm8b7njvtBq9gfe/9zWGWXU1KLdYg2JtaJEmtN0VpHZg
h3P06caJ0Q0QoqsQIcn7Rs1mR1egK4LtwM4+q+YlBni/96xjCAMaV2ocE6f1
EJALaHY5EWTegVsB4HBygZ8DYA3+xZZ3nWFXwtpBZVeuA7nU3n+iWkp04b76
u7lw0xRsQ+L9SmeE0RQamHO+yQu0dtr4VXhTVYCnsbam5Wtbl6bXsytIl6gr
jt0F+pwBcn7vVUrLjVssZRviuJA0d6Wru3Bt/U7iqXrG8AM3PlhYN5TzHY80
N8o2c3kJGtBLw4GodkWju3Dx4oA+Yc9qT4fXvJcCa2aXDTkWyPTO1DGZXMcR
g2OJ39LgJmRkhH6FdrsrA90Vg9TwKWcOkh8mZr7vvwgwbOYjw12ikHkaxXrg
sMSHlEiRElEqpqvmOUpecihrrrgPNOeuWHQXVAS+dDdHgGGGH5MIB/fdVxg9
8guE+ZnIADw94ipf4KgL6SEt55m0HPspPN6cVo2uEQ+6I70bXxJcNuz7ur+z
BWEOiI8j1ek43N2fbkg0IqfkwIVIKw5HsuQLcbMXGe/9svjZa/hSOatCbW8z
+AmgD4cKVfj0UbxOkrjw7xRZpFL7uZ4EdizQSu1LQW8qiIEoLlLum+ob2IQd
zrFl7V7ccKbCOcwGv91iIKfZuJa8yuffvVKDNJKLV2TuuL0pqHrWTT/xl+cM
QgckZBb6TRIkBDFi1pLrceferR22kKND/eUT/Nsv2OmCku0chAFgYGC6wLSa
48skYgI7OoxhRfvcjuzBpArfUr7FvwsqzKPdGQQ9LdqHpJEgRLKGfN+N58Js
8GCke7KKYoEO2DQgzlMOgo4rds8l2cwBerTke6soQVUE2WguZnUtVDh8+liN
eo4KllDUinOez6Kw0qs7NAJI8gOHGuuppYgBMKYl7w2xKgmH8e/zPHE3FA5F
nRSslybsQmiWsT4ZNdUJE0P8AKag7DfTChsZWugl6YxC7NdtBUOmCQ/xb9qn
nMoe2cMT/j10/3P+KERNrsTQojjyICK2p8h72tBbzsCDgMqHi/ZRcv0sQASW
RS393MpZXAOJQ2jtuP2g0HeUfN9onkcnqjoXbd2fzUGf/xji2RTr8LLHFTyP
/01tyYKrjdXbtf7s8unjrY1i+OUNDwOehZP2iLJUf3i0tawF1tkEHXc2HxQH
aJxtwdpsb+yGWzit/peuI54Moqf8fFr5PcUpfwJzRj8WmBNoWIOVWtBF+Jkc
1j+DKXZpO6TEEDYGOIVXXkZzPpYOIP8iaZWUJtFeFWkAvRE26Ss03Fi2YX6/
Fmihg0I9K9rRIqV0EPwvyMvAXCztQORDecXmhkdnSnmWqQkdSNg6iCdTgFqG
ZEVpkyiqFL23UWxubi6euZ+3LRI/NObxdaa5G8tPSMY/t85Hf4XWuXfqqFcf
XXcQ67IL4aFcD3bt7WHz5HiC9Xh6jpoF5F16wIQiCFQGsTYwpz2hIPobYGuc
8pBjaUcIBeAuMGAGtQ4DJxjqlf0TcTPlVldmV58C8f7MsD4zrN8Nw1owxl7y
zSAwK7CHmGhLu+UMovOG3I8flPYL8A3RfnAkPAHVF977tV/c9hRAaL5HvdVm
51Ogto1yzXOHpxw/U/IucgUJLd7FRaK8qnl4CFYerft2qi/HsqI1RNFjxWRO
mvAnCWAMR28UTSbFDiAdHuL2tK8BB/OszlN6WEqOo/QwlCvwkz5uQr/maEWW
ldBPX3wRfpXjgbOHI4I2PEY4Pq0pT8QTwClB4odRZuyEEkrjW+wrsPPAQN+g
v1N7wE04t+Vflkh/VyX7V6b6qzG6/jXvfWGHyZHSTj9GYaDBerQRbxinIpJH
lnCyudZqpz6MIVJ+BnQftLIpXQm5AOEyffy1vyrDxTUNV3vZ8z+ZF7ypLn8W
eXTwepWG5kU/8zlf2rBIp/TzUTMJvOBqJygdRXi7OVvRvFzP8LHa7WXSvl9s
iKSG5faTD3FMriFl2VksfRhG9aK8HDclcJwffrqOWer1hrm9S2Ssq0pZvscn
iD2G/DIMFOzKo6YcV62mTUoXT3ju4BjSt+5OAXuKiDfG0ZahsGAAlI4ctNkF
kpMWneiYAW1vvI7oWVrxS8ODl9IhOWHd9/d+og3UI/eX11eZjmkWs1J26P3F
KLgkKtCUAnDoqwDluXCON2LkeC8bxyITx8pDy48gsXAsMXAkVycVc99Hys0a
OCCWZI+gp3dTiwRGG6lwCndrtVSKSM7lwqddiTQWbBHjUkJEXCQWUzprt9RF
N/NJaw5NaXhUuL1FiJp19q5xbUR4+6yyvk6ow4W5hlKdW3BBQxyprXy6IKqD
sKxXcT5QITVyRy4Ts68iZ38WtP91Be2NT0Jg+deQa+nHa+9XTnj9LJxmR/WB
hVMrZl5VUEVWQUjXHSUYCu0xKetwIBeWJmqz3JDnN/m3vnPXv3Q3fet6lLyP
oh2uvjfXMZNf7Za8r5dvoQx8bdE2Fg4+qGgLMcBRuieBPlRl21Znh+OVhVfk
3HGip8EM7JpR3fXMqL+VfHdFFnBl+e9TYEJX8Na9v3D1sSf7LyZd9X3W5W4X
Ww+LbwfFMwIL9Tt/xb1ejYhfRei4zrbqbLYf0lRoJledyE3O4z0mcft6svEn
wdT14C04YTfusO9dk6stYDhFS9XA34Fm8FOqGawwidTO8fqz2fqz2fqz2fqf
zGx9F4H3/SpNqEbJvqLk9QSqY6lRyWkwqRSMtNkmfZ3JWTEnhOGQix/7Iieo
TtPvX+JfJaj8s8h/k5P9FxP5/xmFxqVX4ncgb3UzjZa1uAkB7Xcon7mErv4s
63kNse316vrrqpLYbyeGFbru32WSKP4iMppKaEvzIz7y1FZaeiuJZQWp31ZI
/OiXdk+KwT3b3SukvEx1xGBsSU13rMpg+w6ymOTHZvQc/5bnUuIpEsxaEBHA
/Y+XODdUY2cqjylNVpMPqSqjpEIriLmMKC09lRO5YdDd7aOaGgLPph3MsZoY
Vs2U2qdeE6nPoNDLDJawmM/qabuZk/EXnqyVZPxk35epiStfa7OJP179akd0
eclZ1Jv5o73QRc+F5ieX08/Pit6X73OdYQ/CBAW+k+7zj7lbXeg7qLuoMlvo
e+EL0/eYW76QjGTV2JtXYO+FxLJ4W94nsSwGJIGKlfXRddOhP+us/8w66ycw
WT8kRlNDQHI+squoI9zsa4x+eHxlvTDMHQfB0Y25QVzJKfAJrGd3rFfR7pY5
1K4q9y0R/IrVFLbiGgl3N6W2FTdnWTfHMVAezdlbRcJIJzOw67tC+AbELNmC
1z9smyTDjR5xaBDdKXlLrisVFD7aZKREvQhN7z2l0OGKU/v4cmCxJBv/Kvn4
PXmb+uv+bIbRyT/Y1C1cSvxhrzmqikdQ7jCNAF6Yp/kezoBslub9Xk8AEYAc
VLLygZtzFcS+pNLlXqv2x8/+g48vnnxQ/8FHnutv5T64ut/geg6Df8Gswt+B
t+Cz7f/mYjOWG6k+NRP/pzW+fwY7fUZkGJjDukiiUDN3asEO71zJlJ2THmPD
2UJTdp/AFbqoJ1eyb38Y58HNWtFz+xQfvx4z+aINXs1anlv6xaNa1uMiZeOa
IUE3b0sF3GGUifmqtX5HAYmT1QC6E2xUOsC8nDD0VZMANAcUsHqD2B1qlNls
VVPkgPKAEJslqm1yeG7ySi9KKOxscoMYatnZSmGf8Vo+hTRSIyVG2chSMRRG
+znX9ANO9V8mNOo6G/ZJKDufgLL/AUKjbh5i82q6DzS9VsbqqricaUUB+WWd
atc8YrOcJzP4yCMpslEN/TYtDaK8eqx4rCKoovRZu/rdale/aYbrzSoBy1Nh
P2y8PJZDZUT44n0iDd4bmZ3gXHgkEqnAZTldl8r8U0LfLnv82kDuNzyOK3PS
z8C4n4Fxf0/AuB8Yyf3mZcTBby3FvZg16CO3YcP+70eZ6iKrJMXiKmQqdWbG
es11+MQA5KGk94tv9g6W+JwXcl21E4ExiaqdQpd/2LpFNwCqvShM6nR8qfXV
6Ll7xEdfnYYCOsVhhUW+WqjBznWVwPIBxD1v5fJLwRYuf+BrrJv1ti49Axge
1TMqxFiOnbWIBG9340fe+GtI5cNgA9gqK1X8sG5pcwyV2t5MmotxdeSHCDRs
+OK7bzauJAL8P/9xA+DZm8vOUfQZMKffdP8AeeEfV2r8DyBJB7O3/3D/M/zT
cPjHKzX+H/9W32j4R3++0tcaxlYYk1jydmzoT9+V/8u8cbX5Jg0tg7LjXH/2
I0ouacOrD/XLmxpq7GdMmOjihsBjI/ln1TdaQelKQ43FqiUNP+YBSGSU/mXt
W9WO4Nfzxk/m5KTy12pzjKTIFd7YsVauOtS0oVofV2oYwhT6Ph/5yK142jJz
1NPWFY4XN5S1Wb4bccN4PXsk7LjhRz3kBbrIRFIsTAXRTMOPS3PMcEHOIXGo
t+EHX9WD+oS0o72Dl6iCtDJSlMhyvnZqCD/yfQ0C7kqLk1UCWL9Y2DBIzUFo
XuWNH+cA9MW4zpgkJKtmTs5CLWnBG6+4QJ/GRaYPCiwc6dzb8Fr7iLK26Dnb
mwXrjsXBqJqUs7q5uqrTci4T9NJyL5sd6b8fYO+60j9+3ksFoLV8Hz0AP4uU
gWJFfeB99vR97qd5dXfMKygHxXvcG/zv2pcnN/IFagLY2pa0XslOmrb+uBu2
SKbqldE//oYtEspzGxW37krlvdJhJMh9ChumnyU7t6T1quJwvvVq6sKi1v3i
cLb1p0AbwmeZmGxafyKHRT9flYvF5uITWvJ+gY+kZC0ll21tZDctK7fCuz/+
hi2Vc9N538S0P4HtTj7ASkW2XNT62htGgizJsbc3JWM4Cu9T8/f1hFoRZk00
aTeI0NXB76DGdlAcJ411UKUV62dgPX9bQ0k08Or7TqbVDOq5W7P9dleMvjEj
+nUE5+uIyn3C8TKp+Kqn44oH2RzdlWTdq16zq16s+CotN3cnV2+plTt5fqlx
O3l+qU37w23XSobEHvthr7X6g27vCibp/Pj7LdHx88tNngufz9idM88vFD67
zy+WNz/Q8VnVBK3D15Oz2IDcMR4vEc3l+VXtzB/0eK5gj+wTWfqsbB9me1e2
E17VfvphiT9/FpgAr7ycJCtBlBwktbj/D6CK1apuJQMA

-->

</rfc>
