<?xml version='1.0' encoding='utf-8'?>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.2.13 -->
<!DOCTYPE rfc SYSTEM "rfc2629-xhtml.ent">
<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-taps-transport-security-12" category="info" obsoletes="" updates="" submissionType="IETF" xml:lang="en" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 2.39.0 -->
  <front>
    <title abbrev="Transport Security Survey">A Survey of the Interaction Between Security Protocols and Transport Services</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-taps-transport-security-12"/>
    <author initials="T." surname="Enghardt" fullname="Theresa Enghardt">
      <organization>TU Berlin</organization>
      <address>
        <postal>
          <street>Marchstr. 23</street>
          <city>10587 Berlin</city>
          <country>Germany</country>
        </postal>
        <email>ietf@tenghardt.net</email>
      </address>
    </author>
    <author initials="T." surname="Pauly" fullname="Tommy Pauly">
      <organization>Apple Inc.</organization>
      <address>
        <postal>
          <street>One Apple Park Way</street>
          <city>Cupertino, California 95014</city>
          <country>United States of America</country>
        </postal>
        <email>tpauly@apple.com</email>
      </address>
    </author>
    <author initials="C." surname="Perkins" fullname="Colin Perkins">
      <organization>University of Glasgow</organization>
      <address>
        <postal>
          <street>School of Computing Science</street>
          <city>Glasgow  G12 8QQ</city>
          <country>United Kingdom</country>
        </postal>
        <email>csp@csperkins.org</email>
      </address>
    </author>
    <author initials="K." surname="Rose" fullname="Kyle Rose">
      <organization>Akamai Technologies, Inc.</organization>
      <address>
        <postal>
          <street>150 Broadway</street>
          <city>Cambridge, MA 02144</city>
          <country>United States of America</country>
        </postal>
        <email>krose@krose.org</email>
      </address>
    </author>
    <author initials="C.A." surname="Wood" fullname="Christopher A. Wood">
      <organization>Cloudflare</organization>
      <address>
        <postal>
          <street>101 Townsend St</street>
          <city>San Francisco</city>
          <country>United States of America</country>
        </postal>
        <email>caw@heapingbits.net</email>
      </address>
    </author>
    <date year="2020" month="April" day="23"/>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>This document provides a survey of commonly used or notable network security protocols, with a focus
on how they interact and integrate with applications and transport protocols. Its goal is to supplement
efforts to define and catalog transport services by describing the interfaces required to
add security protocols. This survey is not limited to protocols developed within the scope or context of
the IETF, and those included represent a superset of features a Transport Services system may need to support.</t>
    </abstract>
  </front>
  <middle>
    <section anchor="introduction" numbered="true" toc="default">
      <name>Introduction</name>
      <t>Services and features provided by transport protocols have been cataloged in <xref target="RFC8095" format="default"/>. This
document supplements that work by surveying commonly used and notable network security protocols,
and identifying the interfaces between these protocols and both transport protocols and
applications.  It examines Transport Layer Security (TLS), Datagram Transport Layer Security (DTLS),
IETF QUIC, Google QUIC (gQUIC), tcpcrypt, Internet Protocol Security (IPsec), Secure Real-time Transport Protocol (SRTP) with DTLS,
WireGuard, CurveCP, and MinimaLT. For each protocol, this document provides a brief description.
Then, it describes the interfaces between these protocols and transports in <xref target="transport-interface" format="default"/>
and the interfaces between these protocols and applications in <xref target="application-interface" format="default"/>.</t>
      <t>A Transport Services system exposes an interface for applications to access various (secure) transport protocol features.
The security protocols included in this survey represent a superset of functionality and features a Transport Services system may
need to support, both internally and externally (via an API) for applications <xref target="I-D.ietf-taps-arch" format="default"/>. Ubiquitous
IETF protocols such as (D)TLS, as well as non-standard protocols such as gQUIC,
are included despite overlapping features. As such, this survey is not limited to protocols
developed within the scope or context of the IETF. Outside of this candidate set, protocols
that do not offer new features are omitted. For example, newer protocols such as WireGuard make
unique design choices that have implications for and limitations on application usage. In contrast,
protocols such as SSH <xref target="RFC4253" format="default"/>, GRE <xref target="RFC2890" format="default"/>, L2TP <xref target="RFC5641" format="default"/>, and ALTS <xref target="ALTS" format="default"/>
are omitted since they do not provide interfaces deemed unique.</t>
      <t>Authentication-only protocols such as TCP-AO <xref target="RFC5925" format="default"/> and IPsec Authentication Header (AH) <xref target="RFC4302" format="default"/>
are excluded from this survey. TCP-AO adds authentication to long-lived TCP connections, e.g., replay
protection with per-packet Message Authentication Codes. (TCP-AO obsoletes TCP MD5 "signature"
options specified in <xref target="RFC2385" format="default"/>.) One primary use case of TCP-AO is for protecting BGP connections.
Similarly, AH adds per-datagram authentication and integrity, along with replay protection. Despite
these improvements, neither protocol sees general use and both lack critical properties important for emergent transport
security protocols, such as confidentiality and privacy protections. Such protocols are thus omitted from this survey.</t>
      <t>This document only surveys point-to-point protocols; multicast protocols are out of scope.</t>
      <section anchor="goals" numbered="true" toc="default">
        <name>Goals</name>
        <t>This survey is intended to help identify the most common interface surfaces between security protocols and
transport protocols, and between security protocols and applications.</t>
        <t>One of the goals of the Transport Services effort is to define a common interface for using transport protocols that allows
software using transport protocols to easily adopt new protocols that provide similar feature-sets. The survey of
the dependencies security protocols have upon transport protocols can guide implementations in determining
which transport protocols are appropriate to be able to use beneath a given security protocol. For example,
a security protocol that expects to run over a reliable stream of bytes, like TLS, restricts the set of transport
protocols that can be used to those that offer a reliable stream of bytes.</t>
        <t>Defining the common interfaces that security protocols provide to applications also allows interfaces to be
designed in a way that common functionality can use the same APIs. For example, many security protocols
that provide authentication let the application be involved in peer identity validation. Any interface to use
a secure transport protocol stack thus needs to allow applications to perform this action during connection
establishment.</t>
      </section>
      <section anchor="non-goals" numbered="true" toc="default">
        <name>Non-Goals</name>
        <t>While this survey provides similar analysis to that which was performed for transport protocols in <xref target="RFC8095" format="default"/>,
it is important to distinguish that the use of security protocols requires more consideration.</t>
        <t>It is not a goal to allow software implementations to automatically switch between different security protocols,
even where their interfaces to transport and applications are equivalent. Even between versions, security
protocols have subtly different guarantees and vulnerabilities. Thus, any implementation needs to only
use the set of protocols and algorithms that are requested by applications or by a system policy.</t>
        <t>Different security protocols also can use incompatible notions of peer identity and authentication, and
cryptographic options. It is not a goal to identify a common set of representations for these concepts.</t>
        <t>The protocols surveyed in this document represent a superset of functionality and features a Transport Services system may
need to support. It does not list all transport protocols that a Transport Services system may need to implement, nor does
it mandate that a Transport Service system implement any particular protocol.</t>
        <t>A Transport Services system may implement any secure transport protocol that provides the described features. In doing so,
it may need to expose an interface to the application to configure these features.</t>
      </section>
    </section>
    <section anchor="terminology" numbered="true" toc="default">
      <name>Terminology</name>
      <t>The following terms are used throughout this document to describe the roles and interactions of transport security protocols (some of which are also defined in <xref target="RFC8095" format="default"/>):</t>
      <ul spacing="normal">
        <li>Transport Feature: a specific end-to-end feature that the transport layer provides to an application.
Examples include confidentiality, reliable delivery, ordered delivery, and message-versus-stream orientation.</li>
        <li>Transport Service: a set of Transport Features, without an association to any given framing protocol,
which provides functionality to an application.</li>
        <li>Transport Services system: a software component that exposes an interface to different Transport Services to an application.</li>
        <li>Transport Protocol: an implementation that provides one or more different transport services using a
specific framing and header format on the wire. A Transport Protocol services an application, whether
directly or in conjunction with a security protocol.</li>
        <li>Application: an entity that uses a transport protocol for end-to-end delivery of data across the network.
This may also be an upper layer protocol or tunnel encapsulation.</li>
        <li>Security Protocol: a defined network protocol that implements one or more security features, such as
