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

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

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

<rfc ipr="trust200902" docName="draft-ietf-webpush-encryption-03" category="std">

  <front>
    <title abbrev="Web Push Encryption">Message Encryption for Web Push</title>

    <author initials="M." surname="Thomson" fullname="Martin Thomson">
      <organization>Mozilla</organization>
      <address>
        <email>martin.thomson@gmail.com</email>
      </address>
    </author>

    <date year="2016"/>

    
    
    

    <abstract>


<t>A message encryption scheme is described for the Web Push protocol.  This scheme
provides confidentiality and integrity for messages sent from an Application
Server to a User Agent.</t>



    </abstract>


  </front>

  <middle>


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

<t>The Web Push protocol <xref target="I-D.ietf-webpush-protocol"></xref> is an intermediated
protocol by necessity.  Messages from an Application Server are delivered to a
User Agent via a Push Service.</t>

<figure><artwork><![CDATA[
 +-------+           +--------------+       +-------------+
 |  UA   |           | Push Service |       | Application |
 +-------+           +--------------+       +-------------+
     |                      |                      |
     |        Setup         |                      |
     |<====================>|                      |
     |           Provide Subscription              |
     |-------------------------------------------->|
     |                      |                      |
     :                      :                      :
     |                      |     Push Message     |
     |    Push Message      |<---------------------|
     |<---------------------|                      |
     |                      |                      |
]]></artwork></figure>

<t>This document describes how messages sent using this protocol can be secured
against inspection, modification and falsification by a Push Service.</t>

<t>Web Push messages are the payload of an HTTP message <xref target="RFC7230"></xref>.  These messages
are encrypted using an encrypted content encoding
<xref target="I-D.ietf-httpbis-encryption-encoding"></xref>.  This document describes how this
content encoding is applied and describes a recommended key management scheme.</t>

<t>For efficiency reasons, multiple users of Web Push often share a central agent
that aggregates push functionality.  This agent can enforce the use of this
encryption scheme by applications that use push messaging.  An agent that only
delivers messages that are properly encrypted strongly encourages the end-to-end
protection of messages.</t>

<t>A web browser that implements the Web Push API <xref target="API"></xref> can enforce the use of
encryption by forwarding only those messages that were properly encrypted.</t>

<section anchor="notational-conventions" title="Notational Conventions">

<t>The words “MUST”, “MUST NOT”, “SHOULD”, and “MAY” are used in this document.
It’s not shouting, when they are capitalized, they have the special meaning
described in <xref target="RFC2119"></xref>.</t>

</section>
</section>
<section anchor="key-generation-and-agreement" title="Key Generation and Agreement">

<t>For each new subscription that the User Agent generates for an application, it
also generates an asymmetric key pair for use in Diffie-Hellman (DH) <xref target="DH"></xref> or
elliptic-curve Diffie-Hellman (ECDH) <xref target="ECDH"></xref>.  The public key for this key pair
can then be distributed by the application to the Application Server along with
the URI of the subscription.  The private key MUST remain secret.</t>

<t>This key pair is used with the Diffie-Hellman key exchange as described in
Section 4.2 of <xref target="I-D.ietf-httpbis-encryption-encoding"></xref>.</t>

<t>A User Agent MUST generate and provide a public key for the scheme described in
<xref target="mti"/>.</t>

<t>The public key MUST be accompanied by a key identifier that can be used in the
“keyid” parameter to identify which key is in use.  Key identifiers need only be
unique within the context of a subscription.</t>

<section anchor="diffie-hellman-group-information" title="Diffie-Hellman Group Information">

<t>As described in <xref target="I-D.ietf-httpbis-encryption-encoding"></xref>, use of Diffie-Hellman
for key agreement requires that the receiver provide clear information about its
chosen group and the format for the “dh” parameter with each potential sender.</t>

