Elliptic curve cryptography

Elliptic curve cryptography

Elliptic curve cryptography (ECC) is an approach to public-key cryptography based on the algebraic structure of elliptic curves over finite fields. The use of elliptic curves in cryptography was suggested independently by Neal Koblitz[1] and Victor S. Miller[2] in 1985.

Elliptic curves are also used in several integer factorization algorithms that have applications in cryptography, such as Lenstra elliptic curve factorization.

Contents

Introduction

Public-key cryptography is based on the intractability of certain mathematical problems. Early public-key systems are secure assuming that it is difficult to factor a large integer composed of two or more large prime factors. For elliptic-curve-based protocols, it is assumed that finding the discrete logarithm of a random elliptic curve element with respect to a publicly-known base point is infeasible. The size of the elliptic curve determines the difficulty of the problem. It is believed[by whom?] that the same level of security afforded by an RSA-based system with a large modulus can be achieved with a much smaller elliptic curve group. Using a small group reduces storage and transmission requirements.

For current cryptographic purposes, an elliptic curve is a plane curve which consists of the points satisfying the equation

y^2 = x^3 + ax + b, \,

along with a distinguished point at infinity, denoted \infty. (The coordinates here are to be chosen from a fixed finite field of characteristic not equal to 2 or 3, or the curve equation will be somewhat more complicated.) This set together with the group operation of the elliptic group theory form an Abelian group, with the point at infinity as identity element. The structure of the group is inherited from the divisor group of the underlying algebraic variety.

As for other popular public key cryptosystems, no mathematical proof of security has been published for ECC as of 2009. However, the U.S. National Security Agency has endorsed ECC by including schemes based on it in its Suite B set of recommended algorithms and allows their use for protecting information classified up to top secret with 384-bit keys.[3] While the RSA patent expired in 2000, there are patents in force covering certain aspects of ECC technology, though some[who?] argue that the Federal elliptic curve digital signature standard (ECDSA; NIST FIPS 186-3) and certain practical ECC-based key exchange schemes (including ECDH) can be implemented without infringing them.[4]

Cryptographic premise

The entire security of ECC depends on the ability to compute a point multiplication and the inability to compute the multiplicand given the original and product points.

Cryptographic schemes

Several discrete logarithm-based protocols have been adapted to elliptic curves, replacing the group (\mathbb{Z}_{p})^\times with an elliptic curve:

At the RSA Conference 2005, the National Security Agency (NSA) announced Suite B which exclusively uses ECC for digital signature generation and key exchange. The suite is intended to protect both classified and unclassified national security systems and information.[5]

Recently, a large number of cryptographic primitives based on bilinear mappings on various elliptic curve groups, such as the Weil and Tate pairings, have been introduced. Schemes based on these primitives provide efficient identity-based encryption as well as pairing-based signatures, signcryption, key agreement, and proxy re-encryption.

Implementation considerations

Although the details of each particular elliptic curve scheme are described in the article referenced above some common implementation considerations are discussed here.

Domain parameters

To use ECC all parties must agree on all the elements defining the elliptic curve, that is, the domain parameters of the scheme. The field is defined by p in the prime case and the pair of m and f in the binary case. The elliptic curve is defined by the constants a and b used in its defining equation. Finally, the cyclic subgroup is defined by its generator (aka. base point) G. For cryptographic application the order of G, that is the smallest non-negative number n such that n G = \infty, is normally prime. Since n is the size of a subgroup of E(\mathbb{F}_p) it follows from Lagrange's theorem that the number h = \frac{|E|}{n} is an integer. In cryptographic applications this number h, called the cofactor, must be small (h \le 4) and, preferably, h = 1. Let us summarize: in the prime case the domain parameters are (p,a,b,G,n,h) and in the binary case they are (m,f,a,b,G,n,h).

Unless there is an assurance that domain parameters were generated by a party trusted with respect to their use, the domain parameters must be validated before use.

The generation of domain parameters is not usually done by each participant since this involves counting the number of points on a curve which is time-consuming and troublesome to implement. As a result several standard bodies published domain parameters of elliptic curves for several common field sizes:

Test vectors are also available.[6]

If one (despite the said above) wants to build one's own domain parameters one should select the underlying field and then use one of the following strategies to find a curve with appropriate (i.e., near prime) number of points using one of the following methods:

  • select a random curve and use a general point-counting algorithm, for example, Schoof's algorithm or Schoof–Elkies–Atkin algorithm,
  • select a random curve from a family which allows easy calculation of the number of points (e.g., Koblitz curves), or
  • select the number of points and generate a curve with this number of points using complex multiplication technique.[7]

