Internet-Draft | KEM Combiner | March 2023 |
Ounsworth & Wussler | Expires 7 September 2023 | [Page] |
The migration to post-quantum cryptography often calls for performing multiple key encapsulations in parallel and then combining their outputs to derive a single shared secret.¶
This document defines a flexible multi-share KEM combiner to join an arbitrary number of key shares, that is a multi-PRF compatible with NIST SP 800-56Cr2 [SP800-56C].¶
This note is to be removed before publishing as an RFC.¶
Status information for this document may be found at https://datatracker.ietf.org/doc/draft-ounsworth-cfrg-kem-combiners/.¶
Discussion of this document takes place on the Limited Additional Mechanisms for PKIX and SMIME (lamps) Working Group mailing list (mailto:spasm@ietf.org), which is archived at https://mailarchive.ietf.org/arch/browse/spasm/. Subscribe at https://www.ietf.org/mailman/listinfo/spasm/.¶
Source for this draft and an issue tracker can be found at https://github.com/EntrustCorporation/draft-ounsworth-cfrg-kem-combiners.¶
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 7 September 2023.¶
Copyright (c) 2023 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.¶
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 document is consistent with all terminology defined in [I-D.driscoll-pqt-hybrid-terminology].¶
For the purposes of this document, we consider a Key Encapsulation Mechanism (KEM) to be any asymmetric cryptographic scheme comprised of algorithms satisfying the following interfaces [PQCAPI].¶
def kemKeyGen() -> (pk, sk) def kemEncaps(pk) -> (ct, ss) def kemDecaps(ct, sk) -> ss¶
where pk
is public key, sk
is secret key, ct
is the ciphertext representing an encapsulated key, and ss
is shared secret.¶
KEMs are typically used in cases where two parties, hereby refereed to as the "encapsulater" and the "decapsulater", wish to establish a shared secret via public key cryptography, where the decapsulater has an asymmetric key pair and has previously shared the public key with the encapsulater.¶
The need for a KEM combiner function arises in three different contexts within IETF security protocols:¶
This document normalizes a mechanisms for combining the output of two or more KEMs.¶
As a post-quantum stop-gap, several IETF protocols have added extensions to allow for mixing a pre-shared key (PSK) into an (EC)DH based key exchange. Examples include CMS [RFC8696] and IKEv2 [RFC8784].¶
A post-quantum / traditional hybrid key encapsulation mechanism (hybrid KEM) as defined in [I-D.driscoll-pqt-hybrid-terminology] as¶
A Key Encapsulation Mechanism (KEM) made up of two or more component KEM algorithms where at least one is a post-quantum algorithm and at least one is a traditional algorithm.¶
Building a PQ/T hybrid KEM requires a secure function which combines the output of both component KEMs to form a single output. Several IETF protocols are adding PQ/T hybrid KEM mechanisms as part of their overall post-quantum migration strategies, examples include TLS 1.3 [I-D.ietf-tls-hybrid-design], IKEv2 [I-D.ietf-ipsecme-ikev2-multiple-ke], X.509; PKIX; CMS [I-D.ounsworth-pq-composite-kem], OpenPGP [I-D.wussler-openpgp-pqc], JOSE / COSE (CITE once Orie's drafts are up).¶
The need for a KEM-based authenticated key establishment arises, for example, when two communicating parties each have long-term KEM keys (for example in X.509 certificates), and wish to involve both KEM keys in deriving a mutually-authenticated shared secret. In particular this will arise for any protocol that needs to provide post-quantum replacements for static-static (Elliptic Curve) Diffie-Hellman mechanisms. Examples include a KEM replacement for CMP's DHBasedMac [I-D.ietf-lamps-cmp-updates], .. TODO: cite others.¶
A KEM combiner is a function that takes in two or more shared secrets SS_i
and returns a combined shared secret SS
, where all values are byte arrays.¶
SS = kemCombiner(SS_1, SS_2, ..., SS_n)¶
This document assumes that shared secrets are the output of a KEM, but without loss of generality they MAY also be any other source of cryptographic key material, such as pre-shared keys (PSKs), with PQ/PSK being a quantum-safe migration strategy being made available by some protocols, see for example IKEv2 in [RFC8784].¶
In general it is desirable to use a multi-PRF as a KEM combiner, a function that can be keyed by any input. The following simple yet generic construction can be used in all IETF protocols that need to combine the output of two or more KEMs:¶
KDF(counter || K_1 || ... || K_n || fixedInfo, outputBits)
where:¶
KDF
represents a suitable choice of cryptographic key derivation function,¶
K_i
represent the constant-length input keys,¶
fixedInfo
is some protocol-specific KDF binding,¶
counter
parameter is instantiation-specific and is discussed in Section 4.¶
outputBits
determines the length of the key,¶
||
represents concatenation.¶
In section Section 4 are listed several possible practical instantiations, in compliance with NIST SP-800 56Cr2 [SP800-56C].¶
Each K_i
MUST be constant in length, therefore the secret shares SS_i
can be used directly only if they are guaranteed to be constant length. For all other cases, it is REQUIRED to hash them first:¶
K_i = H(SS_i)¶
Any protocols making use of this construction MUST either hash all inputs SS_i
, or justify that any un-hashed inputs will always be fixed length.¶
The fixedInfo
string is a fixed-length string containing some context-specific information.
It MUST NOT depend on the secret shares. The intention is to prevent cross-protocol attacks by making this key derivation unique to its protocol context.¶
The fixedInfo
string MUST have a definite structure depending on the protocol where all parts are fixed length. This prevents a variable length structure from creating collisions between two different instances.
In cases some variable length input is necessary, such as the representation of a public key or an OID, then hashing or padding can be used.¶
The parameter fixedInfo MAY contain any of the following information:¶
This is a non-comprehensive list, further information can be found in paragraph 5.8.2 of NIST SP800-56Ar3 [SP800-56A].¶
The KDF MUST be instantiated with one of the following Keccak-based option.
Each instance defines a function to be used as KDF
, a hash H
function to optionally derive the K_i
, and a counter
.¶
KDF = SHA3-256
and H = SHA3-256
, with hashSize = 256 bit
.¶
KDF = SHA3-512
and H = SHA3-512
, with hashSize = 512 bit
.¶
KDF = KMAC128
and H = SHA3-256
, with hashSize = 128 bit
.¶
KDF = KMAC256
and H = SHA3-512
, with hashSize = 256 bit
.¶
Options 1 and 2 instantiate the KDF using SHA3, specified in NIST FIPS 202 [FIPS202].
To generate an outputBits
long secret share SS
:¶
counter
MUST be initialized with the string 0x00000001
.¶
ceil(outputBits/hashSize)
times. For each iteration the counter
MUST be increased by 0x01
.¶
counter
.¶
outputBits
are returned as SS
.¶
An implementation MUST NOT overflow and reuse the counter
and an error MUST be returned when producing more than 2^32 consecutive hashes.¶
Options 3 and 4 are KMAC-based, as specified in NIST SP 800-185 [SP800-185].
The context S
MUST be the utf-8 string "KDF", the key K
MUST be a context-specific string of at least hashSize
bits, and counter
MUST be the fixed string 0x00000001
.
The key K
MAY be used as an additional option to perform context separation, in scenarios where fixedInfo
is not sufficient.¶
To derive a shared secret SS
of desired length, KMAC is called a single time with the input string X
defined in Section 3 and length L
being outputBits
.¶
None.¶
The proposed instantiations in Section 4 are practical multi-PRFs and this specification limits to the use of Keccak-based constructions. The sponge construction was proven to be indifferentiable from a random oracle [SPONGE].
More precisely, for a given capacity c
the indifferentiability proof shows that assuming there are no weaknesses found in the Keccak permutation, an attacker has to make an expected number of 2^(c/2)
calls to the permutation to tell Keccak from a random oracle.
For a random oracle, a difference in only a single bit gives an unrelated, uniformly random output.
Hence, to be able to distinguish a key K
, derived from shared keys K_i
from a random bit string, an adversary has to correctly guess all key shares K_i
entirely.¶
This document incorporates contributions and comments from a large group of experts. The authors would especially like to acknowledge the expertise and tireless dedication of the following people, who attended many long meetings and generated millions of bytes of electronic mail and VOIP traffic over the past years in pursuit of this document:¶
Douglas Stebila, Nimrod Aviram, Andreas Huelsing, and Stavros Kousidis.¶
We are grateful to all, including any contributors who may have been inadvertently omitted from this list.¶
This document borrows text from similar documents, including those referenced below. Thanks go to the authors of those documents. "Copying always makes things easier and less error prone" - [RFC8411].¶