Internet-Draft | COSE HPKE | July 2022 |
Tschofenig, et al. | Expires 12 January 2023 | [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) encryption function. Authentication for HPKE in COSE is provided by COSE-native security mechanisms.¶
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 12 January 2023.¶
Copyright (c) 2022 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. HPKE utilizes a non-interactive ephemeral-static Diffie-Hellman exchange to establish a shared secret. The motivation for standardizing a public key encryption scheme is explained in the introduction of [RFC9180].¶
The HPKE specification defines several features for use with public key encryption and a subset of those features is applied to COSE [RFC8152]. Since COSE provides constructs for authentication, those are not re-used from the HPKE specification. This specification uses the "base" mode, as it is called in HPKE specification language.¶
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].¶
This specification supports two uses of HPKE in COSE, namely¶
HPKE in "base" mode requires little information to be exchanged between a sender and a recipient, namely¶
In the subsections below we explain how this information is carried inside the COSE_Encrypt0 and the COSE_Encrypt1 for the one layer and the two layer structure, respectively.¶
With the one layer structure the information carried inside the COSE_recipient structure is embedded inside the COSE_Encrypt0.¶
HPKE is used to directly encrypt the plaintext. The resulting ciphertext may be included in the COSE_Encrypt0 or may be detached.¶
A sender MUST set the alg parameter in the protected header, which indicates the use of HPKE. The values for the alg parameter MUST be taken from Section 5.1, or values registered in the future with the COSE_ALG_HPKE_* prefix.¶
The sender MUST place the kid and ephemeral public key into the unprotected header.¶
Figure 1 shows the COSE_Encrypt0 CDDL structure.¶
The COSE_Encrypt0 MAY be tagged or untagged.¶
An example is shown in Section 3.2.¶
The SealBase(pkR, info, aad, pt) function is used to encrypt a plaintext pt to a recipient's public key (pkR).¶
For use in COSE_Encrypt0, the plaintext "pt" passed into the SealBase is the raw plaintext.¶
In the absence of an application profile standard specifying otherwise a COSE-HPKE-compliant application MUST use an empty "info" parameter. The Enc_structure, defined in Section 5.3 of [RFC8152], is used as input to the "aad" parameter.¶
The CDDL fragment is defined as:¶
Enc_structure = [ context : "Encrypt0", protected : empty_or_serialized_map, external_aad : bstr ]¶
The "external_aad" is empty, unless an application profile standard specifies otherwise.¶
If SealBase() is successful, it will output a ciphertext "ct" and an encapsulated key "enc". The content of enc is the ephemeral public key.¶
The recipient will use the OpenBase(enc, skR, info, aad, ct) function with the enc and ct parameters received from the sender.¶
In the absence of an application profile standard specifying otherwise a COSE-HPKE-compliant application MUST use an empty "info" parameter. The Enc_structure, defined in Section 5.3 of [RFC8152], is used as input to the "aad" parameter. The CDDL fragment is shown in the previous section.¶
The OpenBase function will, if successful, decrypt "ct". When decrypted, the result is the raw plaintext.¶
This example shows a COSE_Encrypt0 structure. HPKE was used to encrypt plaintext with AES-128-GCM. The ephemeral NIST P-256 key key generated by the HPKE SealBase().¶
With the two layer structure the HPKE information is conveyed in the COSE_recipient structure, i.e. one COSE_recipient structure per recipient.¶
In this approach the following layers are involved:¶
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.¶
For example, the content encrypted at layer 0 may be a firmware image. The same ciphertext firmware image is processed by all of the recipients; however, each recipient uses their own private key to obtain the CEK.¶
The COSE_recipient structure shown in Figure 3 is repeated for each recipient.¶
The COSE_Encrypt MAY be tagged or untagged.¶
HPKE algorithms take an info parameter that can be used to influence the generation of keys (e.g., to fold in identity information) and an aad parameter that provides additional authenticated data to the AEAD algorithm in use.¶
An example is shown in Section 3.2.1.3.¶
The SealBase(pkR, info, aad, pt) function is used to encrypt a plaintext pt to a recipient's public key (pkR).¶
For use in COSE_Encrypt, the plaintext "pt" passed into the SealBase is the CEK. The CEK is a random byte sequence of length appropriate for the encryption algorithm selected in layer 0. For example, AES-128-GCM requires a 16 byte key and the CEK would therefore be 16 bytes long.¶
In the absence of an application profile standard specifying otherwise, a COSE-HPKE-compliant implementation MUST leave the info and the aad parameters empty when used with the two layer structure.¶
If SealBase() is successful, it will output a ciphertext "ct" and an encapsulated key "enc". The content of enc is the ephemeral public key.¶
The recipient will use the OpenBase(enc, skR, info, aad, ct) function with the enc and ct parameters received from the sender. The "aad" and the "info" parameters are obtained via the context of the usage.¶
In the absence of an application profile standard specifying otherwise, a COSE-HPKE-compliant implementation MUST leave the info and the aad parameters empty when used with the two layer structure.¶
The OpenBase function will, if successful, decrypt "ct". When decrypted, the result will be the CEK. The CEK is the symmetric key used to decrypt the ciphertext in layer 0 of the COSE_Encrypt structure.¶
An example of the COSE_Encrypt structure using the HPKE scheme is shown in Figure 4. Line breaks and comments have been inserted for better readability. It uses the following algorithm combination:¶
The algorithm selection is based on the registry of the values offered by the alg parameters (see Section 5).¶
To offer authentication of the sender the payload in Figure 4 is signed with a COSE_Sign1 wrapper, which is shown in Figure 5. The payload in Figure 5 corresponds to the content shown in Figure 4.¶
This specification is based on HPKE and the security considerations of HPKE [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.¶
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 the it MUST be ensured that the guidelines for random number generations are followed.¶
The COSE_Encrypt structure MUST be authenticated using COSE constructs like COSE_Sign, COSE_Sign1, COSE_MAC, or COSE_MAC0.¶
When 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 registry and to the COSE Elliptic Curves registry, defined in [RFC8152] (in the Standards Action With Expert Review category).¶
We would like to thank Goeran Selander, John Mattsson and Ilari Liusvaara for their review feedback.¶