<?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.29 (Ruby 3.2.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-sfluhrer-cfrg-ml-kem-security-considerations-03" category="info" consensus="true" submissionType="IRTF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.28.1 -->
  <front>
    <title abbrev="ML-KEM Security">ML-KEM Security Considerations</title>
    <seriesInfo name="Internet-Draft" value="draft-sfluhrer-cfrg-ml-kem-security-considerations-03"/>
    <author fullname="Scott Fluhrer">
      <organization>Cisco Systems</organization>
      <address>
        <email>sfluhrer@cisco.com</email>
      </address>
    </author>
    <author fullname="Quynh Dang">
      <organization abbrev="NIST">National Institute of Standards and Technology</organization>
      <address>
        <email>Quynh.Dang@nist.gov</email>
      </address>
    </author>
    <author initials="J." surname="Preuß Mattsson" fullname="John Preuß Mattsson">
      <organization>Ericsson</organization>
      <address>
        <email>john.mattsson@ericsson.com</email>
      </address>
    </author>
    <author fullname="Kevin Milner">
      <organization>Quantinuum</organization>
      <address>
        <email>kamilner@kamilner.ca</email>
      </address>
    </author>
    <author fullname="Daniel Shiu">
      <organization>Arqit Quantum Inc</organization>
      <address>
        <email>daniel.shiu@arqit.uk</email>
      </address>
    </author>
    <date year="2025" month="May" day="15"/>
    <area>IRTF</area>
    <workgroup>Crypto Forum</workgroup>
    <keyword>ML-KEM</keyword>
    <abstract>
      <?line 110?>

<t>NIST standardized ML-KEM as FIPS 203 in August 2024.  This document discusses
how to use ML-KEM and how to use it within protocols - that is, what problem it solves,
and what you need to do to use it securely.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://sfluhrer.github.io/ml-kem-security-considerations/draft-sfluhrer-cfrg-ml-kem-security-considerations.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-sfluhrer-cfrg-ml-kem-security-considerations/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Crypto Forum Research Group mailing list (<eref target="mailto:cfrg@irtf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/cfrg/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/cfrg/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/sfluhrer/ml-kem-security-considerations"/>.</t>
    </note>
  </front>
  <middle>
    <?line 116?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>A Cryptographically Relevent Quantum Computer (CRQC) is a large and reliable Quantum Computer that can break protocols which rely on the
traditional RSA, DH, or ECDH methods of securely exchanging keys.  Even
though it is not believed that, at the time of this writing, there exists a CRQC,
there still remains the possibility that an adversary may record the protocol
exchange, and then later (when they have access to a CRQC) go ahead and read
the traffic.</t>
      <t>Because of this threat, NIST has published FIPS 203 <xref target="FIPS203"/>, which standardizes a method for allowing two systems to securely exchange keying material and which is not vulnerable to a CRQC.
This method is based on module lattices, and is called ML-KEM.</t>
      <t>ML-KEM is a Key Encapsulation Mechanism (KEM), which can be used to generate a shared secret key between two parties.
A KEM is a public key mechanism where one side (Alice) can generate a public/private key pair, and send the public key to the other side (Bob).
Bob then can use it to generate both a ciphertext and a shared secret key.
Bob then sends the ciphertext to Alice, who uses her private key to generate the shared secret key.
The idea is that someone in the middle, listening into the exchanged public keys and ciphertexts will not be able to recovered the shared secret key that Alice and Bob learns.
Hence, Alice and Bob can use their shared secret key to establish secure symmetric communication.</t>
      <t>One common misunderstanding of the term KEM is the expectation that Bob freely chooses the
shared secret, and encrypts that when sending to Alice. What actually happens in
ML-KEM is that randomness from both sides are used to contribute to the
shared secret. That is, ML-KEM internally generates the shared secret in a
way that Bob cannot select the value. Now, Bob can generate a number of
ciphertext/shared secret pairs, and select the shared secret that he prefers,
but he cannot freely choose it or make secrets shared with two parties be
equal.</t>
      <t>A KEM (such as ML-KEM) sounds like it may be a drop-in replacement for
Diffie-Hellman (and in some scenarios, it can be).
However this is not always the case. In Diffie-Hellman, the parties
exchange two public keys, whereas in a KEM, the ciphertext is necessarily a
function of Alice's public key, and thus can only be useful only with that
specific public key. Additionally, a KEM differs from Diffie-Hellman which is
asynchronous and non-interactive. In particular, for an 'ephemeral-ephemeral'
key establishment, an encapsulator cannot pre-emptively initiate a key
establishment, but requires an encapulation key. Nor can participants compute
parts of the key establishment in parallel as is the case with
Diffie-Hellman. As long as the application can handle larger public keys and
ciphertexts, a KEM is a drop-in replacement for 'ephemeral-ephemeral' key
exchange in protocols like TLS <xref target="RFC8446"/> and SSH <xref target="RFC4253"/> as well as
'static-ephemeral' key exchange in protocols like ECIES/HPKE <xref target="RFC9180"/>,
that is, in cases where Alice has a long term public key, and Bob can use that long term public key to establish communication.
A KEM is not a drop-in replacement in applications such as the Diffie-Hellman
ratchet in Signal <xref target="SIGNAL"/>, implicit 'ephemeral-static' DH authentication
in Noise <xref target="NOISE"/>, Wireguard <xref target="WIRE"/>, and EDHOC <xref target="RFC9528"/>, and
'static-static' configurations in CMS <xref target="RFC6278"/> and Group OSCORE
<xref target="I-D.ietf-core-oscore-groupcomm"/>, where both sides have long-term public
keys.</t>
      <t>ML-KEM can also be used to perform public key encryption, that is, where a sender encrypts a message with a public key, and only the holder of the private key can decrypt the message.
To use ML-KEM for this task, it is recommended that you it within the Hybrid Public Key Encryption framework <xref target="RFC9180"/> to perform the operations.
You can use <xref target="I-D.connolly-cfrg-hpke-mlkem"/>, which is three ML-KEM perameter sets that has been proposed for HPKE.</t>
    </section>
    <section anchor="using-ml-kem">
      <name>Using ML-KEM</name>
      <t>To use ML-KEM, there are three steps involved:</t>
      <section anchor="ml-kem-key-generation">
        <name>ML-KEM Key Generation</name>
        <t>The first step for Alice is to generate a public and private keypair.</t>
        <t>In FIPS 203, the key generation function is <tt>ML-KEM.KeyGen()</tt> (see section 7.1 of
<xref target="FIPS203"/>).  It internally calls the random number generator for a seed and
produces both a public key (known as an encapsulation key in FIPS 203) and a
private key (known as a decapsulation key). The seed can be securely stored,
but must be treated with the same safeguards as the private key.
The seed format allows fast
reconstruction of the expanded key pair format, and elides the need for
format checks of the expanded key formats.
Other intermediate data beside the matrix A_hat must be securely deleted.
A_hat may be saved for repeated Decapsulation operation(s) with the same decapsulation key.</t>
        <t>The public key can be freely published (and Bob will need it for his part of
the process); this step may be performed simply by transmitting the key to
Bob.  However, the private key (in either format) must be kept secret.</t>
        <t>It is essential that the public key is generated correctly when the initial
key generation is performed. Lattice public keys consist of a lattice and a secret
hidden by an error term; if additional error can be introduced into the
public key generation stage, then the success of decapsulation can reveal
enough of the secret that successive queries determine the private
key. Notably, this means a public key can be 'poisoned' such that a future
adversary can recover the private key even though it will appear correct in
normal usage.</t>
      </section>
      <section anchor="ml-kem-encapsulation">
        <name>ML-KEM Encapsulation</name>
        <t>The second step is for Bob to generate a ciphertext and a shared secret key.</t>
        <t>To perform this step, Bob would first run the Encapsulation Key Check on
Alice's public key as outlined at the beginning of section 7.2 of
<xref target="FIPS203"/>.  If that test passes, then Bob would perform what FIPS 203
terms as ML-KEM.Encaps() (see section 7.2 of <xref target="FIPS203"/>).  This step takes
the validated public key, internally calls the random number generator for a
seed, and produces both a ciphertext and a 32-byte shared secret
key.
Intermediate data other than the ciphertext, shared secret key and the matrix A_hat (and the "matrix data" internal to ML-KEM, which can be deduced from the public key) must be securely deleted.
The matrix A_hat may be saved and reused for later encapsulation operations with the same encapsulation key.</t>
        <t>The ciphertext can be transmitted back to Alice; if the exchange is
successful, the 32-byte shared secret key will be the key shared with Alice.</t>
        <t>It may be that some libraries combine the validation and the encapsulation
step; implementations should determine whether the library they are using does. For static
public keys, the Encapsulation Key Check only needs to be performed once.</t>
      </section>
      <section anchor="ml-kem-decapsulation">
        <name>ML-KEM Decapsulation</name>
        <t>The third and final step is for Alice to take the ciphertext and generate the
shared secret key.</t>
        <t>To perform this step, Alice would first run the Decapsulation Key Check on
Bob's ciphertext as outlined at the beginning of section 7.3 of <xref target="FIPS203"/>.
If that test passes, then Alice would perform what FIPS 203 terms as
<tt>ML-KEM.Decaps()</tt> (see section 7.3 of <xref target="FIPS203"/>).  This step takes the
ciphertext from Bob and the private key that was previously generated by
Alice, and produces a 32-byte shared secret key. It also repeats the
encapsulation process to ensure that the ciphertext was created strictly
according to the specification, with invalid ciphertexts generating an unrelated 32 byte value that gives no information.
Although not necessary for the correctness of the key establishment,
this step should not be skipped as a maliciously generated ciphertext could
induce decapsulation failures that can allow an attacker to deduce the private key with a sufficient number of exchanges.
Intermediate data other than the shared secret key and the matrix A_hat must be securely deleted.
The matrix A_hat may be saved for later Decapsulation operations with the same decapsulation key.</t>
        <t>If the exchange is successful, the 32-byte key generated on both sides will
be the same. The shared secret key is always 32 bytes for all parameter sets.</t>
        <t>It may be that some libraries combine the validation and the encapsulation
step; implementations should determine whether the library they are using does. For static
public keys, the Encapsulation Key Check only needs to be performed once.</t>
      </section>
      <section anchor="ml-kem-parameter-sets">
        <name>ML-KEM Parameter Sets</name>
        <t>FIPS 203 specifies three parameter sets; ML-KEM-512, ML-KEM-768 and
ML-KEM-1024.  It is assumed that Alice and Bob both know which parameter set
they use (either by negotiation or by having one selection fixed in the
protocol).</t>
        <t><xref target="par-sets"/> shows the sizes of the cryptographic material of ML-KEM for each parameter set, as well as their relative cryptographic strength:</t>
        <table anchor="par-sets">
          <name>pk = public key, sk = private key, expanded form, ct = ciphertext, ss = shared key, all lengths in bytes</name>
          <thead>
            <tr>
              <th align="left"> </th>
              <th align="right">pk size</th>
              <th align="right">sk size</th>
              <th align="right">ct size</th>
              <th align="center">ss size</th>
              <th align="center">as strong as</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">ML-KEM-512</td>
              <td align="right">800</td>
              <td align="right">1632</td>
              <td align="right">768</td>
              <td align="center">32</td>
              <td align="center">AES-128</td>
            </tr>
            <tr>
              <td align="left">ML-KEM-768</td>
              <td align="right">1184</td>
              <td align="right">2400</td>
              <td align="right">1088</td>
              <td align="center">32</td>
              <td align="center">AES-192</td>
            </tr>
            <tr>
              <td align="left">ML-KEM-1024</td>
              <td align="right">1568</td>
              <td align="right">3168</td>
              <td align="right">1568</td>
              <td align="center">32</td>
              <td align="center">AES-256</td>
            </tr>
          </tbody>
        </table>
        <t><xref target="par-perf"/> shows an example of ML-KEM performance of each parameter set on one specific platform:</t>
        <table anchor="par-perf">
          <name>Single-core performance in operation per second on AMD Ryzen 7 7700</name>
          <thead>
            <tr>
              <th align="left"> </th>
              <th align="right">key generation</th>
              <th align="right">encapsulation</th>
              <th align="right">decapsulation</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">ML-KEM-512</td>
              <td align="right">244000</td>
              <td align="right">153000</td>
              <td align="right">202000</td>
            </tr>
            <tr>
              <td align="left">ML-KEM-768</td>
              <td align="right">142000</td>
              <td align="right">103000</td>
              <td align="right">134000</td>
            </tr>
            <tr>
              <td align="left">ML-KEM-1024</td>
              <td align="right">109000</td>
              <td align="right">77000</td>
              <td align="right">99000</td>
            </tr>
          </tbody>
        </table>
        <t>Data sourced from <xref target="EBACS"/></t>
        <t>As can be seen from <xref target="par-sets"/> and <xref target="par-perf"/>, ML-KEM has significantly
larger public keys and ciphertexts than ECDH but very good performance.</t>
      </section>
    </section>
    <section anchor="kem-security-considerations">
      <name>KEM Security Considerations</name>
      <t>This section pertains to KEM (Key Encapsulation Mechanisms) in general,
including ML-KEM.</t>
      <t>A KEM requires high-quality source of entropy during both
the keypair generation and ciphertext generation steps.  If an adversary can
recover the random bits used in either of these processes, they can recover
the shared secret.  If an adversary can recover the random bits used during
key generation, they can also recover the secret key.</t>
      <t>Alice needs to keep her private key secret. It is recommended that they
zeroize the private key when they will have no further need of it,
that is, when they know they never need to decapsulate any further ciphertexts with it.</t>
      <t>A KEM (including ML-KEM) provides no authentication of either communicating
party. If an adversary could replace either the public key or the ciphertext
with its own, it would generate a shared key with Alice or Bob.  Hence, it is
important that the protocol that uses a KEM lets Bob be able to verify that
the public key he obtains came from Alice and lets Alice verify that the ciphertext
came from Bob (that is, an entity that Alice is willing to
communicate with). Such verification can be performed by cryptographic
methods such as digital signatures or a MAC to verify integrity of the
protocol exchange.</t>
    </section>
    <section anchor="ml-kem-security-considerations">
      <name>ML-KEM Security Considerations</name>
      <t>This section pertains specifically to ML-KEM, and may not be true of KEMs in
general.</t>
      <t>The fundamental security property of ML-KEM is that someone listening to the exchanges
(and thus obtains both the public key and the ciphertext) cannot reconstruct
the shared secret key, and this is true even if the adversary has access to a
CRQC. ML-KEM is IND-CCA2 secure; that is, it remains secure even if an
adversary is able to submit arbitrary ciphertexts used a fixed public key and observe the resulting
shared key. Submitting invalid ciphertexts to <tt>ML-KEM.Decaps()</tt> does not help
the attacker obtain information about the decryption key of the PKE-Decrypt
function inside the ML-KEM.Decaps(). Substituting the public key Alice sends
Bob by another public key chosen by the attacker will not help the attacker
get any information about Alice's private key, it would just make Alice and
Bob not have a same shared secret key. However, if it is possible to
substitute the copy of the public key for both Alice and Bob, an attacker can
introduce a malicious public key where the same private key can be used for
decapsulation, but the probability of decryption failure is marginally
higher. As decryption failures can leak information about the secret
decapulation key, it is important that Alice keeps a secure copy of the
public key as part of her secret key. For practical purposes, IND-CCA2 means
that ML-KEM is secure to use with static public keys.</t>
      <t>ML-KEM requires that a source of random bits with security strength greater than or equal to the security strength of the ML-KEM parameter set be used when generating the keypair and ciphertext during ML-KEM.KeyGen() and ML-KEM.Encaps() respectively.
The cryptographic library that implements ML-KEM
may access this source of randomness internally. A fresh string of bytes must
be used for every sampling of random bytes in key generation and
encapsulation.
The random bytes should be generated securely [RFC 4086].</t>
      <t>Alice must keep her private key secret (both private and secure from
modification).  A copy of the public key and its hash are
included in the private key and must be protected from modification.</t>
      <t>If the ciphertext that Alice receives from Bob is tampered with (either by
small modification or by replacing it with an entirely different ciphertext),
the shared secret key that Alice derives will be uncorrelated with the shared
secret key that Bob obtains.  An attacker will not be able to determine any
information about the correct shared secret key or Alice's private key, even
if the attacker obtains Alice's modified shared secret key which is the
output of the <tt>ML-KEM.Decaps()</tt> function taking the modified ciphertext as input.</t>
      <t>It is secure to reuse a public key multiple times.  That is, instead of Alice
generating a fresh public and private keypair for each exchange, Alice may
generate a public key once, and then publish that public key, and use it for
multiple incoming ciphertexts, generating multiple shared secret keys.  While
this is safe, it is recommended that if the protocol already has Alice send Bob her unauthenticated public key, they should generate a fresh keypair each time
(and zeroize the private key immediately after ML-KEM.Decaps()) to obtain Perfect Forward
Secrecy. Generally key generation of ML-KEM is very fast (see
<xref target="par-perf"/>). Hence, if Alice generates a fresh ML-KEM key each time, then even if Alice's system is subverted (either by a hacker or
a legal warrant), the previous communications remain secure (because Alice no
longer has the information needed to recover the shared secret keys).</t>
      <t>Alice and Bob must perform the Key Check steps (the Encapsulation Key Check
on the public key for Bob, the Decapsulation Key Check on the ciphertext for
Alice).  The cryptographic libraries that Alice and Bob use may
automatically perform such checks; they should each verify that is the case.</t>
      <t>The shared secret key for all three parameter sets, ML-KEM-512, ML-KEM-768
