<?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.3 -->

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>

<rfc docName="draft-friel-tls-atls-00" category="std">

  <front>
    <title abbrev="ATLS">Application-Layer TLS (ATLS)</title>

    <author initials="O." surname="Friel" fullname="Owen Friel">
      <organization>Cisco</organization>
      <address>
        <email>ofriel@cisco.com</email>
      </address>
    </author>
    <author initials="R." surname="Barnes" fullname="Richard Barnes">
      <organization>Cisco</organization>
      <address>
        <email>rlb@ipv.sx</email>
      </address>
    </author>
    <author initials="M." surname="Pritikin" fullname="Max Pritikin">
      <organization>Cisco</organization>
      <address>
        <email>pritikin@cisco.com</email>
      </address>
    </author>
    <author initials="H." surname="Tschofenig" fullname="Hannes Tschofenig">
      <organization>ARM Limited</organization>
      <address>
        <email>hannes.tschofenig@gmx.net</email>
      </address>
    </author>
    <author initials="M." surname="Baugher" fullname="Mark Baugher">
      <organization>Consultant</organization>
      <address>
        <email>mark@mbaugher.com</email>
      </address>
    </author>

    <date year="2018" month="January" day="31"/>

    
    
    

    <abstract>


<t>This document specifies how TLS sessions can be established at the application layer over untrusted transport between clients and services for the purposes of establishing secure end-to-end encrypted communications channels. Transport layer encodings for application layer TLS records are specified for HTTP and CoAP transport. Explicit identification of application layer TLS packets enables middleboxes to provide transport services and enforce suitable transport policies for these payloads, without requiring access to the unencrypted payload content. Multiple scenarios are presented identifying the need for end-to-end application layer encryption between clients and services, and the benefits of reusing the well-defined TLS protocol, and a standard TLS stack, to accomplish this are described. Application software architectures for building, and network architectures for deploying application layer TLS are outlined.</t>



    </abstract>


  </front>

  <middle>


<section anchor="introduction" title="Introduction">

<t>There are multiple scenarios where there is a need for application layer end-to-end security between clients and application services. Two examples include:</t>

<t><list style="symbols">
  <t>Bootstrapping devices that must connect to HTTP application services across untrusted TLS interception middleboxes</t>
  <t>Constrained devices connecting via gateways to application services, where different transport layer protocols may be in use on either side of the gateway, with the gateway transcoding between the different transport layer protocols.</t>
</list></t>

<t>These two scenarios are described in more detail in <xref target="application-layer-end-to-end-security-use-cases"/>.</t>

<t>Related to this document, there is ongoing work across the industry to define requirements for end-to-end security. <xref target="I-D.hartke-core-e2e-security-reqs"/> documents requirements for CoAP <xref target="RFC7252"/> End-to-End Security. The Open Mobile Alliance (OMA) has published a candidate standard Lightweight Machine to Machine Requirements <xref target="LwM2M"></xref> which defines multiple requirements for end-to-end security.</t>

<t>This document describes how clients and applications can leverage standard TLS software stacks to establish secure end-to-end encrypted connections at the application layer. The connections may establish TLS <xref target="RFC5246"/> <xref target="I-D.ietf-tls-tls13"/> or DTLS <xref target="RFC6347"/> <xref target="I-D.ietf-tls-dtls13"/> sessions. There are multiple advantages to reuse of existing TLS software stacks for establishment of application layer secure connections. These include:</t>

<t><list style="symbols">
  <t>many clients and application services already include a TLS software stack, so there is no need to include yet another software stack in the software build</t>
  <t>no need to define a new cryptographic negotiation, authentication, and key exchange protocol between clients and services</t>
  <t>provides standards based PKI mutual authentication between clients and services</t>
  <t>no need to train software developers on how to use a new cryptographic protocols or libraries</t>
  <t>automatically benefit from new cipher suites by simply upgrading the TLS software stack</t>
  <t>automatically benefit from new features, bugfixes, etc. in TLS software stack upgrades</t>
</list></t>

<t>This document also explicitly defines how application layer TLS connections can be established using HTTP <xref target="RFC7230"/> <xref target="RFC7540"/> or CoAP as transport layers. This document does not preclude the user of other transport layers, however defining how application layer TLS connections can be established over other transport layers such as <xref target="ZigBee"></xref> or <xref target="Bluetooth"></xref> is beyond the scope of this document.</t>

<t>Explicitly identifying application layer TLS packets enables transport layer middleboxes to provide transport capabilities and enforce suitable transport policies for these payloads, without requiring access to unencrypted application data.</t>

</section>
<section anchor="terminology" title="Terminology">

<t>Application layer TLS is referred to as ATLS throughout this document.</t>

</section>
<section anchor="application-layer-end-to-end-security-use-cases" title="Application Layer End-to-End Security Use Cases">

<t>This section describes in more detail the bootstrapping and constrained device use cases mentioned in the introduction.</t>

<section anchor="bootstrapping-devices" title="Bootstrapping Devices">

<t>There are far more classes of clients being deployed on today’s networks than at any time previously. This poses challenges for network administrators who need to mange their network and the clients connecting to their network, and poses challenges for client vendors and client software developers who must ensure that their clients can connect to all required services.</t>

<t>One common example is where a client is deployed on a local domain TCP/IP network that protects its perimeter using a TLS terminating middlebox, and the client needs to establish a secure connection to a service in a different network via the middlebox. This is illustrated in <xref target="bootstrap-device"/>.</t>

<t>Traditionally, this has been enabled by the network administrator deploying the necessary certificate authority trusted roots on the client. This can be achieved at scale using standard tools that enable the administrator to automatically push trusted roots out to all client machines in the network from a centralized domain controller. This works for for personal computers, laptops and servers running standard Operating Systems that can be centrally managed. This client management process breaks for multiple classes of clients that are being deployed today, there is no standard mechanism for configuring trusted roots on these clients, and there is no standard mechanism for these clients to securely traverse middleboxes.</t>

<figure title="Bootstrapping Devices" anchor="bootstrap-device"><artwork><![CDATA[
+--------+    C->M TLS    +-----------+   M->S TLS   +---------+
| Client |--------------->| Middlebox |------------->| Service |
+--------+                +-----------+              +---------+
    ^                                                     ^
    |                                                     |
    +-----------Client to Service ATLS Connection---------+
]]></artwork></figure>

<t>The ATLS mechanism defined in this document enables clients to traverse middleboxes and establish secure connections to services across network domain boundaries. The purpose of this connection may simply be to facilitate a bootstrapping process, for example <xref target="I-D.ietf-anima-bootstrapping-keyinfra"/>, whereby the client securely discovers the local domain certificate authorities required to establish a trusted network layer TLS connection to the middlebox.</t>

</section>
<section anchor="constrained-devices" title="Constrained Devices">

<t>Two constrained device use cases are outlined here.</t>

<section anchor="constrained-device-connecting-over-a-closed-network" title="Constrained Device Connecting over a Closed Network">

<t>There are industry examples of home smart lighting systems where the smart light bulbs connect using ZigBee to a gateway device. A controller application running on a mobile device connects to the gateway using CoAP over DTLS. The controller can then control the light bulbs by sending messages and commands via the gateway. The gateway device has full access to all messages sent between the light bulbs and the controller application.</t>

<t>A generic use case similar to the smart lighting system outlined above has an IoT device talking ZigBee to a gateway, with the gateway in turn talking CoAP over DTLS to a controller application running on a mobile device. This is illustrated in <xref target="zigbee-gateway"/>.</t>

