<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE rfc SYSTEM 'rfc2629.dtd' []>
<rfc ipr="trust200902" category="exp" docName="draft-ietf-tcpinc-tcpeno-04">
<?rfc toc="yes"?>
<?rfc symrefs="yes"?>
<?rfc sortrefs="yes"?>
<?rfc compact="yes"?>
<?rfc subcompact="no"?>
<?rfc private=""?>
<?rfc topblock="yes"?>
<?rfc comments="no"?>
<front>
<title abbrev="tcpeno">TCP-ENO: Encryption Negotiation Option</title>

<author initials="A." surname="Bittau" fullname="Andrea Bittau">
<organization>Stanford University</organization>
<address>
<postal>
<street>353 Serra Mall, Room 288</street>
<city>Stanford, CA</city>
<code>94305</code>
<country>US</country>
<region></region>
</postal>
<phone></phone>
<email>bittau@cs.stanford.edu</email>
<uri></uri>
</address>
</author>
<author initials="D." surname="Boneh" fullname="Dan Boneh">
<organization>Stanford University</organization>
<address>
<postal>
<street>353 Serra Mall, Room 475</street>
<city>Stanford, CA</city>
<code>94305</code>
<country>US</country>
<region></region>
</postal>
<phone></phone>
<email>dabo@cs.stanford.edu</email>
<uri></uri>
</address>
</author>
<author initials="D." surname="Giffin" fullname="Daniel B. Giffin">
<organization>Stanford University</organization>
<address>
<postal>
<street>353 Serra Mall, Room 288</street>
<city>Stanford, CA</city>
<code>94305</code>
<country>US</country>
<region></region>
</postal>
<phone></phone>
<email>dbg@scs.stanford.edu</email>
<uri></uri>
</address>
</author>
<author initials="M." surname="Handley" fullname="Mark Handley">
<organization>University College London</organization>
<address>
<postal>
<street>Gower St.</street>
<city>London</city>
<code>WC1E 6BT</code>
<country>UK</country>
<region></region>
</postal>
<phone></phone>
<email>M.Handley@cs.ucl.ac.uk</email>
<uri></uri>
</address>
</author>
<author initials="D." surname="Mazieres" fullname="David Mazieres">
<organization>Stanford University</organization>
<address>
<postal>
<street>353 Serra Mall, Room 290</street>
<city>Stanford, CA</city>
<code>94305</code>
<country>US</country>
<region></region>
</postal>
<phone></phone>
<email>dm@uun.org</email>
<uri></uri>
</address>
</author>
<author initials="E." surname="Smith" fullname="Eric W. Smith">
<organization>Kestrel Institute</organization>
<address>
<postal>
<street>3260 Hillview Avenue</street>
<city>Palo Alto, CA</city>
<code>94304</code>
<country>US</country>
<region></region>
</postal>
<phone></phone>
<email>eric.smith@kestrel.edu</email>
<uri></uri>
</address>
</author>
<date year="2016" month="July" day="28"/>

<area>Internet</area>
<workgroup></workgroup>
<keyword>tcp</keyword>
<keyword>encryption</keyword>


<abstract>
<t>Despite growing adoption of TLS <xref target="RFC5246"/>, a significant fraction of
TCP traffic on the Internet remains unencrypted.  The persistence of
unencrypted traffic can be attributed to at least two factors.  First,
some legacy protocols lack a signaling mechanism (such as a <spanx style="verb">STARTTLS</spanx>
command) by which to convey support for encryption, making incremental
deployment impossible.  Second, legacy applications themselves cannot
always be upgraded, requiring a way to implement encryption
transparently entirely within the transport layer.  The TCP Encryption
Negotiation Option (TCP-ENO) addresses both of these problems through
a new TCP option kind providing out-of-band, fully backward-compatible
negotiation of encryption.
</t>
</abstract>


</front>

<middle>

<section anchor="requirements-language" title="Requirements language">
<t>The key words &quot;MUST&quot;, &quot;MUST NOT&quot;, &quot;REQUIRED&quot;, &quot;SHALL&quot;, &quot;SHALL NOT&quot;,
&quot;SHOULD&quot;, &quot;SHOULD NOT&quot;, &quot;RECOMMENDED&quot;, &quot;MAY&quot;, and &quot;OPTIONAL&quot; in this
document are to be interpreted as described in <xref target="RFC2119"/>.
</t>
</section>

<section anchor="introduction" title="Introduction">
<t>Many applications and protocols running on top of TCP today do not
encrypt traffic.  This failure to encrypt lowers the bar for certain
attacks, harming both user privacy and system security.  Counteracting
the problem demands a minimally intrusive, backward-compatible
mechanism for incrementally deploying encryption.  The TCP Encryption
Negotiation Option (TCP-ENO) specified in this document provides such
a mechanism.
</t>
<t>Introducing TCP options, extending operating system interfaces to
support TCP-level encryption, and extending applications to take
advantage of TCP-level encryption all require effort.  To the greatest
extent possible, the effort invested in realizing TCP-level encryption
today needs to remain applicable in the future should the need arise
to change encryption strategies.  To this end, it is useful to
consider two questions separately:
</t>
<t>
<list style="numbers">
<t>How to negotiate the use of encryption at the TCP layer, and</t>
<t>How to perform encryption at the TCP layer.</t>
</list>
</t>
<t>This document addresses question 1 with a new TCP option, ENO.
TCP-ENO provides a framework in which two endpoints can agree on one
among multiple possible TCP encryption protocols or <spanx style="emph">TEPs</spanx>.  For
future compatibility, TEPs can vary widely in terms of wire format,
use of TCP option space, and integration with the TCP header and
segmentation.  However, ENO abstracts these differences to ensure the
introduction of new TEPs can be transparent to applications taking
advantage of TCP-level encryption.
</t>
<t>Question 2 is addressed by one or more companion TEP specification
documents.  While current TEPs enable TCP-level traffic encryption
today, TCP-ENO ensures that the effort invested to deploy today's TEPs
will additionally benefit future ones.
</t>

<section anchor="design-goals" title="Design goals">
<t>TCP-ENO was designed to achieve the following goals:
</t>
<t>
<list style="numbers">
<t>Enable endpoints to negotiate the use of a separately specified
TCP encryption protocol or <spanx style="emph">TEP</spanx>.</t>
<t>Transparently fall back to unencrypted TCP when not supported by
both endpoints.</t>
<t>Provide out-of-band signaling through which applications can better
take advantage of TCP-level encryption (for instance, by improving
authentication mechanisms in the presence of TCP-level encryption).</t>
<t>Provide a standard negotiation transcript through which TEPs can
defend against tampering with TCP-ENO.</t>
<t>Make parsimonious use of TCP option space.</t>
<t>Define roles for the two ends of a TCP connection, so as to name
each end of a connection for encryption or authentication purposes
even following a symmetric simultaneous open.</t>
</list>
</t>
</section>
</section>

