HOME

TheInfoList



OR:

An important aspect in the study of elliptic curves is devising effective ways of counting points on the curve. There have been several approaches to do so, and the algorithms devised have proved to be useful tools in the study of various fields such as number theory, and more recently in cryptography and Digital Signature Authentication (See elliptic curve cryptography and elliptic curve DSA). While in number theory they have important consequences in the solving of Diophantine equations, with respect to cryptography, they enable us to make effective use of the difficulty of the discrete logarithm problem (DLP) for the group E(\mathbb_q), of elliptic curves over a finite field \mathbb_q, where ''q'' = ''p''''k'' and ''p'' is a prime. The DLP, as it has come to be known, is a widely used approach to public key cryptography, and the difficulty in solving this problem determines the
level of security In cryptography, security level is a measure of the strength that a cryptographic primitive — such as a cipher or hash function — achieves. Security level is usually expressed as a number of "bits of security" (also security strength ...
of the cryptosystem. This article covers algorithms to count points on elliptic curves over fields of large characteristic, in particular ''p'' > 3. For curves over fields of small characteristic more efficient algorithms based on ''p''-adic methods exist.


Approaches to counting points on elliptic curves

There are several approaches to the problem. Beginning with the naive approach, we trace the developments up to Schoof's definitive work on the subject, while also listing the improvements to Schoof's algorithm made by Elkies (1990) and Atkin (1992). Several algorithms make use of the fact that groups of the form E(\mathbb_q) are subject to an important theorem due to Hasse, that bounds the number of points to be considered. Hasse's theorem states that if ''E'' is an elliptic curve over the finite field \mathbb_q, then the
cardinality In mathematics, the cardinality of a set is a measure of the number of elements of the set. For example, the set A = \ contains 3 elements, and therefore A has a cardinality of 3. Beginning in the late 19th century, this concept was generalized ...
of E(\mathbb_q) satisfies : , , E(\mathbb_q), - (q+1), \leq 2 \sqrt. \,


Naive approach

The naive approach to counting points, which is the least sophisticated, involves running through all the elements of the field \mathbb_q and testing which ones satisfy the Weierstrass form of the elliptic curve : y^2 = x^3 + Ax + B. \,


Example

Let ''E'' be the curve ''y''2 = ''x''3 + ''x'' + 1 over \mathbb_5. To count points on ''E'', we make a list of the possible values of ''x'', then of the quadratic residues of x mod 5 (for lookup purpose only), then of ''x''3 + ''x'' + 1 mod 5, then of ''y'' of ''x''3 + ''x'' + 1 mod 5. This yields the points on ''E''. E.g. the last row is computed as follows: If you insert x = 4 in the equation ''x''3 + ''x'' + 1 mod 5 you get 4 as result (3rd column). This result can be achieved if y = 2, 3 ( Quadratic residues can be looked up in the 2nd column). So the points for the last row are (4, 2), (4, 3). Therefore, E(\mathbb_5) has
cardinality In mathematics, the cardinality of a set is a measure of the number of elements of the set. For example, the set A = \ contains 3 elements, and therefore A has a cardinality of 3. Beginning in the late 19th century, this concept was generalized ...
of 9: the 8 points listed before and the point at infinity. This algorithm requires running time ''O''(''q''), because all the values of x \in \mathbb_q must be considered.


Baby-step giant-step

An improvement in running time is obtained using a different approach: we pick an element P=(x,y) \in E(\mathbb_q) by selecting random values of x until x^3 + Ax +B is a square in \mathbb_q and then computing the square root of this value in order to get y. Hasse's theorem tells us that , E(\mathbb_q), lies in the interval (q +1 - 2 \sqrt, q + 1 + 2 \sqrt). Thus, by Lagrange's theorem, finding a unique M lying in this interval and satisfying MP=O, results in finding the cardinality of E(\mathbb_q). The algorithm fails if there exist two distinct integers M and M' in the interval such that MP = M'P = O. In such a case it usually suffices to repeat the algorithm with another randomly chosen point in E(\mathbb_q). Trying all values of M in order to find the one that satisfies MP=O takes around 4 \sqrt steps. However, by applying the baby-step giant-step algorithm to E(\mathbb_q), we are able to speed this up to around 4 \sqrt /math> steps. The algorithm is as follows.


The algorithm

1. choose m integer, m > \sqrt /math> 2. FOR DO 3. P_j \leftarrow jP 4. ENDFOR 5. L \leftarrow 1 6. Q \leftarrow (q+1)P 7. REPEAT compute the points Q + k(2mP) 8. UNTIL \exists j: Q + k(2mP) = \pm P_j \\the x-coordinates are compared 9. M \leftarrow q + 1 + 2mk \mp j \\note MP=O 10. Factor M. Let p_1, \ldots, p_r be the distinct prime factors of M. 11. WHILE i \leq r DO 12. IF \fracP=O 13. THEN M \leftarrow \frac 14. ELSE i \leftarrow i+1 15. ENDIF 16. ENDWHILE 17. L \leftarrow \operatorname(L, M) \\note M is the order of the point P 18. WHILE L divides more than one integer N in (q+1-2\sqrt,q+1+2\sqrt) 19. DO choose a new point P and go to 1. 20. ENDWHILE 21. RETURN N \\it is the cardinality of E(\mathbb_q)


Notes to the algorithm

* In line 8. we assume the existence of a match. Indeed, the following lemma assures that such a match exists: ::Let a be an integer with , a, \leq 2m^2. There exist integers a_0 and a_1 with :: -m < a_0 \leq m \mbox -m \leq a_1 \leq m \mbox a = a_0 + 2ma_1. * Computing (j+1)P once jP has been computed can be done by adding P to jP instead of computing the complete scalar multiplication anew. The complete computation thus requires m additions. 2mP can be obtained with one doubling from mP. The computation of Q requires \log (q+1) doublings and w additions, where w is the number of nonzero digits in the binary representation of q+1; note that knowledge of the jP and 2mP allows us to reduce the number of doublings. Finally, to get from Q+k(2mP) to Q+(k+1)(2mP), simply add 2mP rather than recomputing everything. * We are assuming that we can factor M. If not, we can at least find all the small prime factors p_i and check that \frac \neq O for these. Then M will be a good candidate for the
order Order, ORDER or Orders may refer to: * Categorization, the process in which ideas and objects are recognized, differentiated, and understood * Heterarchy, a system of organization wherein the elements have the potential to be ranked a number of d ...
of P. * The conclusion of step 17 can be proved using elementary group theory: since MP=O, the order of P divides M. If no proper divisor \bar of M realizes \barP=O, then M is the order of P. One drawback of this method is that there is a need for too much memory when the group becomes large. In order to address this, it might be more efficient to store only the x coordinates of the points jP (along with the corresponding integer j). However, this leads to an extra scalar multiplication in order to choose between -j and +j. There are other generic algorithms for computing the order of a group element that are more space efficient, such as Pollard's rho algorithm and the Pollard kangaroo method. The Pollard kangaroo method allows one to search for a solution in a prescribed interval, yielding a running time of O(\sqrt , using O(\log^2) space.


Schoof's algorithm

A theoretical breakthrough for the problem of computing the cardinality of groups of the type E(\mathbb_q) was achieved by René Schoof, who, in 1985, published the first deterministic polynomial time algorithm. Central to Schoof's algorithm are the use of
division polynomial In mathematics the division polynomials provide a way to calculate multiples of points on elliptic curves and to study the fields generated by torsion points. They play a central role in the study of counting points on elliptic curves in Schoof's a ...
s and Hasse's theorem, along with the
Chinese remainder theorem In mathematics, the Chinese remainder theorem states that if one knows the remainders of the Euclidean division of an integer ''n'' by several integers, then one can determine uniquely the remainder of the division of ''n'' by the product of thes ...
. Schoof's insight exploits the fact that, by Hasse's theorem, there is a finite range of possible values for , E(\mathbb_q), . It suffices to compute , E(\mathbb_q), modulo an integer N > 4\sqrt. This is achieved by computing , E(\mathbb_q), modulo primes \ell_1, \ldots, \ell_s whose product exceeds 4 \sqrt, and then applying the Chinese remainder theorem. The key to the algorithm is using the division polynomial \psi_ to efficiently compute , E(\mathbb_q), modulo \ell. The running time of Schoof's Algorithm is polynomial in n=\log, with an asymptotic complexity of O(n^2M(n^3)/\log)=O(n^), where M(n) denotes the complexity of integer multiplication. Its space complexity is O(n^3).


Schoof–Elkies–Atkin algorithm

In the 1990s, Noam Elkies, followed by A. O. L. Atkin devised improvements to Schoof's basic algorithm by making a distinction among the primes \ell_1, \ldots, \ell_s that are used. A prime \ell is called an Elkies prime if the characteristic equation of the Frobenius endomorphism, \phi^2-t\phi+ q = 0, splits over \mathbb_\ell. Otherwise \ell is called an Atkin prime. Elkies primes are the key to improving the asymptotic complexity of Schoof's algorithm. Information obtained from the Atkin primes permits a further improvement which is asymptotically negligible but can be quite important in practice. The modification of Schoof's algorithm to use Elkies and Atkin primes is known as the Schoof–Elkies–Atkin (SEA) algorithm. The status of a particular prime \ell depends on the elliptic curve E/\mathbb_q, and can be determined using the modular polynomial \Psi_\ell(X,Y). If the univariate polynomial \Psi_\ell(X,j(E)) has a root in \mathbb_q, where j(E) denotes the j-invariant of E, then \ell is an Elkies prime, and otherwise it is an Atkin prime. In the Elkies case, further computations involving modular polynomials are used to obtain a proper factor of the division polynomial \psi_\ell. The degree of this factor is O(\ell), whereas \psi_\ell has degree O(\ell^2). Unlike Schoof's algorithm, the SEA algorithm is typically implemented as a probabilistic algorithm (of the Las Vegas type), so that root-finding and other operations can be performed more efficiently. Its computational complexity is dominated by the cost of computing the modular polynomials \Psi_\ell(X,Y), but as these do not depend on E, they may be computed once and reused. Under the heuristic assumption that there are sufficiently many small Elkies primes, and excluding the cost of computing modular polynomials, the asymptotic running time of the SEA algorithm is O(n^2 M(n^2)/\log) = O(n^), where n=\log. Its space complexity is O(n^3\log), but when precomputed modular polynomials are used this increases to O(n^4).


See also

* Schoof's algorithm * Elliptic curve cryptography * Baby-step giant-step * Public key cryptography * Schoof–Elkies–Atkin algorithm *
Pollard rho Pollard's rho algorithm is an algorithm for integer factorization. It was invented by John Pollard in 1975. It uses only a small amount of space, and its expected running time is proportional to the square root of the smallest prime factor of the ...
* Pollard kangaroo * Elliptic curve primality proving


Bibliography

* I. Blake, G. Seroussi, and N. Smart: ''Elliptic Curves in Cryptography'', Cambridge University Press, 1999. * A. Enge: ''Elliptic Curves and their Applications to Cryptography: An Introduction''. Kluwer Academic Publishers, Dordrecht, 1999. * G. Musiker: Schoof's Algorithm for Counting Points on E(\mathbb_q). Available at http://www.math.umn.edu/~musiker/schoof.pdf * R. Schoof: Counting Points on Elliptic Curves over Finite Fields. J. Theor. Nombres Bordeaux 7:219-254, 1995. Available at http://www.mat.uniroma2.it/~schoof/ctg.pdf * L. C. Washington: Elliptic Curves: Number Theory and Cryptography. Chapman \& Hall/CRC, New York, 2003.


References

{{Algebraic curves navbox Elliptic curves