<t>There are scenarios where the messages sent between the IoT device and the controller application must not be exposed to the gateway function. Additionally, the end devices (the IoT device and the controller application service) have no visibility to and no guarantees about what transport layer security and encryption is enforced across all hops end-to-end as they only have visibility to their immediate next hop. ATLS addresses these concerns.</t>

<figure title="IoT Closed Network Gateway" anchor="zigbee-gateway"><artwork><![CDATA[
+--------+    ZigBee     +---------+  CoAP/DTLS   +------------+
| Device |-------------->| Gateway |------------->| Mobile App |
+--------+               +---------+              +------------+
    ^                                                   ^
    |                                                   |
    +--------Device to Mobile App ATLS Connection-------+
]]></artwork></figure>

</section>
<section anchor="constrained-device-connecting-over-the-internet" title="Constrained Device Connecting over the Internet">

<t>A somewhat similar example has an IoT device connecting to a gateway using a suitable transport mechanism such as ZigBee, CoAP, MQTT, etc. The gateway function in turn talks HTTP over TLS (or, for example, HTTP over QUIC) to an application service over the Internet. This is illustrated in <xref target="coap-internet"/>.</t>

<t>The gateway may not be trusted and all messages between the IoT device and the application service must be end-to-end encrypted. Similar to the previous use case, the endpoints have no guarantees about what level of transport layer security is enforced across all hops. Again, ATLS addresses these concerns.</t>

<figure title="IoT Internet Gateway" anchor="coap-internet"><artwork><![CDATA[
+--------+  CoAP/DTLS    +------------------+  HTTP/TLS   +---------+
| Device |-------------->| Internet Gateway |------------>| Service |
+--------+               +------------------+             +---------+
    ^                                                          ^
    |                                                          |
    +---------Device to Cloud Service ATLS Connection----------+
]]></artwork></figure>

</section>
</section>
</section>
<section anchor="current-approaches-to-application-layer-end-to-end-security" title="Current Approaches to  Application Layer End-to-End Security">

<t>End-to-end security at the application layer is increasing seen as a key requirement across multiple applications and services. Some examples of end-to-end security mechanisms are outlined here. All the solutions outlined here have some common characteristics. The solutions:</t>

<t><list style="symbols">
  <t>do not rely on transport layer security</t>
  <t>define a new handshake protocol for establishment of a secure end-to-end session</t>
</list></t>

<section anchor="noise" title="Noise">

<t><xref target="Noise"></xref> is a framework for cryptographic protocols based on Elliptic Curve Diffie-Hellman (ECDH) key agreement, AEAD encryption, and BLAKE2 and SHA2 hash functions. Noise is currently used by WhatsApp, WireGuard, and Lightning.</t>

<t>The current Noise protocol framework defines mechanisms for proving possession of a private key, but does not define authentication mechanisms. Section 14 “Security Considerations” of Noise states:
~~~
it’s up to the application to determine whether the remote party’s static public key is acceptable
~~~</t>

</section>
<section anchor="signal" title="Signal">

<t>The <xref target="Signal"></xref> protocol provides end-to-end encryption and uses EdDSA signatures, Triple Diffie-Hellman handshake for shared secret establishment, and the Double Ratchet Algorithm for key management. It is used by Open Whisper Systems, WhatsApp and Google.</t>

<t>Similar to Noise, Signal does not define an authentication mechanism. The current [X3DH] specification states in section 4.1 “Authentication”:</t>

<figure><artwork><![CDATA[
Methods for doing this are outside the scope of this document
]]></artwork></figure>

</section>
<section anchor="google-alts" title="Google ALTS">

<t>Google’s Application Layer Transport Security <xref target="ALTS"></xref> is a mutual authentication and transport encryption system used for securing Remote Procedure Call (RPC) communications within Google’s infrastructure. ALTS uses an ECDH handshake protocol and a record protocol containing AES encrypted payloads.</t>

</section>
<section anchor="ephemeral-diffie-hellman-over-cose" title="Ephemeral Diffie-Hellman Over COSE">

<t>There is ongoing work to standardise <xref target="I-D.selander-ace-cose-ecdhe"/>. This defines a ECDH SIGMA based authenticated key exchange algorithm using COSE and COBR objects.</t>

</section>
</section>
<section anchor="atls-goals" title="ATLS Goals">

<t>The high level goals driving the design of this mechanism are:</t>

<t><list style="symbols">
  <t>enable authenticated key exchange at the application layer by reusing existing technologies</t>
  <t>ensure that ATLS packets are explicitly identified thus ensuring that any middleboxes or gateways at the transport layer are content aware</t>
  <t>leverage existing TLS stacks and handshake protocols thus avoiding introducing new software or protocol dependencies in clients and applications</t>
  <t>reuse existing TLS <xref target="RFC5246"/> <xref target="I-D.ietf-tls-tls13"/> and DTLS <xref target="RFC6347"/> <xref target="I-D.ietf-tls-dtls13"/> specifications as is without requiring any protocol changes or software stack changes</t>
  <t>do not mandate constraints on how the TLS stack is configured or used</t>
  <t>be forward compatible with future TLS versions</t>
  <t>avoid introducing TLS protocol handling logic or semantics into the application layer i.e. TLS protocol knowledge and logic is handled by the TLS stack, not the application</t>
  <t>ensure the client and server software implementations are as simple as possible</t>
</list></t>

</section>
<section anchor="architecture-overview" title="Architecture Overview">

<section anchor="application-architecture" title="Application Architecture">

<t>TLS software stacks allow application developers to ‘unplug’ the default network socket transport layer and read and write TLS records directly from byte buffers. This enables application developers to create application layer TLS sessions, extract the raw TLS record bytes from the bottom of the TLS stack, and transport these bytes over any suitable transport. The TLS software stacks can generate byte streams of full TLS flights which may include multiple TLS records. Additionally, TLS software stacks support Keying Material Exporters <xref target="RFC5705"/> and allow applications to export keying material from established TLS sessions. This keying material can then be used by the application for encryption of data outside the context of the TLS session. This is illustrated in <xref target="tls-interface"/> below.</t>

<figure title="TLS Stack Interfaces" anchor="tls-interface"><artwork><![CDATA[
                    +------------+                    +---------+
 Handshake Records  |            | Handshake Records  |         |
------------------->|            |------------------->|         |
                    |            |                    |  Byte   |
 Unencrypted Data   |    TLS     | Encrypted Data     |         |
------------------->|            |------------------->| Buffers |
                    |  Software  |                    |         |
 Encrypted Data     |            | Unencrypted Data   |         |
------------------->|   Stack    |------------------->|         |
                    |            |                    +---------+
 Keying Material    |            |
<-------------------|            |
                    + -----------+
]]></artwork></figure>

<t>These TLS software stack APIs enable application developers to build the software architectures illustrated in <xref target="app-architecture-1"/> and <xref target="app-architecture-2"/>.</t>

<t>In both architectures, the application creates and interacts with an application layer TLS session in order to generate and consume raw TLS records. The application transports these raw TLS records inside transport layer message bodies using whatever standard transport layer stack is suitable for the application or architecture. This document does not place any restrictions on the choice of transport layer and any suitable protocol such as HTTP, TCP, CoAP, ZigBee, Bluetooth, etc. could be used.</t>

<t>The transport layer will typically encrypt data, and this encryption is completely independent from any application layer encryption. The transport stack may create a transport layer TLS session. The application layer TLS session and transport layer TLS session can both leverage a shared, common TLS software stack. This high level architecture is applicable to both clients and application services. The key differences between the architectures are as follows.</t>