authentication, encryption, key generation, session resumption, and privacy. Security
protocols may be used alongside transport protocols, and in combination with other security protocols when
appropriate.</li>
        <li>Handshake Protocol: a protocol that enables peers to validate each other and to securely establish
shared cryptographic context.</li>
        <li>Record: Framed protocol messages.</li>
        <li>Record Protocol: a security protocol that allows data to be divided into manageable blocks and protected
using shared cryptographic context.</li>
        <li>Session: an ephemeral security association between applications.</li>
        <li>Connection: the shared state of two or more endpoints that persists across messages that are transmitted
between these endpoints. A connection is a transient participant of a session, and a session generally lasts
between connection instances.</li>
        <li>Peer: an endpoint application party to a session.</li>
        <li>Client: the peer responsible for initiating a session.</li>
        <li>Server: the peer responsible for responding to a session initiation.</li>
      </ul>
    </section>
    <section anchor="transport-security-protocol-descriptions" numbered="true" toc="default">
      <name>Transport Security Protocol Descriptions</name>
      <t>This section contains brief transport and security descriptions of various security
protocols currently used to protect data being sent over a network. These protocols are
grouped based on where in the protocol stack they are implemented, which influences
which parts of a packet they protect: Generic application payload, application payload
for specific application-layer protocols, both application payload and transport headers,
or entire IP packets.</t>
      <t>Note that not all security protocols can be easily categorized, e.g., as some protocols can be used
in different ways or in combination with other protocols.
One major reason for this is that channel security protocols often consist of two components:</t>
      <ul spacing="normal">
        <li>A handshake protocol, which is responsible for negotiating parameters, authenticating the
endpoints, and establishing shared keys.</li>
        <li>A record protocol, which is used to encrypt traffic using keys and parameters provided by the
handshake protocol.</li>
      </ul>
      <t>For some protocols, such as tcpcrypt, these two components are tightly integrated. In contrast, for
IPsec, these components are implemented in separate protocols: AH and ESP are record protocols,
which can use keys supplied by the handshake protocol IKEv2, by other handshake protocols, or by
manual configuration. Moreover, some protocols can be used in different ways: While the base TLS protocol as
defined in <xref target="RFC8446" format="default"/> has an integrated handshake and record protocol, TLS or DTLS can also be used
to negotiate keys for other protocols, as in DTLS-SRTP, or the handshake protocol can be used with
a separate record layer, as in QUIC <xref target="I-D.ietf-quic-transport" format="default"/>.</t>
      <section anchor="application-payload-security-protocols" numbered="true" toc="default">
        <name>Application Payload Security Protocols</name>
        <t>The following protocols provide security that protects application payloads sent over a
transport. They do not specifically protect any headers used for transport-layer functionality.</t>
        <section anchor="tls" numbered="true" toc="default">
          <name>TLS</name>
          <t>TLS (Transport Layer Security) <xref target="RFC8446" format="default"/> is a common protocol used to establish a secure session between two endpoints. Communication
over this session "prevents eavesdropping, tampering, and message forgery." TLS consists
of a tightly coupled handshake and record protocol. The handshake protocol is used to authenticate peers,
negotiate protocol options, such as cryptographic algorithms, and derive session-specific
keying material. The record protocol is used to marshal and, once the handshake has sufficiently
progressed, encrypt, data from one peer to the other. This data may contain handshake messages or
raw application data.</t>
        </section>
        <section anchor="dtls" numbered="true" toc="default">
          <name>DTLS</name>
          <t>DTLS (Datagram Transport Layer Security) <xref target="RFC6347" format="default"/> <xref target="I-D.ietf-tls-dtls13" format="default"/> is based on TLS, but differs in that
it is designed to run over unreliable datagram protocols like UDP instead of TCP.
DTLS modifies the protocol to make sure it can still provide equivalent security guarantees to TLS
with the exception of order protection/non-replayability. DTLS was designed to be as similar to TLS as possible,
so this document assumes that all properties from TLS are carried over except where specified.</t>
        </section>
      </section>
      <section anchor="application-specific-security-protocols" numbered="true" toc="default">
        <name>Application-Specific Security Protocols</name>
        <t>The following protocols provide application-specific security by protecting
application payloads used for specific use-cases. Unlike the protocols above,
these are not intended for generic application use.</t>
        <section anchor="secure-rtp" numbered="true" toc="default">
          <name>Secure RTP</name>
          <t>Secure RTP (SRTP) is a profile for RTP that provides confidentiality,
message authentication, and replay protection for RTP data packets
and RTP control protocol (RTCP) packets <xref target="RFC3711" format="default"/>.
SRTP provides a record layer only, and requires a separate handshake
protocol to provide key agreement and identity management.</t>
          <t>The commonly used handshake protocol for SRTP is DTLS, in the form of
DTLS-SRTP <xref target="RFC5764" format="default"/>.  This is an extension to DTLS that negotiates
the use of SRTP as the record layer, and describes how to export keys
for use with SRTP.</t>
          <t>ZRTP <xref target="RFC6189" format="default"/> is an alternative key agreement and identity management
protocol for SRTP.  ZRTP Key agreement is performed using a Diffie-Hellman
key exchange that runs on the media path. This generates a shared secret
that is then used to generate the master key and salt for SRTP.</t>
        </section>
      </section>
      <section anchor="transport-layer-security-protocols" numbered="true" toc="default">
        <name>Transport-Layer Security Protocols</name>
        <t>The following security protocols provide protection for both application payloads and
headers that are used for transport services.</t>
        <section anchor="quic" numbered="true" toc="default">
          <name>IETF QUIC</name>
          <t>QUIC is a new standards-track transport protocol that runs over UDP, loosely based on Google's
original proprietary gQUIC protocol <xref target="I-D.ietf-quic-transport" format="default"/> (See <xref target="gquic" format="default"/> for more details).
The QUIC transport layer itself provides support for data confidentiality and integrity. This requires
keys to be derived with a separate handshake protocol. A mapping for QUIC of TLS 1.3 <xref target="I-D.ietf-quic-tls" format="default"/>
has been specified to provide this handshake.</t>
        </section>
        <section anchor="gquic" numbered="true" toc="default">
          <name>Google QUIC</name>
          <t>Google QUIC (gQUIC) is a UDP-based multiplexed streaming protocol designed and deployed by Google
following experience from deploying SPDY, the proprietary predecessor to HTTP/2.
gQUIC was originally known as "QUIC": this document uses gQUIC to unambiguously distinguish
it from the standards-track IETF QUIC. The proprietary technical forebear of IETF QUIC, gQUIC
was originally designed with tightly-integrated security and application data transport protocols.</t>
        </section>
        <section anchor="tcpcrypt" numbered="true" toc="default">
          <name>tcpcrypt</name>
          <t>Tcpcrypt <xref target="RFC8548" format="default"/> is a lightweight extension to the TCP protocol for opportunistic encryption. Applications may
use tcpcrypt's unique session ID for further application-level authentication. Absent this authentication,
tcpcrypt is vulnerable to active attacks.</t>
        </section>
        <section anchor="minimalt" numbered="true" toc="default">
          <name>MinimaLT</name>
          <t>MinimaLT <xref target="MinimaLT" format="default"/> is a UDP-based transport security protocol designed to offer confidentiality,
mutual authentication, DoS prevention, and connection mobility. One major
goal of the protocol is to leverage existing protocols to obtain server-side configuration
information used to more quickly bootstrap a connection. MinimaLT uses a variant of TCP's
congestion control algorithm.</t>
        </section>
        <section anchor="curvecp" numbered="true" toc="default">
          <name>CurveCP</name>
          <t>CurveCP <xref target="CurveCP" format="default"/> is a UDP-based transport security that, unlike many other security protocols,
is based entirely upon public key algorithms. CurveCP provides its own reliability for application
data as part of its protocol.</t>
        </section>
      </section>
      <section anchor="packet-security-protocols" numbered="true" toc="default">
        <name>Packet Security Protocols</name>
        <t>The following protocols provide protection for IP packets. These are generally used as tunnels,
such as for Virtual Private Networks (VPNs). Often, applications will not interact directly with these
protocols. However, applications that implement tunnels will interact directly with these protocols.</t>
        <section anchor="ipsec" numbered="true" toc="default">
          <name>IPsec</name>
          <t>IKEv2 <xref target="RFC7296" format="default"/> and ESP <xref target="RFC4303" format="default"/> together form the modern IPsec protocol suite that encrypts
