Internet-Draft | cTLS 1.3 | April 2020 |
Rescorla, et al. | Expires 28 October 2020 | [Page] |
This document specifies a "compact" version of TLS 1.3. It is isomorphic to TLS 1.3 but saves space by trimming obsolete material, tighter encoding, and a template-based specialization technique. cTLS is not directly interoperable with TLS 1.3, but it should eventually be possible for a cTLS/TLS 1.3 server to exist and successfully interoperate.¶
This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.¶
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.¶
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."¶
This Internet-Draft will expire on 28 October 2020.¶
Copyright (c) 2020 IETF Trust and the persons identified as the document authors. All rights reserved.¶
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified BSD License.¶
DISCLAIMER: This is a work-in-progress draft of cTLS and has not yet seen significant security analysis, so could contain major errors. It should not be used as a basis for building production systems.¶
This document specifies a "compact" version of TLS 1.3 [RFC8446]. It is isomorphic to TLS 1.3 but designed to take up minimal bandwidth. The space reduction is achieved by four basic techniques:¶
For the common (EC)DHE handshake with pre-established certificates, cTLS achieves an overhead of 45 bytes over the minimum required by the cryptovariables. For a PSK handshake, the overhead is 21 bytes. Annotated handshake transcripts for these cases can be found in Appendix A.¶
Because cTLS is semantically equivalent to TLS, it can be viewed either as a related protocol or as a compression mechanism. Specifically, it can be implemented by a layer between the TLS handshake state machine and the record layer.¶
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all capitals, as shown here.¶
Structure definitions listed below override TLS 1.3 definitions; any PDU not internally defined is taken from TLS 1.3 except for replacing integers with varints.¶
cTLS makes use of variable-length integers in order to allow a wide integer range while still providing for a minimal encoding. The width of the integer is encoded in the first two bits of the field as follows, with xs indicating bits that form part of the integer.¶
Bit pattern | Length (bytes) |
---|---|
0xxxxxxx | 1 |
10xxxxxx xxxxxxxx | 2 |
11xxxxxx xxxxxxxx xxxxxxxx | 3 |
Thus, one byte can be used to carry values up to 127.¶
In the TLS syntax variable integers are denoted as "varint" and a vector with a top range of a varint is denoted as:¶
opaque foo<1..V>;¶
cTLS replaces all integers in TLS with varints, including:¶
We do not show the structures which only change in this way.¶
This allows implementations' encoding and decoding logic to implement cTLS
simply by having a mode in which integers always use the varint encoding. Note
that if implementations treat opaque data in the same way as uint8
values,
they MUST NOT convert the bytes of an opaque value to varints.¶
As an example, suppose we are given the following struct:¶
struct { uint32 FieldA; opaque FieldB<0..2^16-1>; } ExampleStruct;¶
Encoding a value of this type with values FieldA=0x0A and FieldB=0x0B0B0B0B0B would result in the following octet strings in "normal" (RFC 8446) and "compact" modes, respectively:¶
Normal: 0000000A00050B0B0B0B0B Compact: 0A050B0B0B0B0B¶
The cTLS Record Layer assumes that records are externally framed (i.e., that the length is already known because it is carried in a UDP datagram or the like). Depending on how this was carried, you might need another byte or two for that framing. Thus, only the type byte need be carried and TLSPlaintext becomes:¶
struct { ContentType type; opaque fragment[TLSPlaintext.length]; } TLSPlaintext;¶
In addition, because the epoch is known in advance, the dummy content type is not needed for the ciphertext, so TLSCiphertext becomes:¶
struct { opaque content[TLSPlaintext.length]; ContentType type; uint8 zeros[length_of_padding]; } TLSInnerPlaintext; struct { opaque encrypted_record[TLSCiphertext.length]; } TLSCiphertext;¶
Note: The user is responsible for ensuring that the sequence numbers/nonces are handled in the usual fashion.¶
The cTLS handshake framing is same as the TLS 1.3 handshake framing, except for two changes:¶
struct { HandshakeType msg_type; /* handshake type */ select (Handshake.msg_type) { case client_hello: ClientHello; case server_hello: ServerHello; case hello_retry_request: HelloRetryRequest; case end_of_early_data: EndOfEarlyData; case encrypted_extensions: EncryptedExtensions; case certificate_request: CertificateRequest; case certificate: Certificate; case certificate_verify: CertificateVerify; case finished: Finished; case new_session_ticket: NewSessionTicket; case key_update: KeyUpdate; }; } Handshake;¶
In general, we retain the basic structure of each individual TLS handshake message. However, the following handshake messages have been modified for space reduction and cleaned up to remove pre TLS 1.3 baggage.¶
The cTLS ClientHello is as follows.¶
opaque Random[RandomLength]; // variable length struct { Random random; CipherSuite cipher_suites<1..V>; Extension extensions<1..V>; } ClientHello;¶
We redefine ServerHello in a similar way:¶
struct { Random random; CipherSuite cipher_suite; Extension extensions<1..V>; } ServerHello;¶
The HelloRetryRequest has the following format:¶
struct { CipherSuite cipher_suite; Extension extensions<2..V>; } HelloRetryRequest;¶
It is the same as the ServerHello above but without the unnecessary sentinel Random value.¶
The protocol in the previous section is fully general and isomorphic to TLS 1.3; effectively it's just a small cleanup of the wire encoding to match what we might have done starting from scratch. It achieves some compaction, but only a modest amount. cTLS also includes a mechanism for achieving very high compaction using template-based specialization.¶
The basic idea is that we start with the basic TLS 1.3 handshake, which is fully general and then remove degrees of freedom, eliding parts of the handshake which are used to express those degrees of freedom. For example, if we only support one version of TLS, then it is not necessary to have version negotiation and the supported_versions extension can be omitted.¶
Importantly, this process is performed only for the wire encoding but not for the handshake transcript. The result is that the transcript for a specialized cTLS handshake is the same as the transcript for a TLS 1.3 handshake with the same features used.¶
One way of thinking of this is as if specialization is a stateful compression layer between the handshake and the record layer:¶
+---------------+---------------+---------------+ | Handshake | Application | Alert | +---------------+---------------+---------------+ +---------+ | cTLS Compression Layer |<---| Profile | +---------------+---------------+---------------+ +---------+ | cTLS Record Layer / Application | +---------------+---------------+---------------+¶
Specializations are defined by a "compression profile" that specifies what features are to be optimized out of the handshake. In the following subsections, we define the structure of these profiles, and how they are used in compressing and decompressing handshake messages.¶
[[OPEN ISSUE: Do we want to have an explicit cTLS extension indicating that cTLS is in use and which specialization is in use? This goes back to whether we want the use of cTLS to be explicit.]]¶
A compression profile defining of a specialized version of TLS is defined using a JSON dictionary. Each axis of specialization is a key in the dictionary. [[OPEN ISSUE: If we ever want to serialize this, we'll want to use a list instead.]].¶
For example, the following specialization describes a protocol with a single fixed version (TLS 1.3) and a single fixed cipher suite (TLS_AES_128_GCM_SHA256). On the wire, ClientHello.cipher_suites, ServerHello.cipher_suites, and the supported_versions extensions in the ClientHello and ServerHello would be omitted.¶
{ "version" : 772, "cipherSuite" : "TLS_AES_128_GCM_SHA256" }¶
cTLS allows specialization along the following axes:¶
To be compatible with the specializations described in this section, a TLS stack needs to provide two key features:¶
If specialization of extensions is to be used, then the TLS stack MUST order each vector of Extension values in ascending order according to the ExtensionType. This allows for a deterministic reconstruction of the extension list.¶
If truncated Random values are to be used, then the TLS stack MUST be configurable to set the remaining bytes of the random values to zero. This ensures that the reconstructed, padded random value matches the original.¶
If truncated Finished values are to be used, then the TLS stack MUST be configurable so that only the provided bytes of the Finished are verified, or so that the expected remaining values can be computed.¶
Extensions used in the ClientHello, ServerHello, EncryptedExtensions, and CertificateRequest messages can be "predefined" in a compression profile, so that they do not have to be sent on the wire. A predefined extensions object is a dictionary whose keys are extension names specified in the TLS ExtensionTypeRegistry specified in [RFC8446]. The corresponding value is a hex-encoded value for the ExtensionData field of the extension.¶
When compressing a handshake message, the sender compares the extensions in the message being compressed to the predefined extensions object, applying the following rules:¶
If there is an entry:¶
When decompressing a handshake message the receiver reconstitutes the original extensions list using the predefined extensions:¶
Note that the "version", "dhGroup", and "signatureAlgorithm" fields in the compression profile are specific instances of this algorithm for the corresponding extensions.¶
[[OPEN ISSUE: Are there other extensions that would benefit from special treatment, as opposed to hex values.]]¶
Certificates are a major contributor to the size of a TLS handshake. In order to avoid this overhead when the parties to a handshake have already exchanged certificates, a compression profile can specify a dictionary of "known certificates" that effectively acts as a compression dictionary on certificates.¶
A known certificates object is a JSON dictionary whose keys are strings containing hex-encoded compressed values. The corresponding values are hex-encoded strings representing the uncompressed values. For example:¶
{ "00": "3082...", "01": "3082...", }¶
When compressing a Certificate message, the sender examines the cert_data field of each CertificateEntry. If the cert_data matches a value in the known certificates object, then the sender replaces the cert_data with the corresponding key. Decompression works the opposite way, replacing keys with values.¶
Note that in this scheme, there is no signaling on the wire for whether a given cert_data value is compressed or uncompressed. Known certificates objects SHOULD be constructed in such a way as to avoid a uncompressed object being mistaken for compressed one and erroneously decompressed. For X.509, it is sufficient for the first byte of the compressed value (key) to have a value other than 0x30, since every X.509 certificate starts with this byte.¶
The following section provides some example specializations.¶
TLS 1.3 only:¶
{ "Version" : 0x0304 }¶
TLS 1.3 with AES_GCM and X25519 and ALPN h2, short random values, and everything else is ordinary TLS 1.3.¶
{ "Version" : 772, "Random": 16, "CipherSuite" : "TLS_AES_128_GCM_SHA256", "DHGroup": "X25519", "Extensions": { "named_groups": 29, "application_layer_protocol_negotiation" : "030016832", "..." : null } }¶
Version 772 corresponds to the hex representation 0x0304, named group "29" (0x001D) represents X25519.¶
[[OPEN ISSUE: Should we have a registry of well-known profiles?]]¶
WARNING: This document is effectively brand new and has seen no analysis. The idea here is that cTLS is isomorphic to TLS 1.3, and therefore should provide equivalent security guarantees.¶
The use of key ids is a new feature introduced in this document, which requires some analysis, especially as it looks like a potential source of identity misbinding. This is, however, entirely separable from the rest of the specification.¶
Transcript expansion also needs some analysis and we need to determine whether we need an extension to indicate that cTLS is in use and with which profile.¶
This document has no IANA actions.¶
In this section, we provide annotated example transcripts generated using a draft implementation of this specification in the mint TLS library. The transcripts shown are with the revised message formats defined above, as well as specialization to the indicated cases, using the aggressive compression profiles noted below. The resulting byte counts are as follows:¶
ECDHE PSK ------------------ ------------------ TLS CTLS Overhead TLS CTLS Overhead --- ---- -------- --- ---- -------- ClientHello 132 50 10 147 67 15 ServerHello 90 48 8 56 18 2 ServerFlight 478 104 16 42 12 3 ClientFlight 458 100 11 36 10 1 ===================================================== Total 1158 302 45 280 107 21¶
To increase legibility, we show the plaintext bytes of handshake messages that would be encrypted and shorten some of the cryptographic values (shown with "..."). The totals above include 9 bytes of encryption overhead for the client and server flights, which would otherwise be encrypted (with a one-byte content type and an 8-byte tag).¶
Obviously, these figures are very provisional, and as noted at several points above, there are additional opportunities to reduce overhead.¶
[[NOTE: We are using a shortened Finished message here. See Section 5.1 for notes on Finished size. However, the overhead is constant for all reasonable Finished sizes.]]¶
Compression Profile:¶
{ "version": 772, "cipherSuite": "TLS_AES_128_CCM_8_SHA256", "dhGroup": "X25519", "signatureAlgorithm": "ECDSA_P256_SHA256", "randomSize": 8, "finishedSize": 8, "clientHelloExtensions": { "server_name": "000e00000b6578616d706c652e636f6d", }, "certificateRequestExtensions": { "signature_algorithms": "00020403" }, "knownCertificates": { "61": "3082...", "62": "3082..." } }¶
ClientHello: 50 bytes = RANDOM(8) + DH(32) + Overhead(10)¶
01 // ClientHello 2ef16120dd84a721 // Random 28 // Extensions.length 33 26 // KeyShare 0024 // client_shares.length 001d // KeyShareEntry.group 0020 a690...af948 // KeyShareEntry.key_exchange¶
ServerHello: 48 = RANDOM(8) + DH(32) + Overhead(8)¶
02 // ServerHello 962547bba5e00973 // Random 26 // Extensions.length 33 24 // KeyShare 001d // KeyShareEntry.group 0020 9fbc...0f49 // KeyShareEntry.key_exchange¶
Server Flight: 96 = SIG(71) + MAC(8) + CERTID(1) + Overhead(16)¶
08 // EncryptedExtensions 00 // Extensions.length 0d // CertificateRequest 00 // CertificateRequestContext.length 00 // Extensions.length 0b // Certificate 00 // CertificateRequestContext 03 // CertificateList 01 // CertData.length 61 // CertData = 'a' 00 // Extensions.length 0f // CertificateVerify 0403 // SignatureAlgorithm 4047 3045...10ce // Signature 14 // Finished bfc9d66715bb2b04 // VerifyData¶
Client Flight: 91 bytes = SIG(71) + MAC(8) + CERTID(1) + Overhead(11)¶
0b // Certificate 00 // CertificateRequestContext 03 // CertificateList 01 // CertData.length 62 // CertData = 'b' 00 // Extensions.length 0f // CertificateVerify 0403 // SignatureAlgorithm 4047 3045...f60e // Signature.length 14 // Finished 35e9c34eec2c5dc1 // VerifyData¶
Compression Profile:¶
{ "version": 772, "cipherSuite": "TLS_AES_128_CCM_8_SHA256", "signatureAlgorithm": "ECDSA_P256_SHA256", "randomSize": 16, "finishedSize": 0, "clientHelloExtensions": { "server_name": "000e00000b6578616d706c652e636f6d", "psk_key_exchange_modes": "0100" }, "serverHelloExtensions": { "pre_shared_key": "0000" } }¶
ClientHello: 67 bytes = RANDOM(16) + PSKID(4) + BINDER(32) + Overhead(15)¶
01 // ClientHello e230115e62d9a3b58f73e0f2896b2e35 // Random 2d // Extensions.length 29 2b // PreSharedKey 000a // identities.length 0004 00010203 // identity 7bd05af6 // obfuscated_ticket_age 0021 // binders.length 20 2428...bb3f // binder¶
ServerHello: 18 bytes = RANDOM(16) + 2¶
02 // ServerHello 7232e2d3e61e476b844d9c1f6a4c868f // Random 00 // Extensions.length¶
Server Flight: 3 bytes = Overhead(3)¶
08 // EncryptedExtensions 00 // Extensions.length 14 // Finished¶
Client Flight: 1 byte = Overhead(3)¶
14 // Finished¶
We would like to thank Karthikeyan Bhargavan, Owen Friel, Sean Turner, Martin Thomson and Chris Wood.¶