<t>In the model illustrated in <xref target="app-architecture-1"/>, the application sends all sensitive data that needs to be securely exchanged with the peer application through the Application TLS session in order to be encrypted and decrypted. All sensitive application data is thus encoded within TLS records by the TLS stack, and these TLS records are transmitted over the transport layer.</t>

<figure title="TLS Stack used for all data encryption" anchor="app-architecture-1"><artwork><![CDATA[
+-------------+ 
|             |    App
|             |    Data    +---------+
| Application |<---------->|   App   |      +---------+
|             |    TLS     |   TLS   |----->|   TLS   |
|             |  Records   | Session |      |  Stack  |
|        +--->|<---------->|         |      +---------+
|        |    |            +---------+           ^
|        |    |                                  |? 
|        |    | Transport +-----------+    +------------+
|        |    |  Payload  | Transport |    | Transport  |
|        +--->|<--------->|   Stack   |--->| Encryption |-->Packets
+-------------+           +-----------+    +------------+
]]></artwork></figure>

<t>In the model illustrated in <xref target="app-architecture-2"/>, the application establishes an application layer TLS session purely for the purposes of key exchange. Therefore, the only TLS records that are sent or received by the application layer are TLS handshake records. Once the application layer TLS session is established, the application uses Keying Material Exporter <xref target="RFC5705"/> APIs to export keying material from the TLS stack from this application layer TLS session. The application can then use these exported keys to derive suitable shared encryption keys with its peer for exchange of encrypted data. The application encrypts and decrypts sensitive data using these shared encryption keys using any suitable cryptographic library (which may be part of the same library that provides the TLS stack), and transports the encrypted data directly over the transport layer.</t>

<figure title="TLS stack used for key agreement and exporting" anchor="app-architecture-2"><artwork><![CDATA[
+--------------+
|              |
| Application  |
|              |
| +-------+    |            +---------+
| | App   |    | Key Export |         |
| | Data  |<---|<-----------|         |
| | Crypto|    |            |   App   |
| +-------+    |    TLS     |   TLS   |      +---------+
|    ^         | Handshake  | Session |----->|   TLS   |
|    |         |  Records   |         |      |  Stack  |
|    |    +--->|<---------->|         |      +---------+
|    |    |    |            +---------+           ^
|    |    |    |                                  |?
|    |    |    | Transport +-----------+    +------------+
|    |    |    |  Payload  | Transport |    | Transport  |
|    +----+--->|<--------->|   Stack   |--->| Encryption |-->Packets
+--------------+           +-----------+    +------------+
]]></artwork></figure>

<t>The choice of which application architecture to use will depend on the overall solution architecture, and the underlying transport layer or layers in use. While the choice of application architecture is outside the scope of this document, some considerations are outlined here.</t>

<t><list style="symbols">
  <t>for constrained devices, every single byte of payload is important. <xref target="I-D.mattsson-core-security-overhead"/> analyses the overhead of TLS headers compared with OSCORE <xref target="I-D.ietf-core-object-security"/> illustrating the additional overhead associated with TLS headers. It may be more appropriate to use the architecture defined in <xref target="app-architecture-2"/> in order to establish shared encryption keys, and then transport encrypted data directly without the overhead of unwanted TLS record headers.</t>
  <t>when using HTTP as a transport layer, it may be more appropriate to use the architecture defined in <xref target="app-architecture-2"/> in order to avoid any TLS session vs. HTTP session affinity issues.</t>
</list></t>

<section anchor="application-architecture-benefits" title="Application Architecture Benefits">

<t>There are several benefits to using a standard TLS software stack to establish an application layer secure communications channel between a client and a service. These include:</t>

<t><list style="symbols">
  <t>no need to define a new cryptographic negotiation and exchange protocol between client and service</t>
  <t>automatically benefit from new cipher suites by simply upgrading the TLS software stack</t>
  <t>automatically benefit from new features, bugfixes, etc. in TLS software stack upgrades</t>
</list></t>

</section>
<section anchor="atls-packet-identification" title="ATLS Packet Identification">

<t>It is recommended that ATLS packets are explicitly identified by a standardized, transport-specific identifier enabling any gateways and middleboxes to identify ATLS packets. Middleboxes have to contend with a vast number of applications and network operators have difficulty configuring middleboxes to distinguish unencrypted but not explicitly identified application data from end-to-end encrypted data. This specification aims to assist network operators by explicitly identifyng ATLS packets. The HTTP and CoAP encodings documented in <xref target="atls-over-http-transport"/> and <xref target="atls-over-coap-transport"/> explicitly identify ATLS packets.</t>

</section>
<section anchor="atls-session-tracking" title="ATLS Session Tracking">

<t>The ATLS application service establishes multiple ATLS sessions with multiple clients. As TLS sessions are stateful, the application service must be able to correlate ATLS records from different clients across the relevant ATLS sessions. The details of how session tracking is implemented are outside the scope of this document. Recommendations are given in <xref target="atls-over-http-transport"/> and <xref target="atls-over-coap-transport"/>, but session tracking is application and implementation specific.</t>

</section>
<section anchor="atls-record-inspection" title="ATLS Record Inspection">

<t>It should not be necessary for the application layer to have to inspect, parse or understand the contents of ATLS records. No constraints are placed on the ContentType contained within the transported TLS records. The TLS records may contain handshake, application_data, alert or change_cipher_spec messages. If new ContentType messages are defined in future TLS versions, these may also be transported using this protocol.</t>

</section>
<section anchor="implementation" title="Implementation">

<t>Pseudo code illustrating how to read and write TLS records directly from byte buffers using both OpenSSL BIO functions and Java JSSE SSLEngine is given in the appendices. A blog post by <xref target="Norrell"></xref> outlines a similar approach to leveraging OpenSSL BIO functions, and Oracle publish example code for leveraging <xref target="SSLEngine"></xref>.</t>

</section>
</section>
<section anchor="functional-design" title="Functional Design">

<t>[ todo: insert Hannes functional design section here including the policy layers ]</t>

<t>Policy examples:</t>

<t>Mention that the app layer policy could be to not do ATLS if the transport layer establishes an e2e session with the peer. e.g. for HTTP use cases where there is no middlebox and cert validation passes.</t>

<t>Mention that the client could report in the ATLS session any middlebox cert seen at the transport layer.</t>

</section>
<section anchor="network-architecture" title="Network Architecture">

<t>An example network deployment is illustrated in <xref target="coap-arch"/>. It shows a constrained client connecting to an application service via an internet gateway. The client uses CoAP over DTLS to communicate with the gateway. The gateway extracts the messages the client sent over CoAP and sends these messages inside HTTP message bodies to the application service. It also shows a TLS terminator deployed in front of the application service. The client establishes a transport layer CoAP/DTLS connection with the gateway (C-&gt;G DTLS), the gateway in turn opens a transport layer TLS connection with the TLS terminator deployed in front of the service (G-&gt;T TLS). The client can ignore any certificate validation errors when it connects to the gateway. CoAP messages are transported between the client and the gateway, and HTTP messages are transported between the client and the service. Finally, application layer TLS messages are exchanged inside the CoAP and HTTP message bodies in order to establish an end-to-end TLS session between the client and the service (C-&gt;S TLS).</t>