<section anchor="terminology" title="Terminology">
<t>We define the following terms, which are used throughout this
document:
</t>
<t>
<list style="hanging">
<t hangText="SYN segment">
<vspace />
A TCP segment in which the SYN flag is set</t>
<t hangText="ACK segment">
<vspace />
A TCP segment in which the ACK flag is set (which includes most
segments other than an initial SYN segment)</t>
<t hangText="non-SYN segment">
<vspace />
A TCP segment in which the SYN flag is clear</t>
<t hangText="SYN-only segment">
<vspace />
A TCP segment in which the SYN flag is set but the ACK flag is
clear</t>
<t hangText="SYN-ACK segment">
<vspace />
A TCP segment in which the SYN and ACK flags are both set</t>
<t hangText="Active opener">
<vspace />
A host that initiates a connection by sending a SYN-only segment.
With the BSD socket API, an active opener calls <spanx style="verb">connect</spanx>.  In
client-server configurations, active openers are typically clients.</t>
<t hangText="Passive opener">
<vspace />
A host that does not send a SYN-only segment, but responds to one
with a SYN-ACK segment.  With the BSD socket API, passive openers
call <spanx style="verb">listen</spanx> and <spanx style="verb">accept</spanx>, rather than <spanx style="verb">connect</spanx>.  In
client-server configurations, passive openers are typically
servers.</t>
<t hangText="Simultaneous open">
<vspace />
The act of symmetrically establishing a TCP connection between two
active openers (both of which call <spanx style="verb">connect</spanx> with BSD sockets).
Each host of a simultaneous open sends both a SYN-only and a
SYN-ACK segment.  Simultaneous open is less common than asymmetric
open with one active and one passive opener, but can be used for
NAT traversal by peer-to-peer applications <xref target="RFC5382"/>.</t>
<t hangText="TEP">
<vspace />
A TCP encryption protocol intended for use with TCP-ENO and
specified in a separate document.</t>
<t hangText="TEP identifier">
<vspace />
A unique 7-bit value in the range 0x20-0x7f that IANA has assigned
to a TEP.</t>
<t hangText="Negotiated TEP">
<vspace />
The single TEP governing a TCP connection, determined by use of the
TCP ENO option specified in this document.</t>
</list>
</t>
</section>

<section anchor="tcpeno-specification" title="TCP-ENO specification">
<t>TCP-ENO extends TCP connection establishment to enable encryption
opportunistically.  It uses a new TCP option kind to negotiate one
among multiple possible TCP encryption protocols or TEPs.  The
negotiation involves hosts exchanging sets of supported TEPs, where
each TEP is represented by a <spanx style="emph">suboption</spanx> within a larger TCP ENO
option in the offering host's SYN segment.
</t>
<t>If TCP-ENO succeeds, it yields the following information:
</t>
<t>
<list style="symbols">
<t>A negotiated TEP, represented by a unique 7-bit TEP identifier,</t>
<t>A few extra bytes of suboption data from each host, if needed by the
TEP,</t>
<t>A negotiation transcript with which to mitigate attacks on the
negotiation itself,</t>
<t>Role assignments designating one endpoint &quot;host A&quot; and the other
endpoint &quot;host B&quot;, and</t>
<t>A bit indicating whether or not the application at each end knows it
is using TCP-ENO.</t>
</list>
</t>
<t>If TCP-ENO fails, encryption is disabled and the connection falls back
to traditional unencrypted TCP.
</t>
<t>The remainder of this section provides the normative description of
the TCP ENO option and handshake protocol.
</t>

<section anchor="eno-option" title="ENO option">
<t>TCP-ENO employs an option in the TCP header <xref target="RFC0793"/>.  There are
two equivalent kinds of ENO option, shown in <xref target="fig:option"/>.
<xref target="iana-considerations"/> specifies which of the two kinds is permissible
and/or preferred.
</t>

<figure anchor="fig:option" align="center" title="Two equivalent kinds of TCP-ENO option
"><artwork align="center">
byte    0     1     2             N+1   (N+2 bytes total)
     +-----+-----+-----+--....--+-----+
     |Kind=|Len= |                    |
     | TBD | N+2 | contents (N bytes) |
     +-----+-----+-----+--....--+-----+

byte    0     1     2     3     4             N+3   (N+4 bytes total)
     +-----+-----+-----+-----+-----+--....--+-----+
     |Kind=|Len= |   ExID    |                    |
     | 253 | N+4 | 69  | 78  | contents (N bytes) |
     +-----+-----+-----+-----+-----+--....--+-----+
</artwork></figure>
<t>The contents of an ENO option can take one of two forms.  A SYN form,
illustrated in <xref target="fig:eno"/>, appears only in SYN segments.  A non-SYN
form, illustrated in <xref target="fig:minimal"/>, appears only in non-SYN segments.
The SYN form of ENO acts as a container for one or more suboptions,
labeled <spanx style="verb">Opt_0</spanx>, <spanx style="verb">Opt_1</spanx>, ... in <xref target="fig:eno"/>.  The non-SYN form, by its
presence, acts as a one-bit acknowledgment, with the actual contents
ignored by ENO.  Particular TEPs MAY assign additional meaning to the
contents of non-SYN ENO options.  When a negotiated TEP does not
assign such meaning, the contents of a non-SYN ENO option SHOULD be
zero bytes.
</t>

<figure anchor="fig:eno" align="center" title="SYN form of ENO
"><artwork align="center">
byte    0     1     2     3                     ... N+1
     +-----+-----+-----+-----+--...--+-----+----...----+
     |Kind=|Len= |Opt_0|Opt_1|       |Opt_i|   Opt_i   |
     | TBD | N+2 |     |     |       |     |   data    |
     +-----+-----+-----+-----+--...--+-----+----...----+

byte    0     1     2     3     4     5                     ... N+3
     +-----+-----+-----+-----+-----+-----+--...--+-----+----...----+
     |Kind=|Len= |   ExID    |Opt_0|Opt_1|       |Opt_i|   Opt_i   |
     | 253 | N+4 | 69  | 78  |     |     |       |     |   data    |
     +-----+-----+-----+-----+-----+-----+--...--+-----+----...----+
</artwork></figure>

<figure anchor="fig:minimal" align="center" title="Non-SYN form of ENO, where N MAY be 0
"><artwork align="center">
byte   0     1     2     N+1
    +-----+-----+-----...----+
    |Kind=|Len= |  ignored   |
    | TBD | N+2 | by TCP-ENO |
    +-----+-----+-----...----+

