<?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.7.24 (Ruby 3.2.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="pre5378Trust200902" docName="draft-ietf-cose-hpke-11" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.28.0 -->
  <front>
    <title abbrev="COSE HPKE">Use of Hybrid Public-Key Encryption (HPKE) with CBOR Object Signing and Encryption (COSE)</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-cose-hpke-11"/>
    <author initials="H." surname="Tschofenig" fullname="Hannes Tschofenig">
      <organization abbrev="H-BRS">University of Applied Sciences Bonn-Rhein-Sieg</organization>
      <address>
        <postal>
          <country>Germany</country>
        </postal>
        <email>hannes.tschofenig@gmx.net</email>
      </address>
    </author>
    <author initials="O." surname="Steele" fullname="Orie Steele" role="editor">
      <organization>Transmute</organization>
      <address>
        <postal>
          <country>United States</country>
        </postal>
        <email>orie@transmute.industries</email>
      </address>
    </author>
    <author initials="D." surname="Ajitomi" fullname="Daisuke Ajitomi">
      <organization>bibital</organization>
      <address>
        <postal>
          <country>Japan</country>
        </postal>
        <email>dajiaji@gmail.com</email>
      </address>
    </author>
    <author initials="L." surname="Lundblade" fullname="Laurence Lundblade">
      <organization>Security Theory LLC</organization>
      <address>
        <postal>
          <country>United States</country>
        </postal>
        <email>lgl@securitytheory.com</email>
      </address>
    </author>
    <date year="2025" month="March" day="02"/>
    <area>Security</area>
    <workgroup>COSE</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 62?>

<t>This specification defines hybrid public-key encryption (HPKE) for use with 
CBOR Object Signing and Encryption (COSE). HPKE offers a variant of
public-key encryption of arbitrary-sized plaintexts for a recipient public key.</t>
      <t>HPKE works for any combination of an asymmetric key encapsulation mechanism (KEM),
key derivation function (KDF), and authenticated encryption with
additional data (AEAD) function. Authentication for HPKE in COSE is
provided by COSE-native security mechanisms or by one of the authenticated
variants of HPKE.</t>
      <t>This document defines the use of the HPKE with COSE.</t>
    </abstract>
  </front>
  <middle>
    <?line 76?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Hybrid public-key encryption (HPKE) <xref target="RFC9180"/> is a scheme that 
provides public key encryption of arbitrary-sized plaintexts given a 
recipient's public key.</t>
      <t>This document defines the use of the HPKE with COSE (<xref target="RFC9052"/>, <xref target="RFC9053"/>).</t>
    </section>
    <section anchor="conventions-and-terminology">
      <name>Conventions and Terminology</name>
      <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD",
"SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/>
when, and only when, they appear in all capitals, as shown here.</t>
      <t>This specification uses the following abbreviations and terms:</t>
      <ul spacing="normal">
        <li>
          <t>Content-encryption key (CEK), a term defined in CMS <xref target="RFC2630"/>.</t>
        </li>
        <li>
          <t>Hybrid Public Key Encryption (HPKE) is defined in <xref target="RFC9180"/>.</t>
        </li>
        <li>
          <t>pkR is the public key of the recipient, as defined in <xref target="RFC9180"/>.</t>
        </li>
        <li>
          <t>skR is the private key of the recipient, as defined in <xref target="RFC9180"/>.</t>
        </li>
        <li>
          <t>Key Encapsulation Mechanism (KEM), see <xref target="RFC9180"/>.</t>
        </li>
        <li>
          <t>Key Derivation Function (KDF), see <xref target="RFC9180"/>.</t>
        </li>
        <li>
          <t>Authenticated Encryption with Associated Data (AEAD), see <xref target="RFC9180"/>.</t>
        </li>
        <li>
          <t>Additional Authenticated Data (AAD), see <xref target="RFC9180"/>.</t>
        </li>
      </ul>
    </section>
    <section anchor="hpke-for-cose">
      <name>HPKE for COSE</name>
      <section anchor="overview">
        <name>Overview</name>
        <t>This specification supports two modes of HPKE in COSE, namely</t>
        <ul spacing="normal">
          <li>
            <t>HPKE Direct Encryption mode, where HPKE is used to encrypt the plaintext. This mode can only be used with a single recipient. <xref target="one-layer"/> provides the details.</t>
          </li>
          <li>
            <t>HPKE Key Encryption mode, where HPKE is used to encrypt a content encryption key (CEK) and the CEK is subsequently used to encrypt the plaintext. This mode supports multiple recipients. <xref target="two-layer"/> 
  provides the details.</t>
          </li>
        </ul>
        <t>In both cases a new COSE header parameter, called 'ek',
is used to convey the content of the enc structure defined in the HPKE
specification. "Enc" represents the serialized public key.</t>
        <t>For use with HPKE the 'ek' header parameter MUST
be present in the unprotected header parameter and MUST contain
the encapsulated key, which is output of the HPKE KEM, and it
is a bstr.</t>
        <section anchor="one-layer">
          <name>HPKE Direct Encryption Mode</name>
          <t>This mode applies if the COSE_Encrypt0 structure uses a COSE-HPKE algorithm and has no recipients.</t>
          <t>Because COSE-HPKE supports header protection, if the 'alg' parameter is present, it MUST be included
in the protected header and MUST be a COSE-HPKE algorithm.</t>
          <t>Although the use of the 'kid' parameter in COSE_Encrypt0 is
discouraged by RFC 9052, this documents RECOMMENDS the use of the 'kid' parameter
(or other parameters) to explicitly identify the static recipient public key
used by the sender. If the COSE_Encrypt0 contains the 'kid' then the recipient may
use it to select the appropriate private key.</t>
          <t>When encrypting, the inputs to the HPKE Seal operation are set as follows:</t>
          <ul spacing="normal">
            <li>
              <t>kem_id: Depends on the COSE-HPKE algorithm used.</t>
            </li>
            <li>
              <t>pkR: The recipient public key, converted into an HPKE public key.</t>
            </li>
            <li>
              <t>kdf_id: Depends on the COSE-HPKE algorithm used.</t>
            </li>
            <li>
              <t>aead_id: Depends on the COSE-HPKE algorithm used.</t>
            </li>
            <li>
              <t>info: empty string.</t>
            </li>
            <li>
              <t>aad: Canonical encoding of the Enc_structure from <xref target="RFC9052"/>).</t>
            </li>
            <li>
              <t>pt: The raw message plaintext.</t>
            </li>
          </ul>
          <t>The outputs are used as follows:</t>
          <ul spacing="normal">
            <li>
              <t>enc: MUST be placed raw into the 'ek' (encapsulated key) parameter in the unprotected bucket.</t>
            </li>
            <li>
              <t>ct: MUST be used as layer ciphertext. If not using detached content, this is directly placed as