<figure title="Constrained Device Gateway Network Architecture" anchor="coap-arch"><artwork><![CDATA[
       +----------+        +----------+
       | App Data |        | App Data |
       +----------+        +----------+         +----------+
       | C->S TLS |        | C->S TLS |         | App Data |
       +----------+        +----------+         +----------+
       |   CoAP   |        |   HTTP   |         | C->S TLS |
       +----------+        +----------+         +----------+
       | C->G DTLS|        | M->T TLS |         |   HTTP   |
       +----------+        +----------+         +----------+
       |   UDP    |        |   TCP    |         |   TCP    |
       +----------+        +----------+         +----------+

+--------+      +-----------+      +----------------+     +---------+
| Client |----->|  Gateway  |----->| TLS Terminator |---->| Service |
+--------+      +-----------+      +----------------+     +---------+
   ^                                                           ^
   |                                                           |
   +-------------Client to Service ATLS Connection-------------+
]]></artwork></figure>

<t>Another typical network deployment is illustrated in <xref target="http-arch"/>. It shows a client connecting to a service via a middlebox. It also shows a TLS terminator deployed in front of the service. The client establishes a transport layer TLS connection with the middlebox (C-&gt;M TLS), the middlebox in turn opens a transport layer TLS connection with the TLS terminator deployed in front of the service (M-&gt;T TLS). The client can ignore any certificate validation errors when it connects to the middlebox. HTTP messages are transported over this layer between the client and the service. Finally, application layer TLS messages are exchanged inside the HTTP message bodies in order to establish an end-to-end TLS session between the client and the service (C-&gt;S TLS).</t>

<figure title="HTTP Middlebox Network Architecture" anchor="http-arch"><artwork><![CDATA[
       +----------+        +----------+
       | App Data |        | App Data |
       +----------+        +----------+         +----------+
       | C->S TLS |        | C->S TLS |         | App Data |
       +----------+        +----------+         +----------+
       |   HTTP   |        |   HTTP   |         | C->S TLS |
       +----------+        +----------+         +----------+
       | C->M TLS |        | M->T TLS |         |   HTTP   |
       +----------+        +----------+         +----------+
       |   TCP    |        |   TCP    |         |   TCP    |
       +----------+        +----------+         +----------+

+--------+      +-----------+      +----------------+     +---------+
| Client |----->| Middlebox |----->| TLS Terminator |---->| Service |
+--------+      +-----------+      +----------------+     +---------+
   ^                                                           ^
   |                                                           |
   +-------------Client to Service ATLS Connection-------------+
]]></artwork></figure>

</section>
</section>
<section anchor="key-exporting-and-application-data-encryption" title="Key Exporting and Application Data Encryption">

<t>When solutions implement the architecture described in <xref target="app-architecture-2"/>, they leverage <xref target="RFC5705"/> for key exporting from the ATLS session. The client and service then use the exported keys to derive shared encryption keys. The encryption keys are then used with a suitable cipher suite to encrypt application data for exchange with the peer.</t>

<section anchor="key-exporter-label" title="Key Exporter Label">

<t>A new TLS Exporter Label is defined for ATLS key exporting. Its value is:</t>

<figure><artwork><![CDATA[
TLS Exporter Label: application-layer-tls
]]></artwork></figure>

</section>
<section anchor="cipher-suite-selection" title="Cipher Suite Selection">

<t>Application layer encryption performed outside the context of the ATLS session using exported keys should use the  cipher suite negotiated during ATLS session establishment.</t>

</section>
<section anchor="key-derivation" title="Key Derivation">

<t><xref target="RFC5705"/> key exporting functions allow specification of the number of bytes of keying material that should be exported from the TLS session. The application should export the exact number of bytes required to generate the necessary client and server cipher suite encryption key and IV values.</t>

<t>Maybe need to reference the relevant sections from https://tools.ietf.org/html/draft-ietf-tls-tls13-23#section-7 and https://tools.ietf.org/html/rfc5246#section-6.3.</t>

</section>
</section>
<section anchor="atls-session-establishment" title="ATLS Session Establishment">

<t><xref target="atls-session"/> illustrates how an ATLS session is established using the key exporting architectural model shown in <xref target="app-architecture-2"/>. The outline is as follows:</t>

<t><list style="symbols">
  <t>the client creates an ATLS session object</t>
  <t>the client initiates a TLS handshake on the session</t>
  <t>the client extracts the TLS records for the first TLS flight (the first RTT)</t>
  <t>the client sends the TLS records over the transport layer to the server</t>
  <t>on receipt of the TLS flight, the server creates an ATLS session object</t>
  <t>the server injects the received TLS flight into the session</t>
  <t>the server extracts the TLS records for the first TLS flight response</t>
  <t>the server sends the TLS response records over the transport layer to the client</t>
  <t>the client injects the received TLS records into its TLS session completing the first full RTT</t>
  <t>the client and server repeat the above process and complete the second RTT</t>
  <t>once the ATLS session is up, both sides export keying material</t>
  <t>both sides now can exchange data encrypted using shared keys derived from the keying material</t>
</list></t>

<figure title="ATLS Session Establishment" anchor="atls-session"><artwork><![CDATA[
+-------------------------------+  +-------------------------------+
|             Client            |  |           ATLS Server         |
+---------+---+-----+---+-------+  +-------+---+-----+---+---------+
|  ATLS   |  | App |  |Transport|  |Transport|  | App |  |  ATLS   |
| Session |  +-----+  |  Stack  |  |  Stack  |  +-----+  | Session |
+---------+     |     +---------+  +---------+     |     +---------+
     |          |         |             |          |          |
     |          |         |             |          |          |
     |          |         |             |          |          |
     |  Create  |         |             |          |          |
     |  Session |         |             |          |          |
 +   |<---------|         |             |          |          |
 |   |  Start   |         |             |          |          |
 |   | Handshake|         |             |          |          |
 |   |<---------|         |             |          |          |
 |   |   TLS    |         |             |          |          |
 |   | Records  |  Pack   |             |          |          |
 |   |--------->| Records |             |          |          |
     |          |-------->| send packet | Unpack   |          |
 R   |          |         |------------>| Records  | Create   |
 T   |          |         |             |--------->| Session  |
 T   |          |         |             |          |--------->|
     |          |         |             |          |   TLS    |
 1   |          |         |             |          | Records  |
     |          |         |             |          |--------->|
 |   |          |         |             |          |   TLS    |
 |   |          |         |             |  Pack    | Records  |
 |   |          |         |             | Records  |<---------|
 |   |          | Unpack  |send response|<---------|          |
 |   |   TLS    | Records |<------------|          |          |
 |   | Records  |<--------|             |          |          |
 +   |<---------|         |             |          |          |
     |   TLS    |         |             |          |          |
     | Records  |         |             |          |          |
 +   |--------->|-------->|------------>|--------->|--------->|
 |   |          |         |             |          |          |
     |          |         |             |          | Session  |
 R   |          |         |             |          |    Up    |
 T   |          |         |             |          |<---------|
 T   |          |         |             |          |   TLS    |
     |          |         |             |          | Records  |
 2   |<---------|<--------|<------------|<---------|<---------|
     | Session  |         |             |          |          |
 |   |    Up    |         |             |          |          |
 +   |--------->|         |             |          |          |
     |  Export  |         |             |          |  Export  |
     |   Keys   |         |             |          |   Keys   |
     |--------->|         | E2E Session |          |<---------|
     |          |<--------|-------------|--------->|          |
]]></artwork></figure>

</section>
<section anchor="atls-over-http-transport" title="ATLS over HTTP Transport">

<t>The assumption is that the client will establish a transport layer connection to the server for exchange of HTTP messages. The underlying transport layer connection could be over TCP or TLS. The client will then establish an application layer TLS connection with the server by exchanging TLS records with the server inside HTTP message request and response bodies.</t>

<section anchor="protocol-summary" title="Protocol Summary">