and authenticates IP packets, either for creating tunnels (tunnel-mode) or for direct transport
connections (transport-mode). This suite of protocols separates out the key generation protocol
(IKEv2) from the transport encryption protocol (ESP). Each protocol can be used independently,
but this document considers them together, since that is the most common pattern.</t>
        </section>
        <section anchor="wireguard" numbered="true" toc="default">
          <name>WireGuard</name>
          <t>WireGuard <xref target="WireGuard" format="default"/> is an IP-layer protocol designed as an alternative to IPsec
for certain use cases. It uses UDP to encapsulate IP datagrams between peers.
Unlike most transport security protocols, which rely on Public Key Infrastructure (PKI)
for peer authentication, WireGuard authenticates peers using pre-shared public keys
delivered out-of-band, each of which is bound to one or more IP addresses.
Moreover, as a protocol suited for VPNs, WireGuard offers no extensibility, negotiation,
or cryptographic agility.</t>
        </section>
        <section anchor="openvpn" numbered="true" toc="default">
          <name>OpenVPN</name>
          <t>OpenVPN <xref target="OpenVPN" format="default"/> is a commonly used protocol designed as an alternative to
IPsec. A major goal of this protocol is to provide a VPN that is simple to
configure and works over a variety of transports. OpenVPN encapsulates either
IP packets or Ethernet frames within a secure tunnel and can run over either UDP or TCP.
For key establishment, OpenVPN can either use TLS as a handshake protocol or use pre-shared keys.</t>
        </section>
      </section>
    </section>
    <section anchor="transport-interface" numbered="true" toc="default">
      <name>Transport Dependencies</name>
      <t>Across the different security protocols listed above, the primary dependency on transport
protocols is the presentation of data: either an unbounded stream of bytes, or framed
messages. Within protocols that rely on the transport for message framing, most are
built to run over transports that inherently provide framing, like UDP, but some also define
how their messages can be framed over byte-stream transports.</t>
      <section anchor="reliable-byte-stream-transports" numbered="true" toc="default">
        <name>Reliable Byte-Stream Transports</name>
        <t>The following protocols all depend upon running on a transport protocol that provides
a reliable, in-order stream of bytes. This is typically TCP.</t>
        <t>Application Payload Security Protocols:</t>
        <ul spacing="normal">
          <li>TLS</li>
        </ul>
        <t>Transport-Layer Security Protocols:</t>
        <ul spacing="normal">
          <li>tcpcrypt</li>
        </ul>
      </section>
      <section anchor="unreliable-datagram-transports" numbered="true" toc="default">
        <name>Unreliable Datagram Transports</name>
        <t>The following protocols all depend on the transport protocol to provide message framing
to encapsulate their data. These protocols are built to run using UDP, and thus do not
have any requirement for reliability. Running these protocols over a protocol that
does provide reliability will not break functionality, but may lead to multiple layers
of reliability if the security protocol is encapsulating other transport protocol traffic.</t>
        <t>Application Payload Security Protocols:</t>
        <ul spacing="normal">
          <li>DTLS</li>
          <li>ZRTP</li>
          <li>SRTP</li>
        </ul>
        <t>Transport-Layer Security Protocols:</t>
        <ul spacing="normal">
          <li>QUIC</li>
          <li>MinimaLT</li>
          <li>CurveCP</li>
        </ul>
        <t>Packet Security Protocols:</t>
        <ul spacing="normal">
          <li>IPsec</li>
          <li>WireGuard</li>
          <li>OpenVPN</li>
        </ul>
        <section anchor="datagram-protocols-with-defined-byte-stream-mappings" numbered="true" toc="default">
          <name>Datagram Protocols with Defined Byte-Stream Mappings</name>
          <t>Of the protocols listed above that depend on the transport for message framing, some
do have well-defined mappings for sending their messages over byte-stream transports
like TCP.</t>
          <t>Application Payload Security Protocols:</t>
          <ul spacing="normal">
            <li>DTLS when used as a handshake protocol for SRTP <xref target="RFC7850" format="default"/></li>
            <li>ZRTP <xref target="RFC6189" format="default"/></li>
            <li>SRTP <xref target="RFC4571" format="default"/><xref target="RFC3711" format="default"/></li>
          </ul>
          <t>Packet Security Protocols:</t>
          <ul spacing="normal">
            <li>IPsec <xref target="RFC8229" format="default"/></li>
          </ul>
        </section>
      </section>
      <section anchor="transport-specific-dependencies" numbered="true" toc="default">
        <name>Transport-Specific Dependencies</name>
        <t>One protocol surveyed, tcpcrypt, has an direct dependency on a feature in the transport
that is needed for its functionality. Specifically, tcpcrypt is designed to run on top of TCP, and
uses the TCP Encryption Negotiation Option (ENO) <xref target="RFC8547" format="default"/> to negotiate its
protocol support.</t>
        <t>QUIC, CurveCP, and MinimaLT provide both transport functionality and security functionality. They
depend on running over a framed protocol like UDP, but they add their own layers of
reliability and other transport services. Thus, an application that uses one of these protocols
cannot decouple the security from transport functionality.</t>
      </section>
    </section>
    <section anchor="application-interface" numbered="true" toc="default">
      <name>Application Interface</name>
      <t>This section describes the interface exposed by the security protocols described above.
We partition these interfaces into
pre-connection (configuration), connection, and post-connection interfaces, following
conventions in <xref target="I-D.ietf-taps-interface" format="default"/> and <xref target="I-D.ietf-taps-arch" format="default"/>.</t>
      <t>Note that not all protocols support each interface.
The table in <xref target="interface-protocols-table" format="default"/> summarizes which protocol exposes which of the interfaces.
In the following sections, we provide abbreviations of the interface names to use in the summary table.</t>
      <section anchor="pre-connection-interfaces" numbered="true" toc="default">
        <name>Pre-Connection Interfaces</name>
        <t>Configuration interfaces are used to configure the security protocols before a
handshake begins or keys are negotiated.</t>
        <ul spacing="normal">
          <li>
            <t>Identities and Private Keys (IPK): The application can provide its identity,
credentials (e.g., certificates), and private keys, or mechanisms to access these, to the
security protocol to use during handshakes.
            </t>
            <ul spacing="normal">
              <li>TLS</li>
              <li>DTLS</li>
              <li>ZRTP</li>
              <li>QUIC</li>
              <li>MinimaLT</li>
              <li>CurveCP</li>
              <li>IPsec</li>
              <li>WireGuard</li>
              <li>OpenVPN</li>
            </ul>
          </li>
          <li>
            <t>Supported Algorithms (Key Exchange, Signatures, and Ciphersuites) (ALG):
The application can choose the algorithms that are supported for key exchange,
signatures, and ciphersuites.
            </t>
            <ul spacing="normal">
              <li>TLS</li>
              <li>DTLS</li>
              <li>ZRTP</li>
              <li>QUIC</li>
              <li>tcpcrypt</li>
              <li>MinimaLT</li>
              <li>IPsec</li>
              <li>OpenVPN</li>
            </ul>
          </li>
          <li>
            <t>Extensions (EXT):
The application enables or configures extensions that are to be negotiated by
the security protocol, such as Application-Layer Protocol Negotiation (ALPN) <xref target="RFC7301" format="default"/>.
            </t>
            <ul spacing="normal">
              <li>TLS</li>
              <li>DTLS</li>
              <li>QUIC</li>
            </ul>
          </li>
          <li>
            <t>Session Cache Management (CM):
The application provides the ability to save and retrieve session state (such as tickets,
keying material, and server parameters) that may be used to resume the security session.
            </t>
            <ul spacing="normal">
              <li>TLS</li>
              <li>DTLS</li>
              <li>ZRTP</li>
              <li>QUIC</li>
              <li>tcpcrypt</li>
              <li>MinimaLT</li>
            </ul>
          </li>
          <li>
            <t>Authentication Delegation (AD):
The application provides access to a separate module that will provide authentication,
using Extensible Authentication Protocol (EAP) <xref target="RFC3748" format="default"/> for example.
            </t>
            <ul spacing="normal">
              <li>IPsec</li>
              <li>tcpcrypt</li>
            </ul>
          </li>
          <li>
            <t>Pre-Shared Key Import (PSKI):
