<?xml version="1.0" encoding="UTF-8"?>
<!--
    This XML document is the output of clean-for-DTD.xslt; a tool that strips
    extensions to RFC2629(bis) from documents for processing with xml2rfc.
-->
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?><!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.0.39 -->
<?rfc toc="yes"?>
<?rfc tocindent="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<?rfc docmapping="yes"?>
<!DOCTYPE rfc
  PUBLIC "" "rfc2629.dtd">
<rfc ipr="trust200902" docName="draft-ietf-httpbis-encryption-encoding-05" category="std" obsoletes="" updates="" submissionType="IETF"><front><title abbrev="HTTP encryption coding">Encrypted Content-Encoding for HTTP</title><author initials="M." surname="Thomson" fullname="Martin Thomson"><organization>Mozilla</organization><address><email>martin.thomson@gmail.com</email></address></author><date year="2016"/><area>Applications and Real-Time</area><workgroup>HTTP Working Group</workgroup><keyword>Internet-Draft</keyword><abstract><t>This memo introduces a content coding for HTTP that allows message payloads to
be encrypted.</t></abstract><note title="Note to Readers"><t>Discussion of this draft takes place on the HTTP working group mailing list
(ietf-http-wg@w3.org), which is archived at <eref target="https://lists.w3.org/Archives/Public/ietf-http-wg/">https://lists.w3.org/Archives/Public/ietf-http-wg/</eref>.</t><t>Working Group information can be found at <eref target="http://httpwg.github.io/">http://httpwg.github.io/</eref>; source
code and issues list for this draft can be found at <eref target="https://github.com/httpwg/http-extensions/labels/encryption">https://github.com/httpwg/http-extensions/labels/encryption</eref>.</t></note></front><middle><section anchor="introduction" toc="default" title="Introduction"><t>It is sometimes desirable to encrypt the contents of a HTTP message (request or
response) so that when the payload is stored (e.g., with a HTTP PUT), only
someone with the appropriate key can read it.</t><t>For example, it might be necessary to store a file on a server without exposing
its contents to that server. Furthermore, that same file could be replicated to
other servers (to make it more resistant to server or network failure),
downloaded by clients (to make it available offline), etc.  without exposing its
contents.</t><t>These uses are not met by the use of TLS <xref target="RFC5246" format="default"/>, since it only encrypts
the channel between the client and server.</t><t>This document specifies a content coding (Section 3.1.2 of <xref target="RFC7231" format="default"/>) for HTTP
to serve these and other use cases.</t><t>This content coding is not a direct adaptation of message-based encryption
formats - such as those that are described by <xref target="RFC4880" format="default"/>, <xref target="RFC5652" format="default"/>,
<xref target="RFC7516" format="default"/>, and <xref target="XMLENC" format="default"/> - which are not suited to stream processing, which
is necessary for HTTP.  The format described here cleaves more closely to the
lower level constructs described in <xref target="RFC5116" format="default"/>.</t><t>To the extent that message-based encryption formats use the same primitives, the
format can be considered as sequence of encrypted messages with a particular
profile.  For instance, <xref target="jwe" format="default"/> explains how the format is congruent with a
sequence of JSON Web Encryption <xref target="RFC7516" format="default"/> values with a fixed header.</t><t>This mechanism is likely only a small part of a larger design that uses content
encryption.  How clients and servers acquire and identify keys will depend on
the use case.  In particular, a key management system is not described.</t><section anchor="notational-conventions" toc="default" title="Notational Conventions"><t>The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”,
“SHOULD NOT”, “RECOMMENDED”, “MAY”, and “OPTIONAL” in this document are to be
interpreted as described in <xref target="RFC2119" format="default"/>.</t><t>Base64url encoding is defined in Section 2 of <xref target="RFC7515" format="default"/>.</t></section></section><section anchor="aes128gcm" toc="default" title="The “aes128gcm” HTTP Content Coding"><t>The “aes128gcm” HTTP content coding indicates that a payload has been encrypted
using Advanced Encryption Standard (AES) in Galois/Counter Mode (GCM) as
identified as AEAD_AES_128_GCM in <xref target="RFC5116" format="default"/>, Section 5.1.  The AEAD_AES_128_GCM
algorithm uses a 128 bit content encryption key.</t><t>Using this content coding requires knowledge of a key.  How this key is
acquired is not defined in this document.</t><t>The “aes128gcm” content coding uses a single fixed set of encryption
primitives.  Cipher suite agility is achieved by defining a new content coding
scheme.  This ensures that only the HTTP Accept-Encoding header field is
necessary to negotiate the use of encryption.</t><t>The “aes128gcm” content coding uses a fixed record size.  The final encoding
consists of a header (see <xref target="header" format="default"/>), zero or more fixed size encrypted
records, and a partial record.  The partial record MUST be shorter than the
fixed record size.</t><t>The record size determines the length of each portion of plaintext that is
enciphered, with the exception of the final record, which is necessarily
smaller.  The record size (“rs”) is included in the content coding header (see
<xref target="header" format="default"/>).</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="drawing" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[

      +-----------+       content is rs octets minus padding
      |   data    |       of between 2 and 65537 octets;
      +-----------+       the last record is smaller
           |
           v
+-----+-----------+       add padding to get rs octets;
| pad |   data    |       the last record contains
+-----+-----------+       up to rs minus 1 octets
         |
         v
+--------------------+    encrypt with AEAD_AES_128_GCM;
|    ciphertext      |    final size is rs plus 16 octets
+--------------------+    the last record is smaller
]]></artwork></figure><t>AEAD_AES_128_GCM produces ciphertext 16 octets longer than its input plaintext.
Therefore, the length of each enciphered record other than the last is equal to
the value of the “rs” parameter plus 16 octets.  If the final record ends on a
record boundary, the encoder MUST append a record that contains contains only
padding and is smaller than the full record size.  A receiver MUST fail to
decrypt if the final record ciphertext is less than 18 octets in size or equal
to the record size plus 16 (that is, the size of a full encrypted record).
Valid records always contain at least two octets of padding and a 16 octet
authentication tag.</t><t>Each record contains a 2 octet padding length field and between 0 and 65535
octets of padding, inserted into a record before the enciphered content. The
padding length is a two octet unsigned integer in network byte order; padding is
that number of zero-valued octets. A receiver MUST fail to decrypt if any
padding octet is non-zero, or a record has more padding than the record size can
accommodate.</t><t>The nonce for each record is a 96-bit value constructed from the record sequence
number and the input keying material.  Nonce derivation is covered in <xref target="nonce" format="default"/>.</t><t>The additional data passed to each invocation of AEAD_AES_128_GCM is a
zero-length octet sequence.</t><t>A consequence of this record structure is that range requests <xref target="RFC7233" format="default"/> and
random access to encrypted payload bodies are possible at the granularity of the
record size.  Partial records at the ends of a range cannot be decrypted.  Thus,
it is best if range requests start and end on record boundaries.  Note however
that random access to specific parts of encrypted data could be confounded by
the presence of padding.</t><t>Selecting the record size most appropriate for a given situation requires a
trade-off.  A smaller record size allows decrypted octets to be released more
rapidly, which can be appropriate for applications that depend on
responsiveness.  Smaller records also reduce the additional data required if
random access into the ciphertext is needed.  Applications that depend on being
able to pad by arbitrary amounts cannot increase the record size beyond 65537
octets.</t><t>Applications that don’t depending on streaming, random access, or arbitrary
padding can use larger records, or even a single record.  A larger record size
reduces the processing and data overheads.</t><section anchor="header" toc="default" title="Encryption Content Coding Header"><t>The content coding uses a header block that includes all parameters needed to
decrypt the content (other than the key).  The header block is placed in the
body of a message ahead of the sequence of records.</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="drawing" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[

+-----------+--------+-----------+---------------+
| salt (16) | rs (4) | idlen (1) | keyid (idlen) |
+-----------+--------+-----------+---------------+
]]></artwork></figure><t><list style="hanging"><t hangText="salt:">
  The “salt” parameter comprises the first 16 octets of the “aes128gcm” content
