<?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-rfc2629 version 1.5.26 (Ruby 2.6.8) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-emu-rfc7170bis-01" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.13.0 -->
  <front>
    <title abbrev="TEAP">Tunnel Extensible Authentication Protocol (TEAP) Version 1</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-emu-rfc7170bis-01"/>
    <author initials="A." surname="DeKok (Ed)" fullname="Alan DeKok">
      <organization/>
      <address>
        <email>aland@freeradius.org</email>
      </address>
    </author>
    <author initials="H." surname="Zhou" fullname="Hao Zhou">
      <organization/>
      <address>
        <email>hzhou@cisco.com</email>
      </address>
    </author>
    <author initials="J." surname="Salowey" fullname="Joseph Salowey">
      <organization/>
      <address>
        <email>joe@salowey.net</email>
      </address>
    </author>
    <author initials="N." surname="Cam-Winget" fullname="Nancy Cam-Winget">
      <organization>Cisco</organization>
      <address>
        <email>ncamwing@cisco.com</email>
      </address>
    </author>
    <author initials="S." surname="Hanna" fullname="Stephen Hanna">
      <organization/>
      <address>
        <email>steve.hanna@infineon.com</email>
      </address>
    </author>
    <date year="2022" month="December" day="28"/>
    <area>Internet</area>
    <workgroup>EMU working group</workgroup>
    <keyword>Internet-Draft</keyword>
    <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.  This document replaces RFC 7170.</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/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/freeradius/rfc7170bis.git"/>.</t>
    </note>
  </front>
  <middle>
    <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="RFC5246"/> 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>Since its introduction, EAP-FAST <xref target="RFC4851"/> has been widely adopted in
a variety of devices and platforms.  It has been adopted by the EMU
working group as the basis for the standard tunnel-based EAP method.
This document describes the Tunnel Extensible Authentication Protocol
(TEAP) version 1, based on EAP-FAST <xref target="RFC4851"/> with some minor changes
to meet the requirements outlined in <xref target="RFC6678"/> for a standard tunnel-
based EAP method.</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
[RFC2119].</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>Protected Access Credential (PAC)</t>
        <ul empty="true">
          <li>
            <t>Credentials distributed to a peer for future optimized network
authentication.  The PAC consists of a minimum of two components:
a shared secret and an opaque element.  The shared secret
component contains the pre-shared key between the peer and the
authentication server.  The opaque part is provided to the peer
and is presented to the authentication server when the peer wishes
to obtain access to network resources.  The opaque element and
shared secret are used with TLS stateless session resumption
defined in <xref target="RFC5077"/> to establish a protected TLS session.  The
secret key and opaque part may be distributed using <xref target="RFC5077"/>
messages or using TLVs within the TEAP tunnel.  Finally, a PAC may
optionally include other information that may be useful to the
peer.</t>
          </li>
        </ul>
        <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>
      </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="RFC5246"/> 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>TEAP makes use of the TLS SessionTicket extension <xref target="RFC5077"/>, which
supports TLS session resumption without requiring session-specific
state stored at the server.  In this document, the SessionTicket is
referred to as the Protected Access Credential opaque data (or PAC-
Opaque).  The PAC-Opaque may be distributed through the use of the
NewSessionTicket message or through a mechanism that uses TLVs within
Phase 2 of TEAP.  The secret key used to resume the session in TEAP
is referred to as the Protected Access Credential key (or PAC-Key).
When the NewSessionTicket message is used to distribute the PAC-
Opaque, the PAC-Key is the master secret for the session.  If TEAP</t>
      <t>Phase 2 is used to distribute the PAC-Opaque, then the PAC-Key is
distributed along with the PAC-Opaque.  TEAP implementations MUST
support the <xref target="RFC5077"/> mechanism for distributing a PAC-Opaque, and it
is RECOMMENDED that implementations support the capability to
distribute the ticket and secret key within the TEAP tunnel.</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 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 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 conversations in the TEAP
protected tunnel are encapsulated in a TLV layer.</t>
        <t>TEAP packets may include TLVs both inside and outside the TLS tunnel.
The term "Outer TLVs" 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 messages is counted as one message.  The term "Inner
TLVs" 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 the TEAP conversation, TLS
records may encapsulate zero or more Inner TLVs, but no Outer TLVs.</t>
        <t>Methods for encapsulating EAP within carrier protocols are already
defined.  For example, IEEE 802.1X <xref target="IEEE.802-1X.2013"/> 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>
    <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>In the first EAP-Request sent with EAP type=TEAP, the EAP server
MUST set the Version field to the highest version it supports.</li>
          <li>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.</li>
          <li>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.</li>
          <li>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.</li>
          <li>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.</li>
          <li>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.</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 modification of 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.  If the Crypto-Binding TLV
fails to be validated, then it is a fatal error and is handled as
described in <xref target="phase-2-errors"/>.</t>
      </section>
      <section anchor="teap-authentication-phase-1-tunnel-establishment">
        <name>TEAP Authentication Phase 1: Tunnel Establishment</name>
        <t>TEAP relies on the TLS handshake <xref target="RFC5246"/> 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
ciphersuites:</t>
        <ul empty="true">
          <li>
            <t>TLS_RSA_WITH_AES_128_CBC_SHA <xref target="RFC5246"/></t>
            <t>TLS_DHE_RSA_WITH_AES_128_CBC_SHA <xref target="RFC5246"/></t>
          </li>
        </ul>
        <t>This version of the TEAP implementation SHOULD support the following
TLS ciphersuite:</t>
        <ul empty="true">
          <li>
            <t>TLS_RSA_WITH_AES_256_CBC_SHA <xref target="RFC5246"/></t>
          </li>
        </ul>
        <t>Other ciphersuites MAY be supported.  It is REQUIRED that anonymous
ciphersuites such as TLS_DH_anon_WITH_AES_128_CBC_SHA <xref target="RFC5246"/> only
be used in the case when the inner authentication method provides
mutual authentication, key generation, and resistance to man-in-the-
middle and dictionary attacks.  TLS ciphersuites that do not provide
confidentiality MUST NOT be used.  During the TEAP Phase 1
conversation, 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>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</t>
        <t>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 ciphersuites 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 ciphersuite.  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>
        <t>The following sections describe resuming a TLS session based on
server-side or client-side state.</t>
        <section anchor="resume-server-state">
          <name>TLS Session Resume Using Server State</name>
          <t>TEAP session resumption is achieved in the same manner TLS achieves
session resume.  To support session resumption, the server and peer
minimally cache the Session ID, master secret, and ciphersuite.  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.  After a
successful conclusion of the TEAP Phase 1 conversation, the
conversation then continues on to Phase 2.</t>
        </section>
        <section anchor="resume-pac">
          <name>TLS Session Resume Using a PAC</name>
          <t>TEAP supports the resumption of sessions based on server state being
stored on the client side using the TLS SessionTicket extension
techniques described in <xref target="RFC5077"/>.  This version of TEAP supports the
provisioning of a ticket called a Protected Access Credential (PAC)
through the use of the NewSessionTicket handshake described in
<xref target="RFC5077"/>, as well as provisioning of a PAC inside the protected
tunnel.  Implementations MUST support the TLS Ticket extension
<xref target="RFC5077"/> mechanism for distributing a PAC and may provide additional
ways to provision the PAC, such as manual configuration.  Since the
PAC mentioned here is used for establishing the TLS tunnel, it is
more specifically referred to as the Tunnel PAC.  The Tunnel PAC is a
security credential provided by the EAP server to a peer and
comprised of:</t>
          <ol spacing="normal" type="1"><li>PAC-Key: this is the key used by the peer as the TLS master
secret to establish the TEAP Phase 1 tunnel.  The PAC-Key is a
strong, high-entropy, at minimum 48-octet key and is typically
the master secret from a previous TLS session.  The PAC-Key is a
secret and MUST be treated accordingly.  Otherwise, if leaked, it
could lead to user credentials being compromised if sent within
the tunnel established using the PAC-Key.  In the case that a
PAC-Key is provisioned to the peer through another means, it MUST
have its confidentiality and integrity protected by a mechanism,
such as the TEAP Phase 2 tunnel.  The PAC-Key MUST be stored
securely by the peer.</li>
            <li>PAC-Opaque: this is a variable-length field containing the ticket
that is sent to the EAP server during the TEAP Phase 1 tunnel
establishment based on <xref target="RFC5077"/>.  The PAC-Opaque can only be
interpreted by the EAP server to recover the required information
for the server to validate the peer's identity and
authentication.  The PAC-Opaque includes the PAC-Key and other
TLS session parameters.  It may contain the PAC's peer identity.
The PAC-Opaque format and contents are specific to the PAC
issuing server.  The PAC-Opaque may be presented in the clear, so
an attacker MUST NOT be able to gain useful information from the
PAC-Opaque itself.  The server issuing the PAC-Opaque needs to
ensure it is protected with strong cryptographic keys and
algorithms.  The PAC-Opaque may be distributed using the
NewSessionTicket message defined in <xref target="RFC5077"/>, or it may be
distributed through another mechanism such as the Phase 2 TLVs
defined in this document.</li>
            <li>PAC-Info: this is an optional variable-length field used to
provide, at a minimum, the authority identity of the PAC issuer.
Other useful but not mandatory information, such as the PAC-Key
lifetime, may also be conveyed by the PAC-issuing server to the
peer during PAC provisioning or refreshment.  PAC-Info is not
included if the NewSessionTicket message is used to provision the
PAC.</li>
          </ol>
          <t>The use of the PAC is based on the SessionTicket extension defined in