byte   0     1     2     3     4     N+3
    +-----+-----+-----+-----+-----...----+
    |Kind=|Len= |   ExID    |  ignored   |
    | 253 | N+4 | 69  | 78  | by TCP-ENO |
    +-----+-----+-----+-----+-----...----+
</artwork></figure>
<t>Every suboption starts with a byte of the form illustrated in
<xref target="fig:subopt"/>.  The high bit <spanx style="verb">v</spanx>, when set, introduces suboptions with
variable-length data.  When <spanx style="verb">v = 0</spanx>, the byte itself constitutes the
entirety of the suboption.  The 7-bit value <spanx style="verb">cs</spanx> expresses one of:
</t>
<t>
<list style="symbols">
<t>Global configuration data (discussed in <xref target="the-global-suboption"/>),</t>
<t>Suboption data length for the next suboption (discussed in
<xref target="specifying-suboption-data-length"/>), or</t>
<t>An offer to use a particular TEP defined in a separate TEP
specification document.</t>
</list>
</t>

<figure anchor="fig:subopt" align="center" title="Format of initial suboption byte
"><artwork align="center">
bit   7   6   5   4   3   2   1   0
    +---+---+---+---+---+---+---+---+
    | v |            glt            |
    +---+---+---+---+---+---+---+---+

    v   - non-zero for use with variable-length suboption data
    glt - Global suboption, Length, or TEP identifier
</artwork></figure>
<t><xref target="tab:subopt"/> summarizes the meaning of initial suboption bytes.
Values of <spanx style="verb">glt</spanx> below 0x20 are used for global suboptions and length
information (the <spanx style="verb">gl</spanx> in <spanx style="verb">glt</spanx>), while those greater than or equal to
0x20 are TEP identifiers (the <spanx style="verb">t</spanx>).  When <spanx style="verb">v = 0</spanx>, the initial
suboption byte constitutes the entirety of the suboption and all
information is expressed by the 7-bit <spanx style="verb">glt</spanx> value, which can be either
a global suboption or TEP identifier.  When <spanx style="verb">v = 1</spanx>, it indicates a
suboption with variable-length suboption data.  Only TEP identifiers
may have suboption data, not global suboptions.  Hence, bytes with <spanx style="verb">v
= 1</spanx> and <spanx style="verb">glt &lt; 0x20</spanx> are not global suboptions but rather length
bytes governing the length of the next suboption (which MUST be a TEP
identifer).  In the absence of a length byte, a TEP identifier
suboption with <spanx style="verb">v = 1</spanx> has suboption data extending to the end of the
TCP option.
</t>
<texttable anchor="tab:subopt" title="Initial suboption byte values
">
<ttcol align="left">glt</ttcol>
<ttcol align="left">v</ttcol>
<ttcol align="left">Meaning</ttcol>

<c>0x00-0x1f</c><c>0</c><c>Global suboption (<xref target="the-global-suboption"/>)</c>
<c>0x00-0x1f</c><c>1</c><c>Length byte (<xref target="specifying-suboption-data-length"/>)</c>
<c>0x20-0x7f</c><c>0</c><c>TEP identifier without suboption data</c>
<c>0x20-0x7f</c><c>1</c><c>TEP identifier followed by suboption data</c>
</texttable>
<t>A SYN segment MUST contain at most one TCP ENO option.  If a SYN
segment contains more than one ENO option, the receiver MUST behave as
though the segment contained no ENO options and disable encryption.  A
TEP MAY specify the use of multiple ENO options in a non-SYN segment.
For non-SYN segments, ENO itself only distinguishes between the
presence or absence of ENO options; multiple ENO options are
interpreted the same as one.
</t>
</section>

<section anchor="the-global-suboption" title="The global suboption">
<t>Suboptions 0x00-0x1f are used for global configuration that applies
regardless of the negotiated TEP.  A TCP SYN segment MUST include at
most one ENO suboption in this range.  A receiver MUST ignore all but
the first suboption in this range so as to anticipate updates to ENO
that assign new meaning to bits in subsequent global suboptions.  The
value of a global suboption byte is interpreted as a bitmask,
illustrated in <xref target="fig:config"/>.
</t>

<figure anchor="fig:config" align="center" title="Format of the global suboption byte
"><artwork align="center">
bit   7   6   5   4   3   2   1   0
    +---+---+---+---+---+---+---+---+
    | 0 | 0 | 0 |z1 |z2 |z3 | a | b |
    +---+---+---+---+---+---+---+---+

    b  - Passive role bit
    a  - Application-aware bit
    z* - Zero bits (reserved for future use)
</artwork></figure>
<t>The fields of the bitmask are interpreted as follows:
</t>
<t>
<list style="hanging">
<t hangText="b">
<vspace />
The passive role bit MUST be 1 for all passive openers.  For active
openers, it MUST default to 0, but implementations SHOULD provide an
API through which an application can set <spanx style="verb">b = 1</spanx> before initiating an
active open.  (Manual configuration of <spanx style="verb">b</spanx> is necessary for
simultaneous open.)</t>
<t hangText="a">
<vspace />
The application-aware bit <spanx style="verb">a</spanx> is an out-of-band signal indicating
that the application on the sending host is aware of TCP-ENO and has
been extended to alter its behavior in the presence of encrypted TCP.
Implementations MUST set this bit to 0 by default, and SHOULD provide
an API through which applications can change the value of the bit as
well as examine the value of the bit sent by the remote host.
Implementations SHOULD furthermore support a <spanx style="emph">mandatory</spanx>
application-aware mode in which TCP-ENO is automatically disabled if
the remote host does not set <spanx style="verb">a = 1</spanx>.</t>
<t hangText="z1, z2, z3">
<vspace />
The <spanx style="verb">z</spanx> bits are reserved for future updates to TCP-ENO.  They MUST
be set to zero in sent segments and MUST be ignored in received
segments.</t>
</list>
</t>
<t>A SYN segment without an explicit global suboption has an implicit
global suboption of 0x00.  Because passive openers MUST always set <spanx style="verb">b
= 1</spanx>, they cannot rely on this implicit 0x00 byte and MUST include an
explicit global suboption in their SYN-ACK segments.
</t>
</section>