ciphertext in COSE_Encrypt0 structure. Otherwise, it is transported separately and the ciphertext field is nil.
See Section 5 of <xref target="RFC9052"/> for a description of detached payloads.</t>
            </li>
          </ul>
          <t>When decrypting, the inputs to the HPKE Open operation are set as follows:</t>
          <ul spacing="normal">
            <li>
              <t>kem_id: Depends on the COSE-HPKE algorithm used.</t>
            </li>
            <li>
              <t>skR: The recipient private key, converted into an HPKE private key.</t>
            </li>
            <li>
              <t>kdf_id: Depends on the COSE-HPKE algorithm used.</t>
            </li>
            <li>
              <t>aead_id: Depends on the COSE-HPKE algorithm used.</t>
            </li>
            <li>
              <t>info: empty string.</t>
            </li>
            <li>
              <t>aad: Canonical encoding of the Enc_structure from <xref target="RFC9052"/>).</t>
            </li>
            <li>
              <t>enc: The contents of the layer 'ek' parameter.</t>
            </li>
            <li>
              <t>ct: The contents of the layer ciphertext.</t>
            </li>
          </ul>
          <t>The plaintext output is the raw message plaintext.</t>
          <t>The COSE_Encrypt0 MAY be tagged or untagged.</t>
          <t>An example is shown in <xref target="one-layer-example"/>.</t>
        </section>
        <section anchor="two-layer">
          <name>HPKE Key Encryption Mode</name>
          <t>This mode is selected if the COSE_recipient structure uses a COSE-HPKE algorithm.</t>
          <t>In this approach the following layers are involved:</t>
          <ul spacing="normal">
            <li>
              <t>Layer 0 (corresponding to the COSE_Encrypt structure) contains the content (plaintext)
encrypted with the CEK. This ciphertext may be detached, and if not detached, then
it is included in the COSE_Encrypt structure.</t>
            </li>
            <li>
              <t>Layer 1 (corresponding to a recipient structure) contains parameters needed for 
HPKE to generate a shared secret used to encrypt the CEK. This layer conveys the 
encrypted CEK in the COSE_recipient structure using a COSE-HPKE algorithm.
The unprotected header MAY contain the kid parameter to identify the static recipient
public key the sender has been using with HPKE.</t>
            </li>
          </ul>
          <t>This two-layer structure is used to encrypt content that can also be shared with
multiple parties at the expense of a single additional encryption operation.
As stated above, the specification uses a CEK to encrypt the content at layer 0.</t>
          <section anchor="recipient-encryption">
            <name>Recipient Encryption</name>
            <t>This section describes the Recipient_structure.
It serves instead of COSE_KDF_Context for COSE-HPKE recipients (and possibly other COSE algorithms defined outside this document).
It MUST be used for COSE-HPKE recipients as it provides the protection for recipient protected headers.
It is patterned after the Enc_structure in <xref target="RFC9052"/>, but is specifically for a COSE_recipient, never a COSE_Encrypt.
The COSE_KDF_Context MUST NOT be used in COSE-HPKE.</t>
            <artwork><![CDATA[
Recipient_structure = [ 
    context: "Recipient",
    next_layer_alg: int/tstr,
    recipient_protected_header: empty_or_serialize_map,
    recipient_aad: bstr
]
]]></artwork>
            <ul spacing="normal">
              <li>
                <t>"next_layer_alg" is the algorithm ID of the COSE layer for which the COSE_recipient is encrypting a key.
It is the algorithm that the key MUST be used with.
This value MUST match the alg parameter in the next lower COSE layer.
(This serves the same purpose as the alg ID in the COSE_KDF_Context.
It also mitigates attacks where a person-in-the-middle changes the following layer algorithm from an AEAD algorithm to one that is not foiling the protection of the following layer headers).</t>
              </li>
              <li>
                <t>"recipient_protected_header" contains the protected headers from the COSE_recipient CBOR-encoded deterministically with the "Core Deterministic Encoding Requirements", specified in Section 4.2.1 of RFC 8949 <xref target="STD94"/>.</t>
              </li>
              <li>
                <t>"recipient_aad" contains any additional context the application wishes to protect.
If none, it is a zero-length string.
This is distinct from the external_aad for the whole COSE encrypt.
It is per-recipient.
Since it is not a header, it may be secret data that is not transmitted.
It provides a means to convey many of the fields in COSE_KDF_Context.</t>
              </li>
            </ul>
          </section>
          <section anchor="cose-hpke-recipient-construction">
            <name>COSE-HPKE Recipient Construction</name>
            <t>Because COSE-HPKE supports header protection, if the 'alg' parameter is present, it MUST be in the protected header and MUST be a COSE-HPKE algorithm.</t>
            <t>The unprotected header MAY contain the kid parameter to identify the static recipient public key the sender used.