<t>All ATLS records are transported unmodified as binary data within HTTP message bodies. The application simply extracts the TLS records from the TLS stack and inserts them directly into HTTP message bodies. Each message body contains a full TLS flight, which may contain multiple TLS records.</t>

<t>The client sends all ATLS records to the server in the bodies of POST requests.</t>

<t>The server sends all ATLS records to the client in the bodies of 200 OK responses to the POST requests.</t>

</section>
<section anchor="content-type-header" title="Content-Type Header">

<t>A new Content-Type header value is defined:</t>

<figure><artwork><![CDATA[
Content-type: application/atls+octet-stream
]]></artwork></figure>

<t>All message bodies containing ATLS records must set this Content-Type. This enables middleboxes to readily identify ATLS payloads.</t>

</section>
<section anchor="http-status-codes" title="HTTP Status Codes">

<t>Thsi document does not define any new HTTP status codes, and does not specify additional semantics or refine existing semantics for status codes. This is the best current practice as outlined in <xref target="I-D.ietf-httpbis-bcp56bis"/>.</t>

</section>
<section anchor="atls-session-tracking-1" title="ATLS Session Tracking">

<t>The application service needs to track multiple client application layer TLS sessions so that it can collerate TLS records received in HTTP message bodies with the appropriate TLS session. The application service should use stateful cookies <xref target="RFC6265"/> in order to achieve this as recommended in <xref target="I-D.ietf-httpbis-bcp56bis"/>.</t>

</section>
<section anchor="session-establishment-and-key-exporting" title="Session Establishment and Key Exporting">

<t>It is recommended that applications using ATLS over HTTP transport only use ATLS for session establishment and key exchange, resulting in only 2 ATLS RTTs between the client and the application service.</t>

<t>Key exporting must be carried out as described in <xref target="key-derivation"/>.</t>

</section>
<section anchor="application-data-encryption" title="Application Data Encryption">

<t>[editors note: I am on the fence about using <xref target="RFC8188"/> as this hardcodes the ciphersuite to aes128gcm. It would be nice to use the cipher suite negotiated as part of ATLS session establishment. ]</t>

</section>
<section anchor="illustrative-atls-over-http-session-establishment" title="Illustrative ATLS over HTTP Session Establishment">

<t>A client initiates an ATLS session by sending the first TLS flight in a POST request message body to the ATLS server.</t>

<figure><artwork><![CDATA[
POST /atls
Content-Type: application/atls+octet-stream

<binary TLS client flight 1 records>
]]></artwork></figure>

<t>The server handles the request, creates an ATLS session object, and replies by including its first TLS flight in a 200 OK message body. The server also sets a suitable cookie for session tracking purposes.</t>

<figure><artwork><![CDATA[
200 OK
Content-Type: application/atls+octet-stream
Set-Cookie: my-atls-cookie=my-cookie-value

<binary TLS server flight 1 records>
]]></artwork></figure>

<t>The client handles the server first flight TLS records and replies with its second flight.</t>

<figure><artwork><![CDATA[
POST /atls
Content-Type: application/atls+octet-stream
Cookie: my-atls-cookie=my-cookie-value

<binary TLS client flight 2 records>
]]></artwork></figure>

<t>The server handles the second flight, establishes the ATLS session, and replies with its second flight.</t>

<figure><artwork><![CDATA[
200 OK
Content-Type: application/atls+octet-stream

<binary TLS server flight 2 records>
]]></artwork></figure>

</section>
<section anchor="atls-and-http-connect" title="ATLS and HTTP CONNECT">

<t>It is worthwhile comparing and contrasting ATLS with HTTP CONNECT tunneling.</t>

<t>First, let us introduce some terminology:</t>

<t><list style="symbols">
  <t>HTTP Proxy: A HTTP Proxy operates at the application layer, handles HTTP CONNECT messages from clients, and opens tunnels to remote origin servers on behalf of clients. If a client establishes a tunneled TLS connection to the origin server, the HTTP Proxy does not attempt to intercept or inspect the HTTP messages exchanged between the client and the server</t>
  <t>middlebox: A middlebox operates at the transport layer, terminates TLS connections from clients, and originates new TLS connections to services. A middlebox inspects all messages sent between clients and services. Middleboxes are generally completely transparent to applications, provided that the necessary PKI root Certificate Authority is installed in the client’s trust store.</t>
</list></t>

<t>HTTP Proxies and middleboxes are logically separate entities and one or both of these may be deployed in a network.</t>

<t>HTTP CONNECT is used by clients to instruct a HTTP Forward Proxy deployed in the local domain to open up a tunnel to a remote origin server that is typically deployed in a different domain. Assuming that TLS transport is used between both client and proxy, and proxy and origin server, the network architecture is as illustrated in <xref target="connect-tunnel"/>. Once the proxy opens the transport tunnel to the service, the client establishes an end-to-end TLS session with the service, and the proxy is blindly transporting TLS records (the C-&gt;S TLS session records) between the client and the service. From the client perspective, it is tunneling a TLS session to the service inside the TLS session it has established to the proxy (the C-&gt;P TLS session). No middlebox is attempting to intercept or inspect the HTTP messages between the client and the service.</t>

<figure title="HTTP Proxy transport layers" anchor="connect-tunnel"><artwork><![CDATA[
       +----------+        +----------+         
       | C->S HTTP|        | C->S HTTP|
       +----------+        +----------+
       | C->S TLS |        | C->S TLS |
       +----------+        +----------+
       | C->P TLS |        | P->S TCP |
       +----------+        +----------+
       | C->P TCP |
       +----------+

+--------+      +------------+      +---------+
| Client |----->| HTTP Proxy |----->| Service |
+--------+      +------------+      +---------+
]]></artwork></figure>

<t>A more complex network topology where the network operator has both a HTTP Proxy and a middlebox deployed is illustrated in <xref target="middlebox"/>. In this scenario, the proxy has tunneled the TLS session from the client towards the origin server, however the middlebox is intercepting and terminating this TLS session. A TLS session is established between the client and the middlebox (C-&gt;M TLS), and not end-to-end between the client and the server. It can clearly be seen that HTTP CONNECT and HTTP Proxies serve completely different functions than middleboxes.</t>

<t>Additionally, the fact that the TLS session is established between the client and the middlebox can be problematic for two reasons:</t>

<t><list style="symbols">
  <t>the middle box is inspecting traffic that is sent between the client and the service</t>
  <t>the client may not have the necessary PKI root Certificate Authority installed that would enable it to validate the TLS connection to the middlebox. This is the scenario outlined in <xref target="bootstrapping-devices"/>.</t>
</list></t>

<figure title="HTTP Proxy and middlebox transport layers" anchor="middlebox"><artwork><![CDATA[
       +----------+        +----------+       +----------+
       | C->S HTTP|        | C->S HTTP|       | C->S HTTP|
       +----------+        +----------+       +----------+
       | C->M TLS |        | C->M TLS |       | M->S TLS |
       +----------+        +----------+       +----------+
       | C->P TLS |        | P->M TCP |       | M->S TCP |
       +----------+        +----------+       +----------+
       | C->P TCP |
       +----------+

+--------+      +------------+      +-----------+      +---------+
| Client |----->| HTTP Proxy |----->| Middlebox |----->| Service |
+--------+      +------------+      +-----------+      +---------+
]]></artwork></figure>

<t>As HTTP CONNECT can be used to establish a tunneled TLS connection, one hypothetical solution to this middlebox issue is for the client to issue a HTTP CONNECT command to a HTTP Reverse Proxy deployed in front of the origin server. This solution is not practical for several reasons:</t>