<section anchor="tcpeno-roles" title="TCP-ENO roles">
<t>TCP-ENO uses abstract roles to distinguish the two ends of a TCP
connection.  These roles are determined by the <spanx style="verb">b</spanx> bit in the global
suboption.  The host that sent an implicit or explicit suboption with
<spanx style="verb">b = 0</spanx> plays the &quot;A&quot; role.  The host that sent <spanx style="verb">b = 1</spanx> plays the &quot;B&quot;
role.
</t>
<t>If both sides of a connection set <spanx style="verb">b = 1</spanx> (which can happen if the
active opener misconfigures <spanx style="verb">b</spanx> before calling <spanx style="verb">connect</spanx>), or both
sides set <spanx style="verb">b = 0</spanx> (which can happen with simultaneous open), then
TCP-ENO MUST be disabled and the connection MUST fall back to
unencrypted TCP.
</t>
<t>TEP specifications SHOULD refer to TCP-ENO's A and B roles to specify
asymmetric behavior by the two hosts.  For the remainder of this
document, we will use the terms &quot;host A&quot; and &quot;host B&quot; to designate the
hosts with A and B roles, respectively, in a connection.
</t>
</section>

<section anchor="specifying-suboption-data-length" title="Specifying suboption data length">
<t>A TEP MAY optionally make use of one or more bytes of suboption data.
The presence of such data is indicated by setting <spanx style="verb">v = 1</spanx> in the
initial suboption byte (see <xref target="fig:subopt"/>).  By default, suboption
data extends to the end of the TCP option.  Hence, if only one
suboption requires data, the most compact way to encode it is to place
it last in the ENO option, after all other suboptions.  As an example,
in <xref target="fig:eno"/>, the last suboption, <spanx style="verb">Opt_i</spanx>, has suboption data and
thus requires <spanx style="verb">v = 1</spanx>; however, the suboption data length can be
inferred from the total length of the TCP option.
</t>
<t>When a suboption with data is not last in an ENO option, the sender
MUST explicitly specify the suboption data length for the receiver to
know where the next suboption starts.  The sender does so by preceding
the suboption with a length byte, depicted in <xref target="fig:marker"/>.  The
length byte encodes a 5-bit value <spanx style="verb">nnnnn</spanx>.  Adding one to <spanx style="verb">nnnnn</spanx>
yields the length of the suboption data (not including the length byte
or the TEP identifier).  Hence, a length byte can designate anywhere
from 1 to 32 bytes of suboption data (inclusive).
</t>

<figure anchor="fig:marker" align="center" title="Format of a length byte
"><artwork align="center">
bit   7   6   5   4   3   2   1   0
    +---+---+---+-------------------+
    | 1   0   0         nnnnn       |
    +---+---+---+-------------------+

    nnnnn - 5-bit value encoding (length - 1)
</artwork></figure>
<t>A suboption preceded by a length byte MUST be a TEP identifier (<spanx style="verb">glt
&gt;= 0x20</spanx>) and MUST have <spanx style="verb">v = 1</spanx>.  <xref target="fig:suboption-with-length-byte"/>
shows an example of such a suboption.
</t>

<figure anchor="fig:suboption-with-length-byte" align="center" title="Suboption with length byte
"><artwork align="center">
byte    0      1       2      nnnnn+2  (nnnnn+3 bytes total)
     +------+------+-------...-------+
     |length| TEP  | suboption data  |
     | byte |ident.| (nnnnn+1 bytes) |
     +------+------+-------...-------+

     length byte    - specifies nnnnn
     TEP identifier - MUST have v = 1 and glt &gt;= 0x20
     suboption data - length specified by nnnnn+1
</artwork></figure>
<t>A host MUST ignore an ENO option in a SYN segment and MUST disable
encryption if either:
</t>
<t>
<list style="numbers">
<t>A length byte indicates that suboption data would extend beyond the
end of the TCP ENO option, or</t>
<t>A length byte is followed by an octet in the range 0x00-0x9f
(meaning the following byte has <spanx style="verb">v = 0</spanx> or <spanx style="verb">glt &lt; 0x20</spanx>).</t>
</list>
</t>
<t>Because the last suboption in an ENO option is special-cased to have
its length inferred from the 8-bit TCP option length, it MAY contain
more than 32 bytes of suboption data.  Other suboptions are limited to
32 bytes by the length byte format.  The TCP header itself can only
accommodate a maximum of 40 bytes of options per segment, however, so
regardless of the length byte could not fit more than one suboption
over 32 bytes.  That said, TEPs MAY define the use of multiple
suboptions with the same TEP identifier in the same SYN segment,
providing another way to convey over 32 bytes of suboption data even
with length bytes.
</t>
</section>

<section anchor="the-negotiated-tep" title="The negotiated TEP">
<t>A TEP identifier <spanx style="verb">glt</spanx> (with <spanx style="verb">glt &gt;= 0x20</spanx>) is <spanx style="emph">valid</spanx> for a
connection when:
</t>
<t>
<list style="numbers">
<t>Each side has sent a suboption for <spanx style="verb">glt</spanx> in its SYN-form ENO option,</t>
<t>Any suboption data in these <spanx style="verb">glt</spanx> suboptions is valid according to
the TEP specification and satisfies any runtime constraints, and</t>
<t>If an ENO option contains multiple suboptions with <spanx style="verb">glt</spanx>, then such
repetition is well-defined by the TEP specification.</t>
</list>
</t>
<t>The <spanx style="emph">negotiated TEP</spanx> is the last valid TEP identifier in host B's
SYN-form ENO option.  This definition means host B specifies TEP
suboptions in order of increasing priority, while host A does not
influence TEP priority.
</t>
<t>A passive opener (which is always host B) sees the remote host's SYN
segment before constructing its own SYN-ACK.  Hence, a passive opener
SHOULD include only one TEP identifier in SYN-ACK segments and SHOULD
ensure this TEP identifier is valid.  However, simultaneous open or
implementation considerations can prevent host B from offering only
one TEP.
</t>
</section>

<section anchor="tcpeno-handshake" title="TCP-ENO handshake">
<t>A host employing TCP-ENO for a connection MUST include an ENO option
in every TCP segment sent until either encryption is disabled or the
host receives a non-SYN segment.
</t>
<t>A host MUST disable encryption, refrain from sending any further ENO
options, and fall back to unencrypted TCP if any of the following
occurs:
</t>
<t>
<list style="numbers">
<t>Any segment it receives up to and including the first received ACK
segment does not contain a ENO option (or contains an ill-formed
SYN-form ENO option),</t>
<t>The SYN segment it receives does not contain a valid TEP
identifier, or</t>
<t>It receives a SYN segment with an incompatible global suboption.
(Specifically, incompatible means the two hosts set the same <spanx style="verb">b</spanx>
value or the connection is in mandatory application-aware mode and
the remote host set <spanx style="verb">a = 0</spanx>.)</t>
</list>
</t>
<t>Hosts MUST NOT alter SYN-form ENO options in retransmitted segments,
or between the SYN and SYN-ACK segments of a simultaneous open, with
two exceptions for an active opener.  First, an active opener MAY
unilaterally disable ENO (and thus remove the ENO option) between
retransmissions of a SYN-only segment.  (Such removal could be useful
if middleboxes are dropping segments with the ENO option.)  Second, an
active opener performing simultaneous open MAY include no TCP-ENO
option in its SYN-ACK if the received SYN caused it to disable
encryption according to the above rules (for instance because role
negotiation failed).
</t>
<t>Once a host has both sent and received an ACK segment containing an
ENO option, encryption MUST be enabled.  Once encryption is enabled,
hosts MUST follow the specification of the negotiated TEP and MUST NOT
present raw TCP payload data to the application.  In particular, data
segments MUST NOT contain plaintext application data, but rather
ciphertext, key negotiation parameters, or other messages as
determined by negotiated TEP.
</t>
</section>