<t>This document only describes a single ECDH group and point format, described in
<xref target="mti"/>.  A specification that defines alternative groups or formats MUST
provide a means of indicating precisely which group and format is in use for
every public key that is provided.</t>

</section>
<section anchor="key-distribution" title="Key Distribution">

<t>The application using the subscription distributes the key identifier and public
key along with other subscription information, such as the subscription URI and
expiration time.</t>

<t>The communication medium by which an application distributes the key identifier
and public key MUST be confidentiality protected for the reasons described in
<xref target="I-D.ietf-webpush-protocol"></xref>.  Most applications that use push messaging have a
pre-existing relationship with an Application Server.  Any existing
communication mechanism that is authenticated and provides confidentiality and
integrity, such as HTTPS <xref target="RFC2818"></xref>, is sufficient.</t>

</section>
<section anchor="auth" title="Push Message Authentication">

<t>To ensure that push messages are correctly authenticated, a symmetric
authentication secret is added to the information generated by a User Agent.
The authentication secret is mixed into the key derivation process described in
<xref target="I-D.ietf-httpbis-encryption-encoding"></xref>.</t>

<t>The authentication secret ensures that exposure or leakage of the DH public
key - which, as a public key, is not necessarily treated as a secret - does not
enable an adversary to generate valid push messages.</t>

<t>A User Agent MUST generate and provide a hard to guess sequence of octets that
is used for authentication of push messages.  This SHOULD be generated by a
cryptographically strong random number generator <xref target="RFC4086"></xref> and be at least 16
octets long.</t>

</section>
</section>
<section anchor="encryption" title="Message Encryption">

<t>An Application Server that has the public key, group and format information plus
the authentication secret can encrypt a message for the User Agent.</t>

<section anchor="derivation" title="Key Derivation">

<t>The Application Server generates a new DH or ECDH key pair in the same group as
the value generated by the User Agent.</t>

<t>From the newly generated key pair, the Application Server performs a DH or ECDH
computation with the public key provided by the User Agent to find the input
keying material for key derivation.  The Application Server then generates 16
octets of salt that is unique to the message.  A random <xref target="RFC4086"></xref> salt is
acceptable.</t>

<t>Web push uses the authentication secret defined in Section 4.3 of
<xref target="I-D.ietf-httpbis-encryption-encoding"></xref>.  This authentication secret (see
<xref target="auth"/>) is generated by the user agent and shared with the application server.</t>

</section>
<section anchor="c-e" title="Push Message Content Encryption">

<t>The Application Server then encrypts the payload.  Header fields are populated
with base64url encoded <xref target="RFC7515"></xref> values:</t>

<t><list style="symbols">
  <t>the salt is added to the <spanx style="verb">salt</spanx> parameter of the Encryption header field; and</t>
  <t>the public key for its DH or ECDH key pair is placed in the <spanx style="verb">dh</spanx> parameter of
the Crypto-Key header field.</t>
</list></t>

<t>An application server MUST encrypt a push message with a single record.  This
allows for a minimal receiver implementation that handles a single record.  If
the message is 4096 octets or longer, the <spanx style="verb">rs</spanx> parameter MUST be set to a value
that is longer than the encrypted push message length.</t>

<t>Note that a push service is not required to support more than 4096 octets of
payload body, which equates to 4077 octets of cleartext, so the <spanx style="verb">rs</spanx> parameter
can be omitted for messages that fit within this limit.</t>

<t>An application server MUST NOT use other content encodings for push messages.
In particular, content encodings that compress could result in leaking of push
message contents.  The Content-Encoding header field therefore has exactly one
value, which is <spanx style="verb">aesgcm128</spanx>.  Multiple <spanx style="verb">aesgcm128</spanx> values are not permitted.</t>

<t>An application server MUST include exactly one entry in the Encryption field,
and at most one entry having a <spanx style="verb">dh</spanx> parameter in the Crypto-Key field. This
allows the <spanx style="verb">keyid</spanx> parameter to be omitted from both header fields.</t>