Use of the 'kid' parameter is RECOMMENDED
to explicitly identify the static recipient public key
used by the sender.</t>
            <t>When encrypting, the inputs to the HPKE Seal operation are set as follows:</t>
            <ul spacing="normal">
              <li>
                <t>kem_id: Depends on the COSE-HPKE algorithm used.</t>
              </li>
              <li>
                <t>pkR: The recipient public key, converted into HPKE public key.</t>
              </li>
              <li>
                <t>kdf_id: Depends on the COSE-HPKE algorithm used.</t>
              </li>
              <li>
                <t>aead_id: Depends on the COSE-HPKE algorithm used.</t>
              </li>
              <li>
                <t>info: empty string.</t>
              </li>
              <li>
                <t>aad: Canonical encoding of the Recipient_structure.</t>
              </li>
              <li>
                <t>pt: The raw key for the next layer down.</t>
              </li>
            </ul>
            <t>The outputs are used as follows:</t>
            <ul spacing="normal">
              <li>
                <t>enc: MUST be placed raw into the 'ek' (encapsulated key) parameter in the unprotected bucket.</t>
              </li>
              <li>
                <t>ct: MUST be placed raw in the ciphertext field in the COSE_recipient.</t>
              </li>
            </ul>
            <t>When decrypting, the inputs to the HPKE Open operation are set as follows:</t>
            <ul spacing="normal">
              <li>
                <t>kem_id: Depends on the COSE-HPKE algorithm used.</t>
              </li>
              <li>
                <t>skR: The recipient private key, converted into HPKE private key.</t>
              </li>
              <li>
                <t>kdf_id: Depends on the COSE-HPKE algorithm used.</t>
              </li>
              <li>
                <t>aead_id: Depends on the COSE-HPKE algorithm used.</t>
              </li>
              <li>
                <t>info: empty string.</t>
              </li>
              <li>
                <t>aad: Canonical encoding of the Recipient_structure.</t>
              </li>
              <li>
                <t>enc: The contents of the layer 'ek' parameter.</t>
              </li>
              <li>
                <t>ct: The contents of the layer ciphertext field.</t>
              </li>
            </ul>
            <t>The plaintext output is the raw key for the next layer down.</t>
            <t>It is not necessary to fill in recipient_aad as HPKE itself covers the attacks that recipient_aad (and COSE_KDF_Context (and SP800-56A)) are used to mitigate.
COSE-HPKE use cases may use it for any purpose they wish, but it should generally be for small identifiers, context or secrets, not to protect bulk external data.
Bulk external data should be protected at layer 0 with external_aad.</t>
            <t>The COSE_recipient structure is repeated for each recipient.</t>
            <t>When encrypting the content at layer 0 then the instructions in
Section 5.3 of <xref target="RFC9052"/> MUST to be followed, which includes the
calculation of the authenticated data strcture.</t>
            <t>An example is shown in <xref target="two-layer-example"/>.</t>
          </section>
        </section>
      </section>
      <section anchor="key-representation">
        <name>Key Representation</name>
        <t>The COSE_Key with the existing key types can be used to represent KEM private
or public keys. When using a COSE_Key for COSE-HPKE, the following checks are made:</t>
        <ul spacing="normal">
          <li>
            <t>If the "kty" field is "AKP", then the public and private keys SHALL be raw HPKE public and private
keys (respectively) for the KEM used by the algorithm.</t>
          </li>
          <li>
            <t>Otherwise, the key MUST be suitable for the KEM used by the algorithm. In case the "kty" parameter
is "EC2" or "OKP", this means the value of "crv" parameter is suitable. For the algorithms defined in
this document, the valid combinations of the KEM, "kty" and "crv" are shown in  <xref target="ciphersuite-kty-crv"/>.</t>
          </li>
          <li>
            <t>If the "key_ops" field is present, it MUST include only "derive bits" for the private key
and MUST be empty for the public key.</t>
          </li>
        </ul>
        <t>Examples of the COSE_Key for COSE-HPKE are shown in <xref target="key-representation-example"/>.</t>
      </section>
    </section>
    <section anchor="ciphersuite-registration">
      <name>Ciphersuite Registration</name>
      <t>A ciphersuite is a group of algorithms, often sharing component algorithms
such as hash functions, targeting a security level.
A COSE-HPKE algorithm is composed of the following choices:</t>
      <ul spacing="normal">
        <li>
          <t>HPKE Mode</t>
        </li>
        <li>
          <t>KEM Algorithm</t>
        </li>
        <li>
          <t>KDF Algorithm</t>
        </li>
        <li>
          <t>AEAD Algorithm</t>
        </li>
      </ul>
      <t>The "KEM", "KDF", and "AEAD" values are chosen from the HPKE IANA
registry <xref target="HPKE-IANA"/>.</t>
      <t>For readability the algorithm ciphersuites labels are built according
to the following scheme:</t>
      <artwork><![CDATA[
HPKE-<Version>-<Mode>-<KEM>-<KDF>-<AEAD>
]]></artwork>
      <t>The "Mode" indicator may be populated with the following values from
Table 1 of <xref target="RFC9180"/>:</t>
      <ul spacing="normal">
        <li>
          <t>"Base" refers to "mode_base" described in Section 5.1.1 of <xref target="RFC9180"/>,
which only enables encryption to the holder of a given KEM private key.</t>
        </li>
        <li>
          <t>"PSK" refers to "mode_psk", described in Section 5.1.2 of <xref target="RFC9180"/>,
which authenticates using a pre-shared key.</t>
        </li>
        <li>
          <t>"Auth" refers to "mode_auth", described in Section 5.1.3 of <xref target="RFC9180"/>,
which authenticates using an asymmetric key.</t>
        </li>
        <li>
          <t>"Auth_Psk" refers to "mode_auth_psk", described in Section 5.1.4 of <xref target="RFC9180"/>,
which authenticates using both a PSK and an asymmetric key.</t>
        </li>
      </ul>
      <t>For a list of ciphersuite registrations, please see <xref target="IANA"/>. The following