<section anchor="data-in-syn-segments" title="Data in SYN segments">
<t>A SYN segment containing an ENO option MUST NOT include a TCP Fast
Open (TFO) option <xref target="RFC7413"/>.  However, TEPs MAY specify the use of
data in SYN segments to achieve similar benefits to TFO.
</t>
<t>The last TEP identifier suboption in host A's SYN segment is the <spanx style="emph">SYN
TEP</spanx>.  The SYN TEP governs the use of data in A's SYN segment.  If the
SYN TEP's specification does not define the use of such data, then
host A's SYN segment MUST NOT contain data and host B MUST discard any
such data.  Host B must also discard data in A's SYN segment if either
the SYN TEP differs from the negotiated TEP or host B disables
encryption.
</t>
<t>The use of data in B's SYN-ACK segment is governed by the negotiated
TEP.  If the negotiated TEP's specification does not define the use of
such data, then host B's SYN-ACK segment MUST NOT contain data and
host A MUST discard any such data.  Host A MUST also discard any
received SYN data if it disables encryption.
</t>
<t>When a host discards SYN data, it MUST NOT acknowledge the sequence
number of the discarded data.  Rather, it MUST acknowledge the other
host's initial sequence number as if the received SYN segment
contained no data.
</t>
<t>Regardless of the SYN TEP and negotiated TEP, host A MUST NOT include
data in a SYN-only segment when in mandatory application-aware mode.
Moreover, in the event that host B is an active opener (because of
simultaneous open), host B's SYN-only segment MUST NOT include data.
</t>
<t>Using data in SYN segments deviates from TCP semantics and can cause
problems with middleboxes or non-compliant TCP hosts.  Hence, all TEPs
SHOULD support a normal mode of operation that does not make use of
data in SYN segments.  Moreover, implementations SHOULD employ SYN
data only if explicitly requested by the application or in cases where
such use is highly unlikely to pose problems.
</t>
</section>

<section anchor="negotiation-transcript" title="Negotiation transcript">
<t>To defend against attacks on encryption negotiation itself, TEPs need
a way to reference a transcript of TCP-ENO's negotiation.  In
particular, a TEP MUST with high probability fail to reach key
agreement between two honest endpoints if the TEP's selection resulted
from tampering with the contents of SYN-form ENO options.  (Of course,
in the absence of endpoint authentication, two honest endpoints can
still each end up talking to a man-in-the-middle attacker rather than
to each other.)
</t>
<t>TCP-ENO defines its negotiation transcript as a packed data structure
consisting of two TCP-ENO options exactly as they appeared in the TCP
header (including the TCP option kind, TCP option length byte, and,
for option kind 253, the bytes 69 and 78 as illustrated in
<xref target="fig:option"/>).  The transcript is constructed from the following, in
order:
</t>
<t>
<list style="numbers">
<t>The TCP-ENO option in host A's SYN segment, including the kind and
length bytes.</t>
<t>The TCP-ENO option in host B's SYN segment, including the kind and
length bytes.</t>
</list>
</t>
<t>Note that because the ENO options in the transcript contain length
bytes as specified by TCP, the transcript unambiguously delimits A's
and B's ENO options.
</t>
</section>
</section>

<section anchor="requirements-for-teps" title="Requirements for TEPs">
<t>TCP-ENO affords TEP specifications a large amount of design
flexibility.  However, to abstract TEP differences away from
applications requires fitting them all into a coherent framework.  As
such, any TEP claiming an ENO TEP identifier MUST satisfy the
following normative list of properties.
</t>
<t>
<list style="symbols">
<t>TEPs MUST protect TCP data streams with authenticated encryption.</t>
<t>TEPs MUST define a session ID whose value identifies the TCP
connection and, with overwhelming probability, is unique over all
time if either host correctly obeys the TEP.  <xref target="session-ids"/>
describes the requirements of the session ID in more detail.</t>
<t>TEPs MUST NOT permit the negotiation of any encryption algorithms
with significantly less than 128-bit security.</t>
<t>TEPs MUST NOT allow the negotiation of null cipher suites, even for
debugging purposes.  (Implementations MAY support debugging modes
that allow applications to extract their own session keys.)</t>
<t>TEPs MUST NOT depend on long-lived secrets for data confidentiality,
as implementations SHOULD provide forward secrecy some bounded,
short time after the close of a TCP connection.</t>
<t>TEPs MUST protect and authenticate the end-of-file marker
traditionally conveyed by TCP's FIN flag when the remote application
calls <spanx style="verb">close</spanx> or <spanx style="verb">shutdown</spanx>.  However, end-of-file MAY be conveyed
though a mechanism other than TCP FIN.  Moreover, TEPs MAY permit
attacks that cause TCP connections to abort, but such an abort MUST
raise an error that is distinct from an end-of-file condition.</t>
<t>TEPs MAY disallow the use of TCP urgent data by applications, but
MUST NOT allow attackers to manipulate the URG flag and urgent
pointer in ways that are visible to applications.</t>
</list>
</t>

<section anchor="session-ids" title="Session IDs">
<t>Each TEP MUST define a session ID that uniquely identifies each
encrypted TCP connection and that is computable by both endpoints of
the connection.  Implementations SHOULD expose the session ID to
applications via an API extension.  Applications that are aware of
TCP-ENO SHOULD authenticate the TCP endpoints by incorporating the
values of the session ID and TCP-ENO role (A or B) into higher-layer
authentication mechanisms.
</t>
<t>In order to avoid replay attacks and prevent authenticated session IDs
from being used out of context, session IDs MUST be unique over all
time with high probability.  This uniqueness property MUST hold even
if one end of a connection maliciously manipulates the protocol in an
effort to create duplicate session IDs.  In other words, it MUST be
infeasible for a host, even by violating the TEP specification, to
establish two TCP connections with the same session ID to remote hosts
properly implementing the TEP.
</t>
<t>To prevent session IDs from being confused across TEPs, all session
IDs begin with the negotiated TEP identifier--that is, the last valid
TEP identifier in host B's SYN segment.  If the <spanx style="verb">v</spanx> bit was 1 in host
B's SYN segment, then it is also 1 in the session ID.  However, only
the first byte is included, not the suboption data.  <xref target="fig:sessid"/>
shows the resulting format.  This format is designed for TEPs to
compute unique identifiers; it is not intended for application authors
to pick apart session IDs.  Applications SHOULD treat session IDs as
monolithic opaque values and SHOULD NOT discard the first byte to
shorten identifiers.
</t>

