<?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-04" category="info" consensus="true" submissionType="IRTF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.31.0 -->
  <front>
    <title abbrev="ML-KEM Security">ML-KEM Security Considerations</title>
    <seriesInfo name="Internet-Draft" value="draft-sfluhrer-cfrg-ml-kem-security-considerations-04"/>
    <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="November" day="17"/>
    <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 Relevant 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 recover 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.
While there do exist KEMs where this is true, this is not true for ML-KEM.
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 the secrets across two different ML-KEM exchanges 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 encapsulation 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"/>, SSH <xref target="RFC4253"/>, Wireguard <xref target="WIRE"/>, and EDHOC <xref target="RFC9528"/> 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 use 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 parameter 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 besides 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 some or all of 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 Decapsulation 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 operations per second (higher is better) 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>Standard cryptographical analysis assumes that the adversary has access only to the exchanged messages.
Depending on the deployment scenario, the adversary may have access to various side channels, such as the amount of time taken during the cryptographical computations, or possibly the power used or the electrical noise generated.
The implementor will need to assess this possibility, and possibly use an implementation that is resistant to such leakage.</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 a digital signature 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>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 anchor="issues-that-are-likely-not-a-concern">
        <name>Issues that are likely not a concern</name>
        <t>This section contains issues that you may have heard of, but are quite unlikely to be a concern in your use case.
This is here to discuss them, and show why they are not practical issues.
If you have not heard of them, you may ignore this</t>
        <section anchor="decapsulation-failure">
          <name>Decapsulation failure</name>
          <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 use ML-KEM).
Hence, the advice we give is to ignore the possibility.</t>
        </section>
        <section anchor="ml-kem-operations-not-being-constant-time">
          <name>ML-KEM operations not being constant time</name>
          <t>During the ML-KEM key generation and the encapsulation process, the public seed is expanded, and this involves rejection sampling of XOF (extendable-output function) output to achieve coefficient values that are uniformly distributed.
This means that a straight-forward implementation will perform a variable number of XOF calls to generate this output to find values that are in range.
Converting this into a constant time operation is expensive enough that it is rarely done.
One consequence of this is that public key expansion is not constant time and this timing sidechannel can be used to provide information about the seed (and the expanded key, which is a function of the seed) in cases where they are not publicly known.
On the other hand, this public seed is in the public key, which is almost always publicly known, and so this timing variation does not leak any information about any secret data.
One exception is in some methods that implement Password Authenticated Key Exchange with ML-KEM, where the public key may be encrypted with the password.
In this rather narrow use case, this variable timing needs to be taken into account.</t>
        </section>
      </section>
    </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="12" month="September" 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 messages exchanged with the Constrained Application
   Protocol (CoAP) 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 each 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-27"/>
        </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 411?>

<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:
H4sIAAAAAAAAA9Vc224bR5q+r6coKMBAAkjqYCdxZASIItmxJrHjWA6yg8Vi
pkkWyR41u5mubsmMY2AeY/dqH2bfZJ5kv/9Q1dVNyuMZ7M3mIqb6UIf/+P2H
6vF4bJq8Kdy5PXj5w/j7Zy/tjZu1dd5s7WVV+nzu6qzJ8evAZNNp7e52Hzww
s6xxy6rentu8XFTGzKtZma0x5rzOFs3YL4p2Vbt6PFvUy/G6GN+69djr2+NZ
b5rxyWPj2+k69x5/NtsNRrl+8/a5ocdc6Vt/bpu6dWaOOc8NlvPIZLXLsCx6
7MDcV/Xtsq7aDa5c1ttNU9nnVd2uD4xvsnL+56yoSqdj5Juaf/nm7OTkq5Mz
c+u2eH9+buzYyi4x7zwvl+f257fPx0/MnStbTGvt/imslRUfvHHeZfVsZb+j
5+jGOssL3CASfJPXzWJS1Uu6Tk/h+qppNv78+Jgeo0v5nZvkTh47pgvH07q6
9+6YBjimF5d5s2qneDWQ9/jjlKV3ChDNN8l04d2JjDbJq38wyvE/z9LJqlkX
B8ZkbbOq6nMztou2KERAbmZV09jnMhgWiN1mZf4bv3huL3M/q+zN1jdu7XHX
CRHD5N/M6P5kVq17Y/7UbsuVvcrK5c6Ar/jfrLDXpYfYt42z1cLekGBk9dxb
/GvfutmqrIpquSXuqMy/ur552y2AZ5jQDN+UuW8my+oOK8jLvMmzAgL6xwme
9W0t63ldu/Z//tu+zJrG+6rELbn+x2pV7rmJFZ/bZ3U+0791zr/i6claH/vG
6f2dzX/v7vLSvsyLcg89f2qzssnLtl13495ma374m/BjMst6I2KbuSvszSpv
dwa8qH/NGxm2XYOos27cOb828Xjtm4wem7S3xpRVjT1AuM8NHn1+/frm7OQR
6RM0J6uXDrIZRHNe5Sz8pyeTL07OnhwTCyb0xgSvyBtiuF5W87Zw4x9Am3zm
xt9m3s1Bh+34WTnLNr4teLH2JfiKNfl15DcP4kFK58luyTKsPaCZDqAkNJnF
ZAd8gw2OvWiXMBe4evbYGEOvpRt68/zy8dnnvCH6efLkC/35xdmXT/Tnk8eP
w9WvTp+chJ+fn/ED1+Mr1nvoUO3Gled/2NiA0+vwBBQMIlpsRf1Wm1sHHYQK
0v3Lq5dngaRq2b93bgMjZn/e2HvouW1WzsK2QVJvmroql67urP6ripXWYmP8
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
MIBPJlXmfUr+qJFmqwV2SyuamP8FDiRrPJNYAAA=

-->

</rfc>