<xref target="RFC5077"/>.  The EAP server initiates the TEAP conversation as normal.
Upon receiving the Authority-ID TLV from the server, the peer checks
to see if it has an existing valid PAC-Key and PAC-Opaque for the
server.  If it does, then it obtains the PAC-Opaque and puts it in
the SessionTicket extension in the ClientHello.  It is RECOMMENDED in
TEAP that the peer include an empty Session ID in a ClientHello
containing a PAC-Opaque.  This version of TEAP supports the
NewSessionTicket Handshake message as described in <xref target="RFC5077"/> for
distribution of a new PAC, as well as the provisioning of PAC inside
the protected tunnel.  If the PAC-Opaque included in the
SessionTicket extension is valid and the EAP server permits the
abbreviated TLS handshake, it will select the ciphersuite from
information within the PAC-Opaque and finish with the abbreviated TLS
handshake.  If the server receives a Session ID and a PAC-Opaque in
the SessionTicket extension in a ClientHello, it should place the
same Session ID in the ServerHello if it is resuming a session based
on the PAC-Opaque.  The conversation then proceeds as described in
<xref target="RFC5077"/> until the handshake completes or a fatal error occurs.
After the abbreviated handshake completes, the peer and the server
are ready to commence Phase 2.</t>
        </section>
        <section anchor="transition-between-abbreviated-and-full-tls-handshake">
          <name>Transition between Abbreviated and Full TLS Handshake</name>
          <t>If session resumption based on server-side or client-side state
fails, the server can gracefully fall back to a full TLS handshake.
If the ServerHello received by the peer contains an empty Session ID
or a Session ID that is different than in the ClientHello, the server
may fall back to a full handshake.  The peer can distinguish the
server's intent to negotiate a full or abbreviated TLS handshake by
checking the next TLS handshake messages in the server response to
the ClientHello.  If ChangeCipherSpec follows the ServerHello in
response to the ClientHello, then the server has accepted the session
resumption and intends to negotiate the abbreviated handshake.
Otherwise, the server intends to negotiate the full TLS handshake.  A
peer can request that a new PAC be provisioned after the full TLS
handshake and mutual authentication of the peer and the server.  A
peer SHOULD NOT request that a new PAC be provisioned after the
abbreviated handshake, as requesting a new session ticket based on
resumed session is not permitted.  In order to facilitate the
fallback to a full handshake, the peer SHOULD include ciphersuites
that allow for a full handshake and possibly PAC provisioning so the
server can select one of these in case session resumption fails.  An
example of the transition is shown in Appendix C.</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"/>.  The TLV exchange may include
the execution of zero or more EAP methods within the protected tunnel
as described in <xref target="eap-sequences"/>.  A server MAY proceed directly to the
protected termination exchange if it does not wish to request further
authentication from the peer.  However, the peer and server MUST NOT
assume that either will skip inner EAP 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>
        <section anchor="eap-sequences">
          <name>EAP Sequences</name>
          <t>EAP <xref target="RFC3748"/> prohibits use of multiple authentication methods within
a single EAP conversation in order to limit vulnerabilities to man-
in-the-middle attacks.  TEAP addresses man-in-the-middle attacks
through support for cryptographic protection of the inner EAP
exchange and cryptographic binding of the inner authentication
method(s) to the protected tunnel.  EAP methods are executed serially
in a sequence.  This version of TEAP does not support initiating
multiple EAP methods simultaneously in parallel.  The methods need
not be distinct.  For example, EAP-TLS could be run twice as an inner
method, first using machine credentials followed by a second instance
using user credentials.</t>
          <t>EAP method messages are carried within EAP-Payload TLVs defined in
<xref target="eap-payload-tlv"/>.  Upon completion of each EAP method 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"/>.  The Intermediate-Result TLVs can be
included with other TLVs such as EAP-Payload TLVs starting a new EAP
conversation or with the Result TLV used in the protected termination
exchange.</t>
          <t>If both peer and server indicate success, then the method is
considered complete.  If either indicates failure, then the method is
considered failed.  The result of failure of an EAP method does not
always imply a failure of the overall authentication.  If one
authentication method fails, the server may attempt to authenticate
the peer with a different method.</t>
        </section>
        <section anchor="optional-password-authentication">
          <name>Optional Password Authentication</name>
          <t>The use of EAP-FAST-GTC as defined in RFC 5421 <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.  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 Section 4.2.15 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>Upon completion of password authentication 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"/>.  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>Multiple round trips of password
authentication requests and responses MAY be used to support some
"housecleaning" functions such as a password or pin change before a
user is authenticated.</t>
        </section>
        <section anchor="eap-mschapv2">
          <name>EAP-MSCHAPv2</name>
          <t>If using EAP-MSCHAPv2 as an inner method, the EAP-FAST-MSCHAPv2
variant defined in Section 3.2.3 of <xref target="RFC5422"/> MUST be used.</t>
          <t>The difference between EAP-MSCHAPv2 and EAP-FAST-MSCHAPv2 is that the
first and the second 16 octets of EAP-MSCHAPv2 MSK are swapped when it
is used as the IMSK for TEAP.</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 EAP conversation 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 EAP method authentication.  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 authentications.  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 be run or it wants to
request a PAC), 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 method is run, then the Peer-Id is obtained from the
inner 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>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>
        <ul empty="true">
          <li>
            <t>Session-Id = teap_type || tls-unique</t>
            <t>where 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>
            <t>|| means concatenation</t>
          </li>
        </ul>
      </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>Errors in the outer EAP packet layer are handled as defined in
<xref target="outer-layer-errors"/>.</li>
          <li>Errors in the TLS layer are communicated via TLS alert messages
in all phases of TEAP.</li>
          <li>The Intermediate-Result TLVs carry success or failure indications
of the individual inner authentication methods in TEAP Phase 2.  Errors within the
EAP conversation in Phase 2 are expected to be handled by
individual EAP methods.</li>
          <li>Violations of the Inner TLV rules are handled using Result TLVs
together with Error TLVs.</li>
          <li>Tunnel-compromised errors (errors caused by a failed or missing
Crypto-Binding) are handled using Result TLVs and Error TLVs.</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>If Outer TLVs are invalid or contain unknown values, they will be
ignored.</li>
            <li>The entire TEAP packet will be ignored if other fields (version,
length, flags, etc.) are inconsistent with this specification.</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 conversation so as to allow the peer to
inform the user of the cause of the failure and possibly allow for a
restart of the conversation.  The peer MUST send a TEAP response to
an alert message.  The EAP-Response packet sent by the peer may
encapsulate a TLS ClientHello handshake message, in which case the
TEAP server MAY allow the TEAP conversation to be restarted, or it
MAY contain a TEAP response with a zero-length message, in which case
the server MUST terminate the conversation with an EAP Failure
packet.  It is up to the TEAP server whether or not to allow
restarts, and, if allowed, how many times the conversation can be
restarted.  Per TLS <xref target="RFC5246"/>, TLS restart is only allowed for non-
fatal alerts.  A TEAP server implementing restart capability SHOULD
impose a limit on the number of restarts, so as to protect against
denial-of-service attacks.  If the TEAP server does not allow
restarts, it MUST terminate the conversation with an EAP Failure
packet.</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.  The server may restart
the conversation by sending a TEAP request packet encapsulating the
TLS HelloRequest handshake message.  The peer may allow the TEAP
conversation to be restarted, or it may terminate the conversation by
sending a TEAP response with a zero-length message.</t>
        </section>
        <section anchor="phase-2-errors">
          <name>Phase 2 Errors</name>
          <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 with the appropriate error code.  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.  For errors involving a tunnel
compromise, the error code is Tunnel Compromise Error.  Upon sending
a Result TLV with a fatal Error TLV, the sender terminates the TLS
tunnel.  Note that a server will still wait for a message from the
peer after it sends a failure; however, the server does not need to
process the contents of the response message.</t>
          <t>For the inner method, retransmission is not needed and SHOULD NOT be
attempted, as the Outer TLS tunnel can be considered a reliable
transport.  If there is a non-fatal error handling the inner method,
instead of silently dropping the inner method request or response and
not responding, the receiving side SHOULD use an Error TLV with error
code Inner Method Error to indicate an error processing the current
inner method.  The side receiving the Error TLV MAY decide to start a
new inner method instead or send back a Result TLV to terminate the
TEAP authentication session.</t>
          <t>If a server receives a Result TLV of failure with a fatal Error TLV,
it MUST send a cleartext EAP Failure.  If a peer receives a Result
TLV of failure, it MUST respond with a Result TLV indicating failure.
If the server has sent a Result TLV of failure, it ignores the peer
response, and it MUST send a cleartext EAP Failure.</t>
        </section>
      </section>
      <section anchor="fragmentation">
        <name>Fragmentation</name>
        <t>A single TLS record may be up to 16384 octets in length, but a TLS
message may span multiple TLS records, and a TLS certificate message
may, in principle, be as long as 16 MB.  This is larger than the
maximum size for a message on most media types; therefore, it is
desirable to support fragmentation.  Note that in order to protect
against reassembly lockup and denial-of-service attacks, it may be
desirable for an implementation to set a maximum size for one such
group of TLS messages.  Since a typical certificate chain is rarely
longer than a few thousand octets, and no other field is likely to be
anywhere near as long, a reasonable choice of maximum acceptable
message length might be 64 KB.  This is still a fairly large message
packet size so a TEAP implementation MUST provide its own support for
fragmentation and reassembly.  Section 3.1 of <xref target="RFC3748"/> discusses
determining the MTU usable by EAP, and <xref target="tlv-rules"/> discusses
retransmissions in EAP.</t>
        <t>Since EAP is a lock-step protocol, fragmentation support can be added
in a simple manner.  In EAP, fragments that are lost or damaged in
transit will be retransmitted, and since sequencing information is
provided by the Identifier field in EAP, there is no need for a
fragment offset field.</t>
        <t>TEAP fragmentation support is provided through the addition of flag