Either the handshake protocol or the application directly can supply pre-shared keys for use
in encrypting (and authenticating) communication with a peer.
            </t>
            <ul spacing="normal">
              <li>TLS</li>
              <li>DTLS</li>
              <li>ZRTP</li>
              <li>QUIC</li>
              <li>tcpcrypt</li>
              <li>MinimaLT</li>
              <li>IPsec</li>
              <li>WireGuard</li>
              <li>OpenVPN</li>
            </ul>
          </li>
        </ul>
      </section>
      <section anchor="connection-interfaces" numbered="true" toc="default">
        <name>Connection Interfaces</name>
        <ul spacing="normal">
          <li>
            <t>Identity Validation (IV):
During a handshake, the security protocol will conduct identity validation of the peer.
This can offload validation or occur transparently to the application.
            </t>
            <ul spacing="normal">
              <li>TLS</li>
              <li>DTLS</li>
              <li>ZRTP</li>
              <li>QUIC</li>
              <li>MinimaLT</li>
              <li>CurveCP</li>
              <li>IPsec</li>
              <li>WireGuard</li>
              <li>OpenVPN</li>
            </ul>
          </li>
          <li>
            <t>Source Address Validation (SAV):
The handshake protocol may interact with the transport protocol or application to
validate the address of the remote peer that has sent data. This involves sending a cookie
exchange to avoid DoS attacks. (This list omits protocols which depend on TCP and therefore
implicitly perform SAV.)
            </t>
            <ul spacing="normal">
              <li>DTLS</li>
              <li>QUIC</li>
              <li>IPsec</li>
              <li>WireGuard</li>
            </ul>
          </li>
        </ul>
      </section>
      <section anchor="post-connection-interfaces" numbered="true" toc="default">
        <name>Post-Connection Interfaces</name>
        <ul spacing="normal">
          <li>
            <t>Connection Termination (CT):
The security protocol may be instructed to tear down its connection and session information.
This is needed by some protocols, e.g., to prevent application data truncation attacks in
which an attacker terminates an underlying insecure connection-oriented protocol to terminate
the session.
            </t>
            <ul spacing="normal">
              <li>TLS</li>
              <li>DTLS</li>
              <li>ZRTP</li>
              <li>QUIC</li>
              <li>tcpcrypt</li>
              <li>MinimaLT</li>
              <li>IPsec</li>
              <li>OpenVPN</li>
            </ul>
          </li>
          <li>
            <t>Key Update (KU):
The handshake protocol may be instructed to update its keying material, either
by the application directly or by the record protocol sending a key expiration event.
            </t>
            <ul spacing="normal">
              <li>TLS</li>
              <li>DTLS</li>
              <li>QUIC</li>
              <li>tcpcrypt</li>
              <li>MinimaLT</li>
              <li>IPsec</li>
            </ul>
          </li>
          <li>
            <t>Shared Secret Export (PSKE):
The handshake protocol may provide an interface for producing shared secrets for application-specific uses.
            </t>
            <ul spacing="normal">
              <li>TLS</li>
              <li>DTLS</li>
              <li>tcpcrypt</li>
              <li>IPsec</li>
              <li>OpenVPN</li>
              <li>MinimaLT</li>
            </ul>
          </li>
          <li>
            <t>Key Expiration (KE):
The record protocol can signal that its keys are expiring due to reaching a time-based deadline, or a use-based
deadline (number of bytes that have been encrypted with the key). This interaction is often limited to signaling
between the record layer and the handshake layer.
            </t>
            <ul spacing="normal">
              <li>IPsec</li>
            </ul>
          </li>
          <li>
            <t>Mobility Events (ME):
The record protocol can be signaled that it is being migrated to another transport or interface due to
connection mobility, which may reset address and state validation and induce state changes such
as use of a new Connection Identifier (CID).
            </t>
            <ul spacing="normal">
              <li>DTLS (version 1.3 only <xref target="I-D.ietf-tls-dtls13" format="default"/>)</li>
              <li>QUIC</li>
              <li>MinimaLT</li>
              <li>CurveCP</li>
              <li>IPsec <xref target="RFC4555" format="default"/></li>
              <li>WireGuard</li>
            </ul>
          </li>
        </ul>
      </section>
      <section anchor="interface-protocols-table" numbered="true" toc="default">
        <name>Summary of Interfaces Exposed by Protocols</name>
        <t>The following table summarizes which protocol exposes which interface.</t>
        <table align="center">
          <thead>
            <tr>
              <th align="left">Protocol</th>
              <th align="center">IPK</th>
              <th align="center">ALG</th>
              <th align="center">EXT</th>
              <th align="center">CM</th>
              <th align="center">AD</th>
              <th align="center">PSKI</th>
              <th align="center">IV</th>
              <th align="center">SAV</th>
              <th align="center">CT</th>
              <th align="center">KU</th>
              <th align="center">PSKE</th>
              <th align="center">KE</th>
              <th align="center">ME</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">TLS</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">&nbsp;</td>
            </tr>
            <tr>
              <td align="left">DTLS</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">x</td>
            </tr>
            <tr>
              <td align="left">ZRTP</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">&nbsp;</td>
              <td align="center">&nbsp;</td>
              <td align="center">&nbsp;</td>
            </tr>
            <tr>
              <td align="left">QUIC</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">&nbsp;</td>
              <td align="center">x</td>
            </tr>
            <tr>
              <td align="left">tcpcrypt</td>
              <td align="center">&nbsp;</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">&nbsp;</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">&nbsp;</td>
            </tr>
            <tr>
              <td align="left">MinimaLT</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">x</td>
            </tr>
            <tr>
              <td align="left">CurveCP</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">&nbsp;</td>
              <td align="center">&nbsp;</td>
              <td align="center">&nbsp;</td>
              <td align="center">&nbsp;</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">&nbsp;</td>
              <td align="center">&nbsp;</td>
              <td align="center">&nbsp;</td>
              <td align="center">&nbsp;</td>
              <td align="center">x</td>
            </tr>
            <tr>
              <td align="left">IPsec</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">&nbsp;</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">x</td>
            </tr>
            <tr>
              <td align="left">WireGuard</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">&nbsp;</td>
              <td align="center">&nbsp;</td>
              <td align="center">&nbsp;</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">&nbsp;</td>
              <td align="center">&nbsp;</td>
              <td align="center">&nbsp;</td>
              <td align="center">x</td>
            </tr>
            <tr>
              <td align="left">OpenVPN</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">&nbsp;</td>
              <td align="center">&nbsp;</td>
              <td align="center">x</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">x</td>
              <td align="center">&nbsp;</td>
              <td align="center">&nbsp;</td>
            </tr>
          </tbody>
        </table>
        <t>x=Interface is exposed 
(blank)=Interface is not exposed</t>
      </section>
    </section>
    <section anchor="iana-considerations" numbered="true" toc="default">
      <name>IANA Considerations</name>
      <t>This document has no request to IANA.</t>
    </section>
    <section anchor="security-considerations" numbered="true" toc="default">
      <name>Security Considerations</name>
      <t>This document summarizes existing transport security protocols and their interfaces.
It does not propose changes to or recommend usage of reference protocols. Moreover,
no claims of security and privacy properties beyond those guaranteed by the protocols
discussed are made. For example, metadata leakage via timing side channels and traffic
analysis may compromise any protocol discussed in this survey. Applications using
Security Interfaces should take such limitations into consideration when using a particular
protocol implementation.</t>
    </section>
    <section anchor="privacy-considerations" numbered="true" toc="default">
      <name>Privacy Considerations</name>
      <t>Analysis of how features improve or degrade privacy is intentionally omitted from this survey.
All security protocols surveyed generally improve privacy by using encryption to reduce information
leakage. However, varying amounts of metadata remain in the clear across each
protocol. For example, client and server certificates are sent in cleartext in TLS
1.2 <xref target="RFC5246" format="default"/>, whereas they are encrypted in TLS 1.3 <xref target="RFC8446" format="default"/>. A survey of privacy
features, or lack thereof, for various security protocols could be addressed in a
separate document.</t>
    </section>
    <section anchor="acknowledgments" numbered="true" toc="default">
      <name>Acknowledgments</name>
      <t>The authors would like to thank Bob Bradley, Frederic Jacobs, Mirja Kuehlewind,