<t><list style="symbols">
  <t>if there is a local domain HTTP Forward Proxy deployed, this would result in the client doing a first HTTP CONNECT to get past the Forward Proxy, and then a second HTTP CONNECT to get past the Reverse Proxy. No client or client library supports the concept of HTTP CONNECT inside HTTP CONNECT.</t>
  <t>if there is no local domain HTTP Proxy deployed, the client still has to do a HTTP CONNECT to the HTTP Reverse Proxy. This breaks with standard and expected HTTP CONNECT operation, as HTTP CONNECT is only ever called if there is a local domain proxy.</t>
  <t>clients cannot generate CONNECT from XHR in web applications.</t>
  <t>this would require the deployment of a Reverse Proxy in front of the origin server, or else support of the HTTP CONNECT method in standard web frameworks. This is not an elegant design.</t>
  <t>using HTTP CONNECT with HTTP 1.1 to a Reverse Proxy will break middleboxes inspecting HTTP traffic, as the middlebox would see TLS records when it expects to see HTTP payloads.</t>
</list></t>

<t>In contrast to trying to force HTTP CONNECT to address a problem for which it was not designed to address, and having to address all the issues just outlined; ATLS is specifically designed to address the middlebox issue in a simple, easy to develop, and easy to deploy fashion.</t>

<t><list style="symbols">
  <t>ATLS works seamlessly with HTTP Proxy deployments</t>
  <t>no changes are required to HTTP CONNECT semantics</t>
  <t>no changes are required to HTTP libraries or stacks</t>
  <t>no additional Reverse Proxy is required to be deployed in front of origin servers</t>
</list></t>

<t>It is also worth noting that if HTTP CONNECT to a Reverse Proxy were a conceptually sound solution, the solution still ultimately results in encrypted traffic traversing the middlebox that the middlebox cannot intercept and inspect. That is ultimately what ATLS results in - traffic traversing the middle box that the middlebox cannot intercept and inspect. Therefore, from a middlebox perspective, the differences between the two solutions are in the areas of solution complexity and protocol semantics. It is clear that ATLS is a simpler, more elegant solution that HTTP CONNECT.</t>

</section>
</section>
<section anchor="atls-over-coap-transport" title="ATLS over CoAP Transport">

<t>[ todo: Help needed Hannes ]</t>

</section>
<section anchor="rtt-considerations" title="RTT Considerations">

<t>The number of RTTs that take place when establishing a TLS session depends on the version of TLS and what capabilities are enabled on the TLS software stack. For example, a 0-RTT exchange is possible with TLS1.3.</t>

<t>If applications wish to ensure a predictable number of RTTs when establishing an application layer TLS connection, this may be achieved by configuring the TLS software stack appropriately. Relevant configuration parameters for OpenSSL and Java SunJSSE stacks are outlined in the appendix.</t>

</section>
<section anchor="iana-considerations" title="IANA Considerations">

<t>[[ TODO - New Content-Type and TLS Exporter Label must be registered. ]]</t>

</section>
<section anchor="security-considerations" title="Security Considerations">

<t>[[ TODO ]]</t>

</section>
<section anchor="appendix-a-tls-software-stack-configuration" title="Appendix A. TLS Software Stack Configuration">

<t>[[ EDITOR’S NOTE: We could include details here on how TLS stack configuration items control the number of round trips between the client and server.<vspace />
And just give two examples: OpenSSL and Java SunJSSE]]</t>

</section>
<section anchor="appendix-b-pseudo-code" title="Appendix B. Pseudo Code">

<t>This appendix gives both C and Java pseudo code illustrating how to inject and extract raw TLS records from a TLS software stack. Please not that this is illustrative, non-functional pseudo code that does not compile. Functioning proof-of-concept code is available on the following public repository [[ EDITOR’S NOTE: Add the URL here ]].</t>

<section anchor="b1-openssl" title="B.1 OpenSSL">

<t>OpenSSL provides a set of Basic Input/Output (BIO) APIs that can be used to build a custom transport layer for TLS connections. This appendix gives pseudo code on how BIO APIs could be used to build a client application that completes a TLS handshake and exchanges application data with a service.</t>

<figure><artwork><![CDATA[
char inbound[MAX];
char outbound[MAX];
int rx_bytes;
SSL_CTX *ctx = SSL_CTX_new();
SSL *ssl = SSL_new(ctx);

// Create in-memory BIOs and plug in to the SSL session
BOI* bio_in = BIO_new(BIO_s_mem());
BOI* bio_out = BIO_new(BIO_s_mem());
SSL_set_bio(ssl, bio_in, bio_out);

// We are a client
SSL_set_connect_state(ssl);

// Loop through TLS flights until we are done
do {
  // Calling SSL_do_handshake() will result in a full 
  // TLS flight being written to the BIO buffer
  SSL_do_handshake(ssl);

  // Read the client flight that the TLS session 
  // has written to memory
  BIO_read(bio_out, outbound, MAX);

  // POST the outbound bytes to the server using a suitable 
  // function. Lets assume that the server response will be
  // written to the 'inbound' buffer
  num_bytes = postTlsRecords(outbound, inbound);

  // Write the server flight to the memory BIO so the TLS session
  // can read it. The next call to SSL_do_handshake() will handle
  // this received server flight
  BIO_write(bio_in, inbound, num_bytes);

} while (!SSL_is_init_finished(ssl));

// Send a message to the server. Calling SSL_write() will run the
// plaintext through the TLS session and write the encrypted TLS
// records to the BIO buffer
SSL_write(ssl, "Hello World", strlen("Hello World"));

// Read the TLS records from the BIO buffer and
// POST them to the server
BIO_read(bio_out, outbound, MAX);
num_bytes = postTlsRecords(outbound, inbound);
]]></artwork></figure>

</section>
<section anchor="b2-java-jsse" title="B.2 Java JSSE">

<t>The Java SSLEngine class “enables secure communications using protocols such as the Secure Sockets Layer (SSL) or IETF RFC 2246 “Transport Layer Security” (TLS) protocols, but is transport independent”. This pseudo code illustrates how a server could use the SSLEngine class to handle an inbound client TLS flight and generate an outbound server TLS flight response.</t>

<figure><artwork><![CDATA[
SSLEngine sslEngine = SSLContext.getDefault().createSSLEngine();
sslEngine.setUseClientMode(false);
sslEngine.beginHandshake();

// Lets assume 'inbound' has been populated with
// the Client 1st Flight
ByteBuffer inbound;

// 'outbound' will be populated with the
// Server 1st Flight response
ByteBuffer outbound;

// SSLEngine handles one TLS Record per call to unwrap().
// Loop until the engine is finished unwrapping.
while (sslEngine.getHandshakeStatus() ==
       HandshakeStatus.NEED_UNWRAP) {
  SSLEngineResult res = sslEngine.unwrap(inbound, outbound);

  // SSLEngine may need additional tasks run
  if (res.getHandshakeStatus() == NEED_TASK) {
    Runnable run = sslEngine.getDelegatedTask();
    run.run();
  }
}

// The SSLEngine has now finished handling all inbound TLS Records.
// Check if it wants to generate outbound TLS Records. SSLEngine
// generates one TLS Record per call to wrap().
// Loop until the engine is finished wrapping.
while (sslEngine.getHandshakeStatus() ==
       HandshakeStatus.NEED_WRAP) {
  SSLEngineResult res = sslEngine.wrap(inbound, outbound);
  
  // SSLEngine may need additional tasks run
  if (res.getHandshakeStatus() == NEED_TASK) {
    Runnable run = sslEngine.getDelegatedTask();
    run.run();
  }
}

// outbound ByteBuffer now contains a complete server flight
// containing multiple TLS Records
// Rinse and repeat!
]]></artwork></figure>