bits within the EAP-Response and EAP-Request packets, as well as a
Message Length field of four octets.  Flags include the Length
included (L), More fragments (M), and TEAP Start (S) bits.  The L
flag is set to indicate the presence of the four-octet Message Length
field and MUST be set for the first fragment of a fragmented TLS
message or set of messages.  It MUST NOT be present for any other
message.  The M flag is set on all but the last fragment.  The S flag
is set only within the TEAP start message sent from the EAP server to
the peer.  The Message Length field is four octets and provides the
total length of the message that may be fragmented over the data
fields of multiple packets; this simplifies buffer allocation.</t>
        <t>When a TEAP peer receives an EAP-Request packet with the M bit set,
it MUST respond with an EAP-Response with EAP Type of TEAP and no
data.  This serves as a fragment ACK.  The EAP server MUST wait until
it receives the EAP-Response before sending another fragment.  In
order to prevent errors in processing of fragments, the EAP server
MUST increment the Identifier field for each fragment contained
within an EAP-Request, and the peer MUST include this Identifier
value in the fragment ACK contained within the EAP-Response.
Retransmitted fragments will contain the same Identifier value.</t>
        <t>Similarly, when the TEAP server receives an EAP-Response with the M
bit set, it responds with an EAP-Request with EAP Type of TEAP and no
data.  This serves as a fragment ACK.  The EAP peer MUST wait until
it receives the EAP-Request before sending another fragment.  In
order to prevent errors in the processing of fragments, the EAP
server MUST increment the Identifier value for each fragment ACK
contained within an EAP-Request, and the peer MUST include this
Identifier value in the subsequent fragment contained within an EAP-
Response.</t>
      </section>
      <section anchor="peer-services">
        <name>Peer Services</name>
        <t>Several TEAP services, including server unauthenticated provisioning,
PAC provisioning, certificate provisioning, and channel binding,
depend on the peer trusting the TEAP server.  Peers MUST authenticate
the server before these peer services are used.  TEAP peer
implementations MUST have a configuration where authentication fails
if server authentication cannot be achieved.  In many cases, the
server will want to authenticate the peer before providing these
services as well.</t>
        <t>TEAP peers MUST track whether or not server authentication has taken
place.  Server authentication results if the peer trusts the provided
server certificate.  Typically, this involves both validating the
certificate to a trust anchor and confirming the entity named by the
certificate is the intended server.  Server authentication also
results when the procedures in <xref target="phase1"/> are used to resume a
session in which the peer and server were previously mutually
authenticated.  Alternatively, peer services can be used if an inner
EAP method providing mutual authentication and an Extended Master
Session Key (EMSK) is executed and cryptographic binding with the
EMSK Compound Message Authentication Code (MAC) is correctly
validated (<xref target="crypto-binding-tlv"/>).  This is further described in
<xref target="unauth-provisioning"/>.</t>
        <t>An additional complication arises when a tunnel 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 to use peer services.</t>
        <section anchor="pac-provisioning">
          <name>PAC Provisioning</name>
          <t>To request provisioning of a PAC, a peer sends a PAC TLV as defined
in <xref target="pac-tlv-format"/> containing a PAC Attribute as defined in
<xref target="pac-attr-format"/> of PAC-Type set to the appropriate value.  The peer
MUST successfully authenticate the EAP server and validate the
Crypto-Binding TLV as defined in <xref target="crypto-binding-tlv"/> before issuing the
request.  The peer MUST send separate PAC TLVs for each type of PAC
it wants to be provisioned.  Multiple PAC TLVs can be sent in the
same packet or in different packets.  The EAP server will send the
PACs after its internal policy has been satisfied, or it MAY ignore
the request or request additional authentications if its policy
dictates.  The server MAY cache the request and provision the PACs
requested after all of its internal policies have been satisfied.  If
a peer receives a PAC with an unknown type, it MUST ignore it.
A PAC TLV containing a PAC-Acknowledge attribute MUST be sent by the
peer to acknowledge the receipt of the Tunnel PAC.  A PAC TLV
containing a PAC-Acknowledge attribute MUST NOT be used by the peer
to acknowledge the receipt of other types of PACs.  If the peer
receives a PAC TLV with an unknown attribute, it SHOULD ignore the
unknown attribute.</t>
        </section>
        <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"/> degenerate "Certificates
Only" message encoded into the body of a PKCS#7 TLV (see
<xref target="pkcs7-tlv"/>), only after an authentication 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 ciphersuite 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 authenticated TEAP peer is in possession of the private key
used to sign the certification request.</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="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 EAP method in Phase 2 that supports mutual authentication and key
derivation that is resistant to attacks such as man-in-the-middle and
dictionary attacks.  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 ciphersuite
negotiated does not provide authentication and in which the
ciphersuite 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 EAP 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 a man-in-the-middle attack has not
been attempted.</t>
          <t>Support for the Server Unauthenticated Provisioning Mode is optional.
The ciphersuite TLS_DH_anon_WITH_AES_128_CBC_SHA is RECOMMENDED when
using Server Unauthenticated Provisioning Mode, but other anonymous
ciphersuites MAY be supported as long as the TLS pre-master secret is
generated from contribution from both peers.  Phase 2 EAP methods
used in Server Unauthenticated Provisioning Mode MUST provide mutual
authentication, provide key generation, and be resistant to
dictionary attack.  Example inner methods include EAP-pwd <xref target="RFC5931"/>
and EAP-EKE <xref target="RFC6124"/>.</t>
        </section>
        <section anchor="channel-binding">
          <name>Channel Binding</name>
          <t><xref target="RFC6677"/> defines EAP channel bindings to 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 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 didn't 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 acknowledgement 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 NOT send a NAK
TLV for a TLV that is not marked mandatory.  If all TLVs in a message
are marked optional and none are understood by the peer, then a NAK
TLV or Result TLV could be sent to the other side in order to
continue the conversation.</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 empty="true">
          <li>
            <t>Authority-ID TLV</t>
            <t>Identity-Type TLV</t>
            <t>Result TLV</t>
            <t>NAK TLV</t>
            <t>Error TLV</t>
            <t>Request-Action TLV</t>
            <t>EAP-Payload TLV</t>
            <t>Intermediate-Result TLV</t>
            <t>Crypto-Binding TLV</t>
            <t>Basic-Password-Auth-Req TLV</t>
            <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>
          <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 (<xref target="pac-tlv-format"/>)</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>
            </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)</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.  The Identity-Type TLV request MUST come with an EAP-Payload
TLV or Basic-Password-Auth-Req TLV.  If the EAP peer does have an
identity corresponding to the identity type requested, then the peer
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.  If the
server receives an identity type in the response that does not match
the requested type, then the peer does not possess the requested
credential type, and the server SHOULD proceed with authentication
for the credential type proposed by the peer, proceed with requesting
another credential type, or simply apply the network policy based on
the configured policy, e.g., sending Result TLV with Failure.</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>0 (Optional)</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"/>  A Result TLV indicating failure MUST NOT be accompanied by
the following TLVs: NAK, EAP-Payload TLV, or Crypto-Binding TLV.  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>
              <ul empty="true">
                <li>
                  <t>=6</t>
                </li>
              </ul>
            </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>2001  Tunnel Compromise Error</t>
                  <t>2002  Unexpected TLVs Exchanged</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)</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 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>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 by both the peer and the server in
response to a successful or failed Result TLV.  It allows the peer or
server to request the other side to negotiate additional EAP methods
or process TLVs specified in the response packet.  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.</t>
              <t>After processing the TLVs or EAP method in the request, another
round of Result TLV exchange would 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 has 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 piggybacking 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 authentication
methods.  The Intermediate-Result TLV MUST be be used for all inner authentication methods.  An Intermediate-Result TLV indicating success
MUST be accompanied by a Crypto-Binding TLV.  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-format">
          <name>PAC TLV Format</name>
          <t>The PAC TLV provides support for provisioning the Protected Access
Credential (PAC).  The PAC TLV carries the PAC and related
information within PAC attribute fields.  Additionally, the PAC TLV
MAY be used by the peer to request provisioning of a PAC of the type
specified in the PAC-Type PAC attribute.  The PAC TLV MUST only be
used in a protected tunnel providing encryption and integrity
protection.  A general PAC TLV format 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             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        PAC Attributes...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></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>11 - PAC TLV</t>
            </li>
          </ul>
          <t>Length</t>
          <ul empty="true">
            <li>
              <t>Two octets containing the length of the PAC Attributes field in
octets.</t>
            </li>
          </ul>
          <t>PAC Attributes</t>
          <ul empty="true">
            <li>
              <t>A list of PAC attributes in the TLV format.</t>
            </li>
          </ul>
          <section anchor="pac-attr-format">
            <name>Formats for PAC Attributes</name>
            <t>Each PAC attribute in a PAC TLV is formatted as a TLV 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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|            Type               |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                              Value...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
            <t>Type</t>
            <ul empty="true">
              <li>
                <t>The Type field is two octets, denoting the attribute type.
Allocated types include:</t>
                <ul empty="true">
                  <li>
                    <t>1 - PAC-Key</t>
                    <t>2 - PAC-Opaque</t>
                    <t>3 - PAC-Lifetime</t>
                    <t>4 - A-ID</t>
                    <t>5 - I-ID</t>
                    <t>6 - Reserved</t>
                    <t>7 - A-ID-Info</t>
                    <t>8 - PAC-Acknowledgement</t>
                    <t>9 - PAC-Info</t>
                    <t>10 - PAC-Type</t>
                  </li>
                </ul>
              </li>
            </ul>
            <t>Length</t>
            <ul empty="true">
              <li>
                <t>Two octets containing the length of the Value field in octets.</t>
              </li>
            </ul>
            <t>Value</t>
            <ul empty="true">
              <li>
                <t>The value of the PAC attribute.</t>
              </li>
            </ul>
          </section>
          <section anchor="pac-key">
            <name>PAC-Key</name>
            <t>The PAC-Key is a secret key distributed in a PAC attribute of type