coding header.  The same “salt” parameter value MUST NOT be reused for two
different payload bodies that have the same input keying material; generating
a random salt for every application of the content coding ensures that content
encryption key reuse is highly unlikely.</t><t hangText="rs:">
  The “rs” or record size parameter contains an unsigned 32-bit integer in
network byte order that describes the record size in octets.  Note that it is
therefore impossible to exceed the 2^36-31 limit on plaintext input to
AEAD_AES_128_GCM.  Values smaller than 3 are invalid.</t><t hangText="keyid:">
  The “keyid” parameter can be used to identify the keying material that is
used.  Recipients that receive a message are expected to know how to retrieve
keys; the “keyid” parameter might be input to that process.</t></list></t></section><section anchor="derivation" toc="default" title="Content Encryption Key Derivation"><t>In order to allow the reuse of keying material for multiple different HTTP
messages, a content encryption key is derived for each message.  The content
encryption key is derived from the “salt” parameter using the HMAC-based key
derivation function (HKDF) described in <xref target="RFC5869" format="default"/> using the SHA-256 hash
algorithm <xref target="FIPS180-4" format="default"/>.</t><t>The value of the “salt” parameter is the salt input to HKDF function.  The
keying material identified by the “keyid” parameter is the input keying material
(IKM) to HKDF.  Input keying material is expected to be provided to recipients
separately.  The extract phase of HKDF therefore produces a pseudorandom key
(PRK) as follows:</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="inline" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[

   PRK = HMAC-SHA-256(salt, IKM)
]]></artwork></figure><t>The info parameter to HKDF is set to the ASCII-encoded string “Content-Encoding:
aes128gcm” and a single zero octet:</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="inline" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[

   cek_info = "Content-Encoding: aes128gcm" || 0x00
]]></artwork></figure><t><list style="hanging"><t hangText="Note:">
  Concatenation of octet sequences is represented by the <spanx style="verb" xml:space="preserve">||</spanx> operator.</t></list></t><t>AEAD_AES_128_GCM requires a 16 octet (128 bit) content encryption key (CEK), so