table summarizes the relationship between the ciphersuites registered in this
document, which all use the "Base" mode and the values registered in the
HPKE IANA registry <xref target="HPKE-IANA"/>.</t>
      <artwork><![CDATA[
+--------------------------------------------------+------------------+
| COSE-HPKE                                        |      HPKE        |
| Cipher Suite Label                               | KEM | KDF | AEAD |
+--------------------------------------------------+-----+-----+------+
| HPKE-0                                           |0x10 | 0x1 | 0x1  |
| HPKE-1                                           |0x11 | 0x2 | 0x2  |
| HPKE-2                                           |0x12 | 0x3 | 0x2  |
| HPKE-3                                           |0x20 | 0x1 | 0x1  |
| HPKE-4                                           |0x20 | 0x1 | 0x3  |
| HPKE-5                                           |0x21 | 0x3 | 0x2  |
| HPKE-6                                           |0x21 | 0x3 | 0x3  |
+--------------------------------------------------+-----+-----+------+
]]></artwork>
      <t>As the list indicates, the ciphersuite labels have been abbreviated at least
to some extend to maintain the tradeoff between readability and length.</t>
      <t>The ciphersuite list above is a minimal starting point. Additional
ciphersuites can be registered into the already existing registry.
For example, once post-quantum cryptographic algorithms have been standardized
it might be beneficial to register ciphersuites for use with COSE-HPKE.
Additionally, ciphersuites utilizing the compact encoding of the public keys,
as defined in <xref target="I-D.irtf-cfrg-dnhpke"/>, may be standardized for use in
constrained environments.</t>
      <t>As a guideline for ciphersuite submissions to the IANA CoSE algorithm
registry, the designated experts must only register combinations of 
(KEM, KDF, AEAD) triple that consitute valid combinations for use with
HPKE, the KDF used should (if possible) match one internally used by the
KEM, and components should not be mixed between global and national standards.</t>
      <section anchor="cosekeys-for-cose-hpke-ciphersuites">
        <name>COSE_Keys for COSE-HPKE Ciphersuites</name>
        <t>The COSE-HPKE algorithm uniquely determines the KEM for which a COSE_Key is used.
The following mapping table shows the valid combinations
of the KEM used, COSE_Key type and its curve/key subtype.</t>
        <figure anchor="ciphersuite-kty-crv">
          <name>COSE_Key Types and Curves for COSE-HPKE Ciphersuites</name>
          <artwork><![CDATA[
+---------------------+--------------+
| HPKE KEM id         | COSE_Key     |
|                     | kty | crv    |
+---------------------+-----+--------+
| 0x0010, 0x0013      | EC2 | P-256  |
| 0x0011, 0x0014      | EC2 | P-384  |
| 0x0012, 0x0015      | EC2 | P-521  |
| 0x0020              | OKP | X25519 |
| 0x0021              | OKP | X448   |
+---------------------+-----+--------+
]]></artwork>
        </figure>
      </section>
    </section>
    <section anchor="examples">
      <name>Examples</name>
      <t>This section provides a set of examples that shows all COSE message types
(COSE_Encrypt0, COSE_Encrypt and COSE_MAC) to which the COSE-HPKE can be
applied, and also provides some examples of key representation for HPKE KEM.</t>
      <t>Each example of the COSE message includes the following information
that can be used to check the interoperability of COSE-HPKE implementations:</t>
      <ul spacing="normal">
        <li>
          <t>plaintext: Original data of the encrypted payload.</t>
        </li>
        <li>
          <t>external_aad: Externally supplied AAD.</t>
        </li>
        <li>
          <t>skR: A recipient private key.</t>
        </li>
        <li>
          <t>skE: An ephemeral sender private key paired with the encapsulated key.</t>
        </li>
      </ul>
      <section anchor="one-layer-example">
        <name>HPKE Direct Encryption Mode</name>
        <t>This example assumes that a sender wants to communicate an
encrypted payload to a single recipient in the most efficient way.</t>
        <t>An example of the HPKE Direct Encryption Mode is
shown in <xref target="hpke-example-one"/>. Line breaks and comments have been inserted
for better readability.</t>
        <t>This example uses the following:</t>
        <ul spacing="normal">
          <li>
            <t>alg: HPKE-0</t>
          </li>
          <li>
            <t>plaintext: "This is the content."</t>
          </li>
          <li>
            <t>external_aad: "COSE-HPKE app"</t>
          </li>
          <li>
            <t>skR: h'57c92077664146e876760c9520d054aa93c3afb04e306705db6090308507b4d3'</t>
          </li>
          <li>
            <t>skE: h'42dd125eefc409c3b57366e721a40043fb5a58e346d51c133128a77237160218'</t>
          </li>
        </ul>
        <figure anchor="hpke-example-one">
          <name>COSE_Encrypt0 Example for HPKE</name>
          <artwork><![CDATA[
16([
    / alg = HPKE-0 (Assumed: 35) /
    h'a1011823',
    {
        / kid /
        4: h'3031',
        / ek /
        -4: h'045df24272faf43849530db6be01f42708b3c3a9
              df8e268513f0a996ed09ba7840894a3fb946cb28
              23f609c59463093d8815a7400233b75ca8ecb177
              54d241973e',
    },
    / encrypted plaintext /
    h'35aa3d98739289b83751125abe44e3b977e4b9abbf2c8cfaade
      b15f7681eef76df88f096',
])
]]></artwork>
        </figure>
      </section>
      <section anchor="two-layer-example">
        <name>HPKE Key Encryption Mode</name>
        <t>In this example we assume that a sender wants to transmit a
payload to two recipients using the HPKE Key Encryption mode.
Note that it is possible to send two single-layer payloads, 
although it will be less efficient.</t>
        <section anchor="coseencrypt">
          <name>COSE_Encrypt</name>
          <t>An example of the COSE_Encrypt structure using the HPKE scheme is