</section>
</section>
<section anchor="appendix-c-example-atls-handshake" title="Appendix C. Example ATLS Handshake">

<t>[[ EDITOR’S NOTE: For completeness,  include a simple full TLS handshake showing the B64 encoded flights in JSON, along with the HTTP request/response/headers. And also the raw hex TLS records showing protocol bits ]]</t>

</section>


  </middle>

  <back>


    <references title='Informative References'>

<reference anchor="Noise" target="http://noiseprotocol.org/">
  <front>
    <title>Noise Protocol Framework</title>
    <author initials="T." surname="Perrin" fullname="Trevor Perrin">
      <organization>noiseprotocol.org</organization>
    </author>
    <date year="2017" month="October" day="04"/>
  </front>
</reference>
<reference anchor="LwM2M" target="http://www.openmobilealliance.org/">
  <front>
    <title>Lightweight Machine to Machine Requirements</title>
    <author >
      <organization>Open Mobile Alliance</organization>
    </author>
    <date year="2017" month="December" day="08"/>
  </front>
</reference>
<reference anchor="Signal" target="https://signal.org/">
  <front>
    <title>Signal Protocol</title>
    <author >
      <organization>Open Whisper Systems</organization>
    </author>
    <date year="2016"/>
  </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 >
      <organization>Google</organization>
    </author>
    <date year="2017" month="December"/>
  </front>
</reference>
<reference anchor="ZigBee" target="http://www.zigbee.org">
  <front>
    <title>ZigBee Specification</title>
    <author >
      <organization>ZigBee Alliance</organization>
    </author>
    <date year="2012"/>
  </front>
</reference>
<reference anchor="Bluetooth" target="https://www.bluetooth.com/">
  <front>
    <title>Bluetooth Core Specification v5.0</title>
    <author >
      <organization>Bluetooth</organization>
    </author>
    <date year="2016"/>
  </front>
</reference>
<reference anchor="Norrell" target="https://thekerneldiaries.com/2016/06/13/openssl-ssltls-within-a-different-protocol/">
  <front>
    <title>Use SSL/TLS within a different protocol with BIO pairs</title>
    <author initials="." surname="Norrell" fullname="Norrell">
      <organization></organization>
    </author>
    <date year="2016"/>
  </front>
</reference>
<reference anchor="SSLEngine" target="https://docs.oracle.com/javase/7/docs/technotes/guides/security/jsse/samples/sslengine/SSLEngineSimpleDemo.java">
  <front>
    <title>SSLEngineSimpleDemo.java</title>
    <author >
      <organization>Oracle</organization>
    </author>
    <date year="2004"/>
  </front>
</reference>




<reference anchor="I-D.hartke-core-e2e-security-reqs">
<front>
<title>Requirements for CoAP End-To-End Security</title>

<author initials='G' surname='Selander' fullname='Goeran Selander'>
    <organization />
</author>

<author initials='F' surname='Palombini' fullname='Francesca Palombini'>
    <organization />
</author>

<author initials='K' surname='Hartke' fullname='Klaus Hartke'>
    <organization />
</author>

<date month='July' day='29' year='2017' />

<abstract><t>This document analyses threats to CoAP message exchanges traversing proxies and derives security requirements for mitigating those threats.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-hartke-core-e2e-security-reqs-03' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-hartke-core-e2e-security-reqs-03.txt' />
</reference>



<reference  anchor="RFC7252" target='https://www.rfc-editor.org/info/rfc7252'>
<front>
<title>The Constrained Application Protocol (CoAP)</title>
<author initials='Z.' surname='Shelby' fullname='Z. Shelby'><organization /></author>
<author initials='K.' surname='Hartke' fullname='K. Hartke'><organization /></author>
<author initials='C.' surname='Bormann' fullname='C. Bormann'><organization /></author>
<date year='2014' month='June' />
<abstract><t>The Constrained Application Protocol (CoAP) is a specialized web transfer protocol for use with constrained nodes and constrained (e.g., low-power, lossy) networks.  The nodes often have 8-bit microcontrollers with small amounts of ROM and RAM, while constrained networks such as IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs) often have high packet error rates and a typical throughput of 10s of kbit/s.  The protocol is designed for machine- to-machine (M2M) applications such as smart energy and building automation.</t><t>CoAP provides a request/response interaction model between application endpoints, supports built-in discovery of services and resources, and includes key concepts of the Web such as URIs and Internet media types.  CoAP is designed to easily interface with HTTP for integration with the Web while meeting specialized requirements such as multicast support, very low overhead, and simplicity for constrained environments.</t></abstract>
</front>
<seriesInfo name='RFC' value='7252'/>
<seriesInfo name='DOI' value='10.17487/RFC7252'/>
</reference>



<reference  anchor="RFC5246" target='https://www.rfc-editor.org/info/rfc5246'>
<front>
<title>The Transport Layer Security (TLS) Protocol Version 1.2</title>
<author 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>
<seriesInfo name='RFC' value='5246'/>
<seriesInfo name='DOI' value='10.17487/RFC5246'/>
</reference>



<reference anchor="I-D.ietf-tls-tls13">
<front>
<title>The Transport Layer Security (TLS) Protocol Version 1.3</title>

<author initials='E' surname='Rescorla' fullname='Eric Rescorla'>
    <organization />
</author>

<date month='January' day='5' year='2018' />

<abstract><t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-tls-tls13-23' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-tls-tls13-23.txt' />
</reference>



<reference  anchor="RFC6347" target='https://www.rfc-editor.org/info/rfc6347'>
<front>
<title>Datagram Transport Layer Security Version 1.2</title>
<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>
<seriesInfo name='RFC' value='6347'/>
<seriesInfo name='DOI' value='10.17487/RFC6347'/>
</reference>



<reference anchor="I-D.ietf-tls-dtls13">
<front>
<title>The Datagram Transport Layer Security (DTLS) Protocol Version 1.3</title>

<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='November' day='29' year='2017' />

<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.  Datagram semantics of the underlying transport are preserved by the DTLS protocol.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-tls-dtls13-22' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-tls-dtls13-22.txt' />
</reference>



<reference  anchor="RFC7230" target='https://www.rfc-editor.org/info/rfc7230'>
<front>
<title>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</title>
<author initials='R.' surname='Fielding' fullname='R. Fielding' role='editor'><organization /></author>
<author initials='J.' surname='Reschke' fullname='J. Reschke' role='editor'><organization /></author>
<date year='2014' month='June' />
<abstract><t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems.  This document provides an overview of HTTP architecture and its associated terminology, defines the &quot;http&quot; and &quot;https&quot; Uniform Resource Identifier (URI) schemes, defines the HTTP/1.1 message syntax and parsing requirements, and describes related security concerns for implementations.</t></abstract>
</front>
<seriesInfo name='RFC' value='7230'/>
<seriesInfo name='DOI' value='10.17487/RFC7230'/>
</reference>



<reference  anchor="RFC7540" target='https://www.rfc-editor.org/info/rfc7540'>
<front>
<title>Hypertext Transfer Protocol Version 2 (HTTP/2)</title>
<author initials='M.' surname='Belshe' fullname='M. Belshe'><organization /></author>
<author initials='R.' surname='Peon' fullname='R. Peon'><organization /></author>
<author initials='M.' surname='Thomson' fullname='M. Thomson' role='editor'><organization /></author>
<date year='2015' month='May' />
<abstract><t>This specification describes an optimized expression of the semantics of the Hypertext Transfer Protocol (HTTP), referred to as HTTP version 2 (HTTP/2).  HTTP/2 enables a more efficient use of network resources and a reduced perception of latency by introducing header field compression and allowing multiple concurrent exchanges on the same connection.  It also introduces unsolicited push of representations from servers to clients.</t><t>This specification is an alternative to, but does not obsolete, the HTTP/1.1 message syntax.  HTTP's existing semantics remain unchanged.</t></abstract>
</front>
<seriesInfo name='RFC' value='7540'/>
<seriesInfo name='DOI' value='10.17487/RFC7540'/>
</reference>