<figure anchor="fig:sessid" align="center" title="Format of a session ID
"><artwork align="center">
byte    0     1     2        N-1    N
     +-----+------------...------------+
     | sub-| collision-resistant hash  |
     | opt | of connection information |
     +-----+------------...------------+
</artwork></figure>
<t>Though TEP specifications retain considerable flexibility in their
definitions of the session ID, all session IDs MUST meet the following
normative list of requirements:
</t>
<t>
<list style="symbols">
<t>The session ID MUST be at least 33 bytes (including the one-byte
suboption), though TEPs may choose longer session IDs.</t>
<t>The session ID MUST depend in a collision-resistant way on all of
the following (meaning it is computationally infeasible to produce
collisions of the session ID derivation function unless all of the
following quantities are identical):
<list style="symbols">
<t>Fresh data contributed by both sides of the connection,</t>
<t>Any public keys, public Diffie-Hellman parameters, or other
public asymmetric cryptographic parameters that are employed by
the TEP and have corresponding private data that is known by
only one side of the connection, and</t>
<t>The negotiation transcript specified in
<xref target="negotiation-transcript"/>.</t>
</list></t>
<t>Unless and until applications disclose information about the session
ID, all but the first byte MUST be computationally indistinguishable
from random bytes to a network eavesdropper.</t>
<t>Applications MAY choose to make session IDs public.  Therefore, TEPs
MUST NOT place any confidential data in the session ID (such as data
permitting the derivation of session keys).</t>
</list>
</t>
</section>
</section>

<section anchor="examples" title="Examples">
<t>This subsection illustrates the TCP-ENO handshake with a few
non-normative examples.
</t>

<figure anchor="fig:handshake" align="center" title="Three-way handshake with successful TCP-ENO negotiation
"><artwork align="center">
(1) A -&gt; B:  SYN      ENO&lt;X,Y&gt;
(2) B -&gt; A:  SYN-ACK  ENO&lt;b=1,Y&gt;
(3) A -&gt; B:  ACK      ENO&lt;&gt;
[rest of connection encrypted according to TEP Y]
</artwork></figure>
<t><xref target="fig:handshake"/> shows a three-way handshake with a successful TCP-ENO
negotiation.  The two sides agree to follow the TEP identified by
suboption Y.
</t>

<figure anchor="fig:bad-handshake" align="center" title="Three-way handshake with failed TCP-ENO negotiation
"><artwork align="center">
(1) A -&gt; B:  SYN      ENO&lt;X,Y&gt;
(2) B -&gt; A:  SYN-ACK
(3) A -&gt; B:  ACK
[rest of connection unencrypted legacy TCP]
</artwork></figure>
<t><xref target="fig:bad-handshake"/> shows a failed TCP-ENO negotiation.  The active
opener (A) indicates support for TEPs corresponding to suboptions X
and Y.  Unfortunately, at this point one of several things occurs:
</t>
<t>
<list style="numbers">
<t>The passive opener (B) does not support TCP-ENO,</t>
<t>B supports TCP-ENO, but supports neither of TEPs X and Y, and so
does not reply with an ENO option,</t>
<t>B supports TCP-ENO, but has the connection configured in mandatory
application-aware mode and thus disables ENO because A's SYN
segment does not set the application-aware bit, or</t>
<t>The network stripped the ENO option out of A's SYN segment, so B
did not receive it.</t>
</list>
</t>
<t>Whichever of the above applies, the connection transparently falls
back to unencrypted TCP.
</t>

<figure anchor="fig:filter" align="center" title="Failed TCP-ENO negotiation because of network filtering
"><artwork align="center">
(1) A -&gt; B:  SYN      ENO&lt;X,Y&gt;
(2) B -&gt; A:  SYN-ACK  ENO&lt;b=1,X&gt; [ENO stripped by middlebox]
(3) A -&gt; B:  ACK
[rest of connection unencrypted legacy TCP]
</artwork></figure>
<t><xref target="fig:filter"/> Shows another handshake with a failed encryption
negotiation.  In this case, the passive opener B receives an ENO
option from A and replies.  However, the reverse network path from B
to A strips ENO options.  Hence, A does not receive an ENO option from
B, disables ENO, and does not include a non-SYN form ENO option when
ACKing B's SYN segment.  The lack of ENO in A's ACK segment signals to
B that the connection will not be encrypted.  At this point, the two
hosts proceed with an unencrypted TCP connection.
</t>

<figure anchor="fig:simultaneous" align="center" title="Simultaneous open with successful TCP-ENO negotiation
"><artwork align="center">
(1) A -&gt; B:  SYN      ENO&lt;Y,X&gt;
(2) B -&gt; A:  SYN      ENO&lt;b=1,X,Y,Z&gt;
(3) A -&gt; B:  SYN-ACK  ENO&lt;Y,X&gt;
(4) B -&gt; A:  SYN-ACK  ENO&lt;b=1,X,Y,Z&gt;
[rest of connection encrypted according to TEP Y]
</artwork></figure>
<t><xref target="fig:simultaneous"/> shows a successful TCP-ENO negotiation with
simultaneous open.  Here the first four segments MUST contain a
SYN-form ENO option, as each side sends both a SYN-only and a SYN-ACK
segment.  The ENO option in each host's SYN-ACK is identical to the
ENO option in its SYN-only segment, as otherwise connection
establishment could not recover from the loss of a SYN segment.  The
last valid TEP in host B's ENO option is Y, so Y is the negotiated
TEP.
</t>
</section>

<section anchor="design-rationale" title="Design rationale">
<t>This section describes some of the design rationale behind TCP-ENO.
</t>