PAC-Key.  The PAC-Key attribute is included within the PAC TLV
whenever the server wishes to issue or renew a PAC that is bound to a
key such as a Tunnel PAC.  The key is a randomly generated octet
string that is 48 octets in length.  The generator of this key is the
issuer of the credential, which is identified by the Authority
Identifier (A-ID).</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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|            Type               |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
~                              Key                              ~
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
            <t>Type</t>
            <ul empty="true">
              <li>
                <t>1 - PAC-Key</t>
              </li>
            </ul>
            <t>Length</t>
            <ul empty="true">
              <li>
                <t>2-octet length indicating the length of the key.</t>
              </li>
            </ul>
            <t>Key</t>
            <ul empty="true">
              <li>
                <t>The value of the PAC-Key.</t>
              </li>
            </ul>
          </section>
          <section anchor="pac-opaque">
            <name>PAC-Opaque</name>
            <t>The PAC-Opaque attribute is included within the PAC TLV whenever the
server wishes to issue or renew a PAC.</t>
            <t>The PAC-Opaque is opaque to the peer, and thus the peer MUST NOT
attempt to interpret it.  A peer that has been issued a PAC-Opaque by
a server stores that data and presents it back to the server
according to its PAC-Type.  The Tunnel PAC is used in the ClientHello
SessionTicket extension field defined in <xref target="RFC5077"/>.  If a peer has
opaque data issued to it by multiple servers, then it stores the data
issued by each server separately according to the A-ID.  This
requirement allows the peer to maintain and use each opaque datum as
an independent PAC pairing, with a PAC-Key mapping to a PAC-Opaque
identified by the A-ID.  As there is a one-to-one correspondence
between the PAC-Key and PAC-Opaque, the peer determines the PAC-Key
and corresponding PAC-Opaque based on the A-ID provided in the
TEAP/Start message and the A-ID provided in the PAC-Info when it was
provisioned with a PAC-Opaque.</t>
            <t>The PAC-Opaque attribute format is summarized 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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|            Type               |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                              Value ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
            <t>Type</t>
            <ul empty="true">
              <li>
                <t>2 - PAC-Opaque</t>
              </li>
            </ul>
            <t>Length</t>
            <ul empty="true">
              <li>
                <t>The Length field is two octets, which contains the length of the
Value field in octets.</t>
              </li>
            </ul>
            <t>Value</t>
            <ul empty="true">
              <li>
                <t>The Value field contains the actual data for the PAC-Opaque.  It
is specific to the server implementation.</t>
              </li>
            </ul>
          </section>
          <section anchor="pac-info">
            <name>PAC-Info</name>
            <t>The PAC-Info is comprised of a set of PAC attributes as defined in
<xref target="pac-attr-format"/>.  The PAC-Info attribute MUST contain the A-ID,
A-ID-Info, and PAC-Type attributes.  Other attributes MAY be included
in the PAC-Info to provide more information to the peer.  The
PAC-Info attribute MUST NOT contain the PAC-Key, PAC-Acknowledgement,
PAC-Info, or PAC-Opaque attributes.  The PAC-Info attribute is
included within the PAC TLV whenever the server wishes to issue or
renew a PAC.</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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|            Type               |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                           Attributes...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
            <t>Type</t>
            <ul empty="true">
              <li>
                <t>9 - PAC-Info</t>
              </li>
            </ul>
            <t>Length</t>
            <ul empty="true">
              <li>
                <t>2-octet field containing the length of the Attributes field in
octets.</t>
              </li>
            </ul>
            <t>Attributes</t>
            <ul empty="true">
              <li>
                <t>The Attributes field contains a list of PAC attributes.  Each
mandatory and optional field type is defined as follows:</t>
                <t>3 - PAC-Lifetime</t>
              </li>
            </ul>
            <ul empty="true">
              <li>
                <ul empty="true">
                  <li>
                    <t>This is a 4-octet quantity representing the expiration time of
the credential expressed as the number of seconds, excluding
leap seconds, after midnight UTC, January 1, 1970.  This
attribute MAY be provided to the peer as part of the PAC-Info.</t>
                  </li>
                </ul>
                <t>4 - A-ID</t>
                <ul empty="true">
                  <li>
                    <t>The A-ID is the identity of the authority that issued the PAC.
The A-ID is intended to be unique across all issuing servers to
avoid namespace collisions.  The A-ID is used by the peer to
determine which PAC to employ.  The A-ID is treated as an
opaque octet string.  This attribute MUST be included in the
PAC-Info attribute.  The A-ID MUST match the Authority-ID the
server used to establish the tunnel.  One method for generating
the A-ID is to use a high-quality random number generator to
generate a random number.  An alternate method would be to take
the hash of the public key or public key certificate belonging
to a server represented by the A-ID.</t>
                  </li>
                </ul>
                <t>5 - I-ID</t>
                <ul empty="true">
                  <li>
                    <t>Initiator Identifier (I-ID) is the peer identity associated
with the credential.  This identity is derived from the inner
authentication or from the client-side authentication during
tunnel establishment if inner authentication is not used.  The
server employs the I-ID in the TEAP Phase 2 conversation to
validate that the same peer identity used to execute TEAP Phase
1 is also used in at minimum one inner authentication in TEAP
Phase 2.  If the server is enforcing the I-ID validation on the
inner authentication, then the I-ID MUST be included in the
PAC-Info, to enable the peer to also enforce a unique PAC for
each unique user.  If the I-ID is missing from the PAC-Info, it
is assumed that the Tunnel PAC can be used for multiple users
and the peer will not enforce the unique-Tunnel-PAC-per-user
policy.</t>
                  </li>
                </ul>
                <t>7 - A-ID-Info</t>
                <ul empty="true">
                  <li>
                    <t>Authority Identifier Information is intended to provide a user-
friendly name for the A-ID.  It may contain the enterprise name
and server name in a human-readable format.  This TLV serves as
an aid to the peer to better inform the end user about the
A-ID.  The name is encoded in UTF-8 <xref target="RFC3629"/> format.  This
attribute MUST be included in the PAC-Info.</t>
                  </li>
                </ul>
                <t>10 - PAC-Type</t>
                <ul empty="true">
                  <li>
                    <t>The PAC-Type is intended to provide the type of PAC.  This
attribute SHOULD be included in the PAC-Info.  If the PAC-Type
is not present, then it defaults to a Tunnel PAC (Type 1).</t>
                  </li>
                </ul>
              </li>
            </ul>
          </section>
          <section anchor="pac-acknowledgement-tlv">
            <name>PAC-Acknowledgement TLV</name>
            <t>The PAC-Acknowledgement is used to acknowledge the receipt of the
Tunnel PAC by the peer.  The peer includes the PAC-Acknowledgement
TLV in a PAC TLV sent to the server to indicate the result of the
processing and storing of a newly provisioned Tunnel PAC.  This TLV
is only used when Tunnel PAC is provisioned.</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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|            Type               |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|            Result             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
            <t>Type</t>
            <ul empty="true">
              <li>
                <t>8 - PAC-Acknowledgement</t>
              </li>
            </ul>
            <t>Length</t>
            <ul empty="true">
              <li>
                <t>The length of this field is two octets containing a value of 2.</t>
              </li>
            </ul>
            <t>Result</t>
            <ul empty="true">
              <li>
                <t>The resulting value MUST be one of the following:</t>
                <ul empty="true">
                  <li>
                    <t>1 - Success</t>
                    <t>2 - Failure</t>
                  </li>
                </ul>
              </li>
            </ul>
          </section>
          <section anchor="pac-type-tlv">
            <name>PAC-Type TLV</name>
            <t>The PAC-Type TLV is a TLV intended to specify the PAC-Type.  It is
included in a PAC TLV sent by the peer to request PAC provisioning
from the server.  Its format is described 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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|            Type               |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|         PAC-Type              |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
            <t>Type</t>
            <ul empty="true">
              <li>
                <t>10 - PAC-Type</t>
              </li>
            </ul>
            <t>Length</t>
            <ul empty="true">
              <li>
                <t>2-octet field with a value of 2.</t>
              </li>
            </ul>
            <t>PAC-Type</t>
            <ul empty="true">
              <li>
                <t>This 2-octet field defines the type of PAC being requested or
provisioned.  The following values are defined:</t>
                <ul empty="true">
                  <li>
                    <t>1 - Tunnel PAC</t>
                  </li>
                </ul>
              </li>
            </ul>
          </section>
        </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>The Crypto-Binding TLV MUST be exchanged and verified before the
final Result TLV exchange, regardless of whether there is an inner
authentication method or not.  It MUST be included with the
Intermediate-Result TLV to perform cryptographic binding after each
successful inner authentication in a sequence of authentication methods, before proceeding
with another inner authentication method.  The Crypto-Binding TLV is valid only
if the following checks pass:</t>
          <t>o  The Crypto-Binding TLV version is supported.</t>
          <t>o  The MAC verifies correctly.</t>
          <t>o  The received version in the Crypto-Binding TLV matches the version
   sent by the receiver during the EAP version negotiation.</t>
          <t>o  The subtype is set to the correct value.</t>
          <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>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 this version of TEAP, 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>
            </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>TODO: What if there is just Basic-Password-Auth, and no EAP method?</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>&lt; 1  Binding Response</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>
            </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>
            </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 ....
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
~~~

M

> 0 (Optional)

R

> Reserved, set to zero (0)

TLV Type

> 13 - Basic-Password-Auth-Req TLV

Length

> variable

Prompt

> optional user prompt message in UTF-8 {{RFC3629}} format

### Basic-Password-Auth-Resp TLV {#bp-auth-resp-tlv}

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 {{RFC3629}} format.

The Basic-Password-Auth-Resp TLV is defined as follows:

]]></artwork>
          <t>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    ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