shown in <xref target="hpke-example-cose-encrypt"/>. Line breaks and comments have been
inserted for better readability.</t>
          <t>This example uses the following:</t>
          <t>TODO: recompute this for Recipient_structure</t>
          <ul spacing="normal">
            <li>
              <t>Encryption alg: AES-128-GCM</t>
            </li>
            <li>
              <t>plaintext: "This is the content."</t>
            </li>
            <li>
              <t>detatched ciphertext: h'cc168c4e148c52a83010a75250935a47ccb8682deebcef8fce5d60c161e849f53a2dc664'</t>
            </li>
            <li>
              <t>kid:"01"
              </t>
              <ul spacing="normal">
                <li>
                  <t>alg: HPKE-0</t>
                </li>
                <li>
                  <t>external_aad: "COSE-HPKE app"</t>
                </li>
                <li>
                  <t>skR: h'57c92077664146e876760c9520d054aa93c3afb04e306705db6090308507b4d3'</t>
                </li>
                <li>
                  <t>skE: h'97ad883f949f4cdcb1301b9446950efd4eb519e16c4a3d78304eec832692f9f6'</t>
                </li>
              </ul>
            </li>
            <li>
              <t>kid:"02"
              </t>
              <ul spacing="normal">
                <li>
                  <t>alg: HPKE-4</t>
                </li>
                <li>
                  <t>external_aad: "COSE-HPKE app"</t>
                </li>
                <li>
                  <t>skR: h'bec275a17e4d362d0819dc0695d89a73be6bf94b66ab726ae0b1afe3c43f41ce'</t>
                </li>
                <li>
                  <t>skE: h'b8ed3f4df56c230e36fa6620a47f24d08856d242ea547c5521ff7bd69af8fd6f'</t>
                </li>
              </ul>
            </li>
          </ul>
          <figure anchor="hpke-example-cose-encrypt">
            <name>COSE_Encrypt Example for HPKE</name>
            <artwork><![CDATA[
96_0([
    / alg = AES-128-GCM (1) /
    h'a10101',
    {
        / iv /
        5: h'b3fb95dde18c6f90a9f0ae55',
    },
    / detached ciphertext /
    null,
    [
        [
            / alg = HPKE-0 (Assumed: 35) /
            h'a1011823',
            {
                / kid /
                4: h'3031',
                / ek /
                -4: h'04d97b79486fe2e7b98fb1bd43
                      c4faee316ff38d28609a1cf568
                      40a809298a91e601f1cc0c2ba4
                      6cb67b41f4651b769cafd9df78
                      e58aa7f5771291bd4f0f420ba6',
            },
            / ciphertext containing encrypted CEK /
            h'24450f54ae93375351467d17aa7a795cfede2
              c03eced1ad21fcb7e7c2fe64397',
        ],
        [
            / alg = HPKE-4 (Assumed: 42) /
            h'a101182a',
            {
                / kid /
                4: h'3032',
                / ek /
                -4: h'd1afbdc95b0e735676f6bca34f
                      be50f2822259ac09bfc3c500f1
                      4a05de9b2833',
            },
            / ciphertext containing encrypted CEK /
            h'079b443ec6dfcda6a5f8748aff3875146a8ed
              40359e1279b545166385d8d9b59',
        ],
    ],
])
]]></artwork>
          </figure>
          <t>To offer authentication of the sender the payload in <xref target="hpke-example-cose-encrypt"/>
is signed with a COSE_Sign1 wrapper, which is outlined in <xref target="hpke-example-sign"/>.
The payload in <xref target="hpke-example-sign"/> is meant to contain the content of
<xref target="hpke-example-cose-encrypt"/>.</t>
          <figure anchor="hpke-example-sign">
            <name>COSE_Encrypt Example for HPKE</name>
            <artwork><![CDATA[
18(
  [
    / protected / h'a10126' / {
            \ alg \ 1:-7 \ ECDSA 256 \
          } / ,
    / unprotected / {
          / kid / 4:'sender@example.com'
        },
    / payload /     h'AA19...B80C',
    / signature /   h'E3B8...25B8'
  ]
)
]]></artwork>
          </figure>
        </section>
        <section anchor="cosemac">
          <name>COSE_MAC</name>
          <t>An example of the COSE_MAC structure using the HPKE scheme is
