Not to be confused with ECDSA.
In public-key cryptography, Edwards-curve Digital Signature Algorithm ( EdDSA ) is a digital signature scheme using a variant of Schnorr signature based on twisted Edwards curves.1 It is designed to be faster than existing digital signature schemes without sacrificing security. It was developed by a team including Daniel J. Bernstein, Niels Duif, Tanja Lange, Peter Schwabe, and Bo-Yin Yang.2 The reference implementation is public-domain software.3
Summary
The following is a simplified description of EdDSA, ignoring details of encoding integers and curve points as bit strings; the full details are in the papers and RFC.4 2 1
An EdDSA signature scheme is a choice:4:â1â2ââ 2:â5â6ââ 1:â5â7ââ
- of finite field over odd prime power ;
- of elliptic curve over whose group of -rational points has order , where is a large prime and is called the cofactor;
- of base point with order ; and
- of cryptographic hash function with -bit outputs, where so that elements of and curve points in can be represented by strings of bits.
These parameters are common to all users of the EdDSA signature scheme. The security of the EdDSA signature scheme depends critically on the choices of parameters, except for the arbitrary choice of base pointâfor example, Pollardâs rho algorithm for logarithms is expected to take approximately curve additions before it can compute a discrete logarithm,5 so must be large enough for this to be infeasible, and is typically taken to exceed 2 200.6 The choice of is limited by the choice of , since by Hasseâs theorem, cannot differ from by more than . The hash function is normally modelled as a random oracle in formal analyses of EdDSAâs security.
Within an EdDSA signature scheme,
Public key
An EdDSA public key is a curve point , encoded in bits.
Signature verification
An EdDSA signature on a message by public key is the pair , encoded in bits, of a curve point and an integer satisfying the following verification equation, where denotes concatenation:
Private key
An EdDSA private key is a -bit string which should be chosen uniformly at random. The corresponding public key is , where is the least significant bits of interpreted as an integer in little-endian.
Signing
The signature on a message is deterministically computed as where for , and This satisfies the verification equation
Ed25519
Ed25519 is the EdDSA signature scheme using SHA-512 (SHA-2) and an elliptic curve related to Curve25519 2 where
- is the twisted Edwards curve
- and
- is the unique point in whose coordinate is and whose coordinate is positive.
âpositiveâ is defined in terms of bit-encoding:- âpositiveâ coordinates are even coordinates (least significant bit is cleared)
- ânegativeâ coordinates are odd coordinates (least significant bit is set)
- is SHA-512, with .
The twisted Edwards curve is known as edwards25519,7 1 and is birationally equivalent to the Montgomery curve known as Curve25519. The equivalence is 2 7 8
Performance
The original team has optimized Ed25519 for the x86-64 Nehalem / Westmere processor family. Verification can be performed in batches of 64 signatures for even greater throughput. Ed25519 is intended to provide attack resistance comparable to quality 128-bit symmetric ciphers.9
Public keys are 256 bits long and signatures are 512 bits long.10
Secure coding
Ed25519 is designed to avoid implementations that use branch conditions or array indices that depend on secret data,2:â2ââ 1:â40ââ in order to mitigate side-channel attacks.
As with other discrete-log-based signature schemes, EdDSA uses a secret value called a nonce unique to each signature. In the signature schemes DSA and ECDSA, this nonce is traditionally generated randomly for each signatureâand if the random number generator is ever broken and predictable when making a signature, the signature can leak the private key, as happened with the Sony PlayStation 3 firmware update signing key.11 12 13 14
In contrast, EdDSA chooses the nonce deterministically as the hash of a part of the private key and the message. Thus, once a private key is generated, EdDSA has no further need for a random number generator in order to make signatures, and there is no danger that a broken random number generator used to make a signature will reveal the private key.2:â8ââ
Standardization and implementation inconsistencies
Note that there are two standardization efforts for EdDSA, one from IETF, an informational RFC 8032 and one from NIST as part of FIPS 186-5.15 The differences between the standards have been analyzed,16 17 and test vectors are available.18
Software
Notable uses of Ed25519 include OpenSSH,19 GnuPG 20 and various alternatives, and the signify tool by OpenBSD.21 Usage of Ed25519 (and Ed448) in the SSH protocol has been standardized.22 In 2023 the final version of the FIPS 186-5 standard included deterministic Ed25519 as an approved signature scheme.15
- Apple Watch and iPhone use Ed25519 keys for IKEv2 mutual authentication 23
- Botan
- Crypto++
- CryptoNote cryptocurrency protocol
- Dropbear SSH 24
- I2Pd implementation of EdDSA 25
- Java Development Kit 15
- Libgcrypt
- Minisign 26 and Minisign Miscellanea 27 for macOS
- NaCl / libsodium 28
- OpenSSL 1.1.1 29
- Python - A slow but concise alternate implementation,30 does not include side-channel attack protection 31
- Supercop reference implementation 32 ( C language with inline assembler )
- Virgil PKI uses Ed25519 keys by default 33
- wolfSSL 34
Ed448
Ed448 is the EdDSA signature scheme defined in RFC 8032 using the hash function SHAKE256 and the elliptic curve edwards448, an (untwisted) Edwards curve related to Curve448 in RFC 7748. Ed448 has also been approved in the final version of the FIPS 186-5 standard.15
References
External links
- Josefsson, S.; Liusvaara, I. (January 2017). Edwards-Curve Digital Signature Algorithm (EdDSA). IRTF. doi:10.17487/RFC8032. ISSN 2070-1721. RFC 8032. Retrieved 2022-07-11.â© â© â© â© â©
- Bernstein, Daniel J.; Duif, Niels; Lange, Tanja; Schwabe, Peter; Bo-Yin Yang (2012). âHigh-speed high-security signaturesâ (PDF). Journal of Cryptographic Engineering. 2 (2): 77â 89. doi:10.1007/s13389-012-0027-1. S2CID 945254.â© â© â© â© â© â© â©
- âSoftwareâ. 2015-06-11. Retrieved 2016-10-07. The Ed25519 software is in the public domain.â©
- Daniel J. Bernstein; Simon Josefsson; Tanja Lange; Peter Schwabe; Bo-Yin Yang (2015-07-04). EdDSA for more curves (PDF) (Technical report). Retrieved 2016-11-14.â© â©
- Daniel J. Bernstein; Tanja Lange; Peter Schwabe (2011-01-01). On the correct use of the negation map in the Pollard rho method (Technical report). IACR Cryptology ePrint Archive. 2011/003. Retrieved 2016-11-14.â©
- Bernstein, Daniel J.; Lange, Tanja. âECDLP Security: Rhoâ. SafeCurves: choosing safe curves for elliptic-curve cryptography. Retrieved 2016-11-16.â©
- Langley, A.; Hamburg, M.; Turner, S. (January 2016). Elliptic Curves for Security. IETF. doi:10.17487/RFC7748. ISSN 2070-1721. RFC 7748. Retrieved 2024-11-12.â© â©
- Bernstein, Daniel J.; Lange, Tanja (2007). Kurosawa, Kaoru (ed.). Faster addition and doubling on elliptic curves. Advances in cryptologyâASIACRYPT. Lecture Notes in Computer Science. Vol. 4833. Berlin: Springer. pp. 29â 50. doi:10.1007/978-3-540-76900-2_3. ISBN 978-3-540-76899-9. MR 2565722.â©
- Bernstein, Daniel J. (2017-01-22). âEd25519: high-speed high-security signaturesâ. Retrieved 2019-09-27. This system has a 2^128 security target; breaking it has similar difficulty to breaking NIST P-256, RSA with ~3000-bit keys, strong 128-bit block ciphers, etc.â©
- Bernstein, Daniel J. (2017-01-22). âEd25519: high-speed high-security signaturesâ. Retrieved 2020-06-01. Signatures fit into 64 bytes. [âŠ] Public keys consume only 32 bytes.â©
- Johnston, Casey (2010-12-30). âPS3 hacked through poor cryptography implementationâ. Ars Technica. Retrieved 2016-11-15.â©
- fail0verflow (2010-12-29). Console Hacking 2010: PS3 Epic Fail (PDF). Chaos Communication Congress. Archived from the original (PDF) on 2018-10-26. Retrieved 2016-11-15.â©
- â27th Chaos Communication Congress: Console Hacking 2010: PS3 Epic Failâ (PDF). Retrieved 2019-08-04.â©
- Buchanan, Bill (2018-11-12). âNot Playing Randomly: The Sony PS3 and Bitcoin Crypto Hacks. Watch those random number generatorsâ. Medium. Archived from the original on 2018-11-30. Retrieved 2024-03-11.â©
- Moody, Dustin (2023-02-03). FIPS 186-5: Digital Signature Standard (DSS). NIST. doi:10.6028/NIST.FIPS.186-5. S2CID 256480883. Retrieved 2023-03-04.â© â© â©
- Chalkias, Konstantinos; Garillot, Francois; Nikolaenko, Valeria (2020-10-01). Taming the many EdDSAs. Security Standardisation Research Conference (SSR 2020). Retrieved 2021-02-15.â©
- Brendel, Jacqueline; Cremers, Cas; Jackson, Dennis; Zhao, Mang (2020-07-03). The provable security of ed25519: Theory and practice. IEEE Symposium on Security and Privacy (S&P 2021). Retrieved 2021-02-15.â©
- âed25519-speccheckâ. GitHub. Retrieved 2021-02-15.â©
- âChanges since OpenSSH 6.4â. 2014-01-03. Retrieved 2016-10-07.â©
- âWhatâs new in GnuPG 2.1â. 2016-07-14. Retrieved 2016-10-07.â©
- âThings that use Ed25519â. 2016-10-06. Retrieved 2016-10-07.â©
- Harris, B.; Velvindron, L. (February 2020). Ed25519 and Ed448 Public Key Algorithms for the Secure Shell (SSH) Protocol. IETF. doi:10.17487/RFC8709. ISSN 2070-1721. RFC 8709. Retrieved 2022-07-11.â©
- âSystem security for watchOSâ. Retrieved 2021-06-07.â©
- Matt Johnston (2013-11-14). âDROPBEAR_2013.61testâ. Archived from the original on 2019-08-05. Retrieved 2019-08-05.â©
- âHeuristic Algorithms and Distributed Computingâ (PDF). ĂvristiÄeskie Algoritmy I Raspredelennye VyÄisleniĂą (in Russian): 55â 56. 2015. ISSN 2311-8563. Archived from the original (PDF) on 2016-10-20. Retrieved 2016-10-07.â©
- Frank Denis. âMinisign: A dead simple tool to sign files and verify signaturesâ. Retrieved 2016-10-07.â©
- minisign-misc on GitHub â©
- Frank Denis (2016-06-29). âlibsodium/ChangeLogâ. GitHub. Retrieved 2016-10-07.â©
- âOpenSSL CHANGESâ. July 31, 2019. Archived from the original on May 18, 2018. Retrieved August 5, 2019.â©
- âpython/ed25519.py: the main subroutinesâ. 2011-07-06. Retrieved 2016-10-07.â©
- âSoftware: Alternate implementationsâ. 2015-06-11. Retrieved 2016-10-07.â©
- âeBACS: ECRYPT Benchmarking of Cryptographic Systems: SUPERCOPâ. 2016-09-10. Retrieved 2016-10-07.â©
- âVirgil Security Crypto Library for C: Library: Foundationâ. GitHub. Retrieved 2019-08-04.â©
- âwolfSSL Embedded SSL Library (formerly CyaSSL)â. Retrieved 2016-10-07.â©