~~~~</t>
          <t>M</t>
          <ul empty="true">
            <li>
              <t>0 (Optional)</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>
            </li>
          </ul>
          <t>Username</t>
          <ul empty="true">
            <li>
              <t>Username in UTF-8 <xref target="RFC3629"/> format</t>
            </li>
          </ul>
          <t>Passlen</t>
          <ul empty="true">
            <li>
              <t>Length of Password field in octets</t>
            </li>
          </ul>
          <t>Password</t>
          <ul empty="true">
            <li>
              <t>Password in UTF-8 <xref target="RFC3629"/> format</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 Acknowledgement (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>
              <ul empty="true">
                <li>
                  <t>=2 octets</t>
                </li>
              </ul>
            </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>
      <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 of TLVs in TEAP does not
matter, except one should always process the Identity-Type TLV before
processing the EAP TLV or Basic Password Authentication TLV as the
Identity-Type TLV is a hint to the type of identity that is to be
authenticated.</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 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+       0+          0+        0         PAC TLV
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
]]></artwork>
          <t>NOTE: Vendor TLVs (included in Vendor-Specific TLVs) sent with a
Result TLV MUST be marked as optional.</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
ciphersuite, TEAP implementations need a mechanism to determine the
version and ciphersuite 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="phase1">
        <name>TEAP Authentication Phase 1: Key Derivations</name>
        <t>With TEAPv1, the TLS master secret is generated as specified in TLS.
If a PAC 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.  The label used in the
derivation is "EXPORTER: teap session key seed".  The length of the
session key seed material is 40 octets.  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>The session_key_seed derived as part of TEAP Phase 2 is used in TEAP
Phase 2 to generate an Intermediate Compound Key (IMCK) used to
verify the integrity of the TLS tunnel after each successful inner
authentication and in the generation of Master Session Key (MSK) and
Extended Master Session Key (EMSK) defined in <xref target="RFC3748"/>.  Note that
the IMCK MUST be recalculated after each successful inner EAP method.</t>
        <t>The first step in these calculations is the generation of the base
compound key, IMCK[n] from the session_key_seed, and any session keys
derived from the successful execution of nth inner EAP methods.  The
inner EAP method(s) may provide Inner Method Session Keys (IMSKs),
IMSK1..IMSKn, corresponding to inner method 1 through n.</t>
        <t>If an inner method supports export of an Extended Master Session Key
(EMSK), then the IMSK SHOULD be derived from the EMSK as defined in
<xref target="RFC5295"/>.  The usage label used is "TEAPbindkey@ietf.org", and the
length is 64 octets.  Optional data parameter is not used in the
derivation.</t>
        <ul empty="true">
          <li>
            <t>IMSK = First 32 octets of TLS-PRF(EMSK, "TEAPbindkey@ietf.org" ||
"\0", 64)</t>
            <t>where "||" denotes concatenation, EMSK is the EMSK from the inner
method, "TEAPbindkey@ietf.org" consists the ASCII value for the
label "TEAPbindkey@ietf.org" (without quotes), "\0" = is a NULL
octet (0x00 in hex), length is the 2-octet unsigned integer in
network byte order, and TLS-PRF is the PRF negotiated as part of
TLS handshake <xref target="RFC5246"/>.</t>
          </li>
        </ul>
        <t>If an inner method does not support export of an Extended Master
Session Key (EMSK), then IMSK is the MSK of the inner method.  The
MSK is truncated at 32 octets if it is longer than 32 octets or
padded to a length of 32 octets with zeros if it is less than 32
octets.</t>
        <t>However, it's 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>
        <t>On the sender of the Crypto-Binding TLV side:</t>
        <ul empty="true">
          <li>
            <t>If the EMSK is not available, then the sender computes the Compound
MAC using the MSK of the inner method.</t>
            <t>If the EMSK is available and the sender's policy accepts MSK-based
MAC, then the sender computes two Compound MAC values.  The first
is computed with the EMSK.  The second one is computed using the
MSK.  Both MACs are then sent to the other side.</t>
            <t>If the EMSK is available but the sender's policy does not allow
downgrading to MSK-generated MAC, then the sender SHOULD only send
EMSK-based MAC.</t>
          </li>
        </ul>
        <t>On the receiver of the Crypto-Binding TLV side:</t>
        <ul empty="true">
          <li>
            <t>If the EMSK is not available and an MSK-based Compound MAC was
sent, then the receiver validates the Compound MAC and sends back
an MSK-based Compound MAC response.</t>
          </li>
        </ul>
        <ul empty="true">
          <li>
            <t>If the EMSK is not available and no MSK-based Compound MAC was
sent, then the receiver handles like an invalid Crypto-Binding TLV
with a fatal error.</t>
          </li>
        </ul>
        <ul empty="true">
          <li>
            <t>If the EMSK is available and an EMSK-based Compound MAC was sent,
then the receiver validates it and creates a response Compound MAC
using the EMSK.</t>
          </li>
        </ul>
        <ul empty="true">
          <li>
            <t>If the EMSK is available but no EMSK-based Compound MAC was sent
and its policy accepts MSK-based MAC, then the receiver validates
it using the MSK and, if successful, generates and returns an MSK-
based Compound MAC.</t>
          </li>
        </ul>
        <ul empty="true">
          <li>
            <t>If the EMSK is available but no EMSK Compound MAC was sent and its
policy does not accept MSK-based MAC, then the receiver handles
like an invalid Crypto-Binding TLV with a fatal error.</t>
          </li>
        </ul>
        <t>If the ith inner method does not generate an EMSK or MSK, then IMSKi
is set to zero (e.g., MSKi = 32 octets of 0x00s).  If an inner method
fails, then it is not included in this calculation.  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] = TLS-PRF(S-IMCK[j-1],
             "Inner Methods Compound Keys" \|\|
             IMSK[j], 60)
        S-IMCK[j] = first 40 octets of IMCK[j]
        CMK[j] = last 20 octets of IMCK[j]
]]></artwork>
        <t>where "||" denotes concatenation, and TLS-PRF is the PRF negotiated as part of TLS handshake
<xref target="RFC5246"/>.</t>
      </section>
      <section anchor="computing-compound-mac">
        <name>Computing the Compound MAC</name>
        <t>For authentication methods that generate keying material, further
protection against man-in-the-middle 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[
   CMK = CMK[j]
   Compound-MAC = MAC( CMK, BUFFER )
]]></artwork>
        <t>where j is the number of the last successfully executed inner EAP
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>The entire Crypto-Binding TLV attribute with both the EMSK and MSK
 Compound MAC fields zeroed out.</li>
          <li>The EAP Type sent by the other party in the first TEAP message,
which MUST be TEAP, encoded as one octet of 0x37.</li>
          <li>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.</li>
          <li>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.</li>
        </ol>
        <t>TODO: What if there is just Basic-Password-Auth, and no EAP method?</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 the EAP method are the result
of all authentication conversations 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 EAP methods with key material from TEAP Phase 1.  The resulting
MSK and EMSK are generated as part of the IMCKn key hierarchy as
follows:</t>
        <artwork><![CDATA[
   MSK  = TLS-PRF(S-IMCK[j], "Session Key Generating Function", 64)
   EMSK = TLS-PRF(S-IMCK[j],
          "Extended Session Key Generating Function", 64)
]]></artwork>
        <t>where j is the number of the last successfully executed inner EAP
method.</t>
        <t>TODO: rectify with 5.2</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 EAP methods have been negotiated inside the tunnel or no EAP
methods have been successfully completed inside the tunnel, the MSK
and EMSK will be generated directly from the session_key_seed meaning
S-IMCK = session_key_seed.</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="RFC5226"/>.</t>
    </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 authentication
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 authentication 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>The Result TLV is protected and conveys the true Success or Failure
of TEAP, and it should be used as the indicator of its success or
failure respectively.  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 that do not coincide with the status sent in the protected
Result TLV.</t>
      </section>
      <section anchor="method-negotiation">
        <name>Method Negotiation</name>
        <t>As is true for any negotiated EAP protocol, NAK packets used to
suggest an alternate 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
negotiate 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
authentication methods, so TEAP should be selected when available.</t>
        <t>An attacker cannot readily determine the inner EAP 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>
        <t>o  Loss of identity protection</t>
        <t>o  Offline dictionary attacks</t>
        <t>o  Lack of policy enforcement</t>
        <t>o  Man-in-the-middle attacks (as described in <xref target="RFC7029"/>)</t>
        <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 inner and outer method
servers allows for crypto-binding based on the inner method MSK to be
thwarted as described in <xref target="RFC7029"/>.  Implementation and deployment
SHOULD adopt various mitigation strategies described in <xref target="RFC7029"/>.
If the inner method is deriving EMSK, then this threat is mitigated
as TEAP utilizes the mutual crypto-binding based on EMSK as described
in <xref target="RFC7029"/>.</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 the EAP
method.  By employing a shared secret between the peer and server to
establish a secured tunnel, TEAP enables:</t>
        <t>o  Per-packet confidentiality and integrity protection</t>
        <t>o  User identity protection</t>
        <t>o  Better support for notification messages</t>
        <t>o  Protected EAP inner method negotiation</t>
        <t>o  Sequencing of EAP methods</t>
        <t>o  Strong mutually derived MSKs</t>
        <t>o  Acknowledged success/failure indication</t>
        <t>o  Faster re-authentications through session resumption</t>
        <t>o  Mitigation of dictionary attacks</t>
        <t>o  Mitigation of man-in-the-middle attacks</t>
        <t>o  Mitigation of some denial-of-service attacks</t>
        <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 authentication methods
that typically rely on weak credentials, such as password-based
secrets.  To that extent, the TEAP authentication mitigates several
vulnerabilities, such as dictionary attacks, by protecting the weak
credential-based authentication 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="RFC4282"/> 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>Identity request/response exchanges sent after the TEAP tunnel is
established are protected from modification and eavesdropping by
attackers.</t>
          <t>Note that since TLS client certificates are sent in the clear, 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
an EAP method (for example, EAP-TLS) within the TLS session in TEAP
Phase 2 instead of using TLS handshake renegotiation.</t>
        </section>
        <section anchor="dictionary-attack-resistance">
          <name>Dictionary Attack Resistance</name>
          <t>TEAP was designed with a focus on protected authentication methods
