<?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.6 (Ruby 3.0.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-irtf-cfrg-det-sigs-with-noise-02" 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-02"/>
    <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="March" day="01"/>
    <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 || Zd || 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 Zd (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 || Zd || 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 || Zf || 000... || int2octets(x) ||
           000... || bits2octets(h1))

    Note that the "internal octet" is 0x01 this time and that Zf 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>
    <section anchor="test-vectors">
      <name>Test Vectors</name>
      <t>TODO</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 535?>

<section removeInRFC="true" numbered="false" anchor="change-log">
      <name>Change log</name>
      <t>Changes from -01 to -02:</t>
      <ul spacing="normal">
        <li>
          <t>Different names Zd and Zf for the randomness in ECDSA</t>
        </li>
        <li>
          <t>Added empty test vector section as TODO.</t>
        </li>
      </ul>
      <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="Taylor R Campbell"/>,
<contact fullname="Quynh Dang"/>,
<contact fullname="Janos Follath"/>,
<contact fullname="Phillip Hallam-Baker"/>,
<contact fullname="Chelsea Komlo"/>,
<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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
a91HfIwlhf4jleK1/hfZis5EkWsAAA==

-->

</rfc>
