- Home
- RFC 9629
RFC 9629: Using Key Encapsulation Mechanism (KEM) Algorithms in the Cryptographic Message Syntax (CMS)
- R. Housley,
- J. Gray,
- T. Okubo
Abstract
The Cryptographic Message Syntax (CMS) supports key transport and key agreement algorithms. In recent years, cryptographers have been specifying Key Encapsulation Mechanism (KEM) algorithms, including quantum-secure KEM algorithms. This document defines conventions for the use of KEM algorithms by the originator and recipients to encrypt and decrypt CMS content. This document updates RFC 5652.¶
Status of This Memo
This is an Internet Standards Track document.¶
This document is a product of the Internet Engineering Task Force (IETF). It represents the consensus of the IETF community. It has received public review and has been approved for publication by the Internet Engineering Steering Group (IESG). Further information on Internet Standards is available in Section 2 of RFC 7841.¶
Information about the current status of this document, any
errata, and how to provide feedback on it may be obtained at
https://
Copyright Notice
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://
1. Introduction
This document updates "Cryptographic Message Syntax (CMS)" [RFC5652].¶
The CMS enveloped-data content type
[RFC5652] and the CMS authenticated
A KEM algorithm is a one-pass
The KEMRecipient
In this environment, security depends on three things. First, the KEM algorithm must be secure against adaptive chosen ciphertext attacks. Second, the key-encryption algorithm must provide confidentiality and integrity protection. Third, the choices of the KDF and the key-encryption algorithm need to provide the same level of security as the KEM algorithm.¶
A KEM algorithm provides three functions:¶
- KeyGen() -> (pk, sk):
- Generate the public key (pk) and a private key (sk).¶
- Encapsulate(pk) -> (ct, ss):
- Given the recipient's public key (pk), produce a ciphertext (ct) to be passed to the recipient and shared secret (ss) for the originator.¶
- Decapsulate(sk, ct) -> ss:
- Given the private key (sk) and the ciphertext (ct), produce the shared secret (ss) for the recipient.¶
To support a particular KEM algorithm, the CMS originator MUST implement the KEM Encapsulate() function.¶
To support a particular KEM algorithm, the CMS recipient MUST implement the KEM KeyGen() function and the KEM Decapsulate() function. The recipient's public key is usually carried in a certificate [RFC5280].¶
1.1. Terminology
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.¶
1.2. ASN.1
CMS values are generated using ASN.1 [X.680], which uses the Basic Encoding Rules (BER) and the Distinguished Encoding Rules (DER) [X.690].¶
1.3. CMS Version Numbers
As described in Section 1.3 of [RFC5652], the major data structures include a version number as the first item in the data structure. The version number is intended to avoid ASN.1 decode errors. Some implementations do not check the version number prior to attempting a decode, and then if a decode error occurs, the version number is checked as part of the error-handling routine. This is a reasonable approach; it places error processing outside of the fast path. This approach is also forgiving when an incorrect version number is used by the originator.¶
Whenever the structure is updated, a higher version number will be
assigned. However, to ensure maximum interoperabilit
2. KEM Processing Overview
KEM algorithms can be used with three CMS content types: the
enveloped-data content type [RFC5652], the authenticated
The originator randomly generates the CEK (or the CAEK), and then
all recipients obtain that key as an encrypted object within the KEMRecipient
A KEM algorithm and a key derivation function are used to securely
establish a pairwise symmetric KEK, which is used to encrypt
the originator
In advance, each recipient uses the KEM KeyGen() function to create a key pair. The recipient will often obtain a certificate [RFC5280] that includes the newly generated public key. Whether the public key is certified or not, the newly generated public key is made available to potential originators.¶
The originator establishes the CEK (or the CAEK) using these steps:¶
-
The CEK (or the CAEK) is generated at random.¶
-
For each recipient:¶
-
The recipient's public key is used with the KEM Encapsulate() function to obtain a pairwise shared secret (ss) and the ciphertext for the recipient.¶
-
The key derivation function is used to derive a pairwise symmetric KEK, from the pairwise ss and other data that is optionally sent in the ukm field.¶
-
The KEK is used to encrypt the CEK for this recipient.¶
-
-
The CEK (or the CAEK) is used to encrypt the content for all recipients.¶
The recipient obtains the CEK (or the CAEK) using these steps:¶
-
The recipient's private key and the ciphertext are used with the KEM Decapsulate() function to obtain a pairwise ss.¶
-
The key derivation function is used to derive a pairwise symmetric KEK, from the pairwise ss and other data that is optionally sent in the ukm field.¶
-
The KEK is used to decrypt the CEK (or the CAEK).¶
-
The CEK (or the CAEK) is used to decrypt the content.¶
3. KEM Recipient Information
This document defines KEMRecipient
The object identifier associated with KEMRecipient
id-ori OBJECT IDENTIFIER ::= { iso(1) member-body(2) us(840)
rsadsi(113549) pkcs(1) pkcs-9(9) smime(16) 13 }
id-ori-kem OBJECT IDENTIFIER ::= { id-ori 3 }
The KEMRecipient
KEMRecipientInfo ::= SEQUENCE {
version CMSVersion, -- always set to 0
rid RecipientIdentifier,
kem KEMAlgorithmIdentifier,
kemct OCTET STRING,
kdf KeyDerivationAlgorithmIdentifier,
kekLength INTEGER (1..65535),
ukm [0] EXPLICIT UserKeyingMaterial OPTIONAL,
wrap KeyEncryptionAlgorithmIdentifier,
encryptedKey EncryptedKey }
The fields of the KEMRecipient
version is the syntax version number. The version MUST be 0. The CMSVersion type is described in Section 10.2.5 of [RFC5652].¶
rid specifies the recipient's certificate or key that was used by
the originator with the KEM Encapsulate() function. The
Recipient
kem identifies the KEM algorithm, and any associated parameters, used
by the originator. The KEMAlgorithm
kemct is the ciphertext produced by the KEM Encapsulate() function for this recipient.¶
kdf identifies the key derivation function, and any associated parameters,
used by the originator to generate the KEK. The
Key
kekLength is the size of the KEK in octets. This value is one of the inputs to the key derivation function. The upper bound on the integer value is provided to make it clear to implementers that support for very large integer values is not needed. Implementations MUST confirm that the value provided is consistent with the key-encryption algorithm identified in the wrap field below.¶
ukm is optional user keying material. When the ukm value is provided,
it is used as part of the info structure described in Section 5 to
provide a context input to the key derivation function. For example, the
ukm value could include a nonce, application
wrap identifies a key-encryption algorithm used to encrypt the
CEK. The Key
encryptedKey is the result of encrypting the CEK or the
CAEK (the content
4. KEM Algorithm Identifier
The KEMAlgorithm