<?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-00" 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-00"/>
    <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"/>.  If more than one method is going to be executed in
the tunnel, then upon method completion, 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.  Upon receiving the response, the server
indicates the success or failure of the exchange using an
Intermediate-Result TLV.  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="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.  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 EAP method in a sequence of one or more
EAP methods.  The server may send the final Result TLV along with an
Intermediate-Result TLV and a Crypto-Binding TLV to indicate its
intention to end the conversation.  If the peer requires nothing more
from the server, it will respond with a Result TLV indicating success
accompanied by a Crypto-Binding TLV and Intermediate-Result TLV if
necessary.  The server then tears down the tunnel and sends a
cleartext EAP Success or EAP Failure.</t>
          <t>If the peer receives a Result TLV indicating success from the server,
but its authentication policies are not satisfied (for example, it
requires a particular authentication mechanism 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 EAP 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>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>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
server does not process the action requested by the peer.  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 provides support for acknowledged
intermediate Success and Failure messages between multiple inner EAP
methods within EAP.  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
EAP method authentication or not.  It MUST be included with the
Intermediate-Result TLV to perform cryptographic binding after each
successful EAP method in a sequence of EAP methods, before proceeding
with another inner EAP 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>
                </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 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 1.2 <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.</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>
      </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>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.) ...

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

   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) ->

                           <- 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="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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

-->

</rfc>