and ML-KEM-1024 is 32 bytes which are indistinguishable from 32-byte
pseudorandom byte-strings of 128, 192 and 256 bits of strengths
respectively. As such, the 32-byte string is suitable for both directly as a symmetric key
(for use by a symmetric cipher such as AES or a MAC), and also as input into
a Key Derivation Function.  This is in contrast to a Diffie-Hellman (or ECDH)
operation, where the output is distinguishable from random.</t>
      <t>With ML-KEM, there is a tiny probability of decapsulation failure.
That is, even if Alice and Bob perform their roles honestly and the public key and ciphertext are transmitted correctly, there is a tiny probability that Alice and Bob will not derive the same shared key.
However, even though that is a theoretical possibility, practically speaking this will never happen.
For all three parameter sets, the probability is so low that most likely an actual decapsulation failure because of this will never be seen for any ML-KEM exchange anywhere (not only for your protocol, but over all protocols that uses ML-KEM).</t>
      <t>If the adversary has control over the ML-KEM private key, it has been shown that adversary can cause a ‘misbinding’ between the shared key and either the ciphertext or the public key.
That is, by generating an impossible private key (a key that cannot occur with the standard ML-KEM key generation process), the adversary could be able to create public keys for which different ciphertexts or public keys may result in the same shared secret (these security notions are called MAL-BIND-K-CT and MAL-BIND-K-PK in the cryptographical literature <xref target="CDM23"/> <xref target="KEMMY24"/>).
This is not a threat to normal uses of ML-KEM as a key exchange or a public key encryption method.
If ML-KEM is used as an authentication method where the shared key is used for authentication (and adversary control of the private key is possible), it may be advisable if the protocol also authenticates the public key and ciphertext as well.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no IANA actions.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="FIPS203" target="https://doi.org/10.6028/NIST.FIPS.203">
          <front>
            <title>Module-Lattice-Based Key-Encapsulation Mechanism Standard</title>
            <author>
              <organization/>
            </author>
            <date year="2024" month="August"/>
          </front>
          <seriesInfo name="NIST" value="FIPS 203"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC4253">
          <front>
            <title>The Secure Shell (SSH) Transport Layer Protocol</title>
            <author fullname="T. Ylonen" initials="T." surname="Ylonen"/>
            <author fullname="C. Lonvick" initials="C." role="editor" surname="Lonvick"/>
            <date month="January" year="2006"/>
            <abstract>
              <t>The Secure Shell (SSH) is a protocol for secure remote login and other secure network services over an insecure network.</t>
              <t>This document describes the SSH transport layer protocol, which typically runs on top of TCP/IP. The protocol can be used as a basis for a number of secure network services. It provides strong encryption, server authentication, and integrity protection. It may also provide compression.</t>
              <t>Key exchange method, public key algorithm, symmetric encryption algorithm, message authentication algorithm, and hash algorithm are all negotiated.</t>
              <t>This document also describes the Diffie-Hellman key exchange method and the minimal set of algorithms that are needed to implement the SSH transport layer protocol. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4253"/>
          <seriesInfo name="DOI" value="10.17487/RFC4253"/>
        </reference>
        <reference anchor="RFC4086">
          <front>
            <title>Randomness Requirements for Security</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
            <author fullname="J. Schiller" initials="J." surname="Schiller"/>
            <author fullname="S. Crocker" initials="S." surname="Crocker"/>
            <date month="June" year="2005"/>
            <abstract>
              <t>Security systems are built on strong cryptographic algorithms that foil pattern analysis attempts. However, the security of these systems is dependent on generating secret quantities for passwords, cryptographic keys, and similar quantities. The use of pseudo-random processes to generate secret quantities can result in pseudo-security. A sophisticated attacker may find it easier to reproduce the environment that produced the secret quantities and to search the resulting small set of possibilities than to locate the quantities in the whole of the potential number space.</t>
              <t>Choosing random quantities to foil a resourceful and motivated adversary is surprisingly difficult. This document points out many pitfalls in using poor entropy sources or traditional pseudo-random number generation techniques for generating such quantities. It recommends the use of truly random hardware techniques and shows that the existing hardware on many systems can be used for this purpose. It provides suggestions to ameliorate the problem when a hardware solution is not available, and it gives examples of how large such quantities need to be for some applications. 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="106"/>
          <seriesInfo name="RFC" value="4086"/>
          <seriesInfo name="DOI" value="10.17487/RFC4086"/>
        </reference>
        <reference anchor="RFC6278">
          <front>
            <title>Use of Static-Static Elliptic Curve Diffie-Hellman Key Agreement in Cryptographic Message Syntax</title>
            <author fullname="J. Herzog" initials="J." surname="Herzog"/>
            <author fullname="R. Khazan" initials="R." surname="Khazan"/>
            <date month="June" year="2011"/>
            <abstract>
              <t>This document describes how to use the 'static-static Elliptic Curve Diffie-Hellman key-agreement scheme (i.e., Elliptic Curve Diffie- Hellman where both participants use static Diffie-Hellman values) with the Cryptographic Message Syntax. In this form of key agreement, the Diffie-Hellman values of both the sender and receiver are long-term values contained in certificates. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6278"/>
          <seriesInfo name="DOI" value="10.17487/RFC6278"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </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="RFC9528">
          <front>
            <title>Ephemeral Diffie-Hellman Over COSE (EDHOC)</title>
            <author fullname="G. Selander" initials="G." surname="Selander"/>
            <author fullname="J. Preuß Mattsson" initials="J." surname="Preuß Mattsson"/>
            <author fullname="F. Palombini" initials="F." surname="Palombini"/>
            <date month="March" year="2024"/>
            <abstract>
              <t>This document specifies Ephemeral Diffie-Hellman Over COSE (EDHOC), a very compact and lightweight authenticated Diffie-Hellman key exchange with ephemeral keys. EDHOC provides mutual authentication, forward secrecy, and identity protection. EDHOC is intended for usage in constrained scenarios, and a main use case is to establish an Object Security for Constrained RESTful Environments (OSCORE) security context. By reusing CBOR Object Signing and Encryption (COSE) for cryptography, Concise Binary Object Representation (CBOR) for encoding, and Constrained Application Protocol (CoAP) for transport, the additional code size can be kept very low.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9528"/>
          <seriesInfo name="DOI" value="10.17487/RFC9528"/>
        </reference>
        <reference anchor="I-D.ietf-core-oscore-groupcomm">
          <front>
            <title>Group Object Security for Constrained RESTful Environments (Group OSCORE)</title>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Göran Selander" initials="G." surname="Selander">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="Francesca Palombini" initials="F." surname="Palombini">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="John Preuß Mattsson" initials="J. P." surname="Mattsson">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="Rikard Höglund" initials="R." surname="Höglund">
              <organization>RISE AB</organization>
            </author>
            <date day="16" month="March" year="2025"/>
            <abstract>
              <t>   This document defines the security protocol Group Object Security for
   Constrained RESTful Environments (Group OSCORE), providing end-to-end
   security of CoAP messages exchanged between members of a group, e.g.,
   sent over IP multicast.  In particular, the described protocol
   defines how OSCORE is used in a group communication setting to
   provide source authentication for CoAP group requests, sent by a
   client to multiple servers, and for protection of the corresponding
   CoAP responses.  Group OSCORE also defines a pairwise mode where each
   member of the group can efficiently derive a symmetric pairwise key
   with any other member of the group for pairwise OSCORE communication.
   Group OSCORE can be used between endpoints communicating with CoAP or
   CoAP-mappable HTTP.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-oscore-groupcomm-25"/>
        </reference>
        <reference anchor="I-D.connolly-cfrg-hpke-mlkem">
          <front>
            <title>ML-KEM for HPKE</title>
            <author fullname="Deirdre Connolly" initials="D." surname="Connolly">
              <organization>SandboxAQ</organization>
            </author>
            <date day="18" month="October" year="2024"/>
            <abstract>
              <t>   This document defines Module-Lattice-Based Key-Encapsulation
   Mechanism (ML-KEM) KEM options for Hybrid Public-Key Encryption
   (HPKE).  ML-KEM is believed to be secure even against adversaries who
   possess a cryptographically-relevant quantum computer.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-connolly-cfrg-hpke-mlkem-04"/>
        </reference>
        <reference anchor="CDM23" target="https://eprint.iacr.org/2023/1933.pdf">
          <front>
            <title>Keeping Up with the KEMs: Stronger Security Notions for KEMs and automated analysis of KEM-based protocols</title>
            <author initials="C." surname="Cremers" fullname="Cas Cremers">
              <organization>CISPA Helmholtz Center for Information Security</organization>
            </author>
            <author initials="A." surname="Dax" fullname="Alexander Dax">
              <organization>CISPA Helmholtz Center for Information Security</organization>
            </author>
            <author initials="N." surname="Medinger" fullname="Niklas Medinger">
              <organization>CISPA Helmholtz Center for Information Security</organization>
            </author>
            <date year="2023"/>
          </front>
        </reference>
        <reference anchor="KEMMY24" target="https://eprint.iacr.org/2024/523.pdf">
          <front>
            <title>Unbindable Kemmy Schmidt: ML-KEM is neither MAL-BIND-K-CT nor MAL-BIND-K-PK</title>
            <author initials="S." surname="Schmieg" fullname="Sophie Schmieg">
              <organization/>
            </author>
            <date year="2024"/>
          </front>
        </reference>
        <reference anchor="SIGNAL" target="https://signal.org/docs/specifications/doubleratchet/">
          <front>
            <title>The Double Ratchet Algorithm</title>
            <author>
              <organization/>
            </author>
            <date year="2011" month="November"/>
          </front>
        </reference>
        <reference anchor="WIRE" target="https://www.wireguard.com/">
          <front>
            <title>WireGuard</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="NOISE" target="http://www.noiseprotocol.org/">
          <front>
            <title>Noise Protocol Framework</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="EBACS" target="https://bench.cr.yp.to/results-kem/amd64-hertz.html">
          <front>
            <title>eBACS: ECRYPT Benchmarking of Cryptographic Systems</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
      </references>
    </references>
    <?line 387?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>The authors would like to thank Rebecca Guthrie and Thom Wiggers for their valuable comments and feedback.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+Vc627kxpX+X09RUIBAArpbl7lY1sCAZUnjUcYznqjHGASL
