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 and Victor S. Miller in 1985.
Elliptic curves are also used in several integer factorization algorithms that have applications in cryptography, such as, for instance, Lenstra elliptic curve factorization, but this use of elliptic curves is ”not” usually referred to as ”elliptic curve cryptography.”
An elliptic curve is a plane curve defined by an equation of the form .
The set of points on such a curve (i.e., all solutions of the equation together with a point at infinity) can be shown to form an abelian group (with the point at infinity as identity element). If the coordinates and are chosen from a large finite field, the solutions form a finite abelian group. The discrete logarithm problem on such elliptic curve groups is believed to be more difficult than the corresponding problem in (the multiplicative group of nonzero elements of) the underlying finite field. Thus keys in elliptic curve cryptography can be chosen to be much shorter for a comparable level of security.
As for other popular public key cryptosystems, no mathematical proof of difficulty has been published for ECC as of 2006. However, the U.S. National Security Agency has endorsed ECC technology by including it in its Suite B set of recommended algorithms. Although the RSA patent has expired, there are patents in force covering some aspects of ECC.
Elliptic curves used in cryptography are typically defined over two types of finite fields: fields of odd characteristic (, where is a large prime number) and fields of characteristic two (). When the distinction is not important we denote both of them as , where or . In the elements are integers () which are combined using modular arithmetic. The case of is slightly more complicated (see finite field arithmetic for details): one obtains different representations of the field elements as bitstrings for each choice of irreducible binary polynomial of degree . But it is perfectly possible to construct elliptic curves using other finite fields. Specifically, finite fields of order where is a prime are possible. Some optimized implementations have a field of characteristic 3. Large finite fields with moderate size odd characteristics are also known to be convenient for implementation on personal computers. These are known as Optimal Extension Fields (OEFs). In an OEF, a prime is chosen to be a prime that is slightly smaller than the word size of the computer. This makes computation particularly fast because one can use the built in arithmetic operations to perform the computation.
The set of all pairs of affine coordinates for form the affine plane . An elliptic curve is the locus of points in the affine plane whose coordinates satisfy a certain cubic equation together with a point at infinity (the point at which the locus in the projective plane intersects the line at infinity). In the case of characteristic p ¿ 3 the ”defining equation” of can be written: where and are constants such that . In the binary case the defining equation of can be written: where and are constants and . Although the point at infinity has no affine coordinates, it is convenient to represent it using a pair of coordinates which do not satisfy the defining equation, for example, if and otherwise. According to Hasse’s theorem on elliptic curves the number of points on a curve is close to the size of the underlying field; more precisely: .
The points on an elliptic curve form an abelian group with , the distinguished point at infinity, playing the role of additive identity. In other words, given two points , there is a third point, denoted by on , and the following relations hold for all
(associativity) (existence of an identity element)
There exists such that (existence of inverses)
We already specified how is defined. If we define the negative of a point to be for and for , we can define the addition operation as follows:
if then
if then
if then , where in the prime case , , and , or in the binary case , , and (Geometrically, is the inverse of the third point of intersection of the cubic with the line through and .)
If then , where in the prime case , , and , or in the binary case , , and (Geometrically, is the inverse of the third point of intersection of the cubic with its tangent line at .)
We already described the underlying field and the group of points of elliptic curve but there is yet another mathematical structure commonly used in cryptography â a cyclic subgroup of . For any point the set is a cyclic group. It is convenient to use the following notation: , , , , etc. The calculation of , where is an integer and is a point, is called ”scalar multiplication”.
Since the (additive) cyclic group described above can be considered similar to the (multiplicative) group of powers of an integer modulo prime : , the problem of finding given points and is called the elliptic curve discrete logarithm problem (ECDLP). The assumed hardness of several problems related to the discrete logarithm in the subgroup of allows cryptographic use of elliptic curves. Most of the elliptic curve cryptographic schemes are related to the discrete logarithm schemes which were originally formulated for usual modular arithmetic: the Elliptic Curve Diffie-Hellman key agreement scheme is based on the Diffie-Hellman scheme; the Elliptic Curve Digital Signature Algorithm is based on the Digital Signature Algorithm; the ECMQV key agreement scheme is based on the MQV key agreement scheme.
Not all the DLP schemes should be ported to the elliptic curve domain. For example, the well known ElGamal encryption scheme was never standardized by official bodies and should not be directly used over an elliptic curve (the standard encryption scheme for ECC is called Elliptic Curve Integrated Encryption Scheme). The main reason is that although it is straightforward to convert an arbitrary message (of limited length) to an integer modulo , it is not that simple to convert a bitstring to a point of a curve (not for every there is an such that ). (Another factor is that ElGamal scheme is vulnerable to chosen-ciphertext attacks.)
To use ECC all parties must agree on all the elements defining the elliptic curve, that is domain parameters of the scheme. The field is defined by in the prime case and the pair of and in the binary case. The elliptic curve is defined by the constants and used in its defining equation. Finally, the cyclic subgroup is defined by its generator or base point . For cryptographic application the order of , that is the smallest non-negative number such that , must be prime. Since is the size of a subgroup of it follows from the Lagrange’s theorem that the number is integer. In cryptographic applications this number , called cofactor, at least must be small () and, preferably, . Let us summarize: in the prime case the domain parameters are and in the binary case they are .
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, NIST and SECG being the most important.
If one (despite the said above) wants to build his own domain parameters he 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.
Several classes of curves are weak and shall be avoided:
Curves over with non-prime are vulnerable to Weil descent attacks.
Curves such that divides (where is the characteristic of the field for a prime field, or for a binary field) for sufficiently small are vulnerable to MOV attack which applies usual DLP in a small degree extension field of to solve ECDLP. The bound should be chosen so that discrete logarithms in the field are at least as difficult to compute as discrete logs on the elliptic curve .
Curves such that are vulnerable to the attack that maps the points on the curve to the additive group of
Since all the fastest known algorithms that allow to solve the ECDLP (baby-step giant-step, Pollard’s rho, etc.), need 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 , where . This can be contrasted with finite-field cryptography (e.g., DSA) which requires 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 109-bit key (that is about 55 bits of security). For the prime field case, it was broken near the beginning of 2003 using over 10, 000 Pentium class PCs running continuously for over 540 days . For the binary field case, it was broken in April 2004 using 2600 computers for 17 months.
A close examination of the addition rules shows that in order to add two points one needs not only several additions and multiplications in but also an inversion operation. The inversion (for given find such that ) is one to two orders of magnitude slower 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 using the following relation: , ; in the Jacobian” system a point is also represented with three coordinates , but a different relation is used: , ; in the modified Jacobian system the same relations are used but four coordinates are stored and used for calculations ; and in the Chudnovsky Jacobian system five coordinates are used . Note that there are 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.
Reduction modulo (which is needed for addition and multiplication) can be executed much faster if the prime is a pseudo-Mersenne prime that is , for example, or . Compared to Barrett reduction there can be an order of magnitude speed-up. The curves over with pseudo-Mersenne are recommended by NIST. Yet another advantage of the NIST curves is the fact that they use which improves addition in Jacobian coordinates.
Unlike DLP systems (where it is possible to use the same procedure for squaring and multiplication) the EC addition is significantly different for doubling () and general addition (). Consequently, it is important to counteract side channel attacks (e.g., timing and simple power analysis attacks) using, for example, fixed pattern window (aka. comb) methods (note that this does not increase the computation time).
Most of ECC (e.g., ECDH, ECIES, ECDSA) is not encumbered by patents whereas some other schemes (ECMQV) and some implementation techniques are covered. See ECC patents for details.
This entry was adapted from the Wikipedia article http://en.wikipedia.org/wiki/Elliptic_curve_cryptographyElliptic curve cryptography as of April 28, 2007.
References
- 1 N. Koblitz, “Elliptic curve cryptosystems”, in Mathematics of Computation 48, (1987): 203 - 209
- 2 V. Miller, “Use of elliptic curves in cryptography”, CRYPTO 85 (1985)
- 3 S.D. Galbraith & N.P. Smart, “A cryptographic application of the Weil descent”, Cryptography and Coding (1999)
- 4 A. Menezes, T. Okamoto, & S.A. Vanstone, “Reducing elliptic curve logarithms to logarithms in a finite field”, IEEE Transactions on Information Theory 39 (1993)
- 5 I. Semaev, “Evaluation of discrete logarithm in a group of P-torsion points of an elliptic curve in characteristic ”, Mathematics of Computation, 67 (1998)
Title | elliptic curve cryptography |
---|---|
Canonical name | EllipticCurveCryptography |
Date of creation | 2013-03-22 17:00:52 |
Last modified on | 2013-03-22 17:00:52 |
Owner | PrimeFan (13766) |
Last modified by | PrimeFan (13766) |
Numerical id | 7 |
Author | PrimeFan (13766) |
Entry type | Definition |
Classification | msc 94A60 |