Yannick Sierra, Brian Trammell, and Magnus Westerlund for their input and feedback
on this draft.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>Informative References</name>
      <reference anchor="WireGuard" target="https://www.wireguard.com/papers/wireguard.pdf">
        <front>
          <title>WireGuard -- Next Generation Kernel Network Tunnel</title>
          <author initials="J.A." surname="Donenfeld">
            <organization/>
          </author>
          <date/>
        </front>
      </reference>
      <reference anchor="ALTS" target="https://cloud.google.com/security/encryption-in-transit/application-layer-transport-security/">
        <front>
          <title>Application Layer Transport Security</title>
          <author initials="C." surname="Ghali">
            <organization/>
          </author>
          <author initials="A." surname="Stubblefield">
            <organization/>
          </author>
          <author initials="E." surname="Knapp">
            <organization/>
          </author>
          <author initials="J." surname="Li">
            <organization/>
          </author>
          <author initials="B." surname="Schmidt">
            <organization/>
          </author>
          <author initials="J." surname="Boeuf">
            <organization/>
          </author>
          <date/>
        </front>
      </reference>
      <reference anchor="CurveCP" target="http://curvecp.org">
        <front>
          <title>CurveCP -- Usable security for the Internet</title>
          <author initials="D.J." surname="Bernstein">
            <organization/>
          </author>
          <date/>
        </front>
      </reference>
      <reference anchor="MinimaLT" target="http://dl.acm.org/citation.cfm?id=2516737">
        <front>
          <title>MinimaLT -- Minimal-latency Networking Through Better Security</title>
          <author initials="W.M." surname="Petullo">
            <organization>United States Military Academy, West Point, NY, USA</organization>
          </author>
          <author initials="X." surname="Zhang">
            <organization>University of Illinois at Chicago, Chicago, IL, USA</organization>
          </author>
          <author initials="J.A." surname="Solworth">
            <organization>University of Illinois at Chicago, Chicago, IL, USA</organization>
          </author>
          <author initials="D.J." surname="Bernstein">
            <organization>University of Illinois at Chicago, Chicago, IL, USA</organization>
          </author>
          <author initials="T." surname="Lange">
            <organization>TU Eindhoven, Eindhoven, Netherlands</organization>
          </author>
          <date/>
        </front>
      </reference>
      <reference anchor="OpenVPN" target="https://openvpn.net/community-resources/openvpn-cryptographic-layer/">
        <front>
          <title>OpenVPN cryptographic layer</title>
          <author>
            <organization/>
          </author>
          <date/>
        </front>
      </reference>
      <reference anchor="RFC8095" target="https://www.rfc-editor.org/info/rfc8095">
        <front>
          <title>Services Provided by IETF Transport Protocols and Congestion Control Mechanisms</title>
          <seriesInfo name="DOI" value="10.17487/RFC8095"/>
          <seriesInfo name="RFC" value="8095"/>
          <author initials="G." surname="Fairhurst" fullname="G. Fairhurst" role="editor">
            <organization/>
          </author>
          <author initials="B." surname="Trammell" fullname="B. Trammell" role="editor">
            <organization/>
          </author>
          <author initials="M." surname="Kuehlewind" fullname="M. Kuehlewind" role="editor">
            <organization/>
          </author>
          <date year="2017" month="March"/>
          <abstract>
            <t>This document describes, surveys, and classifies the protocol mechanisms provided by existing IETF protocols, as background for determining a common set of transport services.  It examines the Transmission Control Protocol (TCP), Multipath TCP, the Stream Control Transmission Protocol (SCTP), the User Datagram Protocol (UDP), UDP-Lite, the Datagram Congestion Control Protocol (DCCP), the Internet Control Message Protocol (ICMP), the Real-Time Transport Protocol (RTP), File Delivery over Unidirectional Transport / Asynchronous Layered Coding (FLUTE/ALC) for Reliable Multicast, NACK- Oriented Reliable Multicast (NORM), Transport Layer Security (TLS), Datagram TLS (DTLS), and the Hypertext Transport Protocol (HTTP), when HTTP is used as a pseudotransport.  This survey provides background for the definition of transport services within the TAPS working group.</t>
          </abstract>
        </front>
      </reference>
      <reference anchor="I-D.ietf-taps-arch" target="http://www.ietf.org/internet-drafts/draft-ietf-taps-arch-07.txt">
        <front>
          <title>An Architecture for Transport Services</title>
          <seriesInfo name="Internet-Draft" value="draft-ietf-taps-arch-07"/>
          <author initials="T" surname="Pauly" fullname="Tommy Pauly">
            <organization/>
          </author>
          <author initials="B" surname="Trammell" fullname="Brian Trammell">
            <organization/>
          </author>
          <author initials="A" surname="Brunstrom" fullname="Anna Brunstrom">
            <organization/>
          </author>
          <author initials="G" surname="Fairhurst" fullname="Gorry Fairhurst">
            <organization/>
          </author>
          <author initials="C" surname="Perkins" fullname="Colin Perkins">
            <organization/>
          </author>
          <author initials="P" surname="Tiesel" fullname="Philipp Tiesel">
            <organization/>
          </author>
          <author initials="C" surname="Wood" fullname="Christopher Wood">
            <organization/>
          </author>
          <date month="March" day="9" year="2020"/>
          <abstract>
            <t>This document describes an architecture for exposing transport protocol features to applications for network communication, the Transport Services architecture.  The Transport Services Application Programming Interface (API) is based on an asynchronous, event-driven interaction pattern.  It uses messages for representing data transfer to applications, and it assumes an implementation that can use multiple IP addresses, multiple protocols, and multiple paths, and provide multiple application streams.  This document further defines common terminology and concepts to be used in definitions of Transport Services APIs and implementations.</t>
          </abstract>
        </front>
      </reference>
      <reference anchor="RFC4253" target="https://www.rfc-editor.org/info/rfc4253">
        <front>
          <title>The Secure Shell (SSH) Transport Layer Protocol</title>
          <seriesInfo name="DOI" value="10.17487/RFC4253"/>
          <seriesInfo name="RFC" value="4253"/>
          <author initials="T." surname="Ylonen" fullname="T. Ylonen">
            <organization/>
          </author>
          <author initials="C." surname="Lonvick" fullname="C. Lonvick" role="editor">
            <organization/>
          </author>
          <date year="2006" month="January"/>
          <abstract>
            <t>The Secure Shell (SSH) is a protocol for secure remote login and other secure network services over an insecure network.</t>
            <t>This document describes the SSH transport layer protocol, which typically runs on top of TCP/IP.  The protocol can be used as a basis for a number of secure network services.  It provides strong encryption, server authentication, and integrity protection.  It may also provide compression.</t>
            <t>Key exchange method, public key algorithm, symmetric encryption algorithm, message authentication algorithm, and hash algorithm are all negotiated.</t>
            <t>This document also describes the Diffie-Hellman key exchange method and the minimal set of algorithms that are needed to implement the SSH transport layer protocol.  [STANDARDS-TRACK]</t>
          </abstract>
        </front>
      </reference>
      <reference anchor="RFC2890" target="https://www.rfc-editor.org/info/rfc2890">
        <front>
          <title>Key and Sequence Number Extensions to GRE</title>
          <seriesInfo name="DOI" value="10.17487/RFC2890"/>
          <seriesInfo name="RFC" value="2890"/>
          <author initials="G." surname="Dommety" fullname="G. Dommety">
            <organization/>
          </author>
          <date year="2000" month="September"/>
          <abstract>
            <t>This document describes extensions by which two fields, Key and Sequence Number, can be optionally carried in the GRE Header.  [STANDARDS-TRACK]</t>
          </abstract>
        </front>
      </reference>
      <reference anchor="RFC5641" target="https://www.rfc-editor.org/info/rfc5641">
        <front>
          <title>Layer 2 Tunneling Protocol Version 3 (L2TPv3) Extended Circuit Status Values</title>
          <seriesInfo name="DOI" value="10.17487/RFC5641"/>
          <seriesInfo name="RFC" value="5641"/>
          <author initials="N." surname="McGill" fullname="N. McGill">
            <organization/>
          </author>
          <author initials="C." surname="Pignataro" fullname="C. Pignataro">
            <organization/>
          </author>
          <date year="2009" month="August"/>
          <abstract>
            <t>This document defines additional Layer 2 Tunneling Protocol Version 3 (L2TPv3) bit values to be used within the "Circuit Status" Attribute Value Pair (AVP) to communicate finer-grained error states for Attachment Circuits (ACs) and pseudowires (PWs).  It also generalizes the Active bit and deprecates the use of the New bit in the Circuit Status AVP, updating RFC 3931, RFC 4349, RFC 4454, RFC 4591, and RFC 4719.  [STANDARDS-TRACK]</t>
          </abstract>
        </front>
      </reference>
      <reference anchor="RFC5925" target="https://www.rfc-editor.org/info/rfc5925">
        <front>
          <title>The TCP Authentication Option</title>
          <seriesInfo name="DOI" value="10.17487/RFC5925"/>
          <seriesInfo name="RFC" value="5925"/>
          <author initials="J." surname="Touch" fullname="J. Touch">
            <organization/>
          </author>
          <author initials="A." surname="Mankin" fullname="A. Mankin">
            <organization/>
          </author>
          <author initials="R." surname="Bonica" fullname="R. Bonica">
            <organization/>
          </author>
          <date year="2010" month="June"/>
          <abstract>
            <t>This document specifies the TCP Authentication Option (TCP-AO), which obsoletes the TCP MD5 Signature option of RFC 2385 (TCP MD5).  TCP-AO specifies the use of stronger Message Authentication Codes (MACs), protects against replays even for long-lived TCP connections, and provides more details on the association of security with TCP connections than TCP MD5.  TCP-AO is compatible with either a static Master Key Tuple (MKT) configuration or an external, out-of-band MKT management mechanism; in either case, TCP-AO also protects connections when using the same MKT across repeated instances of a connection, using traffic keys derived from the MKT, and coordinates MKT changes between endpoints.  The result is intended to support current infrastructure uses of TCP MD5, such as to protect long-lived connections (as used, e.g., in BGP and LDP), and to support a larger set of MACs with minimal other system and operational changes.  TCP-AO uses a different option identifier than TCP MD5, even though TCP-AO and TCP MD5 are never permitted to be used simultaneously.  TCP-AO supports IPv6, and is fully compatible with the proposed requirements for the replacement of TCP MD5.  [STANDARDS-TRACK]</t>
          </abstract>
        </front>
      </reference>
      <reference anchor="RFC4302" target="https://www.rfc-editor.org/info/rfc4302">
        <front>
          <title>IP Authentication Header</title>
          <seriesInfo name="DOI" value="10.17487/RFC4302"/>
          <seriesInfo name="RFC" value="4302"/>
          <author initials="S." surname="Kent" fullname="S. Kent">
            <organization/>
          </author>
          <date year="2005" month="December"/>
          <abstract>
            <t>This document describes an updated version of the IP Authentication Header (AH), which is designed to provide authentication services in IPv4 and IPv6.  This document obsoletes RFC 2402 (November 1998).  [STANDARDS-TRACK]</t>
          </abstract>
        </front>
      </reference>
      <reference anchor="RFC2385" target="https://www.rfc-editor.org/info/rfc2385">
        <front>
          <title>Protection of BGP Sessions via the TCP MD5 Signature Option</title>
          <seriesInfo name="DOI" value="10.17487/RFC2385"/>
          <seriesInfo name="RFC" value="2385"/>
          <author initials="A." surname="Heffernan" fullname="A. Heffernan">
            <organization/>
          </author>
          <date year="1998" month="August"/>
          <abstract>
            <t>This memo describes a TCP extension to enhance security for BGP. [STANDARDS-TRACK]</t>
          </abstract>
        </front>
      </reference>
      <reference anchor="I-D.ietf-quic-transport" target="http://www.ietf.org/internet-drafts/draft-ietf-quic-transport-27.txt">
        <front>
          <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-transport-27"/>
          <author initials="J" surname="Iyengar" fullname="Jana Iyengar">
            <organization/>
          </author>
          <author initials="M" surname="Thomson" fullname="Martin Thomson">
            <organization/>
          </author>
          <date month="February" day="21" year="2020"/>
          <abstract>
            <t>This document defines the core of the QUIC transport protocol. Accompanying documents describe QUIC's loss detection and congestion control and the use of TLS for key negotiation.  Note to Readers  Discussion of this draft takes place on the QUIC working group mailing list (quic@ietf.org), which is archived at &lt;https://mailarchive.ietf.org/arch/search/?email_list=quic&gt;.  Working Group information can be found at &lt;https://github.com/ quicwg&gt;; source code and issues list for this draft can be found at &lt;https://github.com/quicwg/base-drafts/labels/-transport&gt;.</t>
          </abstract>
        </front>
      </reference>
      <reference anchor="RFC8446" target="https://www.rfc-editor.org/info/rfc8446">
        <front>
          <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
          <seriesInfo name="RFC" value="8446"/>
          <author initials="E." surname="Rescorla" fullname="E. Rescorla">
            <organization/>
          </author>
          <date year="2018" month="August"/>
          <abstract>
            <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
            <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t>
          </abstract>
        </front>
      </reference>
      <reference anchor="RFC6347" target="https://www.rfc-editor.org/info/rfc6347">
        <front>
          <title>Datagram Transport Layer Security Version 1.2</title>
          <seriesInfo name="DOI" value="10.17487/RFC6347"/>
          <seriesInfo name="RFC" value="6347"/>
          <author initials="E." surname="Rescorla" fullname="E. Rescorla">
            <organization/>
          </author>
          <author initials="N." surname="Modadugu" fullname="N. Modadugu">
            <organization/>
          </author>
          <date year="2012" month="January"/>
          <abstract>
            <t>This document specifies version 1.2 of the Datagram Transport Layer Security (DTLS) protocol.  The DTLS protocol provides communications privacy for datagram protocols.  The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery.  The DTLS protocol is based on the Transport Layer Security (TLS) protocol and provides equivalent security guarantees.  Datagram semantics of the underlying transport are preserved by the DTLS protocol.  This document updates DTLS 1.0 to work with TLS version 1.2.  [STANDARDS-TRACK]</t>
          </abstract>
        </front>
      </reference>
      <reference anchor="I-D.ietf-tls-dtls13" target="http://www.ietf.org/internet-drafts/draft-ietf-tls-dtls13-37.txt">
        <front>
          <title>The Datagram Transport Layer Security (DTLS) Protocol Version 1.3</title>
          <seriesInfo name="Internet-Draft" value="draft-ietf-tls-dtls13-37"/>
          <author initials="E" surname="Rescorla" fullname="Eric Rescorla">
            <organization/>
          </author>
          <author initials="H" surname="Tschofenig" fullname="Hannes Tschofenig">
            <organization/>
          </author>
          <author initials="N" surname="Modadugu" fullname="Nagendra Modadugu">
            <organization/>
          </author>
          <date month="March" day="9" year="2020"/>
          <abstract>
            <t>This document specifies Version 1.3 of the Datagram Transport Layer Security (DTLS) protocol.  DTLS 1.3 allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.  The DTLS 1.3 protocol is intentionally based on the Transport Layer Security (TLS) 1.3 protocol and provides equivalent security guarantees with the exception of order protection/non-replayability. Datagram semantics of the underlying transport are preserved by the DTLS protocol.</t>
          </abstract>
        </front>
      </reference>
      <reference anchor="RFC3711" target="https://www.rfc-editor.org/info/rfc3711">
        <front>
          <title>The Secure Real-time Transport Protocol (SRTP)</title>
          <seriesInfo name="DOI" value="10.17487/RFC3711"/>
          <seriesInfo name="RFC" value="3711"/>
          <author initials="M." surname="Baugher" fullname="M. Baugher">
            <organization/>
          </author>
          <author initials="D." surname="McGrew" fullname="D. McGrew">
            <organization/>
          </author>
          <author initials="M." surname="Naslund" fullname="M. Naslund">
            <organization/>
          </author>
          <author initials="E." surname="Carrara" fullname="E. Carrara">
            <organization/>
          </author>
          <author initials="K." surname="Norrman" fullname="K. Norrman">
            <organization/>
          </author>
          <date year="2004" month="March"/>
          <abstract>
            <t>This document describes the Secure Real-time Transport Protocol (SRTP), a profile of the Real-time Transport Protocol (RTP), which can provide confidentiality, message authentication, and replay protection to the RTP traffic and to the control traffic for RTP, the Real-time Transport Control Protocol (RTCP).   [STANDARDS-TRACK]</t>
          </abstract>
        </front>
      </reference>
      <reference anchor="RFC5764" target="https://www.rfc-editor.org/info/rfc5764">
        <front>
          <title>Datagram Transport Layer Security (DTLS) Extension to Establish Keys for the Secure Real-time Transport Protocol (SRTP)</title>
          <seriesInfo name="DOI" value="10.17487/RFC5764"/>
          <seriesInfo name="RFC" value="5764"/>
          <author initials="D." surname="McGrew" fullname="D. McGrew">
            <organization/>
          </author>
          <author initials="E." surname="Rescorla" fullname="E. Rescorla">
            <organization/>
          </author>
          <date year="2010" month="May"/>
          <abstract>
            <t>This document describes a Datagram Transport Layer Security (DTLS) extension to establish keys for Secure RTP (SRTP) and Secure RTP Control Protocol (SRTCP) flows.  DTLS keying happens on the media path, independent of any out-of-band signalling channel present. [STANDARDS-TRACK]</t>
          </abstract>
        </front>
      </reference>
      <reference anchor="RFC6189" target="https://www.rfc-editor.org/info/rfc6189">
        <front>
          <title>ZRTP: Media Path Key Agreement for Unicast Secure RTP</title>
          <seriesInfo name="DOI" value="10.17487/RFC6189"/>
          <seriesInfo name="RFC" value="6189"/>
          <author initials="P." surname="Zimmermann" fullname="P. Zimmermann">
            <organization/>
          </author>
          <author initials="A." surname="Johnston" fullname="A. Johnston" role="editor">
            <organization/>
          </author>
          <author initials="J." surname="Callas" fullname="J. Callas">
            <organization/>
          </author>
          <date year="2011" month="April"/>
          <abstract>
            <t>This document defines ZRTP, a protocol for media path Diffie-Hellman exchange to agree on a session key and parameters for establishing unicast Secure Real-time Transport Protocol (SRTP) sessions for Voice over IP (VoIP) applications.  The ZRTP protocol is media path keying because it is multiplexed on the same port as RTP and does not require support in the signaling protocol.  ZRTP does not assume a Public Key Infrastructure (PKI) or require the complexity of certificates in end devices.  For the media session, ZRTP provides confidentiality, protection against man-in-the-middle (MiTM) attacks, and, in cases where the signaling protocol provides end-to-end integrity protection, authentication.  ZRTP can utilize a Session Description Protocol (SDP) attribute to provide discovery and authentication through the signaling channel.  To provide best effort SRTP, ZRTP utilizes normal RTP/AVP (Audio-Visual Profile) profiles. ZRTP secures media sessions that include a voice media stream and can also secure media sessions that do not include voice by using an optional digital signature.  This document is not an Internet  Standards Track specification; it is published for informational purposes.</t>
          </abstract>
        </front>
      </reference>
      <reference anchor="I-D.ietf-quic-tls" target="http://www.ietf.org/internet-drafts/draft-ietf-quic-tls-27.txt">
        <front>
          <title>Using TLS to Secure QUIC</title>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-tls-27"/>
          <author initials="M" surname="Thomson" fullname="Martin Thomson">
            <organization/>
          </author>
          <author initials="S" surname="Turner" fullname="Sean Turner">
            <organization/>
          </author>
          <date month="February" day="21" year="2020"/>
          <abstract>
            <t>This document describes how Transport Layer Security (TLS) is used to secure QUIC.</t>
          </abstract>
        </front>
      </reference>
      <reference anchor="RFC8548" target="https://www.rfc-editor.org/info/rfc8548">
        <front>
          <title>Cryptographic Protection of TCP Streams (tcpcrypt)</title>
          <seriesInfo name="DOI" value="10.17487/RFC8548"/>
          <seriesInfo name="RFC" value="8548"/>
          <author initials="A." surname="Bittau" fullname="A. Bittau">
            <organization/>
          </author>
          <author initials="D." surname="Giffin" fullname="D. Giffin">
            <organization/>
          </author>
          <author initials="M." surname="Handley" fullname="M. Handley">
            <organization/>
          </author>
          <author initials="D." surname="Mazieres" fullname="D. Mazieres">
            <organization/>
          </author>
          <author initials="Q." surname="Slack" fullname="Q. Slack">
            <organization/>
          </author>
          <author initials="E." surname="Smith" fullname="E. Smith">
            <organization/>
          </author>
          <date year="2019" month="May"/>
          <abstract>
            <t>This document specifies "tcpcrypt", a TCP encryption protocol designed for use in conjunction with the TCP Encryption Negotiation Option (TCP-ENO).  Tcpcrypt coexists with middleboxes by tolerating resegmentation, NATs, and other manipulations of the TCP header.  The protocol is self-contained and specifically tailored to TCP implementations, which often reside in kernels or other environments in which large external software dependencies can be undesirable. Because the size of TCP options is limited, the protocol requires one additional one-way message latency to perform key exchange before application data can be transmitted.  However, the extra latency can be avoided between two hosts that have recently established a previous tcpcrypt connection.</t>
          </abstract>
        </front>
      </reference>
      <reference anchor="RFC7296" target="https://www.rfc-editor.org/info/rfc7296">
        <front>
          <title>Internet Key Exchange Protocol Version 2 (IKEv2)</title>
          <seriesInfo name="DOI" value="10.17487/RFC7296"/>
          <seriesInfo name="RFC" value="7296"/>
          <seriesInfo name="STD" value="79"/>
          <author initials="C." surname="Kaufman" fullname="C. Kaufman">
            <organization/>
          </author>
          <author initials="P." surname="Hoffman" fullname="P. Hoffman">
            <organization/>
          </author>
          <author initials="Y." surname="Nir" fullname="Y. Nir">
            <organization/>
          </author>
          <author initials="P." surname="Eronen" fullname="P. Eronen">
            <organization/>
          </author>
          <author initials="T." surname="Kivinen" fullname="T. Kivinen">
            <organization/>
          </author>
          <date year="2014" month="October"/>
          <abstract>
            <t>This document describes version 2 of the Internet Key Exchange (IKE) protocol.  IKE is a component of IPsec used for performing mutual authentication and establishing and maintaining Security Associations (SAs).  This document obsoletes RFC 5996, and includes all of the errata for it.  It advances IKEv2 to be an Internet Standard.</t>
          </abstract>
        </front>
      </reference>
      <reference anchor="RFC4303" target="https://www.rfc-editor.org/info/rfc4303">
        <front>
          <title>IP Encapsulating Security Payload (ESP)</title>
          <seriesInfo name="DOI" value="10.17487/RFC4303"/>
          <seriesInfo name="RFC" value="4303"/>
          <author initials="S." surname="Kent" fullname="S. Kent">
            <organization/>
          </author>
          <date year="2005" month="December"/>
          <abstract>
            <t>This document describes an updated version of the Encapsulating Security Payload (ESP) protocol, which is designed to provide a mix of security services in IPv4 and IPv6.  ESP is used to provide confidentiality, data origin authentication, connectionless integrity, an anti-replay service (a form of partial sequence integrity), and limited traffic flow confidentiality.  This document obsoletes RFC 2406 (November 1998).  [STANDARDS-TRACK]</t>
          </abstract>
        </front>
      </reference>
      <reference anchor="RFC7850" target="https://www.rfc-editor.org/info/rfc7850">
        <front>
          <title>Registering Values of the SDP 'proto' Field for Transporting RTP Media over TCP under Various RTP Profiles</title>
          <seriesInfo name="DOI" value="10.17487/RFC7850"/>
          <seriesInfo name="RFC" value="7850"/>
          <author initials="S." surname="Nandakumar" fullname="S. Nandakumar">
            <organization/>
          </author>
          <date year="2016" month="April"/>
          <abstract>
            <t>The Real-time Transport Protocol (RTP) specification establishes a registry of profile names for use by higher-level control protocols, such as the Session Description Protocol (SDP), to refer to the transport methods.  This specification describes the following new SDP transport protocol identifiers for transporting RTP Media over TCP: 'TCP/RTP/AVPF', 'TCP/RTP/SAVP', 'TCP/RTP/SAVPF', 'TCP/DTLS/RTP/SAVP', 'TCP/DTLS/RTP/SAVPF', 'TCP/TLS/RTP/AVP', and 'TCP/TLS/RTP/AVPF'.</t>
          </abstract>
        </front>
      </reference>
      <reference anchor="RFC4571" target="https://www.rfc-editor.org/info/rfc4571">
        <front>
          <title>Framing Real-time Transport Protocol (RTP) and RTP Control Protocol (RTCP) Packets over Connection-Oriented Transport</title>
          <seriesInfo name="DOI" value="10.17487/RFC4571"/>
          <seriesInfo name="RFC" value="4571"/>
          <author initials="J." surname="Lazzaro" fullname="J. Lazzaro">
            <organization/>
          </author>
          <date year="2006" month="July"/>
          <abstract>
            <t>This memo defines a method for framing Real-time Transport Protocol (RTP) and RTP Control Protocol (RTCP) packets onto connection-oriented transport (such as TCP).  The memo also defines how session descriptions may specify RTP streams that use the framing method.  [STANDARDS-TRACK]</t>
          </abstract>
        </front>
      </reference>
      <reference anchor="RFC8229" target="https://www.rfc-editor.org/info/rfc8229">
        <front>
          <title>TCP Encapsulation of IKE and IPsec Packets</title>
          <seriesInfo name="DOI" value="10.17487/RFC8229"/>
          <seriesInfo name="RFC" value="8229"/>
          <author initials="T." surname="Pauly" fullname="T. Pauly">
            <organization/>
          </author>
          <author initials="S." surname="Touati" fullname="S. Touati">
            <organization/>
          </author>
          <author initials="R." surname="Mantha" fullname="R. Mantha">
            <organization/>
          </author>
          <date year="2017" month="August"/>
          <abstract>
            <t>This document describes a method to transport Internet Key Exchange Protocol (IKE) and IPsec packets over a TCP connection for traversing network middleboxes that may block IKE negotiation over UDP.  This method, referred to as "TCP encapsulation", involves sending both IKE packets for Security Association establishment and Encapsulating Security Payload (ESP) packets over a TCP connection.  This method is intended to be used as a fallback option when IKE cannot be negotiated over UDP.</t>
          </abstract>
        </front>
      </reference>
      <reference anchor="RFC8547" target="https://www.rfc-editor.org/info/rfc8547">
        <front>
          <title>TCP-ENO: Encryption Negotiation Option</title>
          <seriesInfo name="DOI" value="10.17487/RFC8547"/>
          <seriesInfo name="RFC" value="8547"/>
          <author initials="A." surname="Bittau" fullname="A. Bittau">
            <organization/>
          </author>
          <author initials="D." surname="Giffin" fullname="D. Giffin">
            <organization/>
          </author>
          <author initials="M." surname="Handley" fullname="M. Handley">
            <organization/>
          </author>
          <author initials="D." surname="Mazieres" fullname="D. Mazieres">
            <organization/>
          </author>
          <author initials="E." surname="Smith" fullname="E. Smith">
            <organization/>
          </author>
          <date year="2019" month="May"/>
          <abstract>
            <t>Despite growing adoption of TLS, 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 STARTTLS command) by which to convey support for encryption, thus making incremental deployment impossible.  Second, legacy applications themselves cannot always be upgraded and therefore require 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>
      </reference>
      <reference anchor="I-D.ietf-taps-interface" target="http://www.ietf.org/internet-drafts/draft-ietf-taps-interface-06.txt">
        <front>
          <title>An Abstract Application Layer Interface to Transport Services</title>
          <seriesInfo name="Internet-Draft" value="draft-ietf-taps-interface-06"/>
          <author initials="B" surname="Trammell" fullname="Brian Trammell">
            <organization/>
          </author>
          <author initials="M" surname="Welzl" fullname="Michael Welzl">
            <organization/>
          </author>
          <author initials="T" surname="Enghardt" fullname="Theresa Enghardt">
            <organization/>
          </author>
          <author initials="G" surname="Fairhurst" fullname="Gorry Fairhurst">
            <organization/>
          </author>
          <author initials="M" surname="Kuehlewind" fullname="Mirja Kuehlewind">
            <organization/>
          </author>
          <author initials="C" surname="Perkins" fullname="Colin Perkins">
            <organization/>
          </author>
          <author initials="P" surname="Tiesel" fullname="Philipp Tiesel">
            <organization/>
          </author>
          <author initials="C" surname="Wood" fullname="Christopher Wood">
            <organization/>
          </author>
          <author initials="T" surname="Pauly" fullname="Tommy Pauly">
            <organization/>
          </author>
          <date month="March" day="9" year="2020"/>
          <abstract>
            <t>This document describes an abstract programming interface to the transport layer, following the Transport Services Architecture.  It supports the asynchronous, atomic transmission of messages over transport protocols and network paths dynamically selected at runtime.  It is intended to replace the traditional BSD sockets API as the lowest common denominator interface to the transport layer, in an environment where endpoints have multiple interfaces and potential transport protocols to select from.</t>
          </abstract>
        </front>
      </reference>
      <reference anchor="RFC7301" target="https://www.rfc-editor.org/info/rfc7301">
        <front>
          <title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
          <seriesInfo name="DOI" value="10.17487/RFC7301"/>
          <seriesInfo name="RFC" value="7301"/>
          <author initials="S." surname="Friedl" fullname="S. Friedl">
            <organization/>
          </author>
          <author initials="A." surname="Popov" fullname="A. Popov">
            <organization/>
          </author>
          <author initials="A." surname="Langley" fullname="A. Langley">
            <organization/>
          </author>
          <author initials="E." surname="Stephan" fullname="E. Stephan">
            <organization/>
          </author>
          <date year="2014" month="July"/>
          <abstract>
            <t>This document describes a Transport Layer Security (TLS) extension for application-layer protocol negotiation within the TLS handshake. For instances in which multiple application protocols are supported on the same TCP or UDP port, this extension allows the application layer to negotiate which protocol will be used within the TLS connection.</t>
          </abstract>
        </front>
      </reference>
      <reference anchor="RFC3748" target="https://www.rfc-editor.org/info/rfc3748">
        <front>
          <title>Extensible Authentication Protocol (EAP)</title>
          <seriesInfo name="DOI" value="10.17487/RFC3748"/>
          <seriesInfo name="RFC" value="3748"/>
          <author initials="B." surname="Aboba" fullname="B. Aboba">
            <organization/>
          </author>
          <author initials="L." surname="Blunk" fullname="L. Blunk">
            <organization/>
          </author>
          <author initials="J." surname="Vollbrecht" fullname="J. Vollbrecht">
            <organization/>
          </author>
          <author initials="J." surname="Carlson" fullname="J. Carlson">
            <organization/>
          </author>
          <author initials="H." surname="Levkowetz" fullname="H. Levkowetz" role="editor">
            <organization/>
          </author>
          <date year="2004" month="June"/>
          <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>
      </reference>
      <reference anchor="RFC4555" target="https://www.rfc-editor.org/info/rfc4555">
        <front>
          <title>IKEv2 Mobility and Multihoming Protocol (MOBIKE)</title>
          <seriesInfo name="DOI" value="10.17487/RFC4555"/>
          <seriesInfo name="RFC" value="4555"/>
          <author initials="P." surname="Eronen" fullname="P. Eronen">
            <organization/>
          </author>
          <date year="2006" month="June"/>
          <abstract>
            <t>This document describes the MOBIKE protocol, a mobility and multihoming extension to Internet Key Exchange (IKEv2).  MOBIKE allows the IP addresses associated with IKEv2 and tunnel mode IPsec Security Associations to change.  A mobile Virtual Private Network (VPN) client could use MOBIKE to keep the connection with the VPN gateway active while moving from one address to another.  Similarly, a multihomed host could use MOBIKE to move the traffic to a different interface if, for instance, the one currently being used stops working.  [STANDARDS-TRACK]</t>
          </abstract>
        </front>
      </reference>
      <reference anchor="RFC5246" target="https://www.rfc-editor.org/info/rfc5246">
        <front>
          <title>The Transport Layer Security (TLS) Protocol Version 1.2</title>
          <seriesInfo name="DOI" value="10.17487/RFC5246"/>
          <seriesInfo name="RFC" value="5246"/>
          <author initials="T." surname="Dierks" fullname="T. Dierks">
            <organization/>
          </author>
          <author initials="E." surname="Rescorla" fullname="E. Rescorla">
            <organization/>
          </author>
          <date year="2008" month="August"/>
          <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>
      </reference>
    </references>
  </back>
  <!-- ##markdown-source:
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
gRJCu+MB8e/u2T96QQ/+D8/LvBdscAAA

-->

</rfc>