<t>An application server MUST NOT include an <spanx style="verb">aesgcm128</spanx> parameter in the
Encryption header field.</t>

</section>
</section>
<section anchor="message-decryption" title="Message Decryption">

<t>A User Agent decrypts messages are decrypted as described in
<xref target="I-D.ietf-httpbis-encryption-encoding"></xref>.  The authentication secret described in
<xref target="derivation"/> is used in key derivation.</t>

<t>Note that the value of the “keyid” parameter is used to identify the correct
share, if there are multiple values for the Crypto-Key header field.</t>

<t>A receiver is not required to support multiple records.  Such a receiver MUST
check that the record size is large enough to contain the entire payload body in
a single record.  The <spanx style="verb">rs</spanx> parameter MUST NOT be exactly equal to the length of
the payload body minus the length of the authentication tag (16 octets); that
length indicates that the message has been truncated.</t>

</section>
<section anchor="mti" title="Mandatory Group and Public Key Format">

<t>User Agents MUST expose an elliptic curve Diffie-Hellman share on the P-256
curve <xref target="FIPS186"></xref>.</t>

<t>Public keys, such as are encoded into the “dh” parameter, MUST be in the form of
an uncompressed point as described in <xref target="X.692"></xref> (that is, a 65 octet sequence that
starts with a 0x04 octet).</t>

<t>The label for this curve is the string “P-256” encoded in ASCII (that is, the
octet sequence 0x50, 0x2d, 0x32, 0x35, 0x36).</t>

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

<t>This document has no IANA actions.</t>

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

<t>The security considerations of <xref target="I-D.ietf-httpbis-encryption-encoding"></xref> describe
the limitations of the content encoding.  In particular, any HTTP header fields
are not protected by the content encoding scheme.  A User Agent MUST consider
HTTP header fields to have come from the Push Service.  An application on the
User Agent that uses information from header fields to alter their processing of
a push message is exposed to a risk of attack by the Push Service.</t>

<t>The timing and length of communication cannot be hidden from the Push Service.
While an outside observer might see individual messages intermixed with each
other, the Push Service will see what Application Server is talking to which
User Agent, and the subscription that is used.  Additionally, the length of
messages could be revealed unless the padding provided by the content encoding
scheme is used to obscure length.</t>

</section>


  </middle>

  <back>

    <references title='Normative References'>





<reference anchor='I-D.ietf-webpush-protocol'>
<front>
<title>Generic Event Delivery Using HTTP Push</title>

<author initials='M' surname='Thomson' fullname='Martin Thomson'>
    <organization />
</author>

<author initials='E' surname='Damaggio' fullname='Elio Damaggio'>
    <organization />
</author>

<author initials='B' surname='Raymor' fullname='Brian Raymor'>
    <organization />
</author>

<date month='June' day='14' year='2016' />

<abstract><t>A simple protocol for the delivery of realtime events to user agents is described.  This scheme uses HTTP/2 server push.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-webpush-protocol-06' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-webpush-protocol-06.txt' />
<format type='PDF'
        target='http://www.ietf.org/internet-drafts/draft-ietf-webpush-protocol-06.pdf' />
</reference>



<reference anchor='I-D.ietf-httpbis-encryption-encoding'>
<front>
<title>Encrypted Content-Encoding for HTTP</title>

<author initials='M' surname='Thomson' fullname='Martin Thomson'>
    <organization />
</author>

<date month='June' day='29' year='2016' />

