<?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.23 (Ruby 3.2.3) -->
<?rfc strict="yes"?>
<?rfc comments="yes"?>
<?rfc docmapping="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-reddy-ipsecme-ikev2-pqc-auth-04" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.27.0 -->
  <front>
    <title abbrev="Signature Authentication in IKEv2 using PQC">Signature Authentication in the Internet Key Exchange Version 2 (IKEv2) using PQC</title>
    <seriesInfo name="Internet-Draft" value="draft-reddy-ipsecme-ikev2-pqc-auth-04"/>
    <author fullname="Tirumaleswar Reddy">
      <organization>Nokia</organization>
      <address>
        <postal>
          <city>Bangalore</city>
          <region>Karnataka</region>
          <country>India</country>
        </postal>
        <email>kondtir@gmail.com</email>
      </address>
    </author>
    <author fullname="Valery Smyslov">
      <organization>ELVIS-PLUS</organization>
      <address>
        <postal>
          <country>Russian Federation</country>
        </postal>
        <email>svan@elvis.ru</email>
      </address>
    </author>
    <author fullname="Scott Fluhrer">
      <organization>Cisco Systems</organization>
      <address>
        <email>sfluhrer@cisco.com</email>
      </address>
    </author>
    <date year="2025" month="February" day="11"/>
    <area>Security</area>
    <workgroup>ipsecme</workgroup>
    <keyword>PQC</keyword>
    <keyword>IKEv2</keyword>
    <keyword>Digital Signature</keyword>
    <keyword>ML-DSA</keyword>
    <keyword>SLH-DSA</keyword>
    <abstract>
      <?line 75?>