shown in <xref target="hpke-example-cose-mac"/>.</t>
          <t>This example uses the following:</t>
          <ul spacing="normal">
            <li>
              <t>MAC alg: HMAC 256/256</t>
            </li>
            <li>
              <t>payload: "This is the content."</t>
            </li>
            <li>
              <t>kid:"01"
              </t>
              <ul spacing="normal">
                <li>
                  <t>alg: HPKE-0</t>
                </li>
                <li>
                  <t>external_aad: "COSE-HPKE app"</t>
                </li>
                <li>
                  <t>skR: h'57c92077664146e876760c9520d054aa93c3afb04e306705db6090308507b4d3'</t>
                </li>
                <li>
                  <t>skE: h'e5dd9472b5807636c95be0ba2575020ba91cbb3561b52be141da89678c664307'</t>
                </li>
              </ul>
            </li>
            <li>
              <t>kid:"02"
              </t>
              <ul spacing="normal">
                <li>
                  <t>alg: HPKE-4</t>
                </li>
                <li>
                  <t>external_aad: "COSE-HPKE app"</t>
                </li>
                <li>
                  <t>skR: h'bec275a17e4d362d0819dc0695d89a73be6bf94b66ab726ae0b1afe3c43f41ce'</t>
                </li>
                <li>
                  <t>skE: h'78a49d7af71b5244498e943f361aa0250184afc48b8098a68ae97ccd2cd7e56f'</t>
                </li>
              </ul>
            </li>
          </ul>
          <figure anchor="hpke-example-cose-mac">
            <name>COSE_MAC Example for HPKE</name>
            <artwork><![CDATA[
97_0([
    / alg = HMAC 256/256 (5) /
    h'a10105',
    {},
    / payload = 'This is the content.' /
    h'546869732069732074686520636f6e74656e742e',
    / tag /
    h'5cdcf6055fcbdb53b4001d8fb88b2a46b200ed28e1e
          d77e16ddf43fb3cac3a98',
    [
        [
            / alg = HPKE-0 (Assumed: 35) /
            h'a1011823',
            {
                / kid = '01' /
                4: h'3031',
                / ek /
                -4: h'043ac21632e45e1fbd733f002a
                      621aa4f3d94737adc395d5a7cb
                      6e9554bd1ad273aec991493786
                      d72616d9759bf8526e6e20c1ed
                      c41ba5739f2b2e441781aa0eb4',
            },
            / ciphertext containing encrypted MAC key /
            h'5cee2b4235a7ff695164f7a8d1e79ccf3ca3d
              e8b22f3592626020a95b2a8d3fb4d7aa7fe37
              432426ee70073a368f29d1',
        ],
        [
            / alg = HPKE-4 (Assumed: 42) /
            h'a101182a',
            {
                / kid = '02' /
                4: h'3032',
                / ek /
                -4: h'02cffacc60def3bb3d0a1c3661
                      227c9de8dc2b1d3939dd2c07d4
                      49ebb0bba324',
            },
            / ciphertext containing encrypted MAC key /
            h'3f5b8b60271d5234dbea554dc1461d0239e9f
              4589f6415e8563b061dbcb37795a616111b78
              2b4c589b534309327ffadc',
        ],
    ],
])
]]></artwork>
          </figure>
        </section>
      </section>
      <section anchor="key-representation-example">
        <name>Key Representation</name>
        <t>Examples of private and public KEM key representation are shown below.</t>
        <section anchor="kem-public-key-for-hpke-0">
          <name>KEM Public Key for HPKE-0</name>
          <figure anchor="hpke-example-key-1">
            <name>Key Representation Example for HPKE-0</name>
            <artwork><![CDATA[
{
    / kty = 'EC2' /
    1: 2,
    / kid = '01' /
    2: h'3031',
    / alg = HPKE-0 (Assumed: 35) /
    3: 35,
    / crv = 'P-256' /
    -1: 1,
    / x /
    -2: h'65eda5a12577c2bae829437fe338701a10aaa375
              e1bb5b5de108de439c08551d',
    / y /
    -3: h'1e52ed75701163f7f9e40ddf9f341b3dc9ba860af
              7e0ca7ca7e9eecd0084d19c'
}
]]></artwork>
          </figure>
        </section>
        <section anchor="kem-private-key-for-hpke-0">
          <name>KEM Private Key for HPKE-0</name>
          <figure anchor="hpke-example-key-2">
            <name>Key Representation Example for HPKE-0</name>
            <artwork><![CDATA[
{
    / kty = 'EC2' /
    1: 2,
    / kid = '01' /
    2: h'3031',
    / alg = HPKE-0 (Assumed: 35) /
    3: 35,
    / key_ops = ['derive_bits'] /
    4: [8],
    / crv = 'P-256' /
    -1: 1,
    / x /
    -2: h'bac5b11cad8f99f9c72b05cf4b9e26d244dc189f7
              45228255a219a86d6a09eff',
    / y /
    -3: h'20138bf82dc1b6d562be0fa54ab7804a3a64b6d72
              ccfed6b6fb6ed28bbfc117e',
    / d /
    -4: h'57c92077664146e876760c9520d054aa93c3afb04
              e306705db6090308507b4d3',
}
]]></artwork>
          </figure>
        </section>
        <section anchor="kem-public-key-for-hpke-4">
          <name>KEM Public Key for HPKE-4</name>
          <figure anchor="hpke-example-key-3">
            <name>Key Representation Example for HPKE-4</name>
            <artwork><![CDATA[
{
    / kty = 'OKP' /
    1: 1,
    / kid = '11' /
    2: h'3131',
    / alg = HPKE-4 (Assumed: 42) /
    3: 42,
    / crv = 'X25519' /
    -1: 4,
    / x /
    -2: h'cb7c09ab7b973c77a808ee05b9bbd373b55c06eaa
              9bd4ad2bd4e9931b1c34c22',
}
]]></artwork>
          </figure>
        </section>
      </section>
    </section>
    <section anchor="sec-cons">
      <name>Security Considerations</name>
      <t>This specification is based on HPKE and the security considerations of
<xref target="RFC9180"/> are therefore applicable also to this specification.</t>
      <t>HPKE assumes the sender is in possession of the public key of the recipient and
HPKE COSE makes the same assumptions. Hence, some form of public key distribution
mechanism is assumed to exist but outside the scope of this document.</t>
      <t>HPKE relies on a source of randomness to be available on the device. Additionally, 
with the two layer structure the CEK is randomly generated and it MUST be
ensured that the guidelines in <xref target="RFC8937"/> for random number generations are followed.</t>
      <t>HPKE in Base mode does not offer authentication as part of the HPKE KEM. In this
case COSE constructs like COSE_Sign, COSE_Sign1, COSE_MAC, or COSE_MAC0 can be
used to add authentication. HPKE also offers modes that offer authentication.</t>
      <t>If COSE_Encrypt or COSE_Encrypt0 is used with a detached ciphertext then the
subsequently applied integrity protection via COSE_Sign, COSE_Sign1, COSE_MAC, 
or COSE_MAC0 does not cover this detached ciphertext. Implementers MUST ensure
that the detached ciphertext also experiences integrity protection. This is, for
example, the case when an AEAD cipher is used to produce the detached ciphertext
but may not be guaranteed by non-AEAD ciphers.</t>
    </section>
    <section anchor="IANA">
      <name>IANA Considerations</name>
      <t>This document requests IANA to add new values to the 'COSE Algorithms' and to 