<abstract><t>This memo introduces a content-coding for HTTP that allows message payloads to be encrypted.  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/ .  Working Group information can be found at http://httpwg.github.io/ ; source code and issues list for this draft can be found at https://github.com/httpwg/http-extensions/labels/encryption .</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-httpbis-encryption-encoding-02' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-httpbis-encryption-encoding-02.txt' />
</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='RFC4086' target='http://www.rfc-editor.org/info/rfc4086'>
<front>
<title>Randomness Requirements for Security</title>
<author initials='D.' surname='Eastlake 3rd' fullname='D. Eastlake 3rd'><organization /></author>
<author initials='J.' surname='Schiller' fullname='J. Schiller'><organization /></author>
<author initials='S.' surname='Crocker' fullname='S. Crocker'><organization /></author>
<date year='2005' month='June' />
<abstract><t>Security systems are built on strong cryptographic algorithms that foil pattern analysis attempts.  However, the security of these systems is dependent on generating secret quantities for passwords, cryptographic keys, and similar quantities.  The use of pseudo-random processes to generate secret quantities can result in pseudo-security. A sophisticated attacker may find it easier to reproduce the environment that produced the secret quantities and to search the resulting small set of possibilities than to locate the quantities in the whole of the potential number space.</t><t>Choosing random quantities to foil a resourceful and motivated adversary is surprisingly difficult.  This document points out many pitfalls in using poor entropy sources or traditional pseudo-random number generation techniques for generating such quantities.  It recommends the use of truly random hardware techniques and shows that the existing hardware on many systems can be used for this purpose. It provides suggestions to ameliorate the problem when a hardware solution is not available, and it gives examples of how large such quantities need to be for some applications.  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='106'/>
<seriesInfo name='RFC' value='4086'/>
<seriesInfo name='DOI' value='10.17487/RFC4086'/>
</reference>


<reference anchor="DH" >
  <front>
    <title>New Directions in Cryptography</title>
    <author initials="W." surname="Diffie">
      <organization></organization>
    </author>
    <author initials="M." surname="Hellman">
      <organization></organization>
    </author>
    <date year="1977" month="June"/>
  </front>
  <seriesInfo name="IEEE Transactions on Information Theory, V.IT-22 n.6" value=""/>
</reference>
<reference anchor="ECDH" target="http://www.secg.org/">
  <front>
    <title>Elliptic Curve Cryptography</title>
    <author >
      <organization>SECG</organization>
    </author>
    <date year="2000"/>
  </front>
  <seriesInfo name="SEC 1" value=""/>
</reference>
<reference anchor="FIPS186" >
  <front>
    <title>Digital Signature Standard (DSS)</title>
    <author >
      <organization>National Institute of Standards and Technology (NIST)</organization>
    </author>
    <date year="2013" month="July"/>
  </front>
  <seriesInfo name="NIST PUB 186-4" value=""/>
</reference>
<reference anchor="X.692" >
  <front>
    <title>Public Key Cryptography For The Financial Services Industry: The Elliptic Curve Digital Signature Algorithm (ECDSA)</title>
    <author >
      <organization>ANSI</organization>
    </author>
    <date year="1998"/>
  </front>
  <seriesInfo name="ANSI X9.62" value=""/>
</reference>


    </references>

    <references title='Informative References'>





<reference  anchor='RFC2818' target='http://www.rfc-editor.org/info/rfc2818'>
<front>
<title>HTTP Over TLS</title>
<author initials='E.' surname='Rescorla' fullname='E. Rescorla'><organization /></author>
<date year='2000' month='May' />
<abstract><t>This memo describes how to use Transport Layer Security (TLS) to secure Hypertext Transfer Protocol (HTTP) connections over the Internet.  This memo provides information for the Internet community.</t></abstract>
</front>
<seriesInfo name='RFC' value='2818'/>
<seriesInfo name='DOI' value='10.17487/RFC2818'/>
</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='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 &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="API" target="https://w3c.github.io/push-api/">
  <front>
    <title>Web Push API</title>
    <author initials="M." surname="van Ouwerkerk">
      <organization></organization>
    </author>
    <author initials="M." surname="Thomson">
      <organization></organization>
    </author>
    <date year="2015"/>
  </front>
</reference>


    </references>



  </back>
</rfc>