<t>Signature-based authentication methods are utilized in IKEv2 <xref target="RFC7296"/>. The current version of the Internet Key Exchange Version 2 (IKEv2) protocol supports traditional digital signatures.</t>
      <t>This document outlines how post-quantum digital signatures, specifically Module-Lattice-Based Digital Signatures (ML-DSA) and Stateless Hash-Based Digital Signatures (SLH-DSA), can be employed as authentication methods within the IKEv2 protocol. It introduces ML-DSA and SLH-DSA capability to IKEv2 without necessitating any alterations to existing IKE operations.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-reddy-ipsecme-ikev2-pqc/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        ipsecme Working Group mailing list (<eref target="mailto:ipsecme@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/ipsec/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/ipsecme/"/>.
      </t>
    </note>
  </front>
  <middle>
    <?line 81?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>The Internet Key Exchange, or IKEv2 <xref target="RFC7296"/>, is a key agreement and security negotiation protocol; it is used for key establishment in IPsec.  In the initial set of exchanges, both parties independently select and use their preferred authentication method, which may even differ between the initiator and the responder. In IKEv2, it occurs in the exchange called IKE_AUTH.  One option for the authentication method is digital signatures using public key cryptography.  Currently, traditional digital signatures are defined for use within IKE_AUTH: RSA signatures, Digital Signature Algorithm (DSA) Digital Signature Standard (DSS) and ECDSA.</t>
      <t>The presence of a Cryptographically Relevant Quantum Computer (CRQC) would render state-of-the-art traditional public-key algorithms obsolete and insecure. This is because the assumptions about the intractability of the mathematical problems these algorithms rely on, which offer confident levels of security today, no longer apply in the presence of a CRQC. Consequently, there is a requirement to update protocols and infrastructure to use post-quantum algorithms. Post-quantum algorithms are public-key algorithms designed to be secure against CRQCs as well as classical computers. The traditional cryptographic primitives that need to be replaced by PQC algorithms are discussed in <xref target="I-D.ietf-pquip-pqc-engineers"/>.</t>
      <t>Module-Lattice-Based Digital Signatures (ML-DSA) <xref target="FIPS204"/> and Stateless Hash-Based Digital Signatures (SLH-DSA) <xref target="FIPS205"/> are quantum-resistant digital signature schemes standardized by the US National Institute of Standards and Technology (NIST) PQC project. This document specifies the use of the ML-DSA and SLH-DSA algorithms in IKEv2.</t>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <?line -18?>

<t>This document uses terms defined in <xref target="I-D.ietf-pquip-pqt-hybrid-terminology"/>. For the purposes of this document, it is helpful to be able to divide cryptographic algorithms
into two classes:</t>
      <t>"Asymmetric Traditional Cryptographic Algorithm": An asymmetric cryptographic algorithm based on integer factorisation, finite field discrete logarithms or elliptic curve discrete logarithms, elliptic curve discrete logarithms, or related mathematical problems.</t>
      <t>"Post-Quantum Algorithm": An asymmetric cryptographic algorithm that is believed to be secure against attacks using quantum computers as well as classical computers. Post-quantum algorithms can also be called quantum-resistant or quantum-safe algorithms. Examples of quantum-resistant digital signature schemes include ML-DSA and SLH-DSA.</t>
    </section>
    <section anchor="ml-dsa">
      <name>Specifying ML-DSA within IKEv2</name>
      <t>ML-DSA <xref target="FIPS204"/> is a digital signature algorithm (part of the CRYSTALS suite) based on the hardness lattice problems over module lattices (i.e., the Module Learning with Errors problem (MLWE)). The design of the algorithm is based on the "Fiat-Shamir with Aborts" <xref target="Lyu09"/> framework introduced by Lyubashevsky, that leverages rejection sampling to render lattice based FS schemes compact and secure. ML-DSA uses uniform distribution over small integers for computing coefficients in error vectors, which makes the scheme easier to implement.</t>
      <t>ML-DSA is instantiated with 3 parameter sets for the security categories 2, 3 and 5. Security properties of ML-DSA are discussed in Section 9 of <xref target="I-D.ietf-lamps-dilithium-certificates"/>. This document specifies the use of the ML-DSA algorithm in IKEv2 at three security levels: ML-DSA-44, ML-DSA-65, and ML-DSA-87.</t>
    </section>
    <section anchor="slh-dsa">
      <name>Specifying SLH-DSA within IKEv2</name>
      <t>SLH-DSA <xref target="FIPS205"/> utilizes the concept of stateless hash-based signatures. In contrast to stateful signature algorithms, SLH-DSA eliminates the need for maintaining state information during the signing process. SLH-DSA is designed to sign up to 2^64 messages and it offers three security levels. The parameters for each of the security levels were chosen to provide 128 bits of security, 192 bits of security, and 256 bits of security. This document specifies the use of the SLH-DSA algorithm in IKEv2 at three security levels.
It includes the small (S) or fast (F) versions of the algorithm. For security level 1, SHA-256 (<xref target="FIPS180"/>) is used. For security levels 3 and 5, SHA-512 (<xref target="FIPS180"/>) is used. SHAKE256 (<xref target="FIPS202"/>) is applicable for all security levels. The small version prioritizes smaller signature sizes, making them suitable for resource-constrained environments IoT devices. Conversely, the fast version prioritizes speed over signature size, minimizing the time required to generate signatures. However, signature verification with the small version is faster than with the fast version. On the other hand, ML-DSA outperforms SLH-DSA in both signature generation and validation time, as well as signature size. SLH-DSA, in contrast, offers smaller key sizes but larger signature sizes.</t>
      <t>The following combinations are defined in SLH-DSA <xref target="FIPS205"/>:</t>
      <ul spacing="normal">
        <li>
          <t>SLH-DSA-128S-SHA2</t>
        </li>
        <li>
          <t>SLH-DSA-128F-SHA2</t>
        </li>
        <li>
          <t>SLH-DSA-192S-SHA2</t>
        </li>
        <li>
          <t>SLH-DSA-192F-SHA2</t>
        </li>
        <li>
          <t>SLH-DSA-256S-SHA2</t>
        </li>
        <li>
          <t>SLH-DSA-256F-SHA2</t>
        </li>
        <li>
          <t>SLH-DSA-128S-SHAKE</t>
        </li>
        <li>
          <t>SLH-DSA-128F-SHAKE</t>
        </li>
        <li>
          <t>SLH-DSA-192S-SHAKE</t>
        </li>
        <li>
          <t>SLH-DSA-192F-SHAKE</t>
        </li>
        <li>
          <t>SLH-DSA-256S-SHAKE</t>
        </li>
        <li>
          <t>SLH-DSA-256F-SHAKE</t>
        </li>
      </ul>
      <t>SLH-DSA does not introduce a new hardness assumption beyond those inherent to the underlying hash functions. It builds upon established foundations in cryptography, making it a reliable and robust digital signature scheme for a post-quantum world. While attacks on lattice-based schemes like ML-DSA can compromise their security, SLH-DSA will remain unaffected by these attacks due to its distinct mathematical foundations. This ensures the continued security of systems and protocols that utilize SLH-DSA for digital signatures.</t>
    </section>
    <section anchor="signature-algorithm-use-and-hashing-in-ikev2-with-ml-dsa-and-slh-dsa">
      <name>Signature Algorithm Use and Hashing in IKEv2 with ML-DSA and SLH-DSA</name>
      <t>For integrating ML-DSA and SLH-DSA into IKEv2, the approach used in <xref target="RFC8420"/> is followed.</t>
      <t>The implementation <bcp14>MUST</bcp14> send a SIGNATURE_HASH_ALGORITHMS notify with an "Identity" (5) hash function.
ML-DSA and SLH-DSA are only defined with the "Identity" hash and <bcp14>MUST NOT</bcp14> be sent to a receiver that has not indicated support for the "Identity" hash.</t>
      <t>When generating a signature with ML-DSA or SLH-DSA, the IKEv2 implementation would take the InitiatorSignedOctets string or the ResponderSignedOctets string (as appropriate), logically send it to the identity hash (which leaves it unchanged), and then pass it into the ML-DSA or SLH-DSA signer as the message to be signed (with no context string).
The resulting signature is placed into the Signature Value field of the Authentication Payload.</t>
      <t>When verifying a signature with ML-DSA or SLH-DSA, the IKEv2 implementation would take the InitiatorSignedOctets string or the ResponderSignedOctets string (as appropriate), logically send it to the identity hash (which leaves it unchanged), and then pass it into the ML-DSA or SLH-DSA signer as the message to be verified (with no context string).</t>
      <section anchor="implementation-alternatives-for-ml-dsa">
        <name>Implementation Alternatives for ML-DSA</name>
        <t>With ML-DSA, there are two different approaches to implementing the signature process.
The first one is to simply hand the SignedOctets string to the crypto library to generate the full signature; this works for SLH-DSA as well.</t>
        <t>The second approach involves using the ExternalMu-ML-DSA API defined in <xref target="I-D.ietf-lamps-dilithium-certificates"/>. In this method, the implementation calls the ExternalMU-ML-DSA.Prehash API with the SignedOctets string and the ML-DSA public key, generating an hash. This
hash is then passed to the cryptographic library to execute the ExternalMU-ML-DSA.Sign API, which takes the hash and the ML-DSA private key to produce the signature.</t>
        <t>These methods are equivalent, and so either may be used.</t>
      </section>
      <section anchor="discussion-of-ml-dsa-and-slh-dsa-and-prehashing">
        <name>Discussion of ML-DSA and SLH-DSA and Prehashing</name>
        <t>This section discusses various approaches for integrating ML-DSA and SLH-DSA into IKEv2, not just the method proposed above.</t>
        <t>The signature architecture within IKE was designed around RSA (and later extended to ECDSA).
In this architecture, the actual message (the SignedOctets) are first hashed (using a hash that the verifier has indicated support for), and then passed for the remaining part of the signature generation processing.
That is, it is designed for signature algorithms that first apply one of a number of hash functions to the message and then perform processing on that hash.
Neither ML-DSA nor SLH-DSA fits cleanly into this architecture.</t>
        <t>We see three ways to address this mismatch.</t>
        <t>The first consideration is that both ML-DSA and SLH-DSA provide prehashed parameter sets, which are designed to sign messages that have already been hashed by an external source. At first glance, this might seem like an ideal solution. However, several practical challenges arise:</t>
        <ol spacing="normal" type="1"><li>
            <t>The prehashed versions of ML-DSA and SLH-DSA appear to be rarely used, making it likely that support for them in cryptographic libraries is limited or unavailable.</t>
          </li>
          <li>
            <t>The public keys for the prehashed variants use different OIDs, which means that certificates for IKEv2 would differ from those used in other protocols. Additionally, some certificate authorities (CAs) may not support issuing certificates for prehashed ML-DSA or SLH-DSA due to their limited adoption.</t>
          </li>
          <li>
            <t>Some users have explicitly indicated a preference not to use the prehashed parameter sets.</t>
          </li>
        </ol>
        <t>The second is to note that, while IKEv2 normally acts this way, it doesn't always.
EdDSA has a similar constraint on not working cleanly with the standard 'hash and then sign' paradigm, and so the existing <xref target="RFC8420"/> provides an alternative method, which ML-DSA would cleanly fit into.
We could certainly adopt this same strategy; our concern would be that it might be more difficult for IKEv2 implementors which do not already have support for EdDSA.</t>
        <t>The third way is what we can refer to as 'fake prehashing'; IKEv2 would generate the hash as current, but instead of running ML-DSA or SLH-DSA in prehash mode, we have it sign it in pure mode as if it was the message.
This is a violation of the spirit, if not the letter of FIPS 204, 205. 
However, it is secure (assuming the hash function is strong), and fits in cleanly with both the existing IKEv2 architecture, and what crypto libraries provide. 
Additionally, for SLH-DSA, this means that we're now dependent on collision resistance (while the rest of the SLH-DSA architecture was carefully designed not to be).</t>
      </section>
    </section>
    <section anchor="use-of-ml-dsa-and-slh-dsa">
      <name>Use of ML-DSA and SLH-DSA</name>
      <t>Both ML-DSA and SLH-DSA offer deterministic and randomized signing options. By default, ML-DSA uses a non-deterministic approach, where the private random seed rho' is derived pseudorandomly from the signer’s private key, the message, and a 256-bit string, rnd, generated by an approved Random Bit Generator (RBG). In the deterministic version, rnd is instead a constant 256-bit string. Similarly, SLH-DSA can be deterministic or randomized, depending on whether opt_rand is set to a fixed value or a random one. When opt_rand is set to a public seed (from the public key), SLH-DSA produces deterministic signatures, meaning signing the same message twice will result in the same signature.</t>
      <t>In the context of signature-based authentication in IKEv2, the data used for generating a digital signature is unique for each IKEv2 session, as it includes session-specific information like nonces, cryptographic parameters, and identifiers. Thus, both ML-DSA and SLH-DSA can utilize their deterministic versions when used within IKEv2. In both cases, the 'context' input parameter for the signature generation algorithm is set to an empty string.</t>
      <t>IKEv2 can use arbitrary signature algorithms as described in <xref target="RFC7427"/>, where the "Digital Signature" authentication method supersedes previously defined signature authentication methods. The three security levels of ML-DSA are identified via AlgorithmIdentifier ASN.1 objects, as specified in <xref target="I-D.ietf-lamps-dilithium-certificates"/>. The different combinations of SLH-DSA are identified via AlgorithmIdentifier ASN.1 objects, as specified in <xref target="I-D.ietf-lamps-x509-slhdsa"/>. Both ML-DSA and SLH-DSA define two signature modes: pure mode and pre-hash mode, as specified in <xref target="FIPS204"/> and <xref target="FIPS205"/>, respectively. This document specifies only the use of pure mode for signature-based authentication in IKEv2, where the content is signed directly along with some domain separation information. In pre-hash mode, a digest of the message is signed instead. Both <xref target="FIPS204"/> and <xref target="FIPS205"/> prefer pure mode over pre-hash mode, and neither <xref target="I-D.ietf-lamps-dilithium-certificates"/> nor <xref target="I-D.ietf-lamps-x509-slhdsa"/> discusses pre-hash mode. The data signed to prove the identity of the initiator and responder (as discussed in Section 2.15 of <xref target="RFC7296"/>) typically fits within the memory constraints of the devices involved in the IKEv2 exchange, consisting of nonces, SPIs, and the initial exchange messages, which are manageable in size.</t>
    </section>
    <section anchor="mechanisms-for-signaling-supported-key-pair-types">
      <name>Mechanisms for Signaling Supported Key Pair Types</name>
      <t>The following mechanisms can be used by peers to signal the types of public/private key pairs they possess:</t>
      <ul spacing="normal">
        <li>
          <t>One method to ascertain that the key pair type the initiator wants the responder
to use is through a Certificate Request payload sent by the
initiator.  For example, the initiator could indicate in the
Certificate Request payload that it trusts a certificate authority
certificate signed by an ML-DSA or SLH-DSA key. This indication implies 
that the initiator can process ML-DSA or SLH-DSA signatures, which means 
that the responder can use ML-DSA or SLH-DSA keys when authenticating.</t>
        </li>
        <li>
          <t>Another method is to leverage <xref target="I-D.ietf-ipsecme-ikev2-auth-announce"/> that
allows peers to announce their supported authentication methods. It improves
interoperability when IKEv2 partners are configured with multiple
credentials of different type to authenticate each other. The responder includes 
a SUPPORTED_AUTH_METHODS notification in the IKE_SA_INIT response message 
containing the PQC digital signature scheme(s) it supports. The initiator includes 
the SUPPORTED_AUTH_METHODS notification in either the IKE_AUTH request message or 
in the IKE_INTERMEDIATE request. This notification lists the PQC digital signature 
scheme(s) supported by the initiator, ordered by preference.</t>
        </li>
      </ul>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>ML-DSA and SLH-DSA are modeled under existentially unforgeable digital signatures with respect to an adaptive chosen message attack (EUF-CMA).</t>
      <t>ML-DSA-44, ML-DSA-65, and ML-DSA-87 are designed to offer security comparable with the SHA-256/SHA3-256, AES-192, and AES-256 respectively. Similarly, SLH-DSA-128{S,F}-{SHA2,SHAKE}, SLH-DSA-192{S,F}-{SHA2,SHAKE}, and SLH-DSA-256{S,F}-{SHA2,SHAKE} are designed to offer security comparable with the AES-128, AES-192, and AES-256 respectively.</t>
      <t>The Security Considerations section of <xref target="I-D.ietf-lamps-dilithium-certificates"/> and <xref target="I-D.ietf-lamps-x509-slhdsa"/> applies to this specification as well.</t>
    </section>
    <section numbered="false" anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>Thanks to Stefaan De Cnodder, Loganaden Velvindron, Paul Wouters, Andreas Steffen, and Daniel Van Geest for the discussion and comments.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC7296">
          <front>
            <title>Internet Key Exchange Protocol Version 2 (IKEv2)</title>
            <author fullname="C. Kaufman" initials="C." surname="Kaufman"/>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <author fullname="Y. Nir" initials="Y." surname="Nir"/>
            <author fullname="P. Eronen" initials="P." surname="Eronen"/>
            <author fullname="T. Kivinen" initials="T." surname="Kivinen"/>
            <date month="October" year="2014"/>
            <abstract>
              <t>This document describes version 2 of the Internet Key Exchange (IKE) protocol. IKE is a component of IPsec used for performing mutual authentication and establishing and maintaining Security Associations (SAs). This document obsoletes RFC 5996, and includes all of the errata for it. It advances IKEv2 to be an Internet Standard.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="79"/>
          <seriesInfo name="RFC" value="7296"/>
          <seriesInfo name="DOI" value="10.17487/RFC7296"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. 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="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC7427">
          <front>
            <title>Signature Authentication in the Internet Key Exchange Version 2 (IKEv2)</title>
            <author fullname="T. Kivinen" initials="T." surname="Kivinen"/>
            <author fullname="J. Snyder" initials="J." surname="Snyder"/>
            <date month="January" year="2015"/>
            <abstract>
              <t>The Internet Key Exchange Version 2 (IKEv2) protocol has limited support for the Elliptic Curve Digital Signature Algorithm (ECDSA). The current version only includes support for three Elliptic Curve groups, and there is a fixed hash algorithm tied to each group. This document generalizes IKEv2 signature support to allow any signature method supported by PKIX and also adds signature hash algorithm negotiation. This is a generic mechanism and is not limited to ECDSA; it can also be used with other signature algorithms.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7427"/>
          <seriesInfo name="DOI" value="10.17487/RFC7427"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="FIPS204" target="https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.204.pdf">
          <front>
            <title>FIPS 204: Module-Lattice-Based Digital Signature Standard</title>
            <author>
              <organization/>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="FIPS205" target="https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.205.pdf">
          <front>
            <title>FIPS 205: Stateless Hash-Based Digital Signature Standard</title>
            <author>
              <organization/>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="FIPS180" target="https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.180-4.pdf">
          <front>
            <title>NIST, Secure Hash Standard (SHS), FIPS PUB 180-4, August 2015</title>
            <author>
              <organization/>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="FIPS202" target="https://nvlpubs.nist.gov/nistpubs/fips/nist.fips.202.pdf">
          <front>
            <title>NIST, SHA-3 Standard: Permutation-Based Hash and Extendable-Output Functions, FIPS PUB 202, August 2015.</title>
            <author>
              <organization/>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="Lyu09" target="https://www.iacr.org/archive/asiacrypt2009/59120596/59120596.pdf">
          <front>
            <title>V. Lyubashevsky, “Fiat-Shamir With Aborts: Applications to Lattice and Factoring-Based Signatures“, ASIACRYPT 2009</title>
            <author>
              <organization/>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="RFC8420">
          <front>
            <title>Using the Edwards-Curve Digital Signature Algorithm (EdDSA) in the Internet Key Exchange Protocol Version 2 (IKEv2)</title>
            <author fullname="Y. Nir" initials="Y." surname="Nir"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document describes the use of the Edwards-curve Digital Signature Algorithm (EdDSA) in the Internet Key Exchange Protocol Version 2 (IKEv2).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8420"/>
          <seriesInfo name="DOI" value="10.17487/RFC8420"/>
        </reference>
        <reference anchor="I-D.ietf-pquip-pqc-engineers">
          <front>
            <title>Post-Quantum Cryptography for Engineers</title>
            <author fullname="Aritra Banerjee" initials="A." surname="Banerjee">
              <organization>Nokia</organization>
            </author>
            <author fullname="Tirumaleswar Reddy.K" initials="T." surname="Reddy.K">
              <organization>Nokia</organization>
            </author>
            <author fullname="Dimitrios Schoinianakis" initials="D." surname="Schoinianakis">
              <organization>Nokia</organization>
            </author>
            <author fullname="Tim Hollebeek" initials="T." surname="Hollebeek">
              <organization>DigiCert</organization>
            </author>
            <author fullname="Mike Ounsworth" initials="M." surname="Ounsworth">
              <organization>Entrust Limited</organization>
            </author>
            <date day="24" month="January" year="2025"/>
            <abstract>
              <t>   The advent of a cryptographically relevant quantum computer (CRQC)
   would render state-of-the-art, traditional public-key algorithms
   deployed today obsolete, as the mathematical assumptions underpinning
   their security would no longer hold.  To address this, protocols and
   infrastructure must transition to post-quantum algorithms, which are
   designed to resist both traditional and quantum attacks.  This
   document explains why engineers need to be aware of and understand
   post-quantum cryptography (PQC), detailing the impact of CRQCs on
   existing systems and the challenges involved in transitioning to
   post-quantum algorithms.  Unlike previous cryptographic updates, this
   shift may require significant protocol redesign due to the unique
   properties of post-quantum algorithms.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-pquip-pqc-engineers-07"/>
        </reference>
        <reference anchor="I-D.ietf-pquip-pqt-hybrid-terminology">
          <front>
            <title>Terminology for Post-Quantum Traditional Hybrid Schemes</title>
            <author fullname="Florence D" initials="F." surname="D">
              <organization>UK National Cyber Security Centre</organization>
            </author>
            <author fullname="Michael P" initials="M." surname="P">
              <organization>UK National Cyber Security Centre</organization>
            </author>
            <author fullname="Britta Hale" initials="B." surname="Hale">
              <organization>Naval Postgraduate School</organization>
            </author>
            <date day="10" month="January" year="2025"/>
            <abstract>
              <t>   One aspect of the transition to post-quantum algorithms in
   cryptographic protocols is the development of hybrid schemes that
   incorporate both post-quantum and traditional asymmetric algorithms.
   This document defines terminology for such schemes.  It is intended
   to be used as a reference and, hopefully, to ensure consistency and
   clarity across different protocols, standards, and organisations.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-pquip-pqt-hybrid-terminology-06"/>
        </reference>
        <reference anchor="I-D.ietf-lamps-dilithium-certificates">
          <front>
            <title>Internet X.509 Public Key Infrastructure: Algorithm Identifiers for ML-DSA</title>
            <author fullname="Jake Massimo" initials="J." surname="Massimo">
              <organization>AWS</organization>
            </author>
            <author fullname="Panos Kampanakis" initials="P." surname="Kampanakis">
              <organization>AWS</organization>
            </author>
            <author fullname="Sean Turner" initials="S." surname="Turner">
              <organization>sn3rd</organization>
            </author>
            <author fullname="Bas Westerbaan" initials="B." surname="Westerbaan">
              <organization>Cloudflare</organization>
            </author>
            <date day="2" month="February" year="2025"/>
            <abstract>
              <t>   Digital signatures are used within X.509 certificates, Certificate
   Revocation Lists (CRLs), and to sign messages.  This document
   describes the conventions for using FIPS 204, the Module-Lattice-
   Based Digital Signature Algorithm (ML-DSA) in Internet X.509
   certificates and certificate revocation lists.  The conventions for
   the associated signatures, subject public keys, and private key are
   also described.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-lamps-dilithium-certificates-07"/>
        </reference>
        <reference anchor="I-D.ietf-ipsecme-ikev2-auth-announce">
          <front>
            <title>Announcing Supported Authentication Methods in IKEv2</title>
            <author fullname="Valery Smyslov" initials="V." surname="Smyslov">
              <organization>ELVIS-PLUS</organization>
            </author>
            <date day="18" month="April" year="2024"/>
            <abstract>
              <t>   This specification defines a mechanism that allows the Internet Key
   Exchange version 2 (IKEv2) implementations to indicate the list of
   supported authentication methods to their peers while establishing
   IKEv2 Security Association (SA).  This mechanism improves
   interoperability when IKEv2 partners are configured with multiple
   credentials of different type to authenticate each other.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-ipsecme-ikev2-auth-announce-10"/>
        </reference>
        <reference anchor="I-D.ietf-lamps-x509-slhdsa">
          <front>
            <title>Internet X.509 Public Key Infrastructure: Algorithm Identifiers for SLH-DSA</title>
            <author fullname="Kaveh Bashiri" initials="K." surname="Bashiri">
              <organization>BSI</organization>
            </author>
            <author fullname="Scott Fluhrer" initials="S." surname="Fluhrer">
              <organization>Cisco Systems</organization>
            </author>
            <author fullname="Stefan-Lukas Gazdag" initials="S." surname="Gazdag">
              <organization>genua GmbH</organization>
            </author>
            <author fullname="Daniel Van Geest" initials="D." surname="Van Geest">
              <organization>CryptoNext Security</organization>
            </author>
            <author fullname="Stavros Kousidis" initials="S." surname="Kousidis">
              <organization>BSI</organization>
            </author>
            <date day="22" month="November" year="2024"/>
            <abstract>
              <t>   Digital signatures are used within X.509 Public Key Infrastructure
   such as X.509 certificates, Certificate Revocation Lists (CRLs), and
   to sign messages.  This document describes the conventions for using
   the Stateless Hash-Based Digital Signature Algorithm (SLH-DSA) in
   X.509 Public Key Infrastructure.  The conventions for the associated
   signatures, subject public keys, and private keys are also described.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-lamps-x509-slhdsa-03"/>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+1c23IbR5J976+ooR5ETgCgSIu2RM/OGOLFQpgSaYKyY2Ji
VlHoLhA1anTDXd2AYIUi5jcmYh/2W/ZT5kv2ZGZVXwBQlmZj92kdtgU06pKV
15NZ2er3+1Fpy9Scqr2xvc90WRVGDatyZrLSxrq0eaZspvBdjbLSFJkp1Q9m
rS7exzOd3Rv1kykcDTpW+6MfLpbHB6pyNrtXNz+e7UV6MinM8jfW5mntWfjJ
3OfF+lS5MomiJI8zPQeFSaGnZb8wSbLu24Uz8dz07TuzPO4vfon7GgtHrprM
rSOCyvUCU0YXd5dRVs0npjiNEqx7GsV55kzmKneqyqIyEcj7KtKF0USmiavC
luu9aJUX7+6LvFrgqd9rL3pn1nienEaqT5TSH0w8fTi397bUqapPSg9fXfXP
x0P6NL56yR+jpckqUKHU1upKCc17P2NvYsb3NIKez7VNm5HfWVNOB3lxTz/p
Ip7hp1lZLtzp4SGNpEd2aQZh2CE9OJwU+cqZQ17jcC+KIlfqLHmr0zzDnmvj
ooU9VX8p87inXF6UhZk6fFrP/YeysHHZU3E+n0N8eAKxzPViAUL/GkXE/Lwg
xoAmpaZVmorM7mxRzXVq3EoX6pZExwNAls7sr6wDp+p1/s5qfh6D+afqBTQL
hBEP8U9h7nnUD7oAZ/U7PzKvspJ0ZJQlfrLxfHqXZ0lpi+/u6fsAFO9t0/UT
aCrWajxfuzRf7qDp4uqn0bh/c/Vm3N3utoJ66UxdmsQUPLazt1vq7DuTLq0b
FNWOfcdxXpbqMq1mhSl2bHtmXZyr8dqVZu66K09l0ncxDZFjRVlezDFzCY2K
bDZtvil1OboZHz95esqLqGDk9FTRY/UqT6rU9K90CWM0/RfamWRbi9WY1EQX
yZ5fRxf3pjxVQeGyZbqoJm6QWVcO7vPlIX2gJ4e00+Hr0fhuQJ8G2HOwSKZK
lmFTVFOdOlOTerKb1JNToqE00CGnXmo3+z8g9eSTpB49e7JBKs3tKfYehmms
aVH745fjgx7PUzdvXihM7j/twQ3eV67E8Y5O/qfk8oq/wdvj3QS/HPa/qkk9
VTemmFcla6JnMp8FP8PflwajJtCY6wpkQIerLKaRrnU4bNQ52uCLzzaFg+Jv
A/oEURw/eLKrdfXkuT9XfbCfBvR8ArLN0r1b99Q///4fl1aX/fFMz22hfrbl
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
zA0t1EYAAA==

-->

</rfc>