<section anchor="future-developments" title="Future developments">
<t>TCP-ENO is designed to capitalize on future developments that could
alter trade-offs and change the best approach to TCP-level encryption
(beyond introducing new cipher suites).  By way of example, we discuss
a few such possible developments.
</t>
<t>Various proposals exist to increase option space in TCP
<xref target="I-D.ietf-tcpm-tcp-edo"/><xref target="I-D.briscoe-tcpm-inspace-mode-tcpbis"/><xref target="I-D.touch-tcpm-tcp-syn-ext-opt"/>.
If SYN segments gain large options, it becomes possible to fit public
keys or Diffie-Hellman parameters into SYN segments.  Future TEPs can
take advantage of this by performing key agreement directly within
suboption data, both simplifying protocols and reducing the number of
round trips required for connection setup.
</t>
<t>If TCP gains large SYN option support, the 32-byte limit on length
bytes may prove problematic.  This draft intentionally aborts TCP-ENO
if a length byte is followed by an octet in the range 0x00-0x9f.  Any
document updating TCP's option size limit can also enable larger
suboptions by updating this draft to assign meaning to such currently
undefined byte sequences.
</t>
<t>New revisions to socket interfaces <xref target="RFC3493"/> could involve library
calls that simultaneously have access to hostname information and an
underlying TCP connection.  Such an API enables the possibility of
authenticating servers transparently to the application, particularly
in conjunction with technologies such as DANE <xref target="RFC6394"/>.  An update
to TCP-ENO can adopt one of the <spanx style="verb">z</spanx> bits in the global suboption to
negotiate use of an endpoint authentication protocol before any
application use of the TCP connection.  Over time, the consequences of
failed or missing endpoint authentication can gradually be increased
from issuing log messages to aborting the connection if some as yet
unspecified DNS record indicates authentication is mandatory.  Through
shared library updates, such endpoint authentication can potentially
be added transparently to legacy applications without recompilation.
</t>
<t>TLS can currently only be added to legacy applications whose protocols
accommodate a STARTTLS command or equivalent.  TCP-ENO, because it
provides out-of-band signaling, opens the possibility of future TLS
revisions being generically applicable to any TCP application.
</t>
</section>

<section anchor="handshake-robustness" title="Handshake robustness">
<t>Incremental deployment of TCP-ENO depends critically on failure cases
devolving to unencrypted TCP rather than causing the entire TCP
connection to fail.
</t>
<t>Because a network path may drop ENO options in one direction only, a
host must know not just that the peer supports encryption, but that
the peer has received an ENO option.  To this end, ENO disables
encryption unless it receives an ACK segment bearing an ENO option.
To stay robust in the face of dropped segments, hosts must continue to
include non-SYN form ENO options in segments until such point as they
have received a non-SYN segment from the other side.
</t>
<t>One particularly pernicious middlebox behavior found in the wild is
load balancers that echo unknown TCP options found in SYN segments
back to an active opener.  The passive role bit <spanx style="verb">b</spanx> in global
suboptions ensures encryption will always be disabled under such
circumstances, as sending back a verbatim copy of an active opener's
SYN-form ENO option always causes role negotiation to fail.
</t>
</section>

<section anchor="suboption-data" title="Suboption data">
<t>TEPs can employ suboption data for session caching, cipher suite
negotiation, or other purposes.  However, TCP currently limits total
option space consumed by all options to only 40 bytes, making it
impractical to have many suboptions with data.  For this reason, ENO
optimizes the case of a single suboption with data by inferring the
length of the last suboption from the TCP option length.  Doing so
saves one byte.
</t>
</section>

<section anchor="passive-role-bit" title="Passive role bit">
<t>TCP-ENO, TEPs, and applications all have asymmetries that require an
unambiguous way to identify one of the two connection endpoints.  As
an example, <xref target="negotiation-transcript"/> specifies that host A's ENO
option comes before host B's in the negotiation transcript.  As
another example, an application might need to authenticate one end of
a TCP connection with a digital signature.  To ensure the signed
message cannot not be interpreted out of context to authenticate the
other end, the signed message would need to include both the session
ID and the local role, A or B.
</t>
<t>A normal TCP three-way handshake involves one active and one passive
opener.  This asymmetry is captured by the default configuration of
the <spanx style="verb">b</spanx> bit in the global suboption.  With simultaneous open, both
hosts are active openers, so TCP-ENO requires that one host manually
configure <spanx style="verb">b = 1</spanx>.  An alternate design might automatically break the
symmetry to avoid this need for manual configuration.  However, all
such designs we considered either lacked robustness or consumed
precious bytes of SYN option space even in the absence of simultaneous
open.  (One complicating factor is that TCP does not know it is
participating in a simultaneous open until after it has sent a SYN
segment.  Moreover, with packet loss, one host might never learn it
has participated in a simultaneous open.)
</t>
</section>

<section anchor="option-kind-sharing" title="Option kind sharing">
<t>This draft does not specify the use of ENO options beyond the first
few segments of a connection.  Moreover, it does not specify the
content of ENO options in non-SYN segments, only their presence.  As a
result, any use of option kind TBD (or option kind 253 with ExID
0x454E) after the SYN exchange does not conflict with this document.
Because in addition ENO guarantees at most one negotiated TEP per
connection, TEPs will not conflict with one another or ENO if they use
ENO's option kind for out-of-band signaling in non-SYN segments.
</t>
</section>
</section>

<section anchor="experiments" title="Experiments">
<t>This document has experimental status because TCP-ENO's viability
depends on middlebox behavior that can only be determined <spanx style="emph">a
posteriori</spanx>.  Specifically, we must determine to what extent
middleboxes will permit the use of TCP-ENO.  Once TCP-ENO is deployed,
we will be in a better position to gather data on two types of
failure:
</t>
<t>
<list style="numbers">
<t>Middleboxes downgrading TCP-ENO connections to unencrypted TCP.
This can happen if middleboxes strip unknown TCP options or if they
terminate TCP connections and relay data back and forth.</t>
<t>Middleboxes causing TCP-ENO connections to fail completely.  This
can happen if applications perform deep packet inspection and start
dropping segments that unexpectedly contain ciphertext.</t>
</list>
</t>
<t>The first type of failure is tolerable since TCP-ENO is designed for
incremental deployment anyway.  The second type of failure is more
problematic, and, if prevalent, will require the development of
techniques to avoid and recover from such failures.
</t>
</section>

