<?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.5 (Ruby 3.0.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-irtf-cfrg-det-sigs-with-noise-01" category="info" consensus="true" submissionType="IRTF" updates="6979, 8032" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.20.0 -->
  <front>
    <title>Hedged ECDSA and EdDSA Signatures</title>
    <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-det-sigs-with-noise-01"/>
    <author initials="J." surname="Preuß Mattsson" fullname="John Preuß Mattsson">
      <organization>Ericsson</organization>
      <address>
        <email>john.mattsson@ericsson.com</email>
      </address>
    </author>
    <author initials="E." surname="Thormarker" fullname="Erik Thormarker">
      <organization>Ericsson</organization>
      <address>
        <email>erik.thormarker@ericsson.com</email>
      </address>
    </author>
    <author initials="S." surname="Ruohomaa" fullname="Sini Ruohomaa">
      <organization>Ericsson</organization>
      <address>
        <email>sini.ruohomaa@ericsson.com</email>
      </address>
    </author>
    <date year="2024" month="February" day="28"/>
    <area>IRTF</area>
    <workgroup>Crypto Forum</workgroup>
    <keyword>next generation</keyword>
    <keyword>unicorn</keyword>
    <keyword>sparkling distributed ledger</keyword>
    <abstract>
      <?line 425?>

<t>Deterministic elliptic-curve signatures such as deterministic ECDSA and EdDSA have gained popularity over randomized ECDSA as their security does not depend on a source of high-quality randomness. Recent research, however, has found that implementations of these signature algorithms may be vulnerable to certain side-channel and fault injection attacks due to their deterministic nature. One countermeasure to such attacks is hedged signatures where the calculation of the per-message secret number includes both fresh randomness and the message. This document updates RFC 6979 and RFC 8032 to recommend constructions with additional randomness for deployments where side-channel attacks and fault injection attacks are a concern. The updates are invisible to the validator of the signature and compatible with existing ECDSA and EdDSA validators.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://cfrg.github.io/draft-irtf-cfrg-det-sigs-with-noise/draft-irtf-cfrg-det-sigs-with-noise.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-irtf-cfrg-det-sigs-with-noise/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Crypto Forum Research Group mailing list (<eref target="mailto:cfrg@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/search/?email_list=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/cfrg/draft-irtf-cfrg-det-sigs-with-noise"/>.</t>
    </note>
  </front>
  <middle>
    <?line 429?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>In Elliptic-Curve Cryptography (ECC) signature algorithms, the per-message secret number has traditionally been generated from a random number generator (RNG). The security of such algorithms depends on the cryptographic quality of the random number generation and biases in the randomness may have catastrophic effects such as compromising private keys (see e.g., <xref target="Bernstein19"/>). Repeated per-message secret numbers have caused several severe security accidents in practice. As stated in <xref target="RFC6979"/>, the need for a cryptographically secure source of randomness is also a hindrance to deployment of randomized ECDSA <xref target="FIPS-186-5"/> in architectures where secure random number generation is challenging, in particular, embedded IoT systems and smartcards. <xref target="ABFJLM17"/> does however state that smartcards typically have a high-quality RNG on board, which makes it significantly easier and faster to use the RNG instead of doing a hash computation.</t>
      <t>In deterministic ECC signatures schemes such as Deterministic Elliptic Curve Digital Signature Algorithm (ECDSA) <xref target="RFC6979"/><xref target="FIPS-186-5"/> and Edwards-curve Digital Signature Algorithm (EdDSA) <xref target="RFC8032"/>, the per-message secret number is instead generated in a fully deterministic way as a function of the message and the private key. Except for key generation, the security of such deterministic signatures does not rely on a source of high-quality randomness. This makes verification of implementations easier. As they are presumed to be safer, deterministic signatures have gained popularity and are referenced and recommended by a large number of recent RFCs <xref target="RFC8037"/> <xref target="RFC8080"/> <xref target="RFC8225"/> <xref target="RFC8387"/> <xref target="RFC8410"/> <xref target="RFC8411"/> <xref target="RFC8419"/> <xref target="RFC8420"/> <xref target="RFC8422"/> <xref target="RFC8446"/> <xref target="RFC8463"/> <xref target="RFC8550"/> <xref target="RFC8591"/> <xref target="RFC8608"/> <xref target="RFC8624"/> <xref target="RFC9053"/>.</t>
      <t>Side-channel attacks are potential attack vectors for implementations of cryptographic algorithms. Side-Channel attacks can in general be classified along three orthogonal axes: passive vs. active, physical vs. logical, and local vs. remote <xref target="SideChannel"/>. It has been demonstrated how side-channel attacks such as power analysis <xref target="BCPST14"/> and timing attacks <xref target="Minerva19"/> <xref target="TPM-Fail19"/> allow for practical recovery of the private key in some existing implementations of randomized ECDSA. <xref target="BSI"/> summarizes minimum requirements for evaluating side-channel attacks of elliptic curve implementations and writes that deterministic ECDSA and EdDSA requires extra care. The deterministic ECDSA specification <xref target="RFC6979"/> notes that the deterministic generation of per-message secret numbers may be useful to an attacker in some forms of side-channel attacks and as stated in <xref target="Minerva19"/>, deterministic signatures like <xref target="RFC6979"/> and <xref target="RFC8032"/> might help an attacker to reduce the noise in the side-channel when the same message it signed multiple times. Recent research <xref target="SH16"/> <xref target="BP16"/> <xref target="RP17"/> <xref target="ABFJLM17"/> <xref target="SBBDS17"/> <xref target="PSSLR17"/> <xref target="SB18"/> <xref target="WPB19"/> <xref target="AOTZ19"/> <xref target="FG19"/> have theoretically and experimentally analyzed the resistance of deterministic ECC signature algorithms against side-channel and fault injection attacks. The conclusions are that deterministic signature algorithms have theoretical weaknesses against certain instances of these types of attacks and that the attacks are practically feasibly in some environments. These types of attacks may be of particular concern for hardware implementations such as embedded IoT devices and smartcards where the adversary can be assumed to have access to the device to induce faults and measure its side-channels such as timing information, power consumption, electromagnetic leaks, or sound with low signal-to-noise ratio. A good summary of fault attacks in given by <xref target="Cao20"/>. See also the discussions and references in <xref target="Comments-186-5"/>.</t>
      <t>Fault attacks may also be possible without physical access to the device. RowHammer <xref target="RowHammer14"/> showed how an attacker to induce DRAM bit-flips in memory areas the attacker should not have access to. Plundervolt <xref target="Plundervolt19"/> showed how an attacker with root access can use frequency and voltage scaling interfaces to induce faults that bypass even secure execution technologies. RowHammer can e.g., be used in operating systems with several processes or cloud scenarios with virtualized servers. Protocols like TLS, SSH, and IKEv2 that add a random number to the message to be signed mitigate some types of attacks <xref target="PSSLR17"/>.</t>
      <t>Government agencies are clearly concerned about these attacks. In <xref target="Notice-186-5"/> and <xref target="FIPS-186-5"/>, NIST warns about side-channel and fault injection attacks, but states that deterministic ECDSA may be desirable for devices that lack good randomness. The quantum-resistant ML-DSA <xref target="Draft-204"/> under standardization by NIST uses hedged signing by default. BSI has published <xref target="BSI"/> and researchers from BSI have co-authored two research papers <xref target="ABFJLM17"/> <xref target="PSSLR17"/> on attacks on deterministic signatures. For many industries it is important to be compliant with both RFCs and government publications, alignment between IETF, NIST, and BSI recommendations would be preferable.</t>
      <t>Note that deriving per-message secret number deterministically, is also insecure in a multi-party signature setting <xref target="I-D.irtf-cfrg-frost"/>.</t>
      <t>One countermeasure to entropy failures, side-channel attacks, and fault injection attacks recommended by <xref target="Langley13"/> <xref target="RP17"/> <xref target="ABFJLM17"/> <xref target="SBBDS17"/> <xref target="PSSLR17"/> <xref target="SB18"/> <xref target="AOTZ19"/> <xref target="FG19"/> and implemented in <xref target="OpenSSL13a"/> <xref target="OpenSSL13b"/> <xref target="XEdDSA"/> <xref target="libSodium"/> <xref target="libHydrogen"/> is to generate the per-message secret number from a random string, a secret key, and the message. This combines the security benefits of fully randomized per-message secret numbers with the security benefits of fully deterministic secret numbers.  Such a construction protects against key compromise due to weak random number generation, but still effectively prevents many side-channel and fault injection attacks that exploit determinism. Such a construction require minor changes to the implementation and does not increase the number of elliptic curve point multiplications and is therefore suitable for constrained IoT. Adding randomness to EdDSA is not compliant with <xref target="RFC8032"/>. <xref target="Kampanakis16"/> describes an alternative <xref target="FIPS-186-5"/> compliant approach where message specific pseudo-random information is used as an additional input to the random number generation to create per-message secret number. <xref target="Bernstein14"/> states that generation of the per-message secret number from a subset of a random string, a secret key, the message, and a message counter is common in DSA/ECDSA implementations.</t>
      <t>This document updates <xref target="RFC6979"/> and <xref target="RFC8032"/> to recommend constructions with additional randomness for deployments where side-channel and fault injection attacks are a concern. The updates are invisible to the validator of the signature. Produced signatures remain fully compatible with unmodified ECDSA and EdDSA verifiers and existing key pairs can continue to be used. As the precise use of the noise is specified, test vectors can still be produced, and implementations can be tested against them.</t>
    </section>
    <section anchor="conventions-used-in-this-document">
      <name>Conventions Used in This Document</name>
      <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they appear in all capitals, as shown here.</t>
    </section>
    <section anchor="SecEdDSA">
      <name>Updates to RFC 8032 (EdDSA)</name>
      <t>For Ed25519ph, Ed25519ctx, and Ed25519: In deployments where side-channel and fault injection attacks are a concern, the following step is RECOMMENDED instead of step (2) in Section 5.1.6 of <xref target="RFC8032"/>:</t>
      <artwork><![CDATA[
2.  Compute SHA-512(dom2(F, C) || Z || 000... || prefix || 000... ||
    PH(M)), where M is the message to be signed, Z is 32 octets of
    random data, the number of zeroes 000... is chosen so that the
    lengths of (dom2(F, C) || Z || 000...) and (prefix || 000...) are
    multiples of 128 octets.  Interpret the 64-octet digest as a
    little-endian integer r.
]]></artwork>
      <t>For Ed448ph and Ed448: In deployments where side-channel and fault injection attacks are a concern, the following step is RECOMMENDED instead of step (2) in Section 5.2.6 of <xref target="RFC8032"/>:</t>
      <artwork><![CDATA[
2.  Compute SHAKE256(dom4(F, C) || Z || 000... || prefix || 000... ||
    PH(M), 114), where M is the message to be signed, and Z is 57
    octets of random data, the number of zeroes 000... is chosen so
    that the length of (dom4(F, C) || Z || 000...) and (prefix ||
    000...) are multiples of 136 octets.  F is 1 for Ed448ph, 0 for
    Ed448, and C is the context to use.  Interpret the 114-octet
    digest as a little-endian integer r.
]]></artwork>
    </section>
    <section anchor="updates-to-rfc-6979-deterministic-ecdsa">
      <name>Updates to RFC 6979 (Deterministic ECDSA)</name>
      <t>For Deterministic ECDSA: In existing ECDSA deployments where side-channel and fault injection attacks are a concern, the following steps are RECOMMENDED instead of steps (d) and (f) in Section 3.2 of <xref target="RFC6979"/>:</t>
      <artwork><![CDATA[
d.  Set:

       K = HMAC_K(V || 0x00 || Z || 000... || int2octets(x) || 000...
           || bits2octets(h1))

    where '||' denotes concatenation.  In other words, we compute
    HMAC with key K, over the concatenation of the following, in
    order: the current value of V, a sequence of eight bits of value
    0, random data Z (of the same length as int2octets(x)), a
    sequence of zero bits 000..., the encoding of the (EC)DSA private
    key x, a sequence of zero bits 000..., and the hashed message
    (possibly truncated and extended as specified by the bits2octets
    transform).  The number of zeroes 000... is chosen so that the
    length of (V || 0x00 || Z || 000...) and (int2octets(x) ||
    000...) are multiples of the block size of the hash function.
    The HMAC result is the new value of K.  Note that the private key
    x is in the [1, q-1] range, hence a proper input for int2octets,
    yielding rlen bits of output, i.e., an integral number of octets
    (rlen is a multiple of 8).
]]></artwork>
      <artwork><![CDATA[
f.  Set:

       K = HMAC_K(V || 0x01 || Z || 000... || int2octets(x) ||
           000... || bits2octets(h1))

    Note that the "internal octet" is 0x01 this time and that Z is
    newly generated random data, i.e., not reused from step (d).
]]></artwork>
      <t>When ECDSA is used with SHAKE <xref target="SHA3"/> the HMAC construction above MAY be used but it is RECOMMENDED to use the more efficient KMAC construction <xref target="KMAC"/>. SHAKE is a variable-length hash function defined as SHAKE(M, d) where the output is a d-bits-long digest of message M. When ECDSA is used with SHAKE128(M, d), it is RECOMMENDED to replace HMAC(K, M) with KMAC128(K, M, d, ""). When ECDSA is used with SHAKE256(M, d), it is RECOMMENDED to replace HMAC(K, M) with KMAC256(K, M, d, ""). <xref target="RFC8692"/> and <xref target="FIPS-186-5"/> define the use of SHAKE128 with an output length of 256 bits and SHAKE256 with an output length or 512 bits.</t>
      <t>In new deployments, where side-channel and fault injection attacks are a concern, EdDSA with additional randomness as specified in <xref target="SecEdDSA"/> is RECOMMENDED.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The constructions in this document follow the high-level approach in <xref target="XEdDSA"/> to calculate the per-message secret number from the hash of the private key and the message, but add additional randomness into the calculation for greater resilience. This does not re-introduce the strong security requirement of randomness needed by randomized ECDSA <xref target="FIPS-186-5"/>. The randomness of Z need not be perfect but SHALL be generated by a cryptographically secure pseudo random number generator (CSPRNG) and SHALL be secret. Even if the same random number Z is used to sign two different messages, the security will be the same as deterministic ECDSA and EdDSA and an attacker will not be able to compromise the private key with algebraic means as in fully randomized ECDSA <xref target="FIPS-186-5"/>. With the construction specified in this document, two signatures over two equal messages are different which prevents information leakage in use cases where signatures but not messages are public. The construction in this document place the additional randomness before the message to align with randomized hashing methods.</t>
      <t><xref target="SBBDS17"/> states that <xref target="XEdDSA"/> would not prevent their attack due to insufficient mixing of the hashed private key with the additional randomness. The construction in this document aims to mitigate fault injection attacks that leverage determinism in deterministic ECDSA and EdDSA signatures (see e.g., <xref target="ABFJLM17"/>), by randomizing nonce generation. Fault injection attacks that achieve instruction skipping as in e.g., Section 3.4 of <xref target="ABFJLM17"/> are not necessarily stopped. It seems to be possible to, at the same time, also mitigate attacks that use first order differential power analysis (DPA) against the hash computation of deterministic nonces in EdDSA and ECDSA (see e.g., <xref target="ABFJLM17"/><xref target="SBBDS17"/>). The mitigation in this document agrees with one mentioned in <xref target="ABFJLM17"/> and appears to be as effective against the referenced first order DPA attacks as the one in <xref target="SBBDS17"/>.</t>
      <t>Another countermeasure to fault attacks is to force the signer to verify the signature in the last step of the signature generation or to calculate the signature twice and compare the results. These countermeasure would catch a single fault but would not protect against attackers that are able to precisely inject faults several times <xref target="RP17"/> <xref target="PSSLR17"/> <xref target="SB18"/>. Adding an additional sign or verification operation would also significantly affect performance, especially verification which is a heavier operation than signing in ECDSA and EdDSA.</t>
      <t><xref target="ABFJLM17"/> suggests using both additional randomness and a counter, which makes the signature generation stateful. While most used signatures have traditionally been stateless, stateful signatures like XMSS <xref target="RFC8391"/> and LMS <xref target="RFC8554"/> have now been standardized and deployed. <xref target="RFC8937"/> specifies a PRNG construction with a random seed, a secret key, a context string, and a nonce, which makes the random number generation stateful. The generation of the per-message secret number in this document is not stateful, but it can be used with a stateful PRNG. The exact construction in <xref target="RFC8937"/> is however not recommended in deployments where side-channel and fault injection attacks are a concern as it relies on deterministic signatures.</t>
      <t>With the construction in this document, the repetition of the same per-message secret number for two different messages is highly unlikely even with an imperfect random number generator, but not impossible. As an extreme countermeasure, previously used secret numbers can be tracked to ensure their uniqueness for a given key, and a different random number can be used if a collision is detected. This document neither mandates nor prohibits implementations from taking such precautions.</t>
      <t>Implementations need to follow best practices on how to protect against all side-channel attacks, not just attacks that exploit determinism, see for example <xref target="BSI"/>.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <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="RFC6979">
          <front>
            <title>Deterministic Usage of the Digital Signature Algorithm (DSA) and Elliptic Curve Digital Signature Algorithm (ECDSA)</title>
            <author fullname="T. Pornin" initials="T." surname="Pornin"/>
            <date month="August" year="2013"/>
            <abstract>
              <t>This document defines a deterministic digital signature generation procedure. Such signatures are compatible with standard Digital Signature Algorithm (DSA) and Elliptic Curve Digital Signature Algorithm (ECDSA) digital signatures and can be processed with unmodified verifiers, which need not be aware of the procedure described therein. Deterministic signatures retain the cryptographic security features associated with digital signatures but can be more easily implemented in various environments, since they do not need access to a source of high-quality randomness.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6979"/>
          <seriesInfo name="DOI" value="10.17487/RFC6979"/>
        </reference>
        <reference anchor="RFC8032">
          <front>
            <title>Edwards-Curve Digital Signature Algorithm (EdDSA)</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
            <author fullname="I. Liusvaara" initials="I." surname="Liusvaara"/>
            <date month="January" year="2017"/>
            <abstract>
              <t>This document describes elliptic curve signature scheme Edwards-curve Digital Signature Algorithm (EdDSA). The algorithm is instantiated with recommended parameters for the edwards25519 and edwards448 curves. An example implementation and test vectors are provided.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8032"/>
          <seriesInfo name="DOI" value="10.17487/RFC8032"/>
        </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="RFC8692">
          <front>
            <title>Internet X.509 Public Key Infrastructure: Additional Algorithm Identifiers for RSASSA-PSS and ECDSA Using SHAKEs</title>
            <author fullname="P. Kampanakis" initials="P." surname="Kampanakis"/>
            <author fullname="Q. Dang" initials="Q." surname="Dang"/>
            <date month="December" year="2019"/>
            <abstract>
              <t>Digital signatures are used to sign messages, X.509 certificates, and Certificate Revocation Lists (CRLs). This document updates the "Algorithms and Identifiers for the Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile" (RFC 3279) and describes the conventions for using the SHAKE function family in Internet X.509 certificates and revocation lists as one-way hash functions with the RSA Probabilistic signature and Elliptic Curve Digital Signature Algorithm (ECDSA) signature algorithms. The conventions for the associated subject public keys are also described.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8692"/>
          <seriesInfo name="DOI" value="10.17487/RFC8692"/>
        </reference>
        <reference anchor="FIPS-186-5" target="https://doi.org/10.6028/NIST.FIPS.186-5">
          <front>
            <title>Digital Signature Standard (DSS)</title>
            <author initials="N. S." surname="Department of Commerce">
              <organization/>
            </author>
            <date year="2023" month="February"/>
          </front>
          <seriesInfo name="NIST FIPS PUB 186-5" value=""/>
        </reference>
        <reference anchor="SHA3" target="https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.202.pdf">
          <front>
            <title>SHA-3 Standard: Permutation-Based Hash and Extendable-Output Functions</title>
            <author initials="" surname="National Institute of Standards and Technology (NIST)">
              <organization/>
            </author>
            <date year="2015" month="August"/>
          </front>
          <seriesInfo name="NIST FIPS PUB 202" value=""/>
        </reference>
        <reference anchor="KMAC" target="http://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-185.pdf">
          <front>
            <title>SHA-3 Derived Functions: cSHAKE, KMAC, TupleHash and ParallelHash</title>
            <author initials="" surname="National Institute of Standards and Technology (NIST)">
              <organization/>
            </author>
            <date year="2016" month="December"/>
          </front>
          <seriesInfo name="NIST SP 800-185" value=""/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC8937">
          <front>
            <title>Randomness Improvements for Security Protocols</title>
            <author fullname="C. Cremers" initials="C." surname="Cremers"/>
            <author fullname="L. Garratt" initials="L." surname="Garratt"/>
            <author fullname="S. Smyshlyaev" initials="S." surname="Smyshlyaev"/>
            <author fullname="N. Sullivan" initials="N." surname="Sullivan"/>
            <author fullname="C. Wood" initials="C." surname="Wood"/>
            <date month="October" year="2020"/>
            <abstract>
              <t>Randomness is a crucial ingredient for Transport Layer Security (TLS) and related security protocols. Weak or predictable "cryptographically secure" pseudorandom number generators (CSPRNGs) can be abused or exploited for malicious purposes. An initial entropy source that seeds a CSPRNG might be weak or broken as well, which can also lead to critical and systemic security problems. This document describes a way for security protocol implementations to augment their CSPRNGs using long-term private keys. This improves randomness from broken or otherwise subverted CSPRNGs.</t>
              <t>This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8937"/>
          <seriesInfo name="DOI" value="10.17487/RFC8937"/>
        </reference>
        <reference anchor="I-D.irtf-cfrg-frost">
          <front>
            <title>Two-Round Threshold Schnorr Signatures with FROST</title>
            <author fullname="Deirdre Connolly" initials="D." surname="Connolly">
              <organization>Zcash Foundation</organization>
            </author>
            <author fullname="Chelsea Komlo" initials="C." surname="Komlo">
              <organization>University of Waterloo, Zcash Foundation</organization>
            </author>
            <author fullname="Ian Goldberg" initials="I." surname="Goldberg">
              <organization>University of Waterloo</organization>
            </author>
            <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
              <organization>Cloudflare</organization>
            </author>
            <date day="18" month="September" year="2023"/>
            <abstract>
              <t>   This document specifies the Flexible Round-Optimized Schnorr
   Threshold (FROST) signing protocol.  FROST signatures can be issued
   after a threshold number of entities cooperate to compute a
   signature, allowing for improved distribution of trust and redundancy
   with respect to a secret key.  FROST depends only on a prime-order
   group and cryptographic hash function.  This document specifies a
   number of ciphersuites to instantiate FROST using different prime-
   order groups and hash functions.  One such ciphersuite can be used to
   produce signatures that can be verified with an Edwards-Curve Digital
   Signature Algorithm (EdDSA, as defined in RFC8032) compliant
   verifier.  However, unlike EdDSA, the signatures produced by FROST
   are not deterministic.  This document is a product of the Crypto
   Forum Research Group (CFRG) in the IRTF.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-frost-15"/>
        </reference>
        <reference anchor="BSI" target="https://www.bsi.bund.de/SharedDocs/Downloads/DE/BSI/Zertifizierung/Interpretationen/AIS_46_ECCGuide_e_pdf.pdf?__blob=publicationFile">
          <front>
            <title>Minimum Requirements for Evaluating Side-Channel Attack Resistance of Elliptic Curve Implementations</title>
            <author initials="" surname="Bundesamt für Sicherheit in der Informationstechnik">
              <organization/>
            </author>
            <date year="2016" month="November"/>
          </front>
        </reference>
        <reference anchor="Minerva19" target="https://minerva.crocs.fi.muni.cz/">
          <front>
            <title>Minerva</title>
            <author initials="" surname="Centre for Research on Cryptography and Security (CRoCS)">
              <organization/>
            </author>
            <date year="2019" month="October"/>
          </front>
        </reference>
        <reference anchor="RowHammer14" target="https://users.ece.cmu.edu/~yoonguk/papers/kim-isca14.pdf">
          <front>
            <title>Flipping Bits in Memory Without Accessing Them: An Experimental Study of DRAM Disturbance Errors</title>
            <author initials="Y." surname="Kim">
              <organization/>
            </author>
            <author initials="R." surname="Daly">
              <organization/>
            </author>
            <author initials="J." surname="Kim">
              <organization/>
            </author>
            <author initials="C." surname="Fallin">
              <organization/>
            </author>
            <author initials="J." surname="Lee">
              <organization/>
            </author>
            <author initials="D." surname="Lee">
              <organization/>
            </author>
            <author initials="C." surname="Wilkerson">
              <organization/>
            </author>
            <author initials="K." surname="Mutlu">
              <organization/>
            </author>
            <date year="2014" month="June"/>
          </front>
        </reference>
        <reference anchor="Plundervolt19" target="https://plundervolt.com/">
          <front>
            <title>How a little bit of undervolting can cause a lot of problems</title>
            <author initials="K." surname="Murdock">
              <organization/>
            </author>
            <author initials="D." surname="Oswald">
              <organization/>
            </author>
            <author initials="F." surname="Garcia">
              <organization/>
            </author>
            <author initials="J." surname="Van Bulck">
              <organization/>
            </author>
            <author initials="D." surname="Gruss">
              <organization/>
            </author>
            <author initials="F." surname="Piessens">
              <organization/>
            </author>
            <date year="2019" month="December"/>
          </front>
        </reference>
        <reference anchor="TPM-Fail19" target="https://tpm.fail/">
          <front>
            <title>TPM-FAIL: TPM meets Timing and Lattice Attacks</title>
            <author initials="D." surname="Moghimi">
              <organization/>
            </author>
            <author initials="B." surname="Sunar">
              <organization/>
            </author>
            <author initials="T." surname="Eisenbarth">
              <organization/>
            </author>
            <author initials="N." surname="Heninge">
              <organization/>
            </author>
            <date year="2019" month="October"/>
          </front>
        </reference>
        <reference anchor="XEdDSA" target="https://signal.org/docs/specifications/xeddsa/">
          <front>
            <title>The XEdDSA and VXEdDSA Signature Schemes</title>
            <author initials="" surname="Signal">
              <organization/>
            </author>
            <date year="2016" month="October"/>
          </front>
        </reference>
        <reference anchor="libHydrogen" target="https://github.com/jedisct1/libhydrogen">
          <front>
            <title>The Hydrogen library</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="libSodium" target="https://github.com/jedisct1/libsodium">
          <front>
            <title>The Sodium library</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="Notice-186-5" target="https://www.federalregister.gov/documents/2019/10/31/2019-23742/request-for-comments-on-fips-186-5-and-sp-800-186">
          <front>
            <title>Request for Comments on FIPS 186-5 and SP 800-186</title>
            <author initials="" surname="National Institute of Standards and Technology (NIST)">
              <organization/>
            </author>
            <date year="2019" month="October"/>
          </front>
        </reference>
        <reference anchor="Draft-204" target="https://csrc.nist.gov/pubs/fips/204/ipd">
          <front>
            <title>FIPS PUB 204 (Draft)</title>
            <author initials="" surname="National Institute of Standards and Technology (NIST)">
              <organization/>
            </author>
            <date year="2023" month="August"/>
          </front>
        </reference>
        <reference anchor="SideChannel" target="https://arxiv.org/pdf/1611.03748.pdf">
          <front>
            <title>Systematic Classification of Side-Channel Attacks: A Case Study for Mobile Devices</title>
            <author initials="R." surname="Spreitzer">
              <organization/>
            </author>
            <author initials="V." surname="Moonsamy">
              <organization/>
            </author>
            <author initials="T." surname="Korak">
              <organization/>
            </author>
            <author initials="S." surname="Mangard">
              <organization/>
            </author>
            <date year="2017" month="December"/>
          </front>
        </reference>
        <reference anchor="BCPST14" target="http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.854.7836&amp;rep=rep1&amp;type=pdf">
          <front>
            <title>Online Template Attacks</title>
            <author initials="L." surname="Batina">
              <organization/>
            </author>
            <author initials="L." surname="Chmielewski">
              <organization/>
            </author>
            <author initials="L." surname="Papachristodoulou">
              <organization/>
            </author>
            <author initials="P." surname="Schwabe">
              <organization/>
            </author>
            <author initials="M." surname="Tunstall">
              <organization/>
            </author>
            <date year="2014" month="December"/>
          </front>
        </reference>
        <reference anchor="SH16" target="http://www.cs2.deib.polimi.it/slides_16/01_Seuschek_Deterministic_Signatures.pdf">
          <front>
            <title>A Cautionary Note: Side-Channel Leakage Implications of Deterministic Signature Schemes</title>
            <author initials="H." surname="Seuschek">
              <organization/>
            </author>
            <author initials="J." surname="Heyszl">
              <organization/>
            </author>
            <author initials="F." surname="De Santis">
              <organization/>
            </author>
            <date year="2016" month="January"/>
          </front>
        </reference>
        <reference anchor="BP16" target="https://link.springer.com/chapter/10.1007/978-3-319-44524-3_11">
          <front>
            <title>A Note on Fault Attacks Against Deterministic Signature Schemes (Short Paper)</title>
            <author initials="A." surname="Barenghi">
              <organization/>
            </author>
            <author initials="G." surname="Pelosi">
              <organization/>
            </author>
            <date year="2016" month="September"/>
          </front>
        </reference>
        <reference anchor="RP17" target="https://romailler.ch/ddl/10.1109_FDTC.2017.12_eddsa.pdf">
          <front>
            <title>Practical fault attack against the Ed25519 and EdDSA signature schemes</title>
            <author initials="Y." surname="Romailler">
              <organization/>
            </author>
            <author initials="S." surname="Pelissier">
              <organization/>
            </author>
            <date year="2017" month="September"/>
          </front>
        </reference>
        <reference anchor="ABFJLM17" target="https://eprint.iacr.org/2017/975">
          <front>
            <title>Differential Attacks on Deterministic Signatures</title>
            <author initials="C." surname="Ambrose">
              <organization/>
            </author>
            <author initials="J." surname="Bos">
              <organization/>
            </author>
            <author initials="B." surname="Fay">
              <organization/>
            </author>
            <author initials="M." surname="Joye">
              <organization/>
            </author>
            <author initials="M." surname="Lochter">
              <organization/>
            </author>
            <author initials="B." surname="Murray">
              <organization/>
            </author>
            <date year="2017" month="October"/>
          </front>
        </reference>
        <reference anchor="SBBDS17" target="https://eprint.iacr.org/2017/985.pdf">
          <front>
            <title>Breaking Ed25519 in WolfSSL</title>
            <author initials="N." surname="Samwel">
              <organization/>
            </author>
            <author initials="L." surname="Batina">
              <organization/>
            </author>
            <author initials="G." surname="Bertoni">
              <organization/>
            </author>
            <author initials="J." surname="Daemen">
              <organization/>
            </author>
            <author initials="R." surname="Susella">
              <organization/>
            </author>
            <date year="2017" month="October"/>
          </front>
        </reference>
        <reference anchor="PSSLR17" target="https://eprint.iacr.org/2017/1014">
          <front>
            <title>Attacking Deterministic Signature Schemes using Fault Attacks</title>
            <author initials="D." surname="Poddebniak">
              <organization/>
            </author>
            <author initials="J." surname="Somorovsky">
              <organization/>
            </author>
            <author initials="S." surname="Schinzel">
              <organization/>
            </author>
            <author initials="M." surname="Lochter">
              <organization/>
            </author>
            <author initials="P." surname="Rösler">
              <organization/>
            </author>
            <date year="2017" month="October"/>
          </front>
        </reference>
        <reference anchor="SB18" target="https://nielssamwel.nl/papers/africacrypt2018_fault.pdf">
          <front>
            <title>Practical Fault Injection on Deterministic Signatures: The Case of EdDSA</title>
            <author initials="N." surname="Samwel">
              <organization/>
            </author>
            <author initials="L." surname="Batina">
              <organization/>
            </author>
            <date year="2018" month="April"/>
          </front>
        </reference>
        <reference anchor="WPB19" target="https://eprint.iacr.org/2019/358.pdf">
          <front>
            <title>One trace is all it takes: Machine Learning-based Side-channel Attack on EdDSA</title>
            <author initials="L." surname="Weissbart">
              <organization/>
            </author>
            <author initials="S." surname="Picek">
              <organization/>
            </author>
            <author initials="L." surname="Batina">
              <organization/>
            </author>
            <date year="2019" month="July"/>
          </front>
        </reference>
        <reference anchor="AOTZ19" target="https://eprint.iacr.org/2019/956">
          <front>
            <title>Security of Hedged Fiat-Shamir Signatures under Fault Attacks</title>
            <author initials="D." surname="Aranha">
              <organization/>
            </author>
            <author initials="C." surname="Orlandi">
              <organization/>
            </author>
            <author initials="A." surname="Takahashi">
              <organization/>
            </author>
            <author initials="G." surname="Zaverucha">
              <organization/>
            </author>
            <date year="2019" month="September"/>
          </front>
        </reference>
        <reference anchor="FG19" target="https://eprint.iacr.org/2019/1053">
          <front>
            <title>Modeling Memory Faults in Signature and Encryption Schemes</title>
            <author initials="M." surname="Fischlin">
              <organization/>
            </author>
            <author initials="F." surname="Günther">
              <organization/>
            </author>
            <date year="2019" month="September"/>
          </front>
        </reference>
        <reference anchor="Kampanakis16" target="https://blogs.cisco.com/security/fips-and-deterministic-ecdsa-achieving-robust-security-and-conformance">
          <front>
            <title>FIPS and Deterministic ECDSA: Achieving robust security and conformance</title>
            <author initials="P." surname="Kampanakis">
              <organization/>
            </author>
            <date year="2016" month="December"/>
          </front>
        </reference>
        <reference anchor="Langley13" target="https://www.imperialviolet.org/2013/06/15/suddendeathentropy.html">
          <front>
            <title>Sudden Death Entropy Failures</title>
            <author initials="A." surname="Langley">
              <organization/>
            </author>
            <date year="2013" month="June"/>
          </front>
        </reference>
        <reference anchor="OpenSSL13a" target="https://github.com/openssl/openssl/commit/8a99cb29d1f0013243a532bccc1dc70ed678eebe">
          <front>
            <title>Add secure DSA nonce flag</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="OpenSSL13b" target="https://github.com/openssl/openssl/commit/190c615d4398cc6c8b61eb7881d7409314529a75">
          <front>
            <title>Make `safe' (EC)DSA nonces the default</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="Comments-186-5" target="https://csrc.nist.gov/CSRC/media/Publications/fips/186/5/draft/documents/fips-186-5-draft-comments-received.pdf">
          <front>
            <title>Public Comments Received on Draft FIPS 186-5: Digital Signature Standards (DSS)</title>
            <author>
              <organization/>
            </author>
            <date year="2021" month="March"/>
          </front>
        </reference>
        <reference anchor="Bernstein19" target="https://blog.cr.yp.to/20191024-eddsa.html">
          <front>
            <title>Why EdDSA held up better than ECDSA against Minerva</title>
            <author initials="D." surname="Bernstein">
              <organization/>
            </author>
            <date year="2019" month="October"/>
          </front>
        </reference>
        <reference anchor="Bernstein14" target="https://blog.cr.yp.to/20140323-ecdsa.html">
          <front>
            <title>How to design an elliptic-curve signature system</title>
            <author initials="D." surname="Bernstein">
              <organization/>
            </author>
            <date year="2014" month="March"/>
          </front>
        </reference>
        <reference anchor="Cao20" target="https://eprint.iacr.org/2020/803">
          <front>
            <title>Lattice-based Fault Attacks on Deterministic Signature Schemes of ECDSA and EdDSA</title>
            <author initials="" surname="Weiqiong Cao">
              <organization/>
            </author>
            <author initials="" surname="Hongsong Shi">
              <organization/>
            </author>
            <author initials="" surname="Hua Chen">
              <organization/>
            </author>
            <author initials="" surname="Jiazhe Chen">
              <organization/>
            </author>
            <author initials="" surname="Limin Fan">
              <organization/>
            </author>
            <author initials="" surname="Wenling Wu">
              <organization/>
            </author>
            <date year="2020" month="June"/>
          </front>
        </reference>
        <reference anchor="RFC8037">
          <front>
            <title>CFRG Elliptic Curve Diffie-Hellman (ECDH) and Signatures in JSON Object Signing and Encryption (JOSE)</title>
            <author fullname="I. Liusvaara" initials="I." surname="Liusvaara"/>
            <date month="January" year="2017"/>
            <abstract>
              <t>This document defines how to use the Diffie-Hellman algorithms "X25519" and "X448" as well as the signature algorithms "Ed25519" and "Ed448" from the IRTF CFRG elliptic curves work in JSON Object Signing and Encryption (JOSE).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8037"/>
          <seriesInfo name="DOI" value="10.17487/RFC8037"/>
        </reference>
        <reference anchor="RFC8080">
          <front>
            <title>Edwards-Curve Digital Security Algorithm (EdDSA) for DNSSEC</title>
            <author fullname="O. Sury" initials="O." surname="Sury"/>
            <author fullname="R. Edmonds" initials="R." surname="Edmonds"/>
            <date month="February" year="2017"/>
            <abstract>
              <t>This document describes how to specify Edwards-curve Digital Security Algorithm (EdDSA) keys and signatures in DNS Security (DNSSEC). It uses EdDSA with the choice of two curves: Ed25519 and Ed448.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8080"/>
          <seriesInfo name="DOI" value="10.17487/RFC8080"/>
        </reference>
        <reference anchor="RFC8225">
          <front>
            <title>PASSporT: Personal Assertion Token</title>
            <author fullname="C. Wendt" initials="C." surname="Wendt"/>
            <author fullname="J. Peterson" initials="J." surname="Peterson"/>
            <date month="February" year="2018"/>
            <abstract>
              <t>This document defines a method for creating and validating a token that cryptographically verifies an originating identity or, more generally, a URI or telephone number representing the originator of personal communications. The Personal Assertion Token, PASSporT, is cryptographically signed to protect the integrity of the identity of the originator and to verify the assertion of the identity information at the destination. The cryptographic signature is defined with the intention that it can confidently verify the originating persona even when the signature is sent to the destination party over an insecure channel. PASSporT is particularly useful for many personal-communications applications over IP networks and other multi-hop interconnection scenarios where the originating and destination parties may not have a direct trusted relationship.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8225"/>
          <seriesInfo name="DOI" value="10.17487/RFC8225"/>
        </reference>
        <reference anchor="RFC8387">
          <front>
            <title>Practical Considerations and Implementation Experiences in Securing Smart Object Networks</title>
            <author fullname="M. Sethi" initials="M." surname="Sethi"/>
            <author fullname="J. Arkko" initials="J." surname="Arkko"/>
            <author fullname="A. Keranen" initials="A." surname="Keranen"/>
            <author fullname="H. Back" initials="H." surname="Back"/>
            <date month="May" year="2018"/>
            <abstract>
              <t>This memo describes challenges associated with securing resource- constrained smart object devices. The memo describes a possible deployment model where resource-constrained devices sign message objects, discusses the availability of cryptographic libraries for resource-constrained devices, and presents some preliminary experiences with those libraries for message signing on resource- constrained devices. Lastly, the memo discusses trade-offs involving different types of security approaches.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8387"/>
          <seriesInfo name="DOI" value="10.17487/RFC8387"/>
        </reference>
        <reference anchor="RFC8391">
          <front>
            <title>XMSS: eXtended Merkle Signature Scheme</title>
            <author fullname="A. Huelsing" initials="A." surname="Huelsing"/>
            <author fullname="D. Butin" initials="D." surname="Butin"/>
            <author fullname="S. Gazdag" initials="S." surname="Gazdag"/>
            <author fullname="J. Rijneveld" initials="J." surname="Rijneveld"/>
            <author fullname="A. Mohaisen" initials="A." surname="Mohaisen"/>
            <date month="May" year="2018"/>
            <abstract>
              <t>This note describes the eXtended Merkle Signature Scheme (XMSS), a hash-based digital signature system that is based on existing descriptions in scientific literature. This note specifies Winternitz One-Time Signature Plus (WOTS+), a one-time signature scheme; XMSS, a single-tree scheme; and XMSS^MT, a multi-tree variant of XMSS. Both XMSS and XMSS^MT use WOTS+ as a main building block. XMSS provides cryptographic digital signatures without relying on the conjectured hardness of mathematical problems. Instead, it is proven that it only relies on the properties of cryptographic hash functions. XMSS provides strong security guarantees and is even secure when the collision resistance of the underlying hash function is broken. It is suitable for compact implementations, is relatively simple to implement, and naturally resists side-channel attacks. Unlike most other signature systems, hash-based signatures can so far withstand known attacks using quantum computers.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8391"/>
          <seriesInfo name="DOI" value="10.17487/RFC8391"/>
        </reference>
        <reference anchor="RFC8410">
          <front>
            <title>Algorithm Identifiers for Ed25519, Ed448, X25519, and X448 for Use in the Internet X.509 Public Key Infrastructure</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies algorithm identifiers and ASN.1 encoding formats for elliptic curve constructs using the curve25519 and curve448 curves. The signature algorithms covered are Ed25519 and Ed448. The key agreement algorithms covered are X25519 and X448. The encoding for public key, private key, and Edwards-curve Digital Signature Algorithm (EdDSA) structures is provided.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8410"/>
          <seriesInfo name="DOI" value="10.17487/RFC8410"/>
        </reference>
        <reference anchor="RFC8411">
          <front>
            <title>IANA Registration for the Cryptographic Algorithm Object Identifier Range</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <author fullname="R. Andrews" initials="R." surname="Andrews"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>When the Curdle Security Working Group was chartered, a range of object identifiers was donated by DigiCert, Inc. for the purpose of registering the Edwards Elliptic Curve key agreement and signature algorithms. This donated set of OIDs allowed for shorter values than would be possible using the existing S/MIME or PKIX arcs. This document describes the donated range and the identifiers that were assigned from that range, transfers control of that range to IANA, and establishes IANA allocation policies for any future assignments within that range.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8411"/>
          <seriesInfo name="DOI" value="10.17487/RFC8411"/>
        </reference>
        <reference anchor="RFC8419">
          <front>
            <title>Use of Edwards-Curve Digital Signature Algorithm (EdDSA) Signatures in the Cryptographic Message Syntax (CMS)</title>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies the conventions for using the Edwards-curve Digital Signature Algorithm (EdDSA) for curve25519 and curve448 in the Cryptographic Message Syntax (CMS). For each curve, EdDSA defines the PureEdDSA and HashEdDSA modes. However, the HashEdDSA mode is not used with the CMS. In addition, no context string is used with the CMS.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8419"/>
          <seriesInfo name="DOI" value="10.17487/RFC8419"/>
        </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="RFC8422">
          <front>
            <title>Elliptic Curve Cryptography (ECC) Cipher Suites for Transport Layer Security (TLS) Versions 1.2 and Earlier</title>
            <author fullname="Y. Nir" initials="Y." surname="Nir"/>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
            <author fullname="M. Pegourie-Gonnard" initials="M." surname="Pegourie-Gonnard"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document describes key exchange algorithms based on Elliptic Curve Cryptography (ECC) for the Transport Layer Security (TLS) protocol. In particular, it specifies the use of Ephemeral Elliptic Curve Diffie-Hellman (ECDHE) key agreement in a TLS handshake and the use of the Elliptic Curve Digital Signature Algorithm (ECDSA) and Edwards-curve Digital Signature Algorithm (EdDSA) as authentication mechanisms.</t>
              <t>This document obsoletes RFC 4492.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8422"/>
          <seriesInfo name="DOI" value="10.17487/RFC8422"/>
        </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="RFC8463">
          <front>
            <title>A New Cryptographic Signature Method for DomainKeys Identified Mail (DKIM)</title>
            <author fullname="J. Levine" initials="J." surname="Levine"/>
            <date month="September" year="2018"/>
            <abstract>
              <t>This document adds a new signing algorithm, Ed25519-SHA256, to "DomainKeys Identified Mail (DKIM) Signatures" (RFC 6376). DKIM verifiers are required to implement this algorithm.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8463"/>
          <seriesInfo name="DOI" value="10.17487/RFC8463"/>
        </reference>
        <reference anchor="RFC8550">
          <front>
            <title>Secure/Multipurpose Internet Mail Extensions (S/MIME) Version 4.0 Certificate Handling</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <author fullname="B. Ramsdell" initials="B." surname="Ramsdell"/>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <date month="April" year="2019"/>
            <abstract>
              <t>This document specifies conventions for X.509 certificate usage by Secure/Multipurpose Internet Mail Extensions (S/MIME) v4.0 agents. S/MIME provides a method to send and receive secure MIME messages, and certificates are an integral part of S/MIME agent processing. S/MIME agents validate certificates as described in RFC 5280 ("Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile"). S/MIME agents must meet the certificate-processing requirements in this document as well as those in RFC 5280. This document obsoletes RFC 5750.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8550"/>
          <seriesInfo name="DOI" value="10.17487/RFC8550"/>
        </reference>
        <reference anchor="RFC8591">
          <front>
            <title>SIP-Based Messaging with S/MIME</title>
            <author fullname="B. Campbell" initials="B." surname="Campbell"/>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <date month="April" year="2019"/>
            <abstract>
              <t>Mobile messaging applications used with the Session Initiation Protocol (SIP) commonly use some combination of the SIP MESSAGE method and the Message Session Relay Protocol (MSRP). While these provide mechanisms for hop-by-hop security, neither natively provides end-to-end protection. This document offers guidance on how to provide end-to-end authentication, integrity protection, and confidentiality using the Secure/Multipurpose Internet Mail Extensions (S/MIME). It updates and provides clarifications for RFCs 3261, 3428, and 4975.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8591"/>
          <seriesInfo name="DOI" value="10.17487/RFC8591"/>
        </reference>
        <reference anchor="RFC8608">
          <front>
            <title>BGPsec Algorithms, Key Formats, and Signature Formats</title>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <author fullname="O. Borchert" initials="O." surname="Borchert"/>
            <date month="June" year="2019"/>
            <abstract>
              <t>This document specifies the algorithms, algorithm parameters, asymmetric key formats, asymmetric key sizes, and signature formats used in BGPsec (Border Gateway Protocol Security). This document updates RFC 7935 ("The Profile for Algorithms and Key Sizes for Use in the Resource Public Key Infrastructure") and obsoletes RFC 8208 ("BGPsec Algorithms, Key Formats, and Signature Formats") by adding Documentation and Experimentation Algorithm IDs, correcting the range of unassigned algorithms IDs to fill the complete range, and restructuring the document for better reading.</t>
              <t>This document also includes example BGPsec UPDATE messages as well as the private keys used to generate the messages and the certificates necessary to validate those signatures.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8608"/>
          <seriesInfo name="DOI" value="10.17487/RFC8608"/>
        </reference>
        <reference anchor="RFC8624">
          <front>
            <title>Algorithm Implementation Requirements and Usage Guidance for DNSSEC</title>
            <author fullname="P. Wouters" initials="P." surname="Wouters"/>
            <author fullname="O. Sury" initials="O." surname="Sury"/>
            <date month="June" year="2019"/>
            <abstract>
              <t>The DNSSEC protocol makes use of various cryptographic algorithms in order to provide authentication of DNS data and proof of nonexistence. To ensure interoperability between DNS resolvers and DNS authoritative servers, it is necessary to specify a set of algorithm implementation requirements and usage guidelines to ensure that there is at least one algorithm that all implementations support. This document defines the current algorithm implementation requirements and usage guidance for DNSSEC. This document obsoletes RFC 6944.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8624"/>
          <seriesInfo name="DOI" value="10.17487/RFC8624"/>
        </reference>
        <reference anchor="RFC8554">
          <front>
            <title>Leighton-Micali Hash-Based Signatures</title>
            <author fullname="D. McGrew" initials="D." surname="McGrew"/>
            <author fullname="M. Curcio" initials="M." surname="Curcio"/>
            <author fullname="S. Fluhrer" initials="S." surname="Fluhrer"/>
            <date month="April" year="2019"/>
            <abstract>
              <t>This note describes a digital-signature system based on cryptographic hash functions, following the seminal work in this area of Lamport, Diffie, Winternitz, and Merkle, as adapted by Leighton and Micali in 1995. It specifies a one-time signature scheme and a general signature scheme. These systems provide asymmetric authentication without using large integer mathematics and can achieve a high security level. They are suitable for compact implementations, are relatively simple to implement, and are naturally resistant to side-channel attacks. Unlike many other signature systems, hash-based signatures would still be secure even if it proves feasible for an attacker to build a quantum computer.</t>
              <t>This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF. This has been reviewed by many researchers, both in the research group and outside of it. The Acknowledgements section lists many of them.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8554"/>
          <seriesInfo name="DOI" value="10.17487/RFC8554"/>
        </reference>
        <reference anchor="RFC9053">
          <front>
            <title>CBOR Object Signing and Encryption (COSE): Initial Algorithms</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>Concise Binary Object Representation (CBOR) is a data format designed for small code size and small message size. There is a need to be able to define basic security services for this data format. This document defines a set of algorithms that can be used with the CBOR Object Signing and Encryption (COSE) protocol (RFC 9052).</t>
              <t>This document, along with RFC 9052, obsoletes RFC 8152.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9053"/>
          <seriesInfo name="DOI" value="10.17487/RFC9053"/>
        </reference>
      </references>
    </references>
    <?line 531?>

<section removeInRFC="true" numbered="false" anchor="change-log">
      <name>Change log</name>
      <t>Changes from -00 to -01:</t>
      <ul spacing="normal">
        <li>
          <t>Changed terminology to hedged signatures/signing.</t>
        </li>
        <li>
          <t>Added reference to the FIPS 204 (ML-DSA) where hedged signatures are the default.</t>
        </li>
        <li>
          <t>Added a second 000... padding that separates the context from the prefix, aligning with BSI recommendations.</t>
        </li>
        <li>
          <t>Added note that Z in step f is not reused from step d.</t>
        </li>
        <li>
          <t>Added note on "internal octet" is 0x01 from RFC 6979.</t>
        </li>
        <li>
          <t>Removed incorrect statement that context fit in first block.</t>
        </li>
        <li>
          <t>Added more description about the construction.</t>
        </li>
        <li>
          <t>Moved "For discussion" section to GitHub issue.</t>
        </li>
        <li>
          <t>Editorial changes.</t>
        </li>
      </ul>
    </section>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>The authors would like to thank
<contact fullname="Tony Arcieri"/>,
<contact fullname="Uri Blumenthal"/>,
<contact fullname="Carsten Bormann"/>,
<contact fullname="Phillip Hallam-Baker"/>,
<contact fullname="Chelsea Komlo"/>,
<contact fullname="Quynh Dang"/>,
<contact fullname="Janos Follath"/>,
<contact fullname="Ilari Liusvaara"/>,
<contact fullname="Jim Schaad"/>,
and
<contact fullname="Ruggero Susella"/>
for their valuable comments and feedback.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
