Internet-Draft | COSE HPKE | July 2024 |
Tschofenig, et al. | Expires 9 January 2025 | [Page] |
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.¶
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.¶
This document defines the use of the HPKE with COSE.¶
This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.¶
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.¶
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."¶
This Internet-Draft will expire on 9 January 2025.¶
Copyright (c) 2024 IETF Trust and the persons identified as the document authors. All rights reserved.¶
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Revised BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Revised BSD License.¶
This document may contain material from IETF Documents or IETF Contributions published or made publicly available before November 10, 2008. The person(s) controlling the copyright in some of this material may not have granted the IETF Trust the right to allow modifications of such material outside the IETF Standards Process. Without obtaining an adequate license from the person(s) controlling the copyright in such materials, this document may not be modified outside the IETF Standards Process, and derivative works of it may not be created outside the IETF Standards Process, except to format it for publication as an RFC or to translate it into languages other than English.¶
Hybrid public-key encryption (HPKE) [RFC9180] is a scheme that provides public key encryption of arbitrary-sized plaintexts given a recipient's public key.¶
This document defines the use of the HPKE with COSE ([RFC9052], [RFC9053]).¶
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 [RFC2119] [RFC8174] when, and only when, they appear in all capitals, as shown here.¶
This specification uses the following abbreviations and terms:¶
Content-encryption key (CEK), a term defined in CMS [RFC2630].¶
Hybrid Public Key Encryption (HPKE) is defined in [RFC9180].¶
pkR is the public key of the recipient, as defined in [RFC9180].¶
skR is the private key of the recipient, as defined in [RFC9180].¶
Authenticated Encryption with Associated Data (AEAD), see [RFC9180].¶
This specification supports two modes of HPKE in COSE, namely¶
HPKE Direct Encryption mode, where HPKE is used to encrypt the plaintext. This mode can only be used with a single recipient. Section 3.1.1 provides the details.¶
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. Section 3.1.2 provides the details.¶
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.¶
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.¶
With the HPKE Direct Encryption mode the information carried inside the COSE_recipient structure is embedded inside the COSE_Encrypt0.¶
HPKE is used to directly encrypt the plaintext and the resulting ciphertext is either included in the COSE_Encrypt0 or is detached. If a payload is transported separately then it is called "detached content". A nil CBOR object is placed in the location of the ciphertext. See Section 5 of [RFC9052] for a description of detached payloads.¶
The sender MUST place the 'ek' (encapsulated key) parameter into the unprotected header.¶
The sender MUST set the alg parameter in the protected header, which indicates the use of HPKE.¶
This specification RECOMMENDS the inclusion of parameters describing the context of the transaction in the protected header. Section 5.2 of [RFC9053] defines several parameters for this purpose, such as PartyU and PartyV identity and nonce, which are re-used by this specification. PartyU refers to the entity that is creating the message and PartyV refers to the entity that is receiving the message. The context information parameters are, unlike described in [RFC9053], not used to build the COSE_KDF_Context structure, as explained below.¶
The HPKE specification describes an API and uses an "aad" parameter as input. When COSE_Encrypt0 is used then there is no AEAD function executed by COSE natively and HPKE instead offers this functionality.¶
The "aad" parameter provided to the HPKE API MUST be constructed as follows (and the design has been re-used from [RFC9052]).¶
Enc_structure = [ context : "Encrypt0", protected : empty_or_serialized_map, external_aad : bstr ] empty_or_serialized_map = bstr .cbor header_map / bstr .size 0¶
The protected field in the Enc_structure contains the protected attributes from the COSE_Encrypt0 structure, encoded in a bstr type.¶
Figure 1 shows the COSE_Encrypt0 CDDL structure.¶
The COSE_Encrypt0 MAY be tagged or untagged.¶
An example is shown in Section 5.1.¶
With the HPKE Key Encryption mode information is conveyed in the COSE_recipient structure, i.e. one COSE_recipient structure per recipient.¶
In this approach the following layers are involved:¶
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.¶
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 encCEK structure. The protected header MUST contain the HPKE alg parameter and the unprotected header MUST contain the 'ek' parameter. The unprotected header MAY contain the kid parameter to identify the static recipient public key the sender has been using with HPKE.¶
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.¶
The COSE_recipient structure, shown in Figure 2, is repeated for each recipient.¶
The COSE_Encrypt MAY be tagged or untagged.¶
The sender MUST place the 'ek' (encapsulated key) parameter into the unprotected header.¶
The sender MUST set the alg parameter in the protected header, which indicates the use of HPKE.¶
This specification RECOMMENDS the inclusion of parameters describing the context of the transaction in the protected header. Section 5.2 of [RFC9053] defines several parameters for this purpose, such as PartyU and PartyV identity and nonce, which are re-used by this specification.¶
At the recipient layer where HPKE is used to encrypt the CEK, the "aad" parameter provided to the HPKE API MUST be constructed as follows (and the design has been re-used from [RFC9052]):¶
Enc_structure = [ context : "Enc_Recipient", protected : empty_or_serialized_map, external_aad : bstr ] empty_or_serialized_map = bstr .cbor header_map / bstr .size 0¶
The protected field in the Enc_structure contains the protected attributes from the COSE_recipient structure at layer 1, encoded in a bstr type.¶
An example is shown in Section 5.2.¶
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:¶
The "kty" field MUST be present, and it MUST be one of the key types for HPKE KEM.¶
If the "kty" field is "OKP" or "EC2", the "crv" field MUST be present and it MUST be a curve for HPKE KEM.¶
If the "alg" field is present, it MUST be one of the supported COSE-HPKE "alg" values and the key type of its KEM MUST match the "kty" field. If the "kty" field is "OKP" or "EC2", the curve of the KEM MUST match the "crv" field. The valid combinations of the "alg", "kty" and "crv" are shown in Figure 3.¶
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.¶
Examples of the COSE_Key for COSE-HPKE are shown in Section 5.3.¶
A ciphersuite is a group of algorithms, often sharing component algorithms such as hash functions, targeting a security level. An HPKE ciphersuite, is composed of the following choices:¶
The "KEM", "KDF", and "AEAD" values are chosen from the HPKE IANA registry [HPKE-IANA].¶
For readability the algorithm ciphersuites labels are built according to the following scheme:¶
HPKE-<Mode>-<KEM>-<KDF>-<AEAD>¶
The "Mode" indicator may be populated with the following values from Table 1 of [RFC9180]:¶
"Base" refers to "mode_base" described in Section 5.1.1 of [RFC9180], which only enables encryption to the holder of a given KEM private key.¶
"PSK" refers to "mode_psk", described in Section 5.1.2 of [RFC9180], which authenticates using a pre-shared key.¶
"Auth" refers to "mode_auth", described in Section 5.1.3 of [RFC9180], which authenticates using an asymmetric key.¶
"Auth_Psk" refers to "mode_auth_psk", described in Section 5.1.4 of [RFC9180], which authenticates using both a PSK and an asymmetric key.¶
For a list of ciphersuite registrations, please see Section 7. 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 [HPKE-IANA].¶
+--------------------------------------------------+------------------+ | COSE-HPKE | HPKE | | Cipher Suite Label | KEM | KDF | AEAD | +--------------------------------------------------+-----+-----+------+ | HPKE-Base-P256-SHA256-AES128GCM |0x10 | 0x1 | 0x1 | | HPKE-Base-P384-SHA384-AES256GCM |0x11 | 0x2 | 0x2 | | HPKE-Base-P521-SHA512-AES256GCM |0x12 | 0x3 | 0x2 | | HPKE-Base-X25519-SHA256-AES128GCM |0x20 | 0x1 | 0x1 | | HPKE-Base-X25519-SHA256-ChaCha20Poly1305 |0x20 | 0x1 | 0x3 | | HPKE-Base-X448-SHA512-AES256GCM |0x21 | 0x3 | 0x2 | | HPKE-Base-X448-SHA512-ChaCha20Poly1305 |0x21 | 0x3 | 0x3 | +--------------------------------------------------+-----+-----+------+¶
As the list indicates, the ciphersuite labels have been abbreviated at least to some extend to maintain the tradeoff between readability and length.¶
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 [I-D.irtf-cfrg-dnhpke], may be standardized for use in constrained environments.¶
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.¶
The COSE-HPKE ciphersuite uniquely determines the type of KEM for which a COSE_Key is used. The following mapping table shows the valid combinations of the COSE-HPKE ciphersuite, COSE_Key type and its curve.¶
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.¶
Each example of the COSE message includes the following information that can be used to check the interoperability of COSE-HPKE implementations:¶
plaintext: Original data of the encrypted payload.¶
external_aad: Externally supplied AAD.¶
skR: A recipient private key.¶
skE: An ephemeral sender private key paired with the encapsulated key.¶
This example assumes that a sender wants to communicate an encrypted payload to a single recipient in the most efficient way.¶
An example of the HPKE Direct Encryption Mode is shown in Figure 4. Line breaks and comments have been inserted for better readability.¶
This example uses the following:¶
alg: HPKE-Base-P256-SHA256-AES128GCM¶
plaintext: "This is the content."¶
external_aad: "COSE-HPKE app"¶
PartyU identity: "sender"¶
PartyV identity: "recipient"¶
skR: h'57c92077664146e876760c9520d054aa93c3afb04e306705db6090308507b4d3'¶
skE: h'42dd125eefc409c3b57366e721a40043fb5a58e346d51c133128a77237160218'¶
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.¶
An example of the COSE_Encrypt structure using the HPKE scheme is shown in Figure 5. Line breaks and comments have been inserted for better readability.¶
This example uses the following:¶
Encryption alg: AES-128-GCM¶
plaintext: "This is the content."¶
detatched ciphertext: h'cc168c4e148c52a83010a75250935a47ccb8682deebcef8fce5d60c161e849f53a2dc664'¶
kid:"01"¶
kid:"02"¶
To offer authentication of the sender the payload in Figure 5 is signed with a COSE_Sign1 wrapper, which is outlined in Figure 6. The payload in Figure 6 is meant to contain the content of Figure 5.¶
Examples of private and public KEM key representation are shown below.¶
This specification is based on HPKE and the security considerations of [RFC9180] are therefore applicable also to this specification.¶
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.¶
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 [RFC8937] for random number generations are followed.¶
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.¶
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.¶
This document requests IANA to add new values to the 'COSE Algorithms' and to the 'COSE Header Parameters' registries.¶
Name: HPKE-Base-P256-SHA256-AES128GCM¶
Value: TBD1 (Assumed: 35)¶
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.¶
Capabilities: [kty]¶
Change Controller: IESG¶
Reference: [[TBD: This RFC]]¶
Recommended: Yes¶
Name: HPKE-Base-P384-SHA384-AES256GCM¶
Value: TBD3 (Assumed: 37)¶
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.¶
Capabilities: [kty]¶
Change Controller: IESG¶
Reference: [[TBD: This RFC]]¶
Recommended: Yes¶
Name: HPKE-Base-P521-SHA512-AES256GCM¶
Value: TBD5 (Assumed: 39)¶
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.¶
Capabilities: [kty]¶
Change Controller: IESG¶
Reference: [[TBD: This RFC]]¶
Recommended: Yes¶
Name: HPKE-Base-X25519-SHA256-AES128GCM¶
Value: TBD7 (Assumed: 41)¶
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.¶
Capabilities: [kty]¶
Change Controller: IESG¶
Reference: [[TBD: This RFC]]¶
Recommended: Yes¶
Name: HPKE-Base-X25519-SHA256-ChaCha20Poly1305¶
Value: TBD8 (Assumed: 42)¶
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.¶
Capabilities: [kty]¶
Change Controller: IESG¶
Reference: [[TBD: This RFC]]¶
Recommended: Yes¶
Name: HPKE-Base-X448-SHA512-AES256GCM¶
Value: TBD9 (Assumed: 43)¶
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.¶
Capabilities: [kty]¶
Change Controller: IESG¶
Reference: [[TBD: This RFC]]¶
Recommended: Yes¶
Name: HPKE-Base-X448-SHA512-ChaCha20Poly1305¶
Value: TBD10 (Assumed: 44)¶
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.¶
Capabilities: [kty]¶
Change Controller: IESG¶
Reference: [[TBD: This RFC]]¶
Recommended: Yes¶
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:¶
Finally, we would like to thank Russ Housley and Brendan Moran for their contributions to the draft as co-authors of initial versions.¶
We would like to thank John Mattsson, Mike Prorock, Michael Richardson, and Goeran Selander for their review feedback.¶