<?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-02" category="info" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.15.2 -->
  <front>
    <title>In-band Task Provisioning for DAP</title>
    <seriesInfo name="Internet-Draft" value="draft-wang-ppm-dap-taskprov-02"/>
    <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="November" day="16"/>
    <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. */
    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 = SHA-256(task_config)
]]></artwork>
        <t>where <tt>task_config</tt> is the <tt>TaskConfig</tt> structure disseminated by the Author.
Function SHA-256() is as defined in <xref target="SHS"/>.</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> is defined to be the SHA-256 hash of the octet string
"dap-taskprov" and <tt>task_id</tt> is 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="SHS">
        <front>
          <title>Secure Hash Standard</title>
          <author>
            <organization/>
          </author>
          <date year="2015" month="August" day="04"/>
        </front>
        <seriesInfo name="FIPS PUB 180-4" value=""/>
      </reference>
      <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>