Several classes of curves are weak and should be avoided:

  • curves over \mathbb{F}_{2^m} with non-prime m are vulnerable to Weil descent attacks.[8][9]
  • curves such that n divides pB − 1 (where p is the characteristic of the field – q for a prime field, or 2 for a binary field) for sufficiently small B are vulnerable to MOV attack[10][11] which applies usual DLP in a small degree extension field of \mathbb{F}_p to solve ECDLP. The bound B should be chosen so that discrete logarithms in the field \mathbb{F}_{p^B} are at least as difficult to compute as discrete logs on the elliptic curve E(\mathbb{F}_q).[12]
  • curves such that |E(\mathbb{F}_q)| = q are vulnerable to the attack that maps the points on the curve to the additive group of \mathbb{F}_q[13][14][15]

Key sizes

Since all the fastest known algorithms that allow to solve the ECDLP (baby-step giant-step, Pollard's rho, etc.), need O(\sqrt{n}) steps, it follows that the size of the underlying field shall be roughly twice the security parameter. For example, for 128-bit security one needs a curve over \mathbb{F}_q, where q \approx 2^{256}. This can be contrasted with finite-field cryptography (e.g., DSA) which requires[16] 3072-bit public keys and 256-bit private keys, and integer factorization cryptography (e.g., RSA) which requires 3072-bit public and private keys.

The hardest ECC scheme (publicly) broken to date had a 112-bit key for the prime field case and a 109-bit key for the binary field case. For the prime field case this was broken in July 2009 using a cluster of over 200 PlayStation 3 game consoles and could have been finished in 3.5 months using this cluster when running continuously (see [17]). For the binary field case, it was broken in April 2004 using 2600 computers for 17 months.[18]

A current project is aiming at breaking the ECC2K-130 challenge by Certicom, by using a wide range of different hardware : CPUs, GPUs, FPGA.[19]

Projective coordinates

A close examination of the addition rules shows that in order to add two points one needs not only several additions and multiplications in \mathbb{F}_q but also an inversion operation. The inversion (for given x \in \mathbb{F}_q find y \in \mathbb{F}_q such that xy = 1) is one to two orders of magnitude slower[20] than multiplication. Fortunately, points on a curve can be represented in different coordinate systems which do not require an inversion operation to add two points. Several such systems were proposed: in the projective system each point is represented by three coordinates (X,Y,Z) using the following relation: x = \frac{X}{Z}, y = \frac{Y}{Z}; in the Jacobian system a point is also represented with three coordinates (X,Y,Z), but a different relation is used: x = \frac{X}{Z^2}, y = \frac{Y}{Z^3}; in the López–Dahab system the relation is x = \frac{X}{Z}, y = \frac{Y}{Z^2}; in the modified Jacobian system the same relations are used but four coordinates are stored and used for calculations (X,Y,Z,aZ4); and in the Chudnovsky Jacobian system five coordinates are used (X,Y,Z,Z2,Z3). Note that there may be different naming conventions, for example, IEEE P1363-2000 standard uses "projective coordinates" to refer to what is commonly called Jacobian coordinates. An additional speed-up is possible if mixed coordinates are used.[21]

Fast reduction (NIST curves)

Reduction modulo p (which is needed for addition and multiplication) can be executed much faster if the prime p is a pseudo-Mersenne prime that is p \approx 2^d, for example, p = 2521 − 1 or p = 2256 − 232 − 29 − 28 − 27 − 26 − 24 − 1. Compared to Barrett reduction there can be an order of magnitude speedup.[22] The speedup here is a practical rather than theoretical one, and derives from the fact that the moduli of numbers against numbers near powers of two can be performed efficiently by computers operating on binary numbers with bitwise operations.

The curves over \mathbb{F}_p with pseudo-Mersenne p are recommended by NIST. Yet another advantage of the NIST curves is the fact that they use a = −3 which improves addition in Jacobian coordinates.

NIST-recommended elliptic curves

NIST recommends fifteen elliptic curves. Specifically, FIPS 186-3 has ten recommended finite fields:

  • Five prime fields \mathbb{F}_p for certain primes p of sizes 192, 224, 256, 384, and 521 bits. For each of the prime fields, one elliptic curve is recommended.
  • Five binary fields \mathbb{F}_{2^m} for m equal 163, 233, 283, 409, and 571. For each of the binary fields, one elliptic curve and one Koblitz curve was selected.

The NIST recommendation thus contains a total of five prime curves and ten binary curves. The curves were chosen for optimal security and implementation efficiency.[23]

Side-channel attacks

Unlike DLP systems (where it is possible to use the same procedure for squaring and multiplication) the EC addition is significantly different for doubling (P = Q) and general addition (P \ne Q) depending on the coordinate system used. Consequently, it is important to counteract side channel attacks (e.g., timing or simple/differential power analysis attacks) using, for example, fixed pattern window (aka. comb) methods[24] (note that this does not increase the computation time). Another concern for ECC-systems is the danger of fault attacks, especially when running on smart cards.[25]

Quantum computing attacks

Elliptic curve cryptography is vulnerable to a modified Shor's algorithm for solving the discrete logarithm problem on elliptic curves.[26][27]

Patents

At least one ECC scheme (ECMQV) and some implementation techniques are covered by patents.

Implementations

Open source

Proprietary/commercial

Alternative representations of elliptic curves

See also

Notes

  1. ^ Koblitz, N. (1987). "Elliptic curve cryptosystems". Mathematics of Computation 48 (177): 203–209. JSTOR 2007884. 
  2. ^ Miller, V. (1985). "Use of elliptic curves in cryptography". CRYPTO 85: 417–426. doi:10.1007/3-540-39799-X_31. 
  3. ^ "Fact Sheet NSA Suite B Cryptography". U.S. National Security Agency. http://www.nsa.gov/ia/programs/suiteb_cryptography/index.shtml. 
  4. ^ Bernstein, D. J.. "Irrelevant patents on elliptic-curve cryptography". http://cr.yp.to/ecdh/patents.html. 
  5. ^ "The Case for Elliptic Curve Cryptography". NSA. http://www.nsa.gov/business/programs/elliptic_curve.shtml. 
  6. ^ http://www.secg.org/download/aid-390/gec2.pdf
  7. ^ Lay, G.; Zimmer, H. (1994). "Constructing elliptic curves with given group order over large finite fields". Algorithmic Number Theory Symposium. Lecture Notes in Computer Science 877: 250–263. doi:10.1007/3-540-58691-1_64. 
  8. ^ Galbraith, S. D.; Smart, N. P. (1999). "A cryptographic application of the Weil descent". Cryptography and Coding. Lecture Notes in Computer Science 1746: 799. doi:10.1007/3-540-46665-7_23. 
  9. ^ Gaudry, P.; Hess, F.; Smart, N. P. (2000). "Constructive and destructive facets of Weil descent on elliptic curves". Hewlett Packard Laboratories Technical Report. http://www.hpl.hp.com/techreports/2000/HPL-2000-10.pdf. 
  10. ^ Menezes, A.; Okamoto, T.; Vanstone, S. A. (1993). "Reducing elliptic curve logarithms to logarithms in a finite field". IEEE Transactions on Information Theory 39. 
  11. ^ Hitt, L. (2006). "On an Improved Definition of Embedding Degree". IACR ePrint report. http://eprint.iacr.org/2006/415. 
  12. ^ IEEE P1363, section A.12.1
  13. ^ Semaev, I. (1998). "Evaluation of discrete logarithm in a group of p-torsion points of an elliptic curve in characteristic p". Mathematics of Computation 67 (221): 353–356. doi:10.1090/S0025-5718-98-00887-4. 
  14. ^ Smart, N. (1999). "The discrete logarithm problem on elliptic curves of trace one". Journal of Cryptology 12 (3): 193–196. doi:10.1007/s001459900052. 
  15. ^ Satoh, T.; Araki, K. (1998). "Fermat quotients and the polynomial time discrete log algorithm for anomalous elliptic curves". Commentarii Mathematici Universitatis Sancti Pauli 47. 
  16. ^ NIST, Recommendation for Key Management—Part 1: general, Special Publication 800-57, August 2005.
  17. ^ http://lacal.epfl.ch/page81774.html
  18. ^ "Certicom Announces Elliptic Curve Cryptography Challenge Winner". Certicom. April 27, 2004. http://www.certicom.com/index.php/2004-press-releases/36-2004-press-releases/300-solution-required-team-of-mathematicians-2600-computers-and-17-months-. 
  19. ^ http://www.ecc-challenge.info/
  20. ^ Hitchcock, Y.; Dawson, E.; Clark, A.; Montague, P. (2002). "Implementing an efficient elliptic curve cryptosystem over GF(p) on a smart card". ANZIAM Journal 44. http://anziamj.austms.org.au/V44/CTAC2001/Hitc/Hitc.pdf. 
  21. ^ Cohen, H.; Miyaji, A.; Ono, T. (1998). "Efficient Elliptic Curve Exponentiation Using Mixed Coordinates". Advances in Cryptology – AsiaCrypt '98. Lecture Notes in Computer Science 1514: 51–65. doi:10.1007/3-540-49649-1_6. 
  22. ^ Brown, M.; Hankerson, D.; Lopez, J.; Menezes, A. (2001). "Software Implementation of the NIST Elliptic Curves Over Prime Fields". Topics in Cryptology – CT-RSA 2001. Lecture Notes in Computer Science 2020: 250–265. doi:10.1007/3-540-45353-9_19. 
  23. ^ FIPS PUB 186-3, Digital Signature Standard (DSS).
  24. ^ Hedabou, M.; Pinel, P.; Beneteau, L. (2004). A comb method to render ECC resistant against Side Channel Attacks. http://eprint.iacr.org/2004/342.pdf. 
  25. ^ See, for example, Biehl, Ingrid; Meyer, Bernd; Müller, Volker (2000). "Differential Fault Attacks on Elliptic Curve Cryptosystems". Advances in Cryptology – CRYPTO 2000. Lecture Notes in Computer Science 1880: 131–146. doi:10.1007/3-540-44598-6_8. 
  26. ^ Eicher, Jodie; Opoku, Yaw (July 29, 1997). Using the Quantum Computer to Break Elliptic Curve Cryptosystems. 
  27. ^ Proos, John; Zalka, Christof (2003). "Shor's Discrete Logarithm Quantum Algorithm for Elliptic Curves". Quantum Information and Computing 3 (4): 317–344. arXiv:quant-ph/0301141. Bibcode 2003quant.ph..1141P. 

References

External links


Wikimedia Foundation. 2010.

Игры ⚽ Поможем написать реферат

Look at other dictionaries:

  • Elliptic Curve Cryptography — Elliptische Kurve über Unter Elliptic Curve Cryptography (ECC) oder deutsch Elliptische Kurven Kryptographie versteht man asymmetrische Kryptosysteme, die Operationen auf elliptischen Kurven über endlichen Körpern v …   Deutsch Wikipedia

  • Elliptic Curve DSA — (ECDSA) is a variant of the Digital Signature Algorithm (DSA) which operates on elliptic curve groups. 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… …   Wikipedia

  • Elliptic Curve Diffie-Hellman — (ECDH) is a key agreement protocol that allows two parties to estabilish a shared secret key over an insecure channel [NIST, [http://csrc.nist.gov/publications/nistpubs/800 56A/SP800 56A Revision1 Mar08 2007.pdf Special Publication 800 56A,… …   Wikipedia

  • Elliptic curve — In mathematics, an elliptic curve is a smooth, projective algebraic curve of genus one, on which there is a specified point O . An elliptic curve is in fact an abelian variety mdash; that is, it has a multiplication defined algebraically with… …   Wikipedia

  • Elliptic Curve DSA — Der Elliptic Curve Digital Signature Algorithmus (ECDSA) (deutsch: digitaler Signatur Algorithmus mit elliptischen Kurven) ist eine Variante des Digital Signature Algorithm (DSA), der Elliptische Kurven Kryptographie verwendet. Inhaltsverzeichnis …   Deutsch Wikipedia

  • Elliptic Curve Digital Signature Algorithm — (ECDSA) est un algorithme de signature numérique. C est une variante du standard DSA qui à la différence de l algorithme d origine utilise la cryptographie sur les courbes elliptiques. Les avantages de ECDSA sur DSA et RSA sont des longueurs de… …   Wikipédia en Français

  • Elliptic curve digital signature algorithm — (ECDSA) est un algorithme de signature numérique à clé publique, variante de DSA il fait appel à la cryptographie sur les courbes elliptiques. Sommaire 1 Introduction 2 Algorithme 2.1 Préparation des clé …   Wikipédia en Français

  • Hyperelliptic curve cryptography — is similar to elliptic curve cryptography (ECC) insomuch as the algebraic geometry construct of a hyperelliptic curve with an appropriate group law provides an Abelian group on which to do arithmetic. The use of hyperelliptic curves in… …   Wikipedia

  • Elliptic Curve Integrated Encryption Scheme — Das Elliptic Curve Integrated Encryption Scheme (ECIES) ist ein hybrides Verschlüsselungsverfahren, dem elliptische Kurven zugrunde liegen. Als Hybridverfahren kombiniert es ein asymmetrisches Verfahren, das zum Versenden eines symmetrischen… …   Deutsch Wikipedia

  • Cryptography — Secret code redirects here. For the Aya Kamiki album, see Secret Code. Symmetric key cryptography, where the same key is used both for encryption and decryption …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”