X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/fe6657c961b01ec72e9f35f4c3d96b11b31cf09c..45c0fd363937c6e9b05da04a9167e9912c05ca0c:/ec-prime.c diff --git a/ec-prime.c b/ec-prime.c index dc299fb..52815e4 100644 --- a/ec-prime.c +++ b/ec-prime.c @@ -7,7 +7,7 @@ * (c) 2001 Straylight/Edgeware */ -/*----- Licensing notice --------------------------------------------------* +/*----- Licensing notice --------------------------------------------------* * * This file is part of Catacomb. * @@ -15,12 +15,12 @@ * it under the terms of the GNU Library General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. - * + * * Catacomb is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. - * + * * You should have received a copy of the GNU Library General Public * License along with Catacomb; if not, write to the Free * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, @@ -278,7 +278,7 @@ static ec *ecprojadd(ec_curve *c, ec *d, const ec *a, const ec *b) q = F_MUL(f, MP_NEW, p, u); /* %$t w^2$% */ u = F_MUL(f, u, p, w); /* %$w^3$% */ p = F_MUL(f, p, u, s); /* %$m w^3$% */ - + dx = F_SQR(f, u, r); /* %$r^2$% */ dx = F_SUB(f, dx, dx, q); /* %$x' = r^2 - t w^2$% */ @@ -323,7 +323,7 @@ static int ecprojcheck(ec_curve *c, const ec *p) { ec t = EC_INIT; int rc; - + c->ops->fix(c, &t, p); rc = eccheck(c, &t); EC_DESTROY(&t); @@ -418,11 +418,11 @@ int main(int argc, char *argv[]) f = field_niceprime(p); c = ec_primeproj(f, a, b); - + g.x = MP(0xaa87ca22be8b05378eb1c71ef320ad746e1d3b628ba79b9859f741e082542a385502f25dbf55296c3a545e3872760ab7); g.y = MP(0x3617de4a96262c6f5d9e98bf9292dc29f8f41dbd289a147ce9da3113b5f0b8c00a60b1ce1d7e819d7a431d7c90ea0e5f); - for (i = 0; i < n; i++) { + for (i = 0; i < n; i++) { ec_mul(c, &d, &g, r); if (EC_ATINF(&d)) { fprintf(stderr, "zero too early\n");