<reference anchor="I-D.ietf-anima-bootstrapping-keyinfra">
<front>
<title>Bootstrapping Remote Secure Key Infrastructures (BRSKI)</title>

<author initials='M' surname='Pritikin' fullname='Max Pritikin'>
    <organization />
</author>

<author initials='M' surname='Richardson' fullname='Michael Richardson'>
    <organization />
</author>

<author initials='M' surname='Behringer' fullname='Michael Behringer'>
    <organization />
</author>

<author initials='S' surname='Bjarnason' fullname='Steinthor Bjarnason'>
    <organization />
</author>

<author initials='K' surname='Watsen' fullname='Kent Watsen'>
    <organization />
</author>

<date month='October' day='30' year='2017' />

<abstract><t>This document specifies automated bootstrapping of a remote secure key infrastructure (BRSKI) using vendor installed X.509 certificate, in combination with a vendor's authorizing service, both online and offline.  Bootstrapping a new device can occur using a routable address and a cloud service, or using only link-local connectivity, or on limited/disconnected networks.  Support for lower security models, including devices with minimal identity, is described for legacy reasons but not encouraged.  Bootstrapping is complete when the cryptographic identity of the new key infrastructure is successfully deployed to the device but the established secure connection can be used to deploy a locally issued certificate to the device as well.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-anima-bootstrapping-keyinfra-09' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-anima-bootstrapping-keyinfra-09.txt' />
</reference>



<reference anchor="I-D.selander-ace-cose-ecdhe">
<front>
<title>Ephemeral Diffie-Hellman Over COSE (EDHOC)</title>

<author initials='G' surname='Selander' fullname='Goeran Selander'>
    <organization />
</author>

<author initials='J' surname='Mattsson' fullname='John Mattsson'>
    <organization />
</author>

<author initials='F' surname='Palombini' fullname='Francesca Palombini'>
    <organization />
</author>

<date month='July' day='3' year='2017' />

<abstract><t>This document specifies Ephemeral Diffie-Hellman Over COSE (EDHOC), a compact, and lightweight authenticated Diffie-Hellman key exchange with ephemeral keys that can be used over any layer.  EDHOC messages are encoded with CBOR and COSE, allowing reuse of existing libraries.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-selander-ace-cose-ecdhe-07' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-selander-ace-cose-ecdhe-07.txt' />
</reference>



<reference  anchor="RFC5705" target='https://www.rfc-editor.org/info/rfc5705'>
<front>
<title>Keying Material Exporters for Transport Layer Security (TLS)</title>
<author initials='E.' surname='Rescorla' fullname='E. Rescorla'><organization /></author>
<date year='2010' month='March' />
<abstract><t>A number of protocols wish to leverage Transport Layer Security (TLS) to perform key establishment but then use some of the keying material for their own purposes.  This document describes a general mechanism for allowing that.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='5705'/>
<seriesInfo name='DOI' value='10.17487/RFC5705'/>
</reference>



<reference anchor="I-D.mattsson-core-security-overhead">
<front>
<title>Message Size Overhead of CoAP Security Protocols</title>

<author initials='J' surname='Mattsson' fullname='John Mattsson'>
    <organization />
</author>

<date month='November' day='11' year='2017' />

<abstract><t>This document analyzes and compares per-packet message size overheads when using different security protocols to secure CoAP.  The analyzed security protocols are DTLS 1.2, DTLS 1.3, TLS 1.2, TLS 1.3, and OSCORE.  DTLS and TLS are analyzed with and without compression. DTLS are analyzed with two different alternatives for header compression as well as with and without Connection ID.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-mattsson-core-security-overhead-02' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-mattsson-core-security-overhead-02.txt' />
</reference>



<reference anchor="I-D.ietf-core-object-security">
<front>
<title>Object Security for Constrained RESTful Environments (OSCORE)</title>

<author initials='G' surname='Selander' fullname='Goeran Selander'>
    <organization />
</author>

<author initials='J' surname='Mattsson' fullname='John Mattsson'>
    <organization />
</author>

<author initials='F' surname='Palombini' fullname='Francesca Palombini'>
    <organization />
</author>

<author initials='L' surname='Seitz' fullname='Ludwig Seitz'>
    <organization />
</author>

<date month='January' day='22' year='2018' />

<abstract><t>This document defines Object Security for Constrained RESTful Environments (OSCORE), a method for application-layer protection of the Constrained Application Protocol (CoAP), using CBOR Object Signing and Encryption (COSE).  OSCORE provides end-to-end protection between endpoints communicating using CoAP or CoAP-mappable HTTP. OSCORE is designed for constrained nodes and networks supporting a range of proxy operations, including translation between different transport protocols.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-core-object-security-08' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-core-object-security-08.txt' />
</reference>



<reference anchor="I-D.ietf-httpbis-bcp56bis">
<front>
<title>On the use of HTTP as a Substrate</title>

<author initials='M' surname='Nottingham' fullname='Mark Nottingham'>
    <organization />
</author>

<date month='December' day='13' year='2017' />

<abstract><t>HTTP is often used as a substrate for other application protocols. This document specifies best practices for these protocols' use of HTTP.  Note to Readers  Discussion of this draft takes place on the HTTP working group mailing list (ietf-http-wg@w3.org), which is archived at https://lists.w3.org/Archives/Public/ietf-http-wg/ [1].  Working Group information can be found at http://httpwg.github.io/ [2]; source code and issues list for this draft can be found at https://github.com/httpwg/http-extensions/labels/bcp56bis [3].</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-httpbis-bcp56bis-00' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-httpbis-bcp56bis-00.txt' />
</reference>



<reference  anchor="RFC6265" target='https://www.rfc-editor.org/info/rfc6265'>
<front>
<title>HTTP State Management Mechanism</title>
<author initials='A.' surname='Barth' fullname='A. Barth'><organization /></author>
<date year='2011' month='April' />
<abstract><t>This document defines the HTTP Cookie and Set-Cookie header fields. These header fields can be used by HTTP servers to store state (called cookies) at HTTP user agents, letting the servers maintain a stateful session over the mostly stateless HTTP protocol.  Although cookies have many historical infelicities that degrade their security and privacy, the Cookie and Set-Cookie header fields are widely used on the Internet.  This document obsoletes RFC 2965.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='6265'/>
<seriesInfo name='DOI' value='10.17487/RFC6265'/>
</reference>



<reference  anchor="RFC8188" target='https://www.rfc-editor.org/info/rfc8188'>
<front>
<title>Encrypted Content-Encoding for HTTP</title>
<author initials='M.' surname='Thomson' fullname='M. Thomson'><organization /></author>
<date year='2017' month='June' />
<abstract><t>This memo introduces a content coding for HTTP that allows message payloads to be encrypted.</t></abstract>
</front>
<seriesInfo name='RFC' value='8188'/>
<seriesInfo name='DOI' value='10.17487/RFC8188'/>
</reference>




    </references>



  </back>

<!-- ##markdown-source:
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
8QHEaL0AAA==

-->

</rfc>