the length (L) parameter to HKDF is 16.  The second step of HKDF can therefore
be simplified to the first 16 octets of a single HMAC:</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="inline" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[

   CEK = HMAC-SHA-256(PRK, cek_info || 0x01)
]]></artwork></figure></section><section anchor="nonce" toc="default" title="Nonce Derivation"><t>The nonce input to AEAD_AES_128_GCM is constructed for each record.  The nonce
for each record is a 12 octet (96 bit) value that is produced from the record
sequence number and a value derived from the input keying material.</t><t>The input keying material and salt values are input to HKDF with different info
and length parameters.</t><t>The length (L) parameter is 12 octets.  The info parameter for the nonce is the
ASCII-encoded string “Content-Encoding: nonce”, terminated by a a single zero
octet:</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="inline" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[

   nonce_info = "Content-Encoding: nonce" || 0x00
]]></artwork></figure><t>The result is combined with the record sequence number - using exclusive or - to
produce the nonce.  The record sequence number (SEQ) is a 96-bit unsigned
integer in network byte order that starts at zero.</t><t>Thus, the final nonce for each record is a 12 octet value:</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="inline" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[

   NONCE = HMAC-SHA-256(PRK, nonce_info || 0x01) XOR SEQ
]]></artwork></figure><t>This nonce construction prevents removal or reordering of records. However, it
permits truncation of the tail of the sequence (see <xref target="aes128gcm" format="default"/> for how this
is avoided).</t></section></section><section anchor="examples" toc="default" title="Examples"><t>This section shows a few examples of the encrypted content coding.</t><t>Note: All binary values in the examples in this section use base64url encoding
<xref target="RFC7515" format="default"/>.  This includes the bodies of requests.  Whitespace and line
wrapping is added to fit formatting constraints.</t><section anchor="explicit" toc="default" title="Encryption of a Response"><t>Here, a successful HTTP GET response has been encrypted.  This uses a record
size of 4096 and no padding (just the 2 octet padding length), so only a partial
record is present.  The input keying material is identified by an empty string
(that is, the “keyid” field in the header is zero octets in length).</t><t>The encrypted data in this example is the UTF-8 encoded string “I am the
walrus”.  The input keying material is the value “B33e_VeFrOyIHwFTIfmesA” (in
base64url).  The content body contains a single record and is shown here using
base64url encoding for presentation reasons.</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="example" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[

HTTP/1.1 200 OK
Content-Type: application/octet-stream
Content-Length: 54
Content-Encoding: aes128gcm

sJvlboCWzB5jr8hI_q9cOQAAEAAANSmxkSVa0-MiNNuF77YHSs-iwaNe_OK0qfmO
c7NT5WSW
]]></artwork></figure><t>Note that the media type has been changed to “application/octet-stream” to avoid
exposing information about the content.  Alternatively (and equivalently), the
Content-Type header field can be omitted.</t><t>Intermediate values for this example (all shown in base64):</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="inline" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[

salt (from header) = sJvlboCWzB5jr8hI_q9cOQ
PRK = MLAQxt_DHjM15cdlyU1oUnjq7TFlzToGTkdRmvvxVBw
CEK = v31u7VGV3soO3wNaMaIdhg
NONCE = XOaygzko98zjUFTJ
plaintext = AABJIGFtIHRoZSB3YWxydXM
]]></artwork></figure></section><section anchor="encryption-with-multiple-records" toc="default" title="Encryption with Multiple Records"><t>This example shows the same message with input keying material of
“BO3ZVPxUlnLORbVGMpbT1Q”.  In this example, the plaintext is split into records
of 10 octets each (that is, the “rs” field in the header is 10).  The first
record includes a single octet of padding.  This means that there are 7 octets
of message in the first record, and 8 in the second.  This causes the end of the
content to align with a record boundary, forcing the creation of a third record
that contains only two octets of the padding length.</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="example" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[

HTTP/1.1 200 OK
Content-Length: 93
Content-Encoding: aes128gcm

uNCkWiNYzKTnBN9ji3-qWAAAAAoCYTGHOqYFz-0in3dpb-VE2GfBngkaPy6bZus_
qLF79s6zQyTSsA0iLOKyd3JqVIwprNzVatRCWZGUx_qsFbJBCQu62RqQuR2d
]]></artwork></figure></section></section><section anchor="security-considerations" toc="default" title="Security Considerations"><t>This mechanism assumes the presence of a key management framework that is used
to manage the distribution of keys between valid senders and receivers.
Defining key management is part of composing this mechanism into a larger
application, protocol, or framework.</t><t>Implementation of cryptography - and key management in particular - can be
difficult.  For instance, implementations need to account for the potential for
exposing keying material on side channels, such as might be exposed by the time
it takes to perform a given operation.  The requirements for a good
implementation of cryptographic algorithms can change over time.</t><section anchor="key-and-nonce-reuse" toc="default" title="Key and Nonce Reuse"><t>Encrypting different plaintext with the same content encryption key and nonce in
AES-GCM is not safe <xref target="RFC5116" format="default"/>.  The scheme defined here uses a fixed progression
of nonce values.  Thus, a new content encryption key is needed for every
application of the content coding.  Since input keying material can be reused, a
unique “salt” parameter is needed to ensure a content encryption key is not
reused.</t><t>If a content encryption key is reused - that is, if input keying material and
salt are reused - this could expose the plaintext and the authentication key,
nullifying the protection offered by encryption.  Thus, if the same input keying
material is reused, then the salt parameter MUST be unique each time.  This
ensures that the content encryption key is not reused.  An implementation SHOULD
generate a random salt parameter for every message; a counter could achieve the
same result.</t></section><section anchor="limits" toc="default" title="Data Encryption Limits"><t>There are limits to the data that AEAD_AES_128_GCM can encipher.  The maximum
value for the record size is limited by the size of the “rs” field in the header
(see <xref target="header" format="default"/>), which ensures that the 2^36-31 limit for a single application
of AEAD_AES_128_GCM is not reached <xref target="RFC5116" format="default"/>.  In order to preserve a 2^-40
probability of indistinguishability under chosen plaintext attack (IND-CPA), the
total amount of plaintext that can be enciphered MUST be less than 2^44.5 blocks
of 16 octets <xref target="AEBounds" format="default"/>.</t><t>If rs is a multiple of 16 octets, this means 398 terabytes can be encrypted
safely, including padding and overhead.  However, if the record size is not a
multiple of 16 octets, the total amount of data that can be safely encrypted is
reduced proportionally.  The worst case is a record size of 3 octets, for which
at most 74 terabytes of plaintext can be encrypted, of which at least two-thirds
is padding.</t></section><section anchor="content-integrity" toc="default" title="Content Integrity"><t>This mechanism only provides content origin authentication.  The authentication
tag only ensures that an entity with access to the content encryption key
produced the encrypted data.</t><t>Any entity with the content encryption key can therefore produce content that
will be accepted as valid.  This includes all recipients of the same HTTP
message.</t><t>Furthermore, any entity that is able to modify both the Encryption header field
and the HTTP message body can replace the contents.  Without the content
encryption key or the input keying material, modifications to or replacement of
parts of a payload body are not possible.</t></section><section anchor="leaking-information-in-headers" toc="default" title="Leaking Information in Headers"><t>Because only the payload body is encrypted, information exposed in header fields
is visible to anyone who can read the HTTP message.  This could expose
side-channel information.</t><t>For example, the Content-Type header field can leak information about the
payload body.</t><t>There are a number of strategies available to mitigate this threat, depending
upon the application’s threat model and the users’ tolerance for leaked
information:</t><t><list style="numbers"><t>Determine that it is not an issue. For example, if it is expected that all
content stored will be “application/json”, or another very common media type,
exposing the Content-Type header field could be an acceptable risk.</t><t>If it is considered sensitive information and it is possible to determine it
through other means (e.g., out of band, using hints in other representations,
etc.), omit the relevant headers, and/or normalize them. In the case of
Content-Type, this could be accomplished by always sending Content-Type:
application/octet-stream (the most generic media type), or no Content-Type at
all.</t><t>If it is considered sensitive information and it is not possible to convey it
elsewhere, encapsulate the HTTP message using the application/http media type
(Section 8.3.2 of <xref target="RFC7230" format="default"/>), encrypting that as the payload of the “outer”
message.</t></list></t></section><section anchor="poisoning-storage" toc="default" title="Poisoning Storage"><t>This mechanism only offers encryption of content; it does not perform
authentication or authorization, which still needs to be performed (e.g., by
HTTP authentication <xref target="RFC7235" format="default"/>).</t><t>This is especially relevant when a HTTP PUT request is accepted by a server; if
the request is unauthenticated, it becomes possible for a third party to deny
service and/or poison the store.</t></section><section anchor="sizing-and-timing-attacks" toc="default" title="Sizing and Timing Attacks"><t>Applications using this mechanism need to be aware that the size of encrypted
messages, as well as their timing, HTTP methods, URIs and so on, may leak
sensitive information.</t><t>This risk can be mitigated through the use of the padding that this mechanism
provides.  Alternatively, splitting up content into segments and storing the
separately might reduce exposure. HTTP/2 <xref target="RFC7540" format="default"/> combined with TLS
<xref target="RFC5246" format="default"/> might be used to hide the size of individual messages.</t><t>Developing a padding strategy is difficult.  A good padding strategy can depend
on context.  Common strategies include padding to a small set of fixed lengths,
padding to multiples of a values, or padding to powers of 2.  Even a good
strategy can still cause size information to leak if processing activity of a
recipient can be observed.  This is especially true if the trailing records of
a message contain only padding.  Distributing non-padding data is recommended
to avoid leaking size information.</t></section></section><section anchor="iana" toc="default" title="IANA Considerations"><section anchor="the-aes128gcm-http-content-coding" toc="default" title="The “aes128gcm” HTTP Content Coding"><t>This memo registers the “aes128gcm” HTTP content coding in the HTTP Content
Codings Registry, as detailed in <xref target="aes128gcm" format="default"/>.</t><t><list style="symbols"><t>Name: aes128gcm</t><t>Description: AES-GCM encryption with a 128-bit content encryption key</t><t>Reference: this specification</t></list></t></section></section></middle><back><references title="Normative References"><reference anchor="FIPS180-4" target="http://csrc.nist.gov/publications/fips/fips180-4/fips-180-4.pdf"><front><title>NIST FIPS 180-4, Secure Hash Standard</title><author initials="National Institute of Standards and Technology, U.S." surname="Department of Commerce" fullname="NIST"><organization/></author><date year="2012" month="March"/></front></reference><reference anchor="RFC7231" target="http://www.rfc-editor.org/info/rfc7231"><front><title>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</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 defines the semantics of HTTP/1.1 messages, as expressed by request methods, request header fields, response status codes, and response header fields, along with the payload of messages (metadata and body content) and mechanisms for content negotiation.</t></abstract></front><seriesInfo name="RFC" value="7231"/><seriesInfo name="DOI" value="10.17487/RFC7231"/></reference><reference anchor="RFC5116" target="http://www.rfc-editor.org/info/rfc5116"><front><title>An Interface and Algorithms for Authenticated Encryption</title><author initials="D." surname="McGrew" fullname="D. McGrew"><organization/></author><date year="2008" month="January"/><abstract><t>This document defines algorithms for Authenticated Encryption with Associated Data (AEAD), and defines a uniform interface and a registry for such algorithms.  The interface and registry can be used as an application-independent set of cryptoalgorithm suites.  This approach provides advantages in efficiency and security, and promotes the reuse of crypto implementations.  [STANDARDS-TRACK]</t></abstract></front><seriesInfo name="RFC" value="5116"/><seriesInfo name="DOI" value="10.17487/RFC5116"/></reference><reference anchor="RFC2119" target="http://www.rfc-editor.org/info/rfc2119"><front><title>Key words for use in RFCs to Indicate Requirement Levels</title><author initials="S." surname="Bradner" fullname="S. Bradner"><organization/></author><date year="1997" month="March"/><abstract><t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract></front><seriesInfo name="BCP" value="14"/><seriesInfo name="RFC" value="2119"/><seriesInfo name="DOI" value="10.17487/RFC2119"/></reference><reference anchor="RFC7515" target="http://www.rfc-editor.org/info/rfc7515"><front><title>JSON Web Signature (JWS)</title><author initials="M." surname="Jones" fullname="M. Jones"><organization/></author><author initials="J." surname="Bradley" fullname="J. Bradley"><organization/></author><author initials="N." surname="Sakimura" fullname="N. Sakimura"><organization/></author><date year="2015" month="May"/><abstract><t>JSON Web Signature (JWS) represents content secured with digital signatures or Message Authentication Codes (MACs) using JSON-based data structures.  Cryptographic algorithms and identifiers for use with this specification are described in the separate JSON Web Algorithms (JWA) specification and an IANA registry defined by that specification.  Related encryption capabilities are described in the separate JSON Web Encryption (JWE) specification.</t></abstract></front><seriesInfo name="RFC" value="7515"/><seriesInfo name="DOI" value="10.17487/RFC7515"/></reference><reference anchor="RFC5869" target="http://www.rfc-editor.org/info/rfc5869"><front><title>HMAC-based Extract-and-Expand Key Derivation Function (HKDF)</title><author initials="H." surname="Krawczyk" fullname="H. Krawczyk"><organization/></author><author initials="P." surname="Eronen" fullname="P. Eronen"><organization/></author><date year="2010" month="May"/><abstract><t>This document specifies a simple Hashed Message Authentication Code (HMAC)-based key derivation function (HKDF), which can be used as a building block in various protocols and applications.  The key derivation function (KDF) is intended to support a wide range of applications and requirements, and is conservative in its use of cryptographic hash functions.  This document is not an Internet  Standards Track specification; it is published for informational  purposes.</t></abstract></front><seriesInfo name="RFC" value="5869"/><seriesInfo name="DOI" value="10.17487/RFC5869"/></reference><reference anchor="RFC7230" target="http://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 "http" and "https" 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></references><references title="Informative References"><reference anchor="XMLENC" target="https://www.w3.org/TR/2013/REC-xmlenc-core1-20130411"><front><title>XML Encryption Syntax and Processing</title><author initials="D." surname="Eastlake"><organization/></author><author initials="J." surname="Reagle"><organization/></author><author initials="F." surname="Hirsch"><organization/></author><author initials="T." surname="Roessler"><organization/></author><author initials="T." surname="Imamura"><organization/></author><author initials="B." surname="Dillaway"><organization/></author><author initials="E." surname="Simon"><organization/></author><author initials="K." surname="Yiu"><organization/></author><author initials="M." surname="Nyström"><organization/></author><date year="2013" month="January" day="24"/></front><seriesInfo name="W3C Recommendation REC-xmlenc-core1-20130411" value=""/></reference><reference anchor="AEBounds" target="http://www.isg.rhul.ac.uk/~kp/TLS-AEbounds.pdf"><front><title>Limits on Authenticated Encryption Use in TLS</title><author initials="A." surname="Luykx"><organization/></author><author initials="K." surname="Paterson"><organization/></author><date year="2016" month="March" day="08"/></front></reference><reference anchor="RFC5246" target="http://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="RFC4880" target="http://www.rfc-editor.org/info/rfc4880"><front><title>OpenPGP Message Format</title><author initials="J." surname="Callas" fullname="J. Callas"><organization/></author><author initials="L." surname="Donnerhacke" fullname="L. Donnerhacke"><organization/></author><author initials="H." surname="Finney" fullname="H. Finney"><organization/></author><author initials="D." surname="Shaw" fullname="D. Shaw"><organization/></author><author initials="R." surname="Thayer" fullname="R. Thayer"><organization/></author><date year="2007" month="November"/><abstract><t>This document is maintained in order to publish all necessary information needed to develop interoperable applications based on the OpenPGP format.  It is not a step-by-step cookbook for writing an application.  It describes only the format and methods needed to read, check, generate, and write conforming packets crossing any network.  It does not deal with storage and implementation questions. It does, however, discuss implementation issues necessary to avoid security flaws.</t><t>OpenPGP software uses a combination of strong public-key and symmetric cryptography to provide security services for electronic communications and data storage.  These services include confidentiality, key management, authentication, and digital signatures.  This document specifies the message formats used in OpenPGP.  [STANDARDS-TRACK]</t></abstract></front><seriesInfo name="RFC" value="4880"/><seriesInfo name="DOI" value="10.17487/RFC4880"/></reference><reference anchor="RFC5652" target="http://www.rfc-editor.org/info/rfc5652"><front><title>Cryptographic Message Syntax (CMS)</title><author initials="R." surname="Housley" fullname="R. Housley"><organization/></author><date year="2009" month="September"/><abstract><t>This document describes the Cryptographic Message Syntax (CMS).  This syntax is used to digitally sign, digest, authenticate, or encrypt arbitrary message content.  [STANDARDS-TRACK]</t></abstract></front><seriesInfo name="STD" value="70"/><seriesInfo name="RFC" value="5652"/><seriesInfo name="DOI" value="10.17487/RFC5652"/></reference><reference anchor="RFC7516" target="http://www.rfc-editor.org/info/rfc7516"><front><title>JSON Web Encryption (JWE)</title><author initials="M." surname="Jones" fullname="M. Jones"><organization/></author><author initials="J." surname="Hildebrand" fullname="J. Hildebrand"><organization/></author><date year="2015" month="May"/><abstract><t>JSON Web Encryption (JWE) represents encrypted content using JSON-based data structures.  Cryptographic algorithms and identifiers for use with this specification are described in the separate JSON Web Algorithms (JWA) specification and IANA registries defined by that specification.  Related digital signature and Message Authentication Code (MAC) capabilities are described in the separate JSON Web Signature (JWS) specification.</t></abstract></front><seriesInfo name="RFC" value="7516"/><seriesInfo name="DOI" value="10.17487/RFC7516"/></reference><reference anchor="RFC7233" target="http://www.rfc-editor.org/info/rfc7233"><front><title>Hypertext Transfer Protocol (HTTP/1.1): Range Requests</title><author initials="R." surname="Fielding" fullname="R. Fielding" role="editor"><organization/></author><author initials="Y." surname="Lafon" fullname="Y. Lafon" 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 defines range requests and the rules for constructing and combining responses to those requests.</t></abstract></front><seriesInfo name="RFC" value="7233"/><seriesInfo name="DOI" value="10.17487/RFC7233"/></reference><reference anchor="RFC7235" target="http://www.rfc-editor.org/info/rfc7235"><front><title>Hypertext Transfer Protocol (HTTP/1.1): Authentication</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, hypermedia information systems.  This document defines the HTTP Authentication framework.</t></abstract></front><seriesInfo name="RFC" value="7235"/><seriesInfo name="DOI" value="10.17487/RFC7235"/></reference><reference anchor="RFC7540" target="http://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></references><section anchor="jwe" toc="default" title="JWE Mapping"><t>The “aes128gcm” content coding can be considered as a sequence of JSON Web
Encryption (JWE) objects <xref target="RFC7516" format="default"/>, each corresponding to a single fixed size
record that includes leading padding.  The following transformations are applied
to a JWE object that might be expressed using the JWE Compact Serialization:</t><t><list style="symbols"><t>The JWE Protected Header is fixed to the value { “alg”: “dir”, “enc”: “A128GCM”
}, describing direct encryption using AES-GCM with a 128-bit content
encryption key.  This header is not transmitted, it is instead implied by the
value of the Content-Encoding header field.</t><t>The JWE Encrypted Key is empty, as stipulated by the direct encryption algorithm.</t><t>The JWE Initialization Vector (“iv”) for each record is set to the exclusive
or of the 96-bit record sequence number, starting at zero, and a value derived
from the input keying material (see <xref target="nonce" format="default"/>).  This value is also not
transmitted.</t><t>The final value is the concatenated header, JWE Ciphertext, and JWE
Authentication Tag, all expressed without base64url encoding.  The “.”
separator is omitted, since the length of these fields is known.</t></list></t><t>Thus, the example in <xref target="explicit" format="default"/> can be rendered using the JWE Compact
Serialization as:</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="example" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[

eyAiYWxnIjogImRpciIsICJlbmMiOiAiQTEyOEdDTSIgfQ..31iQYc1v4a36EgyJ.
NSmxkSVa0-MiNNuF77YHSs8.osGjXvzitKn5jnOzU-Vklg
]]></artwork></figure><t>Where the first line represents the fixed JWE Protected Header, an empty JWE
Encrypted Key, and the algorithmically-determined JWE Initialization Vector.
The second line contains the encoded body, split into JWE Ciphertext and JWE
Authentication Tag.</t></section><section anchor="acknowledgements" toc="default" title="Acknowledgements"><t>Mark Nottingham was an original author of this document.</t><t>The following people provided valuable input: Richard Barnes, David Benjamin,
Peter Beverloo, JR Conlin, Mike Jones, Stephen Farrell, Adam Langley, John
Mattsson, Julian Reschke, Eric Rescorla, Jim Schaad, and Magnus Westerlund.</t></section></back><!-- ##markdown-source:
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
kYTthk83ubQBPbpaO7OhWDu42vn10/XDbZKeX930P727mPZ77Y9r3MoWkpxR
J8ingNaBFBWcs7YGVAB8trcc7pDpX0AtTC09AVntLaf75M17+PR5Vaf7DMBB
vcHC+UQrl52mcIFcUdcGIaqWVTc1Bw2uMwQl97X7icMQN/BAlS7XSMl2rvU4
hKK0B/Ya2v7FpYI2SO/AJQIw615ZNSBw7gq5ol7W5tajWgmXGFAzO/8idjlQ
erPzPCiVl4d3n+PLLz8+9NKDyzff4p3m988d/Jcdfum9O736/uXkR3MrTnei
ab/56Xj73fAgHd2p6/le/9fSfBXfz09evTF7Pz7Oe13T2YrPrz7Mo5333z+d
zab55Y9Pqrg5/Pzru9uHr9/NSf/9weHHcm/75vvH8mY7coLPx6KwpnZo21mV
b4OsdYIqY8qJT/xXVailpsshRgjkx7pYCZNughrF8SYaIYrRwvVLxxxq9nQF
bUoBglCkETWHppGvCYP5OHLdZQvTot23XamYr86qbrugm5Ur4FzWEAEuNzCe
K7JBllBBxG8BARJ5PfFmDIdHnMhG4GiN5xAN4PoW1xL2pcItjLoCgzK8Viz1
/Ma1SbiKQZI+GGAdyQdb0wzFyeb1KquxBDVY24t8Fzye67O94T4nSc9WWQk8
hYHVTz4KgxUtnaMl8rVCzlj4hJfLUtDZQFdUzDIIZ54jVzyQPhtHtTFrJ6lq
RGuw/iimQJGunAS4weSmEA6hYadBJcBDpA/mCJCfyJOwo8mpA9E57jZtroBa
2tVQ11vIbZKEOhZ9n6X1e4J2QZCdUa7pZBHiHo/PttRVlhd6IZeTpbZu5YsQ
4g+LEFgKjaskyKIMWEvPRRSYX5Rp/L1cneP0RTNb2Hg2HwykEjwqasfw2Xtt
CacpvVmKh08nNtiJULkOn6N4HevhLLELdtE1VCw01sDgDZGWSRIP584WoIbb
KCwj6SHhr/WnM6tsB9JSGUmEjraja+GOGdHaK6q6Lk1LdTLOJOBs5EStghQy
dyXB7XToAKYLYCG5v1zYypZeqGrVEzZc37KG+S2xjvulmcS2i5fsLW2fcyZW
KY8wegncJHsk8fEF1X8MJ+asH8CXXL6Q4h7a6VKeDsXU9R9ZfZuoh3hSTgTH
MQ76apUrwxNU+OWiyee8HrHcoMtdCUu8qBe2GN2sNxSopXiiqYb5BbTU0SKc
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

--></rfc>