that typically rely on weak credentials, such as password-based
secrets.  TEAP mitigates dictionary attacks by allowing the
establishment of a mutually authenticated encrypted TLS tunnel
providing confidentiality and integrity to protect the weak
credential-based authentication method.</t>
        </section>
        <section anchor="protection-against-man-in-the-middle-attacks">
          <name>Protection against Man-in-the-Middle Attacks</name>
          <t>Allowing methods to be executed both with and without the protection
of a secure tunnel opens up a possibility of a man-in-the-middle
attack.  To avoid man-in-the-middle attacks it is recommended to
always deploy authentication methods with the protection of TEAP.
TEAP provides protection from man-in-the-middle attacks even if a
deployment chooses to execute inner EAP methods both with and without
TEAP protection.  TEAP prevents this attack in two ways:</t>
          <ol spacing="normal" type="1"><li>By using the PAC-Key to mutually authenticate the peer and server
during TEAP authentication Phase 1 establishment of a secure
tunnel.</li>
            <li>By using the keys generated by the inner authentication method
(if the inner methods are key generating) in the crypto-binding
exchange and in the generation of the key material exported by
the EAP method described in <xref target="cryptographic-calculations"/>.</li>
          </ol>
          <t>TEAP crypto binding does not guarantee man-in-the-middle protection
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 ciphersuite derives the master secret solely
from the contribution of secret data from one side of the
conversation (such as ciphersuites 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
ciphersuite derives the master secret from the contribution of
secrets from both sides of the conversation (such as in ciphersuites
based on Diffie-Hellman), then crypto binding can detect an attacker
in the conversation if a strong inner method is used.</t>
        </section>
        <section anchor="pac-binding-to-user-identity">
          <name>PAC Binding to User Identity</name>
          <t>A PAC may be bound to a user identity.  A compliant implementation of
TEAP MUST validate that an identity obtained in the PAC-Opaque field
matches at minimum one of the identities provided in the TEAP Phase 2
authentication method.  This validation provides another binding to
ensure that the intended peer (based on identity) has successfully
completed the TEAP Phase 1 and proved identity in the Phase 2
conversations.</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="server-certificate-validation">
        <name>Server Certificate Validation</name>
        <t>As part of the TLS negotiation, the server presents a certificate to
the peer.  The peer SHOULD verify the validity of the EAP server
certificate and SHOULD also examine the EAP server name presented in
the certificate in order to determine whether the EAP server can be
trusted.  When performing server certificate validation,
implementations MUST provide support for 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 might not be
turned on.  Please note that in the case where the EAP authentication
is remote, the EAP server will not reside on the same machine as the
authenticator, and therefore, the name in the EAP server's
certificate cannot be expected to match that of the intended
destination.  In this case, a more appropriate test might be whether
the EAP server's certificate is signed by a certification authority
(CA) controlling the intended domain and whether the authenticator
can be authorized by a server in that domain.</t>
      </section>
      <section anchor="tunnel-pac-considerations">
        <name>Tunnel PAC Considerations</name>
        <t>Since the Tunnel PAC is stored by the peer, special care should be
given to the overall security of the peer.  The Tunnel PAC MUST be
securely stored by the peer to prevent theft or forgery of any of the
Tunnel PAC components.  In particular, the peer MUST securely store
the PAC-Key and protect it from disclosure or modification.
Disclosure of the PAC-Key enables an attacker to establish the TEAP
tunnel; however, disclosure of the PAC-Key does not reveal the peer
or server identity or compromise any other peer's PAC credentials.
Modification of the PAC-Key or PAC-Opaque components of the Tunnel
PAC may also lead to denial of service as the tunnel establishment
will fail.  The PAC-Opaque component is the effective TLS ticket
extension used to establish the tunnel using the techniques of
<xref target="RFC5077"/>.  Thus, the security considerations defined by <xref target="RFC5077"/>
also apply to the PAC-Opaque.  The PAC-Info may contain information
about the Tunnel PAC such as the identity of the PAC issuer and the
Tunnel PAC lifetime for use in the management of the Tunnel PAC.  The
PAC-Info should be securely stored by the peer to protect it from
disclosure and modification.</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.

Ciphersuite 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.

Replay protection:       Yes

Confidentiality:         Yes

Key derivation:          Yes

Key strength:            See Note 1 below.

Dictionary attack prot.: Yes

Fast reconnect:          Yes

Cryptographic binding:   Yes

Session independence:    Yes

Fragmentation:           Yes

Key Hierarchy:           Yes

Channel binding:         Yes
]]></artwork>
        <t>Notes</t>
        <ol spacing="normal" type="1"><li>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:</li>
        </ol>
        <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>
      </section>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>This specification is based on EAP-FAST <xref target="RFC4851"/>, which included the
ideas and efforts of Nancy Cam-Winget, David McGrew, Joe Salowey, Hao
Zhou, Pad Jakkahalli, Mark Krischer, Doug Smith, and Glen Zorn of
Cisco Systems, Inc.</t>
      <t>The TLV processing was inspired from work on the Protected Extensible
Authentication Protocol version 2 (PEAPv2) with Ashwin Palekar, Dan
Smith, Sean Turner, and Simon Josefsson.</t>
      <t>The method for linking identity and proof-of-possession by placing
the tls-unique value in the challenge\Password field of the CSR as
described in <xref target="cert-provisioning"/> was inspired by the technique described in
"Enrollment over Secure Transport" <xref target="RFC7030"/>.</t>
      <t>Helpful review comments were provided by Russ Housley, Jari Arkko,
Ilan Frenkel, Jeremy Steiglitz, Dan Harkins, Sam Hartman, Jim Schaad,
Barry Leiba, Stephen Farrell, Chris Lonvick, and Josh Howlett.</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 RFC 7170 output.</t>
      <t>Formatting changes result from differences between using Markdown
versus XML for source.</t>
      <t>The IANA considerations section was removed, as the registries already
exist.</t>
      <t>There should be no other content changes from RFC 7170.</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-ciphersuite-negotiation">
        <name>A.3.  Requirement 4.2.1.1.1: Ciphersuite Negotiation</name>
        <t>TEAPv1 meets this requirement by using TLS to provide protected
ciphersuite 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
TLS_RSA_WITH_AES_128_CBC_SHA as a mandatory-to-implement ciphersuite
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
TLS_RSA_WITH_AES_128_CBC_SHA as a mandatory-to-implement ciphersuite
that provides certificate-based authentication of the server and is
approved by NIST.  The mandatory-to-implement ciphersuites only
include ciphersuites that use strong cryptographic algorithms.  They
do not include ciphersuites providing mutually anonymous
authentication or static Diffie-Hellman ciphersuites 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 resume using a
PAC as defined in <xref target="resume-pac"/> .</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 EAP 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 Section 4.2.15.</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="eap-sequences"/>.</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>The EAP method name has been changed from EAP-FAST to TEAP; this
change thus requires that a new EAP Type be assigned.</li>
        <li>This version of TEAP MUST support TLS 1.2 <xref target="RFC5246"/>.</li>
        <li>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.</li>
        <li>TEAP is in full conformance with TLS ticket extension <xref target="RFC5077"/>
as described in <xref target="resume-pac"/>.</li>
        <li>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.</li>
        <li>Basic password authentication on the TLV level has been added in
