<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.17 (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-wang-ppm-dap-taskprov-00" category="info" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.15.0 -->
  <front>
    <title>In-band Task Provisioning for DAP</title>
    <seriesInfo name="Internet-Draft" value="draft-wang-ppm-dap-taskprov-00"/>
    <author fullname="Shan Wang">
      <organization>Apple Inc.</organization>
      <address>
        <email>shan_wang@apple.com</email>
      </address>
    </author>
    <author fullname="Christopher Patton">
      <organization>Cloudflare</organization>
      <address>
        <email>chrispatton+ietf@gmail.com</email>
      </address>
    </author>
    <date year="2022" month="October" day="12"/>
    <area>Security</area>
    <workgroup>Privacy Preserving Measurement</workgroup>
    <keyword>next generation</keyword>
    <keyword>unicorn</keyword>
    <keyword>sparkling distributed ledger</keyword>
    <abstract>
      <t>An extension for the Distributed Aggregation Protocol (DAP) is specified that
allows the task configuration to be provisioned in-band.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://wangshan.github.io/draft-wang-ppm-dap-taskprov/draft-wang-ppm-dap-taskprov.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-wang-ppm-dap-taskprov/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Privacy Preserving Measurement Working Group mailing list (<eref target="mailto:ppm@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/ppm/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/ppm/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/wangshan/draft-wang-ppm-dap-taskprov"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>The DAP protocol <xref target="DAP"/> enables secure aggregation
of a set of reports submitted by Clients. This process is centered around a
"task" that determines, among other things, the cryptographic scheme to use for
the secure computation (a Verifiable Distributed Aggregation Function
<xref target="VDAF"/>), how reports are partitioned into
batches, and privacy parameters such as the minimum size of each batch. Before a
task can be executed, it is necessary to first provision the Clients,
Aggregators, and Collector with the task's configuration.</t>
      <t>However, The core DAP specification does not define a mechanism for provisioning
tasks. this document describes a mechanism designed to fill this gap. Its key
feature is that task configuration is performed completely in-band. It relies
solely on the upload channel and the metadata carried by reports themselves.</t>
      <t>This method presumes the existence of a logical "task author" (written as
"Author" hereafter) who is capable of pushing configurations to Clients. All
parameters required by downstream entities (the Aggregators and Collector) are
encoded in an extension field of the Client's report. There is no need for
out-of-band task orchestration between Leader and Helpers, therefore making
adoption of DAP easier.</t>
      <t>The extension is designed with the same security and privacy considerations of
the core DAP protocol. The Author is not regarded as a trusted third party: It
is incumbent on all protocol participants to verify the task configuration
disseminated by the Author and opt-out if the parameters are deemed insufficient
for privacy. In particular, adopters of this extension should presume the
Author is under the adversary's control. In fact, we expect in a real-world
deployment that the Author may be implemented by one of the Aggregators or
Collector.</t>
      <t>Finally, the DAP protocol requires configuring the entities with a variety of
assets that are not task-specific, but are important for establishing
Client-Aggregator, Collector-Aggregator, and Aggregator-Aggregator
relationships. These include:</t>
      <ul spacing="normal">
        <li>The Collector's HPKE <xref target="RFC9180"/> configuration used by the Aggregators to
encrypt aggregate shares.</li>
        <li>Any assets required for authenticating HTTP requests.</li>
      </ul>
      <t>This specification does not specify a mechanism for provisioning these assets;
as in the core DAP protocol, these are presumed to be configured out-of-band.</t>
      <t>Note that we consider the VDAF verification key <xref target="VDAF"/>, used by the
Aggregators to aggregate reports, to be a task-specific asset. This document
specifies how to derive this key for a given task from a pre-shared secret,
which in turn is presumed to be configured out-of-band.</t>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <t>This document uses the same conventions for error handling as
<xref target="DAP"/>. In addition, this document extends the core
specification by adding the following error types:</t>
      <table>
        <thead>
          <tr>
            <th align="left">Type</th>
            <th align="left">Description</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">invalidTask</td>
            <td align="left">An Aggregator has opted out of the indicated task as described in <xref target="provisioning-a-task"/></td>
          </tr>
        </tbody>
      </table>
      <t>The terms used follow those described in <xref target="DAP"/>. The
following new terms are used:</t>
      <dl>
        <dt>Task configuration:</dt>
        <dd>
          <t>The non-secret parameters required to create a task in task provision.</t>
        </dd>
        <dt>Task author:</dt>
        <dd>
          <t>The entity that defines a task's configuration.</t>
        </dd>
      </dl>
    </section>
    <section anchor="the-taskprov-extension">
      <name>The "task_prov" Extension</name>
      <t>A new extension is defined:</t>
      <artwork><![CDATA[
enum {
    task_prov(0xff00),
    (65535)
} ExtensionType;
]]></artwork>
      <t>When the Client includes this extension with its report, the body of the
extension is a <tt>TaskConfig</tt> defined follows:</t>
      <artwork><![CDATA[
struct {
    /* Info specific for a task. */
    opaque task_info<1..2^8-1>;

    /* A list of URLs relative to which an Aggregator's API endpoints
    can be found. Defined in I-D.draft-ietf-ppm-dap-02. */
    Url aggregator_endpoints<1..2^16-1>;

    /* This determines the query type for batch selection and the
    properties that all batches for this task must have. Defined in
    I-D.draft-ietf-ppm-dap-02. */
    QueryConfig query_config;

    /* Time up to which Clients are allowed to upload to this task.
    Defined in I-D.draft-ietf-ppm-dap-02. */
    Time task_expiration;

    /* Determines the VDAF type and its config parameters. */
    VdafConfig vdaf_config;
} TaskConfig;
]]></artwork>
      <t>The purpose of <tt>TaskConfig</tt> is to define all parameters that are necessary for
configuring an Aggregator. It includes all the fields to be associated with a
task. (See task configuration in <xref target="DAP"/>.) In
addition to the Aggregator endpoints, maximum batch query count, and task
expiration, the structure includes an opaque <tt>task_info</tt> field that is specific
to a deployment. For example, this can be a string describing the purpose of
this task.</t>
      <t>The <tt>query_config</tt> field defines the DAP query configuration used to guide batch
selection. It is defined as follows:</t>
      <artwork><![CDATA[
struct {
    QueryType query_type;         /* I-D.draft-ietf-ppm-dap-02 */
    Duration time_precision;      /* I-D.draft-ietf-ppm-dap-02 */
    uint16 max_batch_query_count; /* I-D.draft-ietf-ppm-dap-02 */
    uint32 min_batch_size;
    select (QueryConfig.query_type) {
        case time_interval: Empty;
        case fixed_size:    uint32 max_batch_size;
    }
} QueryConfig;
]]></artwork>
      <t>The <tt>vdaf_config</tt> defines the configuration of the VDAF in use for this task. It
is structured as follows (codepoints are as defined in <xref target="VDAF"/>):</t>
      <artwork><![CDATA[
enum {
    prio3_aes128_count(0x00000000),
    prio3_aes128_sum(0x00000001),
    prio3_aes128_histogram(0x00000002),
    poplar1_aes128(0x00001000),
    (2^32-1)
} VdafType;

struct {
    DpConfig dp_config;
    VdafType vdaf_type;
    select (VdafConfig.vdaf_type) {
        case prio3_aes128_count: Empty;
        case prio3_aes128_sum: uint8; /* bit length of the summand */
        case prio3_aes128_histogram: uint64<8..2^24-8>; /* buckets */
        case poplar1_aes128: uint16; /* bit length of input string */
    }
} VdafConfig;
]]></artwork>
      <t>Apart from the VDAF-specific parameters, this structure includes a mechanism for
differential privacy (DP). This field, <tt>dp_config</tt>, is structured as follows:</t>
      <artwork><![CDATA[
enum {
    reserved(0), /* Reserved for testing purposes */
    none(1),
    (255)
} DpMechanism;

struct {
    DpMechanism dp_mechanism;
    select (DpConfig.dp_mechanism) {
        case none: Empty;
    }
} DpConfig;
]]></artwork>
      <ul empty="true">
        <li>
          <t>OPEN ISSUE: Should spell out definition of <tt>DpConfig</tt> for various differential
privacy mechanisms and parameters. See issue
<eref target="https://github.com/cfrg/draft-irtf-cfrg-vdaf/issues/94">#94</eref> for discussion.</t>
        </li>
      </ul>
      <t>The definition of <tt>Time</tt>, <tt>Duration</tt>, <tt>Url</tt>, and <tt>QueryType</tt> follow those in
<xref target="DAP"/>.</t>
      <section anchor="construct-task-id">
        <name>Deriving the Task ID</name>
        <t>When using the <tt>task_prov</tt> extension, the task ID is computed as follows:</t>
        <artwork><![CDATA[
task_id = HKDF-Extract(task_prov_salt, task_config)
]]></artwork>
        <t>where <tt>task_config</tt> is the <tt>TaskConfig</tt> structure disseminated by the Author.
String <tt>task_prov_salt</tt> is defined to be the SHA-256 hash of the octet string
"dap-taskprov-00". Function HKDF-Extract() denotes the HKDF extraction function
defined in <xref target="RFC5869"/> instantiated with SHA-256.</t>
      </section>
      <section anchor="vdaf-verify-key">
        <name>Deriving the VDAF Verification Key</name>
        <t>When a Leader and Helper implement the <tt>task_prov</tt> extension in the context of a
particular DAP deployment, they <bcp14>SHOULD</bcp14> compute the shared VDAF verification key
<xref target="VDAF"/> as described in this section.</t>
        <t>The Aggregators are presumed to have securely exchanged a pre-shared secret
out-of-band. The length of this secret <bcp14>MUST</bcp14> be 32 bytes. Let us denote this
secret by <tt>verify_key_init</tt>.</t>
        <t>Let <tt>VERIFY_KEY_SIZE</tt> denote the length of the verification key for the VDAF
indicated by the task configuration. (See <xref target="VDAF"/>, Section 5.)</t>
        <t>The VDAF verification key used for the task is computed as follows:</t>
        <artwork><![CDATA[
verify_key = HKDF-Expand(
    HKDF-Extract(
        task_prov_salt,  # salt
        verify_key_init, # IKM
    ),
    task_id,             # info
    VERIFY_KEY_SIZE,     # L
)
]]></artwork>
        <t>where <tt>task_prov_salt</tt> and <tt>task_id</tt> are as defined in <xref target="construct-task-id"/>.
Functions HKDF-Extract() and HKDF-Expand() are as defined in <xref target="RFC5869"/>. Both
functions are instantiated with SHA-256.</t>
      </section>
      <section anchor="provisioning-a-task">
        <name>Configuring a Task</name>
        <t>Prior to participating in a task, each protocol participant must determine if
the <tt>TaskConfig</tt> disseminated by the Author can be configured. The participant
is said to "opt in" to the task if the derived task ID (see
<xref target="construct-task-id"/>) corresponds to an already configured task or the task ID
is unrecognized and therefore corresponds to a new task.</t>
        <t>A protocol participant <bcp14>MAY</bcp14> "opt out" of a task if:</t>
        <ol spacing="normal" type="1"><li>The derived task ID corresponds to an already configured task, but the task
configuration disseminated by the Author does not match the existing
configuration.</li>
          <li>The VDAF, DP, or query configuration is deemed insufficient for privacy.</li>
          <li>A secure connection to one or both of the Aggregator endpoints could not be
established.</li>
          <li>The task lifetime is too long.</li>
        </ol>
        <t>A protocol participant <bcp14>MUST</bcp14> opt out if the task has expired.</t>
        <t>The behavior of each protocol participant is determined by whether or not they
opt in to a task.</t>
      </section>
      <section anchor="hpke-config-no-task-id">
        <name>Supporting HPKE Configurations Independent of Tasks</name>
        <t>In DAP, Clients need to know the HPKE configuration of each Aggregator before
sending reports. (See HPKE Configuration Request in
<xref target="DAP"/>.) However, in a DAP deployment that supports
the <tt>task_prov</tt> extension, if a Client requests the Aggregator's HPKE
configuration with the task ID computed as described in <xref target="construct-task-id"/>,
the task ID may not be configured in the Aggregator yet, because the Aggregator
is still waiting for the first Client report with the <tt>task_prov</tt> extension
to arrive.</t>
        <t>To mitigate this issue, if an Aggregator wants to support the <tt>task_prov</tt>
extension, it <bcp14>SHOULD</bcp14> choose which HPKE configuration to advertise to Clients
independent of the task ID. It <bcp14>MAY</bcp14> continue to support per-task HPKE
configurations for other tasks that are configured out-of-band.</t>
        <t>In addition, if a Client wants to include the <tt>task_prov</tt> extension in its
report, it <bcp14>SHOULD NOT</bcp14> specify the <tt>task_id</tt> parameter when requesting the HPKE
configuration from an Aggregator.</t>
      </section>
    </section>
    <section anchor="client-behavior">
      <name>Client Behavior</name>
      <t>Upon receiving a <tt>TaskConfig</tt> from the Author, the Client decides whether to
opt in to the task as described in <xref target="provisioning-a-task"/>. If the Client opts
out, it <bcp14>MUST</bcp14> not attempt to upload reports for the task.</t>
      <ul empty="true">
        <li>
          <t>OPEN ISSUE: In case of opt-out, would it be useful to specify how to report
this to the Author?</t>
        </li>
      </ul>
      <t>Once the client opts in to a task, it <bcp14>MAY</bcp14> begin uploading reports for the task.
Each report <bcp14>MUST</bcp14> offer the <tt>task_prov</tt> extension with the <tt>TaskConfig</tt>
disseminated by the Author as the extension payload. In addition, the report's
task ID <bcp14>MUST</bcp14> be computed as described in <xref target="construct-task-id"/>.</t>
    </section>
    <section anchor="leader-behavior">
      <name>Leader Behavior</name>
      <section anchor="upload-protocol">
        <name>Upload Protocol</name>
        <t>Upon receiving a <tt>Report</tt> from the Client with the <tt>task_prov</tt> extension, if the
Leader does not support the extension, it <bcp14>MUST</bcp14> ignore the extension payload and
proceed as usual. In particular, if the task ID is not recognized, then it <bcp14>MUST</bcp14>
abort the upload request with "unrecognizedTask".</t>
        <ul empty="true">
          <li>
            <t>NOTE: This behavior assumes unrecognized extensions are to be ignored. See
<eref target="https://github.com/ietf-wg-ppm/draft-ietf-ppm-dap/issues/334">#334</eref> for
discussion.</t>
          </li>
        </ul>
        <t>Otherwise, if the Leader does support the extension, it first attempts to parse
the payload. If parsing fails, it <bcp14>MUST</bcp14> abort with "unrecognizedMessage".</t>
        <t>Next, it checks that the task ID included in the report matches the task ID
derived from the extension payload as specified in <xref target="construct-task-id"/>. If the
task ID does not match, then the Leader <bcp14>MUST</bcp14> abort with "unrecognizedTask".</t>
        <t>The Leader then decides whether to opt in to the task as described in
<xref target="provisioning-a-task"/>. If it opts out, it <bcp14>MUST</bcp14> abort the upload request with
"invalidTask".</t>
        <ul empty="true">
          <li>
            <t>OPEN ISSUE: In case of opt-out, would it be useful to specify how to report
this to the Author?</t>
          </li>
        </ul>
        <t>Finally, once the Leader has opted in to the task, it completes the upload
request as usual.</t>
      </section>
      <section anchor="aggregate-protocol">
        <name>Aggregate Protocol</name>
        <t>When the Leader opts in to a task, it derives the VDAF verification key for that
task as described in <xref target="vdaf-verify-key"/>.</t>
      </section>
      <section anchor="collect-protocol">
        <name>Collect Protocol</name>
        <t>The Collector might issue a collect request for a task provisioned by the
<tt>task_prov</tt> extension prior to opting in to the task. In this case, the Leader
would need to abort the collect request with "unrecognizedTask". When it does
so, it <bcp14>SHOULD</bcp14> also include a "Retry-After" header in its HTTP response
indicating the time after which the Collector should retry its request.</t>
        <ul empty="true">
          <li>
            <t>TODO: Find RFC reference for "Retry-After".</t>
          </li>
        </ul>
        <ul empty="true">
          <li>
            <t>OPEN ISSUE: This semantics is awkward, as there's no way for the Leader to
distinguish between Collectors who support the extension and those that don't.
We should consider adding an extension field to <tt>CollectReq</tt>.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="helper-behavior">
      <name>Helper Behavior</name>
      <t>Upon receiving of an <tt>AggregateInitializeReq</tt> from the Leader, If the Helper
does not support the <tt>task_prov</tt> extension, it <bcp14>MUST</bcp14> ignore the extension
payload and process each <tt>ReportShare</tt> as usual. In particular, if the Helper
does not recognize the task ID, it <bcp14>MUST</bcp14> abort the aggregate request with error
"unrecognizedTask". Otherwise, if the Helper supports the extension, it proceeds
as follows.</t>
      <t>First, the Helper checks that all report shares carried by the request pertain
to the same task. In particular, it checks that:</t>
      <ol spacing="normal" type="1"><li>Either all report shares have the <tt>task_prov</tt> extension or none do. If not
the Helper <bcp14>MUST</bcp14> abort with "unrecognizedMessage".</li>
        <li>All report shares with the <tt>task_prov</tt> extension have the same extension payload. If
not, the Helper <bcp14>MUST</bcp14> abort with "unrecognizedMessage".</li>
      </ol>
      <ul empty="true">
        <li>
          <t>OPEN ISSUE: This awkward input validation step could be skipped if
<tt>AggregateInitializeReq</tt> had an extension field that we could stick the task
configuration in. This would also save significantly in overhead.</t>
        </li>
      </ul>
      <t>Next, the Helper attempts to parse the extension payload. If parsing fails, it
<bcp14>MUST</bcp14> abort with "unrecognizedMessage".</t>
      <t>Next, the Helper checks that the task ID included in the message matches the
task ID derived from the extension payload as defined in <xref target="construct-task-id"/>.
If not, the Helper <bcp14>MUST</bcp14> abort with "unrecognizedTask".</t>
      <t>Next, the Helper decides whether to opt in to the task as described in
<xref target="provisioning-a-task"/>. If it opts out, it <bcp14>MUST</bcp14> abort the aggregate request
with "invalidTask".</t>
      <ul empty="true">
        <li>
          <t>OPEN ISSUE: In case of opt-out, would it be useful to specify how to report
this to the Author?</t>
        </li>
      </ul>
      <t>Finally, the Helper completes the aggregate initialize request as usual, deriving the VDAF
verification key for the task as described in <xref target="vdaf-verify-key"/>.</t>
    </section>
    <section anchor="collector-behavior">
      <name>Collector Behavior</name>
      <t>Upon receiving a <tt>TaskConfig</tt> from the Author, the Collector first decides
whether to opt in to the task as described in <xref target="provisioning-a-task"/>. If the
Collector opts out, it <bcp14>MUST</bcp14> not attempt to upload reports for the task.</t>
      <t>Otherwise, once opted in, the Collector <bcp14>MAY</bcp14> begin to issue collect requests for
the task. The task ID for each request <bcp14>MUST</bcp14> be derived from the <tt>TaskConfig</tt> as
described in <xref target="provisioning-a-task"/>.</t>
      <t>If the Leader responds to a collect request with an "unrecognizedTask" error,
but the HTTP response includes a "Retry-After" header, the Collector <bcp14>SHOULD</bcp14>
retry its collect request after waiting for the duration indicated by the
header.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>This document has the same security and privacy considerations as the core DAP
specification. In particular, for privacy we consider the Author to be under
control of the adversary. It is therefore incumbent on protocol participants to
verify the privacy parameters of a task before opting in.</t>
      <t>In addition, the <tt>task_prov</tt> extension is designed to maintain robustness even
when the Author misbehaves, or is merely misconfigured. In particular, if the
Clients and Aggregators have an inconsistent view of the the task configuration,
then aggregation of reports will fail. This is guaranteed by the binding of
report metadata to encrypted input shares provided by HPKE encryption.</t>
      <ul empty="true">
        <li>
          <t>OPEN ISSUE: What if the Collector and Aggregators don't agree on the task
configuration? Decryption should fail.</t>
        </li>
      </ul>
      <t>A malicious coalition of Clients might attempt to pollute an Aggregator's
long-term storage by uploading reports for many (thousands or perhaps millions)
of distinct tasks. While this does not directly impact tasks used by honest
Clients, it does present a Denial-of-Service risk for the Aggregators
themselves.</t>
      <ul empty="true">
        <li>
          <t>TODO: Suggest mitigations for this. Perhaps the Aggregators need to keep track
of how many tasks in total they are opted in to?</t>
        </li>
      </ul>
      <t>The HKDF <xref target="RFC5869"/> extraction function is used to derive the task ID. An
extractor is not required for security. In fact, a collision-resistant hash
function would be sufficient for our application. The choice to use an extractor
is conservative in that it allows the derived task ID to be treated as
pseudorandom whenever the task configuration itself has high min-entropy from
the perspective of the adversary. However, whether this is the case depends on
the specific threat model. We note that, in the the threat model for the core
DAP protocol, the task configuration is known to the attacker and thus has no
entropy.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <ul empty="true">
        <li>
          <t>NOTE(cjpatton) Eventually we'll have IANA considerations (at the very least
we'll need to allocate a codepoint) but we can leave this blank for now.</t>
        </li>
      </ul>
    </section>
  </middle>
  <back>
    <references>
      <name>Normative References</name>
      <reference anchor="DAP">
        <front>
          <title>Distributed Aggregation Protocol for Privacy Preserving Measurement</title>
          <author fullname="Tim Geoghegan" initials="T." surname="Geoghegan">
            <organization>ISRG</organization>
          </author>
          <author fullname="Christopher Patton" initials="C." surname="Patton">
            <organization>Cloudflare</organization>
          </author>
          <author fullname="Eric Rescorla" initials="E." surname="Rescorla">
            <organization>Mozilla</organization>
          </author>
          <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
            <organization>Cloudflare</organization>
          </author>
          <date day="22" month="September" year="2022"/>
          <abstract>
            <t>   There are many situations in which it is desirable to take
   measurements of data which people consider sensitive.  In these
   cases, the entity taking the measurement is usually not interested in
   people's individual responses but rather in aggregated data.
   Conventional methods require collecting individual responses and then
   aggregating them, thus representing a threat to user privacy and
   rendering many such measurements difficult and impractical.  This
   document describes a multi-party distributed aggregation protocol
   (DAP) for privacy preserving measurement (PPM) which can be used to
   collect aggregate data without revealing any individual user's data.

            </t>
          </abstract>
        </front>
        <seriesInfo name="Internet-Draft" value="draft-ietf-ppm-dap-02"/>
      </reference>
      <reference anchor="VDAF">
        <front>
          <title>Verifiable Distributed Aggregation Functions</title>
          <author fullname="Richard Barnes" initials="R." surname="Barnes">
            <organization>Cisco</organization>
          </author>
          <author fullname="Christopher Patton" initials="C." surname="Patton">
            <organization>Cloudflare</organization>
          </author>
          <author fullname="Phillipp Schoppmann" initials="P." surname="Schoppmann">
            <organization>Google</organization>
          </author>
          <date day="24" month="August" year="2022"/>
          <abstract>
            <t>   This document describes Verifiable Distributed Aggregation Functions
   (VDAFs), a family of multi-party protocols for computing aggregate
   statistics over user measurements.  These protocols are designed to
   ensure that, as long as at least one aggregation server executes the
   protocol honestly, individual measurements are never seen by any
   server in the clear.  At the same time, VDAFs allow the servers to
   detect if a malicious or misconfigured client submitted an input that
   would result in an incorrect aggregate result.

            </t>
          </abstract>
        </front>
        <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-vdaf-03"/>
      </reference>
      <reference anchor="RFC9180">
        <front>
          <title>Hybrid Public Key Encryption</title>
          <author fullname="R. Barnes" initials="R." surname="Barnes">
            <organization/>
          </author>
          <author fullname="K. Bhargavan" initials="K." surname="Bhargavan">
            <organization/>
          </author>
          <author fullname="B. Lipp" initials="B." surname="Lipp">
            <organization/>
          </author>
          <author fullname="C. Wood" initials="C." surname="Wood">
            <organization/>
          </author>
          <date month="February" year="2022"/>
          <abstract>
            <t>This document describes a scheme for hybrid public key encryption (HPKE). This scheme provides a variant of public key encryption of arbitrary-sized plaintexts for a recipient public key. It also includes three authenticated variants, including one that authenticates possession of a pre-shared key and two optional ones that authenticate possession of a key encapsulation mechanism (KEM) private key. HPKE works for any combination of an asymmetric KEM, key derivation function (KDF), and authenticated encryption with additional data (AEAD) encryption function. Some authenticated variants may not be supported by all KEMs. We provide instantiations of the scheme using widely used and efficient primitives, such as Elliptic Curve Diffie-Hellman (ECDH) key agreement, HMAC-based key derivation function (HKDF), and SHA2.</t>
            <t>This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="9180"/>
        <seriesInfo name="DOI" value="10.17487/RFC9180"/>
      </reference>
      <reference anchor="RFC2119">
        <front>
          <title>Key words for use in RFCs to Indicate Requirement Levels</title>
          <author fullname="S. Bradner" initials="S." surname="Bradner">
            <organization/>
          </author>
          <date month="March" year="1997"/>
          <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="RFC8174">
        <front>
          <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
          <author fullname="B. Leiba" initials="B." surname="Leiba">
            <organization/>
          </author>
          <date month="May" year="2017"/>
          <abstract>
            <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
          </abstract>
        </front>
        <seriesInfo name="BCP" value="14"/>
        <seriesInfo name="RFC" value="8174"/>
        <seriesInfo name="DOI" value="10.17487/RFC8174"/>
      </reference>
      <reference anchor="RFC5869">
        <front>
          <title>HMAC-based Extract-and-Expand Key Derivation Function (HKDF)</title>
          <author fullname="H. Krawczyk" initials="H." surname="Krawczyk">
            <organization/>
          </author>
          <author fullname="P. Eronen" initials="P." surname="Eronen">
            <organization/>
          </author>
          <date month="May" year="2010"/>
          <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>
    </references>
    <section numbered="false" anchor="contributors">
      <name>Contributors</name>
      <ul empty="true">
        <li>
          <t>CP: Unless the order is meaningful, consider alphabetizing these names.</t>
        </li>
      </ul>
      <t>Junye Chen
Apple Inc.
junyec@apple.com</t>
      <t>Suman Ganta
Apple Inc.
sganta2@apple.com</t>
      <t>Gianni Parsa
Apple Inc.
gianni_parsa@apple.com</t>
      <t>Michael Scaria
Apple Inc.
mscaria@apple.com</t>
      <t>Kunal Talwar
Apple Inc.
ktalwar@apple.com</t>
      <t>Christopher A. Wood
Cloudflare
caw@heapingbits.net</t>
    </section>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
