Elliptic curve primality

From testwiki
Revision as of 04:13, 13 December 2024 by imported>TonicBoomerKewl (top: Added link.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Template:Short description In mathematics, elliptic curve primality testing techniques, or elliptic curve primality proving (ECPP), are among the quickest and most widely used methods in primality proving.[1] It is an idea put forward by Shafi Goldwasser and Joe Kilian in 1986 and turned into an algorithm by A. O. L. Atkin in the same year. The algorithm was altered and improved by several collaborators subsequently, and notably by Atkin and Template:Interlanguage link multi, in 1993.[2] The concept of using elliptic curves in factorization had been developed by H. W. Lenstra in 1985, and the implications for its use in primality testing (and proving) followed quickly.

Primality testing is a field that has been around since the time of Fermat, in whose time most algorithms were based on factoring, which become unwieldy with large input; modern algorithms treat the problems of determining whether a number is prime and what its factors are separately. It became of practical importance with the advent of modern cryptography. Although many current tests result in a probabilistic output (N is either shown composite, or probably prime, such as with the Baillie–PSW primality test or the Miller–Rabin test), the elliptic curve test proves primality (or compositeness) with a quickly verifiable certificate.[3]

Previously-known prime-proving methods such as the Pocklington primality test required at least partial factorization of N±1 in order to prove that N is prime. As a result, these methods required some luck and are generally slow in practice.

Elliptic curve primality proving

It is a general-purpose algorithm, meaning it does not depend on the number being of a special form. ECPP is currently in practice the fastest known algorithm for testing the primality of general numbers, but the worst-case execution time is not known. ECPP heuristically runs in time:

O((logn)5+ε)

for some ε>0.[4] This exponent may be decreased to 4+ε for some versions by heuristic arguments. ECPP works the same way as most other primality tests do, finding a group and showing its size is such that p is prime. For ECPP the group is an elliptic curve over a finite set of quadratic forms such that p1 is trivial to factor over the group.

ECPP generates an AtkinGoldwasser–Kilian–Morain certificate of primality by recursion and then attempts to verify the certificate. The step that takes the most CPU time is the certificate generation, because factoring over a class field must be performed. The certificate can be verified quickly, allowing a check of operation to take very little time.

Template:As of, the largest prime that has been proved with ECPP method is 5104824+1048245.[5] The certification was performed by Andreas Enge using his fastECPP software CM.

Proposition

The elliptic curve primality tests are based on criteria analogous to the Pocklington criterion, on which that test is based,[6][7] where the group (/n)* is replaced by E(/n), and E is a properly chosen elliptic curve. We will now state a proposition on which to base our test, which is analogous to the Pocklington criterion, and gives rise to the Goldwasser–Kilian–Atkin form of the elliptic curve primality test.

Let N be a positive integer, and E be the set which is defined by the equation y2=x3+ax+bmodN. Consider E over /N, use the usual addition law on E, and write 0 for the neutral element on E.

Let m be an integer. If there is a prime q which divides m, and is greater than (N4+1)2 and there exists a point P on E such that

(1) mP = 0

(2) (m/q)P is defined and not equal to 0

Then N is prime.

Proof

If N is composite, then there exists a prime pN that divides N. Define Ep as the elliptic curve defined by the same equation as E but evaluated modulo p rather than modulo N. Define mp as the order of the group Ep. By Hasse's theorem on elliptic curves we know

mpp+1+2p=(p+1)2(N4+1)2<q

and thus gcd(q,mp)=1 and there exists an integer u with the property that

uq1modmp.

Let Pp be the point P evaluated modulo p. Thus, on Ep we have

(m/q)Pp=uq(m/q)Pp=umPp=0,

by (1), as mPp is calculated using the same method as mP, except modulo p rather than modulo N (and pN).

This contradicts (2), because if (m/q)P is defined and not equal to 0 (mod N), then the same method calculated modulo p instead of modulo N will yield:[8]

(m/q)Pp0.

Goldwasser–Kilian algorithm

From this proposition an algorithm can be constructed to prove an integer, N, is prime. This is done as follows:[6]

Choose three integers at random, a, x, y and set

by2x3ax(modN)

Now P = (x,y) is a point on E, where we have that E is defined by y2=x3+ax+b. Next we need an algorithm to count the number of points on E. Applied to E, this algorithm (Koblitz and others suggest Schoof's algorithm) produces a number m which is the number of points on curve E over FN, provided N is prime. If the point-counting algorithm stops at an undefined expression this allows to determine a non-trivial factor of N. If it succeeds, we apply a criterion for deciding whether our curve E is acceptable.

If we can write m in the form m=kq where k2 is a small integer and q a large probable prime (a number that passes a probabilistic primality test, for example), then we do not discard E. Otherwise, we discard our curve and randomly select another triple (a, x, y) to start over. The idea here is to find an m that is divisible by a large prime number q. This prime is a few digits smaller than m (or N) so q will be easier to prove prime than N.

Assuming we find a curve which passes the criterion, proceed to calculate mP and kP. If any of the two calculations produce an undefined expression, we can get a non-trivial factor of N. If both calculations succeed, we examine the results.

If mP0 it is clear that N is not prime, because if N were prime then E would have order m, and any element of E would become 0 on multiplication by m. If kP = 0, then the algorithm discards E and starts over with a different a, x, y triple.

Now if mP=0 and kP0 then our previous proposition tells us that N is prime. However, there is one possible problem, which is the primality of q. This is verified using the same algorithm. So we have described a recursive algorithm, where the primality of N depends on the primality of q and indeed smaller 'probable primes' until some threshold is reached where q is considered small enough to apply a non-recursive deterministic algorithm.[9][10]

Problems with the algorithm

Atkin and Morain state "the problem with GK is that Schoof's algorithm seems almost impossible to implement."[3] It is very slow and cumbersome to count all of the points on E using Schoof's algorithm, which is the preferred algorithm for the Goldwasser–Kilian algorithm. However, the original algorithm by Schoof is not efficient enough to provide the number of points in short time.[11] These comments have to be seen in the historical context, before the improvements by Elkies and Atkin to Schoof's method.

A second problem Koblitz notes is the difficulty of finding the curve E whose number of points is of the form kq, as above. There is no known theorem which guarantees we can find a suitable E in polynomially many attempts. The distribution of primes on the Hasse interval [p+12p,p+1+2p], which contains m, is not the same as the distribution of primes in the group orders, counting curves with multiplicity. However, this is not a significant problem in practice.[8]

Atkin–Morain elliptic curve primality test (ECPP)

In a 1993 paper, Atkin and Morain described an algorithm ECPP which avoided the trouble of relying on a cumbersome point counting algorithm (Schoof's). The algorithm still relies on the proposition stated above, but rather than randomly generating elliptic curves and searching for a proper m, their idea was to construct a curve E where the number of points is easy to compute. Complex multiplication is key in the construction of the curve.

Now, given an N for which primality needs to be proven we need to find a suitable m and q, just as in the Goldwasser–Kilian test, that will fulfill the proposition and prove the primality of N. (Of course, a point P and the curve itself, E, must also be found.)

ECPP uses complex multiplication to construct the curve E, doing so in a way that allows for m (the number of points on E) to be easily computed. We will now describe this method:

Utilization of complex multiplication requires a negative discriminant, D, such that D can be written as the product of two elements D=ππ¯, or completely equivalently, we can write the equation:

a2+|D|b2=4N

For some a, b. If we can describe N in terms of either of these forms, we can create an elliptic curve E on /N with complex multiplication (described in detail below), and the number of points is given by:

|E(/N)|=N+1ππ¯=N+1a.

For N to split into the two elements, we need that (DN)=1 (where (DN) denotes the Legendre symbol). This is a necessary condition, and we achieve sufficiency if the class number h(D) of the order in (D) is 1. This happens for only 13 values of D, which are the elements of {−3, −4, −7, −8, −11, −12, −16, −19, −27, −28, −43, −67, −163}

The test

Pick discriminants D in sequence of increasing h(D). For each D check if (DN)=1 and whether 4N can be written as:

a2+|D|b2=4N

This part can be verified using Cornacchia's algorithm. Once acceptable D and a have been discovered, calculate m=N+1a. Now if m has a prime factor q of size

q>(N1/4+1)2

use the complex multiplication method to construct the curve E and a point P on it. Then we can use our proposition to verify the primality of N. Note that if m does not have a large prime factor or cannot be factored quickly enough, another choice of D can be made.[1]

Complex multiplication method

For completeness, we will provide an overview of complex multiplication, the way in which an elliptic curve can be created, given our D (which can be written as a product of two elements).

Assume first that D3 and D4 (these cases are much more easily done). It is necessary to calculate the elliptic j-invariants of the h(D) classes of the order of discriminant D as complex numbers. There are several formulas to calculate these.

Next create the monic polynomial HD(X), which has roots corresponding to the h(D) values. Note, that HD(X) is the class polynomial. From complex multiplication theory, we know that HD(X) has integer coefficients, which allows us to estimate these coefficients accurately enough to discover their true values.

Now, if N is prime, CM tells us that HD(X) splits modulo N into a product of h(D) linear factors, based on the fact that D was chosen so that N splits as the product of two elements. Now if j is one of the h(D) roots modulo N we can define E as:

y2=x33kc2rx+2kc3r, where k=jj1728,

c is any quadratic nonresidue mod N, and r is either 0 or 1.

Given a root j there are only two possible nonisomorphic choices of E, one for each choice of r. We have the cardinality of these curves as

|E(/N)|=N+1a or |E(/N)|=N+1+a[1][10][12]

Discussion

Just as with the Goldwasser–Killian test, this one leads to a down-run procedure. Again, the culprit is q. Once we find a q that works, we must check it to be prime, so in fact we are doing the whole test now for q. Then again we may have to perform the test for factors of q. This leads to a nested certificate where at each level we have an elliptic curve E, an m and the prime in doubt, q.

Example of Atkin–Morain ECPP

We construct an example to prove that N=167 is prime using the Atkin–Morain ECPP test. First proceed through the set of 13 possible discriminants, testing whether the Legendre Symbol (D/N)=1, and if 4N can be written as 4N=a2+|D|b2.

For our example D=43 is chosen. This is because (D/N)=(43/167)=1 and also, using Cornacchia's algorithm, we know that 4(167)=252+(43)(12) and thus a = 25 and b = 1.

The next step is to calculate m. This is easily done as m=N+1a which yields m=167+125=143. Next we need to find a probable prime divisor of m, which was referred to as q. It must satisfy the condition that q>(N1/4+1)2.

In this case, m = 143 = 11×13. So unfortunately we cannot choose 11 or 13 as our q, for it does not satisfy the necessary inequality. We are saved, however, by an analogous proposition to that which we stated before the Goldwasser–Kilian algorithm, which comes from a paper by Morain.[13] It states, that given our m, we look for an s which divides m, s>(N1/4+1)2, but is not necessarily prime, and check whether, for each pi which divides s

(m/pi)PP

for some point P on our yet to be constructed curve.

If s satisfies the inequality, and its prime factors satisfy the above, then N is prime.

So in our case, we choose s = m = 143. Thus our possible pi's are 11 and 13. First, it is clear that 143>(1671/4+1)2, and so we need only check the values of

(143/11)P=13P and (143/13)P=11P.

But before we can do this, we must construct our curve, and choose a point P. In order to construct the curve, we make use of complex multiplication. In our case we compute the J-invariant

j9603(mod167)107(mod167).

Next we compute

k=j1728j(mod167)158(mod167)

and we know our elliptic curve is of the form:

y2=x3+3kc2x+2kc3,

where k is as described previously and c a non-square in 𝔽167. So we can begin with

r=03k140(mod167)2k149(mod167)

which yields

E:y2=x3+140x+149(mod167)

Now, utilizing the point P = (6,6) on E it can be verified that 143P=P.

It is simple to check that 13(6, 6) = (12, 65) and 11P = (140, 147), and so, by Morain's proposition, N is prime.

Complexity and running times

Goldwasser and Kilian's elliptic curve primality proving algorithm terminates in expected polynomial time for at least

1O(2N1loglogn)

of prime inputs.

Conjecture

Let π(x) be the number of primes smaller than x

c1,c2>0:π(x+x)π(x)c2xlogc1x

for sufficiently large x.

If one accepts this conjecture then the Goldwasser–Kilian algorithm terminates in expected polynomial time for every input. Also, if our N is of length k, then the algorithm creates a certificate of size O(k2) that can be verified in O(k4).[14]

Now consider another conjecture, which will give us a bound on the total time of the algorithm.

Conjecture 2

Suppose there exist positive constants c1 and c2 such that the amount of primes in the interval

[x,x+2x],x2 is larger than c1x(logx)c2

Then the Goldwasser Kilian algorithm proves the primality of N in an expected time of

O(log10+c2n)[13]

For the Atkin–Morain algorithm, the running time stated is

O((logN)6+ϵ) for some ϵ>0[3]

Primes of special form

For some forms of numbers, it is possible to find 'short-cuts' to a primality proof. This is the case for the Mersenne numbers. In fact, due to their special structure, which allows for easier verification of primality, the six largest known prime numbers are all Mersenne numbers.[15] There has been a method in use for some time to verify primality of Mersenne numbers, known as the Lucas–Lehmer test. This test does not rely on elliptic curves. However we present a result where numbers of the form N=2kn1 where k,n,k2, n odd can be proven prime (or composite) using elliptic curves. Of course this will also provide a method for proving primality of Mersenne numbers, which correspond to the case where n = 1. The following method is drawn from the paper Primality Test for 2kn1 using Elliptic Curves, by Yu Tsumura.[16]

Group structure of E(FN)

We take E as our elliptic curve, where E is of the form y2=x3mx for m,m≢0modp, where p3mod4 is prime, and p+1=2kn, with k,k2,n odd.

Theorem 1.[7] |E(𝔽p)|=p+1.
Theorem 2. E(𝔽p)2kn or E(𝔽p)22k1n depending on whether or not m is a quadratic residue modulo p.
Theorem 3. Let Q = (x,y) on E be such that x a quadratic non-residue modulo p. Then the order of Q is divisible by 2k in the cyclic group E(𝔽p)2kn.

First we will present the case where n is relatively small with respect to 2k, and this will require one more theorem:

Theorem 4. Choose a λ>1 and suppose
npλandλp>(p4+1)2.
Then p is a prime if and only if there exists a Q = (x,y) on E, such that gcd(Si,p)=1 for i = 1, 2, ...,k − 1 and Sk0(modp), where Si is a sequence with initial value S0=x.

The algorithm

We provide the following algorithm, which relies mainly on Theorems 3 and 4. To verify the primality of a given number N, perform the following steps:

(1) Choose x such that (xN)=1, and find y,y≢0(mod2) such that (x3y2N)=1.

Take m=x3y2xmodN and m≢0(modN).

Then Q=(x,y) is on E:y2=x3mx.

Calculate Q=nQ. If QE then N is composite, otherwise proceed to (2).

(2) Set Si as the sequence with initial value Q. Calculate Si for i=1,2,3,...,k1.

If gcd(Si,N)>1 for an i, where 1ik1 then N is composite. Otherwise, proceed to (3).

(3) If Sk0(modN) then N is prime. Otherwise, N is composite. This completes the test.

Justification of the algorithm

In (1), an elliptic curve, E is picked, along with a point Q on E, such that the x-coordinate of Q is a quadratic nonresidue. We can say

(mN)=(x3y2xN)=(xN)(x3y2N)=11=1.

Thus, if N is prime, Q' has order divisible by 2k, by Theorem 3, and therefore the order of Q' is 2kd d | n.

This means Q = nQ' has order 2k. Therefore, if (1) concludes that N is composite, it truly is composite. (2) and (3) check if Q has order 2k. Thus, if (2) or (3) conclude N is composite, it is composite.

Now, if the algorithm concludes that N is prime, then that means S1 satisfies the condition of Theorem 4, and so N is truly prime.

There is an algorithm as well for when n is large; however, for this we refer to the aforementioned article.[16]

References

Template:Reflist

Template:Number-theoretic algorithms Template:Algebraic curves navbox

  1. 1.0 1.1 1.2 Template:Cite book
  2. Top, Jaap, Elliptic Curve Primality Proving, http://www.math.rug.nl/~top/atkin.pdf
  3. 3.0 3.1 3.2 Template:Cite journal
  4. Template:Cite book
  5. Caldwell, Chris. The Top Twenty: Elliptic Curve Primality Proof from the Prime Pages.
  6. 6.0 6.1 Template:Cite book
  7. 7.0 7.1 Washington, Lawrence C., Elliptic Curves: Number Theory and Cryptography, Chapman & Hall/CRC, 2003
  8. 8.0 8.1 Koblitz, Neal, Introduction to Number Theory and Cryptography, 2nd Ed, Springer, 1994
  9. Template:Cite web
  10. 10.0 10.1 Template:Cite book
  11. Lenstra, Hendrik W., Efficient Algorithms in Number Theory, https://openaccess.leidenuniv.nl/bitstream/1887/2141/1/346_081.pdf
  12. ECPP Comes Back algo.inria.fr
  13. 13.0 13.1 Template:Cite web
  14. Goldwasser, Shafi, Kilian, Joe, Almost All Primes Can Be Quickly Certified, http://www.iai.uni-bonn.de/~adrian/ecpp/p316-goldwasser.pdf Template:Webarchive
  15. Template:Cite web
  16. 16.0 16.1 Template:Cite arXiv