the 'COSE Header Parameters' registries.</t>
      <section anchor="cose-algorithms-registry">
        <name>COSE Algorithms Registry</name>
        <ul spacing="normal">
          <li>
            <t>Name: HPKE-0</t>
          </li>
          <li>
            <t>Value: TBD1 (Assumed: 35)</t>
          </li>
          <li>
            <t>Description: Cipher suite for COSE-HPKE in Base Mode that uses the DHKEM(P-256, HKDF-SHA256) KEM, the HKDF-SHA256 KDF and the AES-128-GCM AEAD.</t>
          </li>
          <li>
            <t>Capabilities: [kty]</t>
          </li>
          <li>
            <t>Change Controller: IESG</t>
          </li>
          <li>
            <t>Reference:  [[TBD: This RFC]]</t>
          </li>
          <li>
            <t>Recommended: Yes</t>
          </li>
          <li>
            <t>Name: HPKE-1</t>
          </li>
          <li>
            <t>Value: TBD3 (Assumed: 37)</t>
          </li>
          <li>
            <t>Description: Cipher suite for COSE-HPKE in Base Mode that uses the DHKEM(P-384, HKDF-SHA384) KEM, the HKDF-SHA384 KDF, and the AES-256-GCM AEAD.</t>
          </li>
          <li>
            <t>Capabilities: [kty]</t>
          </li>
          <li>
            <t>Change Controller: IESG</t>
          </li>
          <li>
            <t>Reference:  [[TBD: This RFC]]</t>
          </li>
          <li>
            <t>Recommended: Yes</t>
          </li>
          <li>
            <t>Name: HPKE-2</t>
          </li>
          <li>
            <t>Value: TBD5 (Assumed: 39)</t>
          </li>
          <li>
            <t>Description: Cipher suite for COSE-HPKE in Base Mode that uses the DHKEM(P-521, HKDF-SHA512) KEM, the HKDF-SHA512 KDF, and the AES-256-GCM AEAD.</t>
          </li>
          <li>
            <t>Capabilities: [kty]</t>
          </li>
          <li>
            <t>Change Controller: IESG</t>
          </li>
          <li>
            <t>Reference:  [[TBD: This RFC]]</t>
          </li>
          <li>
            <t>Recommended: Yes</t>
          </li>
          <li>
            <t>Name: HPKE-3</t>
          </li>
          <li>
            <t>Value: TBD7 (Assumed: 41)</t>
          </li>
          <li>
            <t>Description: Cipher suite for COSE-HPKE in Base Mode that uses the DHKEM(X25519, HKDF-SHA256) KEM, the HKDF-SHA256 KDF, and the AES-128-GCM AEAD.</t>
          </li>
          <li>
            <t>Capabilities: [kty]</t>
          </li>
          <li>
            <t>Change Controller: IESG</t>
          </li>
          <li>
            <t>Reference:  [[TBD: This RFC]]</t>
          </li>
          <li>
            <t>Recommended: Yes</t>
          </li>
          <li>
            <t>Name: HPKE-4</t>
          </li>
          <li>
            <t>Value: TBD8 (Assumed: 42)</t>
          </li>
          <li>
            <t>Description: Cipher suite for COSE-HPKE in Base Mode that uses the DHKEM(X25519, HKDF-SHA256) KEM, the HKDF-SHA256 KDF, and the ChaCha20Poly1305 AEAD.</t>
          </li>
          <li>
            <t>Capabilities: [kty]</t>
          </li>
          <li>
            <t>Change Controller: IESG</t>
          </li>
          <li>
            <t>Reference:  [[TBD: This RFC]]</t>
          </li>
          <li>
            <t>Recommended: Yes</t>
          </li>
          <li>
            <t>Name: HPKE-5</t>
          </li>
          <li>
            <t>Value: TBD9 (Assumed: 43)</t>
          </li>
          <li>
            <t>Description: Cipher suite for COSE-HPKE in Base Mode that uses the DHKEM(X448, HKDF-SHA512) KEM, the HKDF-SHA512 KDF, and the AES-256-GCM AEAD.</t>
          </li>
          <li>
            <t>Capabilities: [kty]</t>
          </li>
          <li>
            <t>Change Controller: IESG</t>
          </li>
          <li>
            <t>Reference:  [[TBD: This RFC]]</t>
          </li>
          <li>
            <t>Recommended: Yes</t>
          </li>
          <li>
            <t>Name: HPKE-6</t>
          </li>
          <li>
            <t>Value: TBD10 (Assumed: 44)</t>
          </li>
          <li>
            <t>Description: Cipher suite for COSE-HPKE in Base Mode that uses the DHKEM(X448, HKDF-SHA512) KEM, the HKDF-SHA512 KDF, and the ChaCha20Poly1305 AEAD.</t>
          </li>
          <li>
            <t>Capabilities: [kty]</t>
          </li>
          <li>
            <t>Change Controller: IESG</t>
          </li>
          <li>
            <t>Reference:  [[TBD: This RFC]]</t>
          </li>
          <li>
            <t>Recommended: Yes</t>
          </li>
        </ul>
      </section>
      <section anchor="cose-header-parameters">
        <name>COSE Header Parameters</name>
        <ul spacing="normal">
          <li>
            <t>Name: ek</t>
          </li>
          <li>
            <t>Label: TBDX (Assumed: -4)</t>
          </li>
          <li>
            <t>Value type: bstr</t>
          </li>
          <li>
            <t>Value Registry: N/A</t>
          </li>
          <li>
            <t>Description: HPKE encapsulated key</t>
          </li>
          <li>
            <t>Reference: [[This specification]]</t>
          </li>
        </ul>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <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"/>
            <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="RFC9180">
          <front>
            <title>Hybrid Public Key Encryption</title>
            <author fullname="R. Barnes" initials="R." surname="Barnes"/>
            <author fullname="K. Bhargavan" initials="K." surname="Bhargavan"/>
            <author fullname="B. Lipp" initials="B." surname="Lipp"/>
            <author fullname="C. Wood" initials="C." surname="Wood"/>
            <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="RFC9052">
          <front>
            <title>CBOR Object Signing and Encryption (COSE): Structures and Process</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>Concise Binary Object Representation (CBOR) is a data format designed for small code size and small message size. There is a need to be able to define basic security services for this data format. This document defines the CBOR Object Signing and Encryption (COSE) protocol. This specification describes how to create and process signatures, message authentication codes, and encryption using CBOR for serialization. This specification additionally describes how to represent cryptographic keys using CBOR.</t>
              <t>This document, along with RFC 9053, obsoletes RFC 8152.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="96"/>
          <seriesInfo name="RFC" value="9052"/>
          <seriesInfo name="DOI" value="10.17487/RFC9052"/>
        </reference>
        <reference anchor="RFC9053">
          <front>
            <title>CBOR Object Signing and Encryption (COSE): Initial Algorithms</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>Concise Binary Object Representation (CBOR) is a data format designed for small code size and small message size. There is a need to be able to define basic security services for this data format. This document defines a set of algorithms that can be used with the CBOR Object Signing and Encryption (COSE) protocol (RFC 9052).</t>
              <t>This document, along with RFC 9052, obsoletes RFC 8152.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9053"/>
          <seriesInfo name="DOI" value="10.17487/RFC9053"/>
        </reference>
        <referencegroup anchor="STD94" target="https://www.rfc-editor.org/info/std94">
          <reference anchor="RFC8949" target="https://www.rfc-editor.org/info/rfc8949">
            <front>
              <title>Concise Binary Object Representation (CBOR)</title>
              <author fullname="C. Bormann" initials="C." surname="Bormann"/>
              <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
              <date month="December" year="2020"/>
              <abstract>
                <t>The Concise Binary Object Representation (CBOR) is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation. These design goals make it different from earlier binary serializations such as ASN.1 and MessagePack.</t>
                <t>This document obsoletes RFC 7049, providing editorial improvements, new details, and errata fixes while keeping full compatibility with the interchange format of RFC 7049. It does not create a new version of the format.</t>
              </abstract>
            </front>
            <seriesInfo name="STD" value="94"/>
            <seriesInfo name="RFC" value="8949"/>
            <seriesInfo name="DOI" value="10.17487/RFC8949"/>
          </reference>
        </referencegroup>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC8937">
          <front>
            <title>Randomness Improvements for Security Protocols</title>
            <author fullname="C. Cremers" initials="C." surname="Cremers"/>
            <author fullname="L. Garratt" initials="L." surname="Garratt"/>
            <author fullname="S. Smyshlyaev" initials="S." surname="Smyshlyaev"/>
            <author fullname="N. Sullivan" initials="N." surname="Sullivan"/>
            <author fullname="C. Wood" initials="C." surname="Wood"/>
            <date month="October" year="2020"/>
            <abstract>
              <t>Randomness is a crucial ingredient for Transport Layer Security (TLS) and related security protocols. Weak or predictable "cryptographically secure" pseudorandom number generators (CSPRNGs) can be abused or exploited for malicious purposes. An initial entropy source that seeds a CSPRNG might be weak or broken as well, which can also lead to critical and systemic security problems. This document describes a way for security protocol implementations to augment their CSPRNGs using long-term private keys. This improves randomness from broken or otherwise subverted CSPRNGs.</t>
              <t>This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8937"/>
          <seriesInfo name="DOI" value="10.17487/RFC8937"/>
        </reference>
        <reference anchor="RFC2630">
          <front>
            <title>Cryptographic Message Syntax</title>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <date month="June" year="1999"/>
            <abstract>
              <t>This document describes the Cryptographic Message Syntax. This syntax is used to digitally sign, digest, authenticate, or encrypt arbitrary messages. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2630"/>
          <seriesInfo name="DOI" value="10.17487/RFC2630"/>
        </reference>
        <reference anchor="I-D.irtf-cfrg-dnhpke">
          <front>
            <title>Deterministic Nonce-less Hybrid Public Key Encryption</title>
            <author fullname="Dan Harkins" initials="D." surname="Harkins">
              <organization>Hewlett-Packard Enterprise</organization>
            </author>
            <date day="9" month="September" year="2024"/>
            <abstract>
              <t>   This document describes enhancements to the Hybrid Public Key
   Encryption standard published by CFRG.  These include use of "compact
   representation" of relevant public keys, support for key-wrapping,
   and two ways to address the use of HPKE on lossy networks: a
   determinstic, nonce-less AEAD scheme, and use of a rolling sequence
   number with existing AEAD schemes.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-dnhpke-05"/>
        </reference>
        <reference anchor="HPKE-IANA" target="https://www.iana.org/assignments/hpke/hpke.xhtml">
          <front>
            <title>Hybrid Public Key Encryption (HPKE) IANA Registry</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date year="2023" month="October"/>
          </front>
        </reference>
      </references>
    </references>
    <?line 773?>

<section anchor="contributors">
      <name>Contributors</name>
      <t>We would like thank the following individuals for their contributions
to the design of embedding the HPKE output into the COSE structure 
following a long and lively mailing list discussion:</t>
      <ul spacing="normal">
        <li>
          <t>Richard Barnes</t>
        </li>
        <li>
          <t>Ilari Liusvaara</t>
        </li>
      </ul>
      <t>Finally, we would like to thank Russ Housley and Brendan Moran for their
contributions to the draft as co-authors of initial versions.</t>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>We would like to thank John Mattsson, Mike Prorock, Michael Richardson,
and Goeran Selander for their review feedback.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
WBr/H26OiS3PbwAA

-->

</rfc>