addition to the existing inner EAP method.</li>
        <li>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"/>.</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 and optional PAC refreshment.  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 with
    PAC-Opaque in SessionTicket extension)->

                           <- 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),
                            (Optional PAC TLV)

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

   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 with
    PAC-Opaque in SessionTicket extension)->

                           <- 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-ciphersuite">
        <name>C.3.  Full TLS Handshake Using Certificate-Based Ciphersuite</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
  PAC-Opaque in SessionTicket extension)->

  // Peer sends PAC-Opaque of Tunnel PAC along with a list of
     ciphersuites supported.  If the server rejects the PAC-
     Opaque, 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 piggybacked to 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:</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 piggybacked to 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 piggybacked to 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-Type=Y],

  // Next EAP conversation started after successful completion
     of previous method X.  The Intermediate-Result and Crypto-
     Binding TLVs are sent in next packet to minimize round
     trips.  In this example, an identity request is not sent
     before negotiating EAP-Type=Y.

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

  Intermediate Result TLV (Success),
  Crypto-Binding TLV (Response),
  EAP-Payload-TLV [EAP-Type=Y] ->

         // Optional additional Y Method 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 without
  PAC-Opaque in SessionTicket extension)->
                          <- 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 piggybacked to the TLS Finished as
        Application Data and protected by the TLS tunnel.
   
  EAP-Payload TLV/
  EAP Identity Response ->
   
                         <-  EAP Payload TLV, EAP-Request,
                             (EAP-MSCHAPV2, Challenge)
   
  EAP Payload TLV, EAP-Response,
  (EAP-MSCHAPV2, Response) ->
   
                         <-  EAP Payload TLV, EAP-Request,
                             (EAP-MSCHAPV2, Success Request)
   
  EAP Payload TLV, EAP-Response,
  (EAP-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 piggybacked to 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.

                          <- 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 with
    PAC-Opaque in SessionTicket extension)->

                           <- 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>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="BCP14" target="https://www.rfc-editor.org/info/rfc8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC3748" target="https://www.rfc-editor.org/info/rfc3748">
          <front>
            <title>Extensible Authentication Protocol (EAP)</title>
            <author fullname="B. Aboba" initials="B." surname="Aboba">
              <organization/>
            </author>
            <author fullname="L. Blunk" initials="L." surname="Blunk">
              <organization/>
            </author>
            <author fullname="J. Vollbrecht" initials="J." surname="Vollbrecht">
              <organization/>
            </author>
            <author fullname="J. Carlson" initials="J." surname="Carlson">
              <organization/>
            </author>
            <author fullname="H. Levkowetz" initials="H." role="editor" surname="Levkowetz">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc5077">
          <front>
            <title>Transport Layer Security (TLS) Session Resumption without Server-Side State</title>
            <author fullname="J. Salowey" initials="J." surname="Salowey">
              <organization/>
            </author>
            <author fullname="H. Zhou" initials="H." surname="Zhou">
              <organization/>
            </author>
            <author fullname="P. Eronen" initials="P." surname="Eronen">
              <organization/>
            </author>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig">
              <organization/>
            </author>
            <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="RFC5226" target="https://www.rfc-editor.org/info/rfc5226">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="T. Narten" initials="T." surname="Narten">
              <organization/>
            </author>
            <author fullname="H. Alvestrand" initials="H." surname="Alvestrand">
              <organization/>
            </author>
            <date month="May" year="2008"/>
            <abstract>
              <t>Many protocols make use of identifiers consisting of constants and other well-known values.  Even after a protocol has been defined and deployment has begun, new values may need to be assigned (e.g., for a new option type in DHCP, or a new encryption or authentication transform for IPsec).  To ensure that such quantities have consistent values and interpretations across all implementations, their assignment must be administered by a central authority.  For IETF protocols, that role is provided by the Internet Assigned Numbers Authority (IANA).</t>
              <t>In order for IANA to manage a given namespace prudently, it needs guidelines describing the conditions under which new values can be assigned or when modifications to existing values can be made.  If IANA is expected to play a role in the management of a namespace, IANA must be given clear and concise instructions describing that role.  This document discusses issues that should be considered in formulating a policy for assigning values to a namespace and provides guidelines for authors on the specific text that must be included in documents that place demands on IANA.</t>
              <t>This document obsoletes RFC 2434.  This document specifies an Internet Best  Current Practices for the Internet Community, and requests discussion and  suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5226"/>
          <seriesInfo name="DOI" value="10.17487/RFC5226"/>
        </reference>
        <reference anchor="RFC5246" target="https://www.rfc-editor.org/info/rfc5246">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.2</title>
            <author fullname="T. Dierks" initials="T." surname="Dierks">
              <organization/>
            </author>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/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">
              <organization/>
            </author>
            <author fullname="L. Dondeti" initials="L." surname="Dondeti">
              <organization/>
            </author>
            <author fullname="V. Narayanan" initials="V." surname="Narayanan">
              <organization/>
            </author>
            <author fullname="M. Nakhjiri" initials="M." surname="Nakhjiri">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc5705">
          <front>
            <title>Keying Material Exporters for Transport Layer Security (TLS)</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc5746">
          <front>
            <title>Transport Layer Security (TLS) Renegotiation Indication Extension</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <author fullname="M. Ray" initials="M." surname="Ray">
              <organization/>
            </author>
            <author fullname="S. Dispensa" initials="S." surname="Dispensa">
              <organization/>
            </author>
            <author fullname="N. Oskov" initials="N." surname="Oskov">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc5929">
          <front>
            <title>Channel Bindings for TLS</title>
            <author fullname="J. Altman" initials="J." surname="Altman">
              <organization/>
            </author>
            <author fullname="N. Williams" initials="N." surname="Williams">
              <organization/>
            </author>
            <author fullname="L. Zhu" initials="L." surname="Zhu">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc6677">
          <front>
            <title>Channel-Binding Support for Extensible Authentication Protocol (EAP) Methods</title>
            <author fullname="S. Hartman" initials="S." role="editor" surname="Hartman">
              <organization/>
            </author>
            <author fullname="T. Clancy" initials="T." surname="Clancy">
              <organization/>
            </author>
            <author fullname="K. Hoeper" initials="K." surname="Hoeper">
              <organization/>
            </author>
            <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>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="IEEE.802-1X.2013">
          <front>
            <title>Local and Metropolitan Area Networks: Port-Based Network Access Control</title>
            <author initials="" surname="IEEE" fullname="IEEE">
              <organization/>
            </author>
            <date year="2017" month="December"/>
          </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" target="https://www.rfc-editor.org/info/rfc2315">
          <front>
            <title>PKCS #7: Cryptographic Message Syntax Version 1.5</title>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski">
              <organization/>
            </author>
            <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="RFC2985" target="https://www.rfc-editor.org/info/rfc2985">
          <front>
            <title>PKCS #9: Selected Object Classes and Attribute Types Version 2.0</title>
            <author fullname="M. Nystrom" initials="M." surname="Nystrom">
              <organization/>
            </author>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc2986">
          <front>
            <title>PKCS #10: Certification Request Syntax Specification Version 1.7</title>
            <author fullname="M. Nystrom" initials="M." surname="Nystrom">
              <organization/>
            </author>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski">
              <organization/>
            </author>
            <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="RFC3579" target="https://www.rfc-editor.org/info/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">
              <organization/>
            </author>
            <author fullname="P. Calhoun" initials="P." surname="Calhoun">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc3629">
          <front>
            <title>UTF-8, a transformation format of ISO 10646</title>
            <author fullname="F. Yergeau" initials="F." surname="Yergeau">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc3766">
          <front>
            <title>Determining Strengths For Public Keys Used For Exchanging Symmetric Keys</title>
            <author fullname="H. Orman" initials="H." surname="Orman">
              <organization/>
            </author>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc4017">
          <front>
            <title>Extensible Authentication Protocol (EAP) Method Requirements for Wireless LANs</title>
            <author fullname="D. Stanley" initials="D." surname="Stanley">
              <organization/>
            </author>
            <author fullname="J. Walker" initials="J." surname="Walker">
              <organization/>
            </author>
            <author fullname="B. Aboba" initials="B." surname="Aboba">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc4072">
          <front>
            <title>Diameter Extensible Authentication Protocol (EAP) Application</title>
            <author fullname="P. Eronen" initials="P." role="editor" surname="Eronen">
              <organization/>
            </author>
            <author fullname="T. Hiller" initials="T." surname="Hiller">
              <organization/>
            </author>
            <author fullname="G. Zorn" initials="G." surname="Zorn">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc4086">
          <front>
            <title>Randomness Requirements for Security</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd">
              <organization/>
            </author>
            <author fullname="J. Schiller" initials="J." surname="Schiller">
              <organization/>
            </author>
            <author fullname="S. Crocker" initials="S." surname="Crocker">
              <organization/>
            </author>
            <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="RFC4282" target="https://www.rfc-editor.org/info/rfc4282">
          <front>
            <title>The Network Access Identifier</title>
            <author fullname="B. Aboba" initials="B." surname="Aboba">
              <organization/>
            </author>
            <author fullname="M. Beadles" initials="M." surname="Beadles">
              <organization/>
            </author>
            <author fullname="J. Arkko" initials="J." surname="Arkko">
              <organization/>
            </author>
            <author fullname="P. Eronen" initials="P." surname="Eronen">
              <organization/>
            </author>
            <date month="December" year="2005"/>
            <abstract>
              <t>In order to provide roaming services, it is necessary to have a standardized method for identifying users.  This document defines the syntax for the Network Access Identifier (NAI), the user identity submitted by the client during network authentication.  "Roaming" may be loosely defined as the ability to use any one of multiple Internet Service Providers (ISPs), while maintaining a formal, \%customer-vendor relationship with only one.  Examples of where roaming capabilities might be required include ISP "confederations" and \%ISP-provided corporate network access support.  This document is a revised version of RFC 2486, which originally defined NAIs.  Enhancements include international character set and privacy support, as well as a number of corrections to the original RFC.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4282"/>
          <seriesInfo name="DOI" value="10.17487/RFC4282"/>
        </reference>
        <reference anchor="RFC4648" target="https://www.rfc-editor.org/info/rfc4648">
          <front>
            <title>The Base16, Base32, and Base64 Data Encodings</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/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">
              <organization/>
            </author>
            <author fullname="D. McGrew" initials="D." surname="McGrew">
              <organization/>
            </author>
            <author fullname="J. Salowey" initials="J." surname="Salowey">
              <organization/>
            </author>
            <author fullname="H. Zhou" initials="H." surname="Zhou">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc4945">
          <front>
            <title>The Internet IP Security PKI Profile of IKEv1/ISAKMP, IKEv2, and PKIX</title>
            <author fullname="B. Korver" initials="B." surname="Korver">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc4962">
          <front>
            <title>Guidance for Authentication, Authorization, and Accounting (AAA) Key Management</title>
            <author fullname="R. Housley" initials="R." surname="Housley">
              <organization/>
            </author>
            <author fullname="B. Aboba" initials="B." surname="Aboba">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc5247">
          <front>
            <title>Extensible Authentication Protocol (EAP) Key Management Framework</title>
            <author fullname="B. Aboba" initials="B." surname="Aboba">
              <organization/>
            </author>
            <author fullname="D. Simon" initials="D." surname="Simon">
              <organization/>
            </author>
            <author fullname="P. Eronen" initials="P." surname="Eronen">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc5272">
          <front>
            <title>Certificate Management over CMS (CMC)</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad">
              <organization/>
            </author>
            <author fullname="M. Myers" initials="M." surname="Myers">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/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">
              <organization/>
            </author>
            <author fullname="S. Santesson" initials="S." surname="Santesson">
              <organization/>
            </author>
            <author fullname="S. Farrell" initials="S." surname="Farrell">
              <organization/>
            </author>
            <author fullname="S. Boeyen" initials="S." surname="Boeyen">
              <organization/>
            </author>
            <author fullname="R. Housley" initials="R." surname="Housley">
              <organization/>
            </author>
            <author fullname="W. Polk" initials="W." surname="Polk">
              <organization/>
            </author>
            <date month="May" year="2008"/>
            <abstract>
              <t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet.  An overview of this approach and model is provided as an introduction.  The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms.  Standard certificate extensions are described and two Internet-specific extensions are defined.  A set of required certificate extensions is specified.  The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions.  An algorithm for X.509 certification path validation is described.  An ASN.1 module and examples are provided in the appendices.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5280"/>
          <seriesInfo name="DOI" value="10.17487/RFC5280"/>
        </reference>
        <reference anchor="RFC5281" target="https://www.rfc-editor.org/info/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">
              <organization/>
            </author>
            <author fullname="S. Blake-Wilson" initials="S." surname="Blake-Wilson">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/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">
              <organization/>
            </author>
            <author fullname="H. Zhou" initials="H." surname="Zhou">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/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">
              <organization/>
            </author>
            <author fullname="D. McGrew" initials="D." surname="McGrew">
              <organization/>
            </author>
            <author fullname="J. Salowey" initials="J." surname="Salowey">
              <organization/>
            </author>
            <author fullname="H. Zhou" initials="H." surname="Zhou">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc5652">
          <front>
            <title>Cryptographic Message Syntax (CMS)</title>
            <author fullname="R. Housley" initials="R." surname="Housley">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc5931">
          <front>
            <title>Extensible Authentication Protocol (EAP) Authentication Using Only a Password</title>
            <author fullname="D. Harkins" initials="D." surname="Harkins">
              <organization/>
            </author>
            <author fullname="G. Zorn" initials="G." surname="Zorn">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc6066">
          <front>
            <title>Transport Layer Security (TLS) Extensions: Extension Definitions</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc6124">
          <front>
            <title>An EAP Authentication Method Based on the Encrypted Key Exchange (EKE) Protocol</title>
            <author fullname="Y. Sheffer" initials="Y." surname="Sheffer">
              <organization/>
            </author>
            <author fullname="G. Zorn" initials="G." surname="Zorn">
              <organization/>
            </author>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig">
              <organization/>
            </author>
            <author fullname="S. Fluhrer" initials="S." surname="Fluhrer">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc6678">
          <front>
            <title>Requirements for a Tunnel-Based Extensible Authentication Protocol (EAP) Method</title>
            <author fullname="K. Hoeper" initials="K." surname="Hoeper">
              <organization/>
            </author>
            <author fullname="S. Hanna" initials="S." surname="Hanna">
              <organization/>
            </author>
            <author fullname="H. Zhou" initials="H." surname="Zhou">
              <organization/>
            </author>
            <author fullname="J. Salowey" initials="J." role="editor" surname="Salowey">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc6960">
          <front>
            <title>X.509 Internet Public Key Infrastructure Online Certificate Status Protocol - OCSP</title>
            <author fullname="S. Santesson" initials="S." surname="Santesson">
              <organization/>
            </author>
            <author fullname="M. Myers" initials="M." surname="Myers">
              <organization/>
            </author>
            <author fullname="R. Ankney" initials="R." surname="Ankney">
              <organization/>
            </author>
            <author fullname="A. Malpani" initials="A." surname="Malpani">
              <organization/>
            </author>
            <author fullname="S. Galperin" initials="S." surname="Galperin">
              <organization/>
            </author>
            <author fullname="C. Adams" initials="C." surname="Adams">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc6961">
          <front>
            <title>The Transport Layer Security (TLS) Multiple Certificate Status Request Extension</title>
            <author fullname="Y. Pettersen" initials="Y." surname="Pettersen">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc7029">
          <front>
            <title>Extensible Authentication Protocol (EAP) Mutual Cryptographic Binding</title>
            <author fullname="S. Hartman" initials="S." surname="Hartman">
              <organization/>
            </author>
            <author fullname="M. Wasserman" initials="M." surname="Wasserman">
              <organization/>
            </author>
            <author fullname="D. Zhang" initials="D." surname="Zhang">
              <organization/>
            </author>
            <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="RFC7030" target="https://www.rfc-editor.org/info/rfc7030">
          <front>
            <title>Enrollment over Secure Transport</title>
            <author fullname="M. Pritikin" initials="M." role="editor" surname="Pritikin">
              <organization/>
            </author>
            <author fullname="P. Yee" initials="P." role="editor" surname="Yee">
              <organization/>
            </author>
            <author fullname="D. Harkins" initials="D." role="editor" surname="Harkins">
              <organization/>
            </author>
            <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="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>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
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
6+zG1/olfHkzXBrXjZXSY8l7K2IvH4WkhvjmRgR2z+WGxr53BuOQ0+IftwIs
uemjVKeR7mO6MOwJzfyxPDqsR2NAJGjtQ9V6wUgyuQnG1FyIzyL2Id+aDl+Q
+8SP8WvXsJI5cvLgThFFozb5xZLAT9i7d3VZLwrFULNhE8raumIwG1KNfJs+
5a5fh3fT2gRdG3uC+r+O2W0kgcfiOtU/eSrjm3I2Q1KPDe8TOIN6rQg4yCR6
iMaOI57q5DjKVRUn2xReFdAAXklZRop4q5Vf7eDad/bRxE4yfae7FrOyQ1JB
Ot6ck6Q+0IaXKYMLC04Hd+X+SLbyaQxi7LWx3yTZ/NYM5dXh1xse/vXwt+eY
jnb7KTxlZq3WoNv30+dyt36xV8T41iN1la42vGS/x99GMkg/OlL7TIHIb91b
alm7/fW0IQQv2BMfW5tNETwbhhCHHufKwQ637lEs1h9dG/tszLrGNyPcQM8f
Cz2JcdFz3B6h0RPbfPGwHuHO+01XKzDeLDUJPs0XM6pOhPEUmlYuX05n7ktQ
sTBPp58cgKblJBV9wvxurZWO37TFGsZOsGDhxbpi1WDrzdsX26ybYN7G4gIl
k8tl6zK/VTykot6LazbTngQphg7c+aTkBAeMa3AtMFaxgvniReBUoTArV5fw
57pEg9VoUElVECz1skAZrmyXHOCkCHEoaHrVyrWHA8bQBrZPchY92fnjkNGE
3k9yyitWp/DVjovKJuigA3S6ty/CYOEEtk1UZJxWT6nhS3DvMaGwP7MNpCol
+NUe7O8fkZTw5fd7E1u8Zd52ZOukygcwvFgbIDe4V7t0dyhB2SNs+5Lw/aY4
sJ1b8hkBwSNrcwzN+z14/V1BbcaS9yc4HaSMYyzAjUaI59+RHtwk0LDc3INd
tOfSiiIYm2hUtDXfAll/2xaG1LDIQcPyAOHB0TwM/M7zP715/fb0+dvHoP0S
HCM1Q6cDm7nTr+RIbfSfwlRyHjXWVHAJGK8oEqQrvusUQFzHQqJeQXN0lXJP
R2bS922POZtEMgo9VDfOAktYAaUN4QnniBaSvzg/ygX6SSAObOZVsaB/LSaP
PQKKKCNBUbYaYrcPWpP3BD8kx5cskEJlMIie4JXPewDA4oW/d0BE06veGNNe
hgcgqeVo6ScwhB82LK0NJAJlJih5DlyeBEP9HJY2QiVWN4xv6+j46dfbitoR
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
PfgUsnM46Y1tuLi77mfOVc5hNC98jB1dQmyf5q4lK/TtIChTZGoly29sZtG9
3Dg5HjHKPTPVnqEe6Udjl+V79KT9WLWj4WCLBISSHWe53bNwcNgj3e9blUKS
WMgb11eP4QdAPRnRU7njHDEO+/ftbRKYg2T/cfqD3nFVRcoqfE79cHZw37m1
sIPstSAxfJxN2pyJvKjRi+8BEXGj7P6W6lnrwjH2qvHlG8UEoB4Eam+wMUZa
ny9Al8JCg5zsrpyD9CsZzTVHOXiz8QFFUdUXm+4bMejY6JOmXpKtPcnaldqU
zhwWIDe4ua/G7sVwCzXcXuFDjbH5yLOlvVgBugCEH8UAc3rzM/XCoTZqAeAg
zFcjsXxxx10h0yzZpKErRC53yG1tbEgIMa44DdgqgGkfZSKQDhjAmsEiAdhm
lIGYEPUQcmjycnLNxVakMSkdgvhg+0e7PyH2QN2sKLycSpaeTzJiGnM9lrqD
eDcikQNNAOw/1rwxv0TIdW/SGc5IZchFFW6yRrzvHQlxwYlpT7a+Zv2lL5z9
jMik04wuvoLWKINYw7Tldc1qyywBwSq2k50OqxqWb6u+71qYaB56waCvxveV
MVezqnCGri+Rrob9VWE5UZVZx9FyddWyCDAzhQ43iqEElwOglFAWOXbqc7RI
xW9GOYNApTAE1HOmEC6CUamWrlWpR3Zra1QLbDbcHKFTrnZd2m1PB4+CVQJY
K67sE31XLZVoOh/v7fz+O5llylfHqY4ULyo51x0FraRKK48pdv5HVRSXPGRE
QDr0ollYcRx6UQgFqQobeVec08bo4ExdadvAYs+042mfvmYQfpd8S9TRQW77
vPa6e7jO4+3sdex4+aZTXfPJ7lYNBNgPVnL19W3S4RWxDKm8RiZCEODNBNSl
mE+XB+48+RPEole48kCvyNKRclJK74zrHRgDwqQGhvuoGN1egVALNGuMcMtj
2HOjus24dhS4rDwHU+EWhS2PDKzhEWk7Q3ukqD6ws90wjIZ/ot7DjAUu8CnG
7sppPpLJ4KmkeZW6QYcQQ8AOOZqcUeIjxVZ6IEgenGeGOaUra6iXpnF9S8y3
zacQN6hY8Dh3MGhJEkBHHURZPqhAV0iG41qAJYwl4vJY0LydQvUy8LlhzhZS
MdgGXB/BeTksfAKPO0ChH/OwtitYaWJ/JXg++RlU8cLuunxJCGxWDuY3tYMp
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
NTtUfa+s+HD3gBvI/D/glMkYWIQCAA==

-->

</rfc>