RcImq7sZsck2i5SmLQ+Qx8j+2ofZN8mT7HfOqSoW2S3FCfbf+oeH4qUu5/qd
S/V4PFZN3hTmTO+9+2H89uqdnpq0rfNmoy+q0uaZqZMmx9WeSmaz2txtv7in
0qQxi6renOm8nFdKZVVaJiuMmdXJvBnbedEua1OP03m9GK+K8a1Zja37epz2
phkXGMs2yrazVW4tbjWbNUa6vvn4WtGrprStPdNN3RqV4d0zhSU9U0ltEiyN
XttT91V9u6irdo07F/Vm3VT6dVW3qz1lm6TM/pwUVWncGPm65ivbnBwdfX10
om7NBt9nZ0qPtewU82Z5uTjTP318PT5Vd6ZsMa3Wu6fQWla8d2OsSep0qb+n
9+jBKskLPCAyfJvXzXxS1Qu6T2/h/rJp1vbs8JBeo1v5nZnkRl47pBuHs7q6
t+aQBjikDxd5s2xn+NST+PBp6tI3QuBoOv/tREab5NU/GeXwX2frZNmsij2l
krZZVvWZGut5WxQiJNO0ahr9WgbDArHbpMx/4Q/P9EVu00pPN7YxK4unRojo
J/82peeTtFr1xvxjuymX+jIpF1sDvud/k0Jflxai3zZGV3M9JcFI6sxq/Ks/
mnRZVkW12BB3nNy/v55+7BbAM0xohm/L3DaTRXWHFeRl3uRJAQH9wwTv2raW
9XyoTfs//63fJU1jbVXikdz/Q7UsdzzEis/0VZ2n7m8351/x9mTlXvvWuOdb
m39r7vJSv8uLcgc9/9gmZZOXbbvqxr1NVvzyt/5ikia9EbHN3BR6uszbrQHP
65/zRoZtVyBq2o2b8WcTi8++Tei1SXurVFnV2AOE+0zh1dfXH6YnR89In6A5
Sb0wkE0vmlmVs/AfH01eHp2cHhILJvTFBJ/IF2K83lVZW5jxD6BNnprxd4k1
GeiwGV+VabK2bcGL1e/AV6zJrgK/eRALUhpLtkuWofUezbQHJaHJNCbb4wds
cPR5u4C5wN2T50op+ize0M3ri+cnL3hDdHl0+tJdvjz56tRdnj5/7u9+fXx6
5C9fnPAL1+NL1nvoUG3GleV/2NiA0yv/BhQMIlpsRP2W61sDHYQK0vOLy3cn
nqTOur81Zg0jpn9a63vouW6WRsO2QVKnTV2VC1N3lv99xUqrsTF+h3UCqlth
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
FU3U/wIMfjk0HlAAAA==

-->

</rfc>