<section anchor="security-considerations" title="Security considerations">
<t>An obvious use case for TCP-ENO is opportunistic encryption--that is,
encrypting some connections, but only where supported and without any
kind of endpoint authentication.  Opportunistic encryption protects
against undetectable large-scale eavesdropping.  However, it does not
protect against detectable large-scale eavesdropping (for instance, if
ISPs terminate TCP connections and proxy them, or simply downgrade
connections to unencrypted).  Moreover, opportunistic encryption
emphatically does not protect against targeted attacks that employ
trivial spoofing to redirect a specific high-value connection to a
man-in-the-middle attacker.
</t>
<t>Achieving stronger security with TCP-ENO requires verifying session
IDs.  Any application relying on ENO for communications security MUST
incorporate session IDs into its endpoint authentication.  By way of
example, an authentication mechanism based on keyed digests (such
Digest Access Authentication <xref target="RFC7616"/>) can be extended to include
the role and session ID in the input of the keyed digest.  Where
necessary for backwards compatibility, applications SHOULD use the
application-aware bit to negotiate the inclusion of session IDs in
authentication.
</t>
<t>Because TCP-ENO enables multiple different TEPs to coexist, security
could potentially be only as strong as the weakest available TEP.  In
particular, if session IDs do not depend on the TCP-ENO transcript in
a strong way, an attacker can undetectably tamper with ENO options to
force negotiation of a deprecated and vulnerable TEP.  To avoid such
problems, TEPs SHOULD compute session IDs using only well-studied and
conservative hash functions.  That way, even if other parts of a TEP
are vulnerable, it is still intractable for an attacker to induce
identical session IDs at both ends after tampering with ENO contents
in SYN segments.
</t>
<t>Implementations MUST NOT send ENO options unless they have access to
an adequate source of randomness <xref target="RFC4086"/>.  Without secret
unpredictable data at both ends of a connection, it is impossible for
TEPs to achieve confidentiality and forward secrecy.  Because systems
typically have very little entropy on bootup, implementations might
need to disable TCP-ENO until after system initialization.
</t>
<t>With a regular three-way handshake (meaning no simultaneous open), the
non-SYN form ENO option in an active opener's first ACK segment MAY
contain N &gt; 0 bytes of TEP-specific data, as shown in <xref target="fig:minimal"/>.
Such data is not part of the TCP-ENO negotiation transcript, and hence
MUST be separately authenticated by the TEP.
</t>
</section>

<section anchor="iana-considerations" title="IANA Considerations">
<t>This document defines a new TCP option kind for TCP-ENO, assigned a
value of TBD from the TCP option space.  This value is defined as:
</t>
<texttable title="TCP Option Kind Numbers
">
<ttcol align="left">Kind</ttcol>
<ttcol align="left">Length</ttcol>
<ttcol align="left">Meaning</ttcol>
<ttcol align="left">Reference</ttcol>

<c>TBD</c><c>N</c><c>Encryption Negotiation (TCP-ENO)</c><c>[RFC-TBD]</c>
</texttable>
<t>Early implementations of TCP-ENO and a predecessor TCP encryption
protocol made unauthorized use of TCP option kind 69.
</t>
<t>[RFC-editor: please glue the following text to the previous paragraph iff TBD == 69, otherwise delete it.]
These earlier uses of option 69 are not compatible with TCP-ENO and
could disable encryption or suffer complete connection failure when
interoperating with TCP-ENO-compliant hosts.  Hence, legacy use of
option 69 MUST be disabled on hosts that cannot be upgraded to
TCP-ENO.
</t>
<t>[RFC-editor: please glue this to the previous paragraph regardless of the value of TBD.]
More recent implementations used experimental option 253 per
<xref target="RFC6994"/> with 16-bit ExID 0x454E, and SHOULD migrate to option TBD
by default.
</t>
<t>This document defines a 7-bit <spanx style="verb">glt</spanx> field in the range of 0x20-0x7f
for which IANA shall maintain a new sub-registry entitled &quot;TCP
encryption protocol identifiers&quot; under the &quot;Transmission Control
Protocol (TCP) Parameters&quot; registry.  The description of this registry
should be interpreted with respect to the terminology defined in
<xref target="RFC5226"/>.
</t>
<t>The intention is for IANA to grant registration requests for TEP
identifiers in anticipation of a published RFC.  Hence, a
Specification is Required.  However, to allow for implementation
experience, identifiers should be allocated prior to the RFC being
approved for publication.  A Designated Expert appointed by the IESG
area director shall approve allocations once it seems more likely than
not that an RFC will eventually be published.  The Designated Expert
shall post a request to the TCPINC WG mailing list (or a successor
designated by the Area Director) for comment and review, including an
Internet-Draft.  Before a period of 30 days has passed, the Designated
Expert will either approve or deny the registration request and
publish a notice of the decision to the TCPINC WG mailing list or its
successor, as well as informing IANA.  A denial notice must be
justified by an explanation, and in the cases where it is possible,
concrete suggestions on how the request can be modified so as to
become acceptable should be provided.
</t>
<t>The initial values of the TCP-ENO encryption protocol identifier
registry are shown in <xref target="tab:csreg"/>.
</t>
<texttable anchor="tab:csreg" title="TCP encryption protocol identifiers
">
<ttcol align="left">Value</ttcol>
<ttcol align="left">Meaning</ttcol>
<ttcol align="left">Reference</ttcol>

<c>0x20</c><c>Experimental Use</c><c></c>
<c>0x21</c><c>TCPCRYPT_ECDHE_P256</c><c><xref target="I-D.ietf-tcpinc-tcpcrypt"/></c>
<c>0x22</c><c>TCPCRYPT_ECDHE_P521</c><c><xref target="I-D.ietf-tcpinc-tcpcrypt"/></c>
<c>0x23</c><c>TCPCRYPT_ECDHE_Curve25519</c><c><xref target="I-D.ietf-tcpinc-tcpcrypt"/></c>
<c>0x24</c><c>TCPCRYPT_ECDHE_Curve448</c><c><xref target="I-D.ietf-tcpinc-tcpcrypt"/></c>
<c>0x30</c><c>TCP-Use-TLS</c><c><xref target="I-D.ietf-tcpinc-use-tls"/></c>
</texttable>
</section>

<section anchor="acknowledgments" title="Acknowledgments">
<t>We are grateful for contributions, help, discussions, and feedback
from the TCPINC working group, including Marcelo Bagnulo, David Black,
Bob Briscoe, Jana Iyengar, Tero Kivinen, Mirja Kuhlewind, Yoav Nir,
Christoph Paasch, Eric Rescorla, and Kyle Rose.  This work was funded
by DARPA CRASH and the Stanford Secure Internet of Things Project.
</t>
</section>

</middle>
<back>
<references title="Normative References">
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.0793.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.2119.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.4086.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.5226.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.6994.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.7413.xml"?>
</references>
<references title="Informative References">
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml3/reference.I-D.briscoe-tcpm-inspace-mode-tcpbis.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-tcpinc-tcpcrypt.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-tcpinc-use-tls.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-tcpm-tcp-edo.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml3/reference.I-D.touch-tcpm-tcp-syn-ext-opt.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.3493.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.5246.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.5382.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.6394.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.7616.xml"?>
</references>

</back>
</rfc>
