Elliptic Curve Digital Signature Algorithm
In cryptography, the Elliptic Curve Digital Signature Algorithm (ECDSA) offers a variant of the Digital Signature Algorithm (DSA) which uses elliptic curve cryptography.
Key and signature-size comparison to DSA
As with elliptic-curve cryptography in general, the bit size of the public key believed to be needed for ECDSA is about twice the size of the security level, in bits.  For example, at a security level of 80 bits (meaning an attacker requires the equivalent of about  operations to find the private key) the size of a DSA public key is at least 1024 bits, whereas the size of an ECDSA public key would be 160 bits.  On the other hand, the signature size is the same for both DSA and ECDSA:
 operations to find the private key) the size of a DSA public key is at least 1024 bits, whereas the size of an ECDSA public key would be 160 bits.  On the other hand, the signature size is the same for both DSA and ECDSA:  bits, where
 bits, where  is the security level measured in bits, that is, about 320 bits for a security level of 80 bits.
 is the security level measured in bits, that is, about 320 bits for a security level of 80 bits.
Signature generation algorithm
Suppose Alice wants to send a signed message to Bob. Initially, they must agree on the curve parameters  .  In addition to the field and equation of the curve, we need
.  In addition to the field and equation of the curve, we need  , a base point of prime order on the curve;
, a base point of prime order on the curve;  is the multiplicative order of the point
 is the multiplicative order of the point  .
.
| Parameter | |
|---|---|
| CURVE | the elliptic curve field and equation used | 
| G | elliptic curve base point, a generator of the elliptic curve with large prime order n | 
| n | integer order of G, means that  | 
Alice creates a key pair, consisting of a private key integer  , randomly selected in the interval
, randomly selected in the interval ![[1, n-1]](../I/m/9a03674f73da84f7b1ebfc165b029ffd.png) ; and a public key curve point
; and a public key curve point  . We use
. We use  to denote elliptic curve point multiplication by a scalar.
 to denote elliptic curve point multiplication by a scalar.
For Alice to sign a message  , she follows these steps:
, she follows these steps:
-  Calculate  , where HASH is a cryptographic hash function, such as SHA-2. , where HASH is a cryptographic hash function, such as SHA-2.
-  Let  be the be the leftmost bits of leftmost bits of , where , where is the bit length of the group order is the bit length of the group order . .
-  Select a cryptographically secure random integer  from from![[1, n-1]](../I/m/9a03674f73da84f7b1ebfc165b029ffd.png) . .
-  Calculate the curve point  . .
-  Calculate  . If . If , go back to step 3. , go back to step 3.
-  Calculate  . If . If , go back to step 3. , go back to step 3.
-  The signature is the pair  . .
When computing  , the string
, the string  resulting from
 resulting from  shall be converted to an integer. Note that
 shall be converted to an integer. Note that  can be greater than
 can be greater than  but not longer.[1]
 but not longer.[1]
As the standard notes, it is crucial to select different  for different signatures, otherwise the equation in step 6 can be solved for
 for different signatures, otherwise the equation in step 6 can be solved for  , the private key: Given two signatures
, the private key: Given two signatures  and
 and  , employing the same unknown
, employing the same unknown  for different known messages
 for different known messages  and
 and  , an attacker can calculate
, an attacker can calculate  and
 and  , and since
, and since  (all operations in this paragraph are done modulo
 (all operations in this paragraph are done modulo  ) the attacker can find
) the attacker can find  . Since
. Since  , the attacker can now calculate the private key
, the attacker can now calculate the private key  . This implementation failure was used, for example, to extract the signing key used in the PlayStation 3 gaming-console.[2] Another way ECDSA signature may leak private keys is when
. This implementation failure was used, for example, to extract the signing key used in the PlayStation 3 gaming-console.[2] Another way ECDSA signature may leak private keys is when  is generated by a faulty random number generator. Such a failure in random number generation caused users of Android Bitcoin Wallet to lose their funds in August 2013.[3] To ensure that
 is generated by a faulty random number generator. Such a failure in random number generation caused users of Android Bitcoin Wallet to lose their funds in August 2013.[3] To ensure that  is unique for each message one may bypass random number generation completely and generate deterministic signatures by deriving
 is unique for each message one may bypass random number generation completely and generate deterministic signatures by deriving  from both the message and the private key.[4]
 from both the message and the private key.[4]
Signature verification algorithm
For Bob to authenticate Alice's signature, he must have a copy of her public-key curve point  . Bob can verify
. Bob can verify  is a valid curve point as follows:
 is a valid curve point as follows:
-  Check that  is not equal to the identity element is not equal to the identity element , and its coordinates are otherwise valid , and its coordinates are otherwise valid
-  Check that  lies on the curve lies on the curve
-  Check that  
After that, Bob follows these steps:
-  Verify that  and and are integers in are integers in![[1, n-1]](../I/m/9a03674f73da84f7b1ebfc165b029ffd.png) . If not, the signature is invalid. . If not, the signature is invalid.
-  Calculate  , where HASH is the same function used in the signature generation. , where HASH is the same function used in the signature generation.
-  Let  be the be the leftmost bits of leftmost bits of . .
-  Calculate  . .
-  Calculate  and and . .
-  Calculate the curve point  . .
-  The signature is valid if  , invalid otherwise. , invalid otherwise.
Note that using Straus's algorithm (also known as Shamir's trick), a sum of two scalar multiplications  can be calculated faster than two scalar multiplications done independently.[5]
 can be calculated faster than two scalar multiplications done independently.[5]
Correctness of the algorithm
It is not immediately obvious why verification even functions correctly.  To see why, denote as  the curve point computed in step 6 of verification,
 the curve point computed in step 6 of verification,

From the definition of the public key as  ,
,

Because elliptic curve scalar multiplication distributes over addition,

Expanding the definition of  and
 and  from verification step 5,
 from verification step 5,

Collecting the common term  ,
,

Expanding the definition of  from signature step 6,
 from signature step 6,

Since the inverse of an inverse is the original element, and the product of an element's inverse and the element is the identity, we are left with

From the definition of  , this is verification step 6.
, this is verification step 6.
This shows only that a correctly signed message will verify correctly; many other properties are required for a secure signature algorithm.
Security
In December 2010, a group calling itself fail0verflow announced recovery of the ECDSA private key used by Sony to sign software for the PlayStation 3 game console. However, this attack only worked because Sony did not properly implement the algorithm, because  was static instead of random. As pointed out in the Signature generation algorithm Section above, this makes
 was static instead of random. As pointed out in the Signature generation algorithm Section above, this makes  solvable and the entire algorithm useless.[6]
 solvable and the entire algorithm useless.[6]
On March 29, 2011, two researchers published an IACR paper[7] demonstrating that it is possible to retrieve a TLS private key of a server using OpenSSL that authenticates with Elliptic Curves DSA over a binary field via a timing attack.[8] The vulnerability was fixed in OpenSSL 1.0.0e.[9]
In August 2013, it was revealed that bugs in some implementations of the Java class SecureRandom sometimes generated collisions in the k value. As discussed above, this allowed solution of the private key, in turn allowing stealing bitcoins from the containing wallet on Android app implementations, which use Java and rely on ECDSA to authenticate transactions.[10]
This issue can be prevented by deterministic generation of k, as described by RFC 6979.
See also
Notes
- ↑ NIST FIPS 186-4, July 2013, pp. 19 and 26
- ↑ Console Hacking 2010 - PS3 Epic Fail, page 123–128
- ↑ "Android Security Vulnerability". Retrieved February 24, 2015.
- ↑ "RFC 6979 - Deterministic Usage of the Digital Signature Algorithm (DSA) and Elliptic Curve Digital Signature Algorithm (ECDSA)". Retrieved February 24, 2015.
- ↑ "The Double-Base Number System in Elliptic Curve Cryptography" (PDF). Retrieved 22 April 2014.
- ↑ Bendel, Mike (2010-12-29). "Hackers Describe PS3 Security As Epic Fail, Gain Unrestricted Access". Exophase.com. Retrieved 2011-01-05.
- ↑ "Cryptology ePrint Archive: Report 2011/232". Retrieved February 24, 2015.
- ↑ Vulnerability Note VU#536044 - OpenSSL leaks ECDSA private key through a remote timing attack
- ↑ "ChangeLog". OpenSSL Project. Retrieved 22 April 2014.
- ↑ "Android bug batters Bitcoin wallets". The Register. 12 August 2013.
References
- Accredited Standards Committee X9, American National Standard X9.62-2005, Public Key Cryptography for the Financial Services Industry, The Elliptic Curve Digital Signature Algorithm (ECDSA), November 16, 2005.
- Certicom Research, Standards for efficient cryptography, SEC 1: Elliptic Curve Cryptography, Version 2.0, May 21, 2009.
- López, J. and Dahab, R. An Overview of Elliptic Curve Cryptography, Technical Report IC-00-10, State University of Campinas, 2000.
- Daniel J. Bernstein, Pippenger's exponentiation algorithm, 2002.
- Daniel R. L. Brown, Generic Groups, Collision Resistance, and ECDSA, Designs, Codes and Cryptography, 35, 119–152, 2005. ePrint version
- Ian F. Blake, Gadiel Seroussi, and Nigel P. Smart, editors, Advances in Elliptic Curve Cryptography, London Mathematical Society Lecture Note Series 317, Cambridge University Press, 2005.
- Hankerson, D.; Vanstone, S.; Menezes, A. (2004). Guide to Elliptic Curve Cryptography. Springer Professional Computing. New York: Springer. doi:10.1007/b97644. ISBN 0-387-95273-X.
External links
| 
 | ||||||||||||||||||||||||||||||||||||||||||||||||||
