Test elliptic curves more thoroughly.
[u/mdw/catacomb] / f-prime.c
CommitLineData
b0ab12e6 1/* -*-c-*-
2 *
bc985cef 3 * $Id: f-prime.c,v 1.6 2004/03/23 15:19:32 mdw Exp $
b0ab12e6 4 *
5 * Prime fields with Montgomery arithmetic
6 *
7 * (c) 2001 Straylight/Edgeware
8 */
9
10/*----- Licensing notice --------------------------------------------------*
11 *
12 * This file is part of Catacomb.
13 *
14 * Catacomb is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU Library General Public License as
16 * published by the Free Software Foundation; either version 2 of the
17 * License, or (at your option) any later version.
18 *
19 * Catacomb is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU Library General Public License for more details.
23 *
24 * You should have received a copy of the GNU Library General Public
25 * License along with Catacomb; if not, write to the Free
26 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27 * MA 02111-1307, USA.
28 */
29
30/*----- Revision history --------------------------------------------------*
31 *
32 * $Log: f-prime.c,v $
bc985cef 33 * Revision 1.6 2004/03/23 15:19:32 mdw
34 * Test elliptic curves more thoroughly.
35 *
9b8b6877 36 * Revision 1.5 2004/03/23 12:08:26 mdw
37 * Random field-element selection.
38 *
c3caa2fa 39 * Revision 1.4 2004/03/21 22:52:06 mdw
40 * Merge and close elliptic curve branch.
41 *
ceb3f0c0 42 * Revision 1.3.4.3 2004/03/21 22:39:46 mdw
43 * Elliptic curves on binary fields work.
44 *
8823192f 45 * Revision 1.3.4.2 2004/03/20 00:13:31 mdw
46 * Projective coordinates for prime curves
47 *
dbfee00a 48 * Revision 1.3.4.1 2003/06/10 13:43:53 mdw
49 * Simple (non-projective) curves over prime fields now seem to work.
50 *
41cb1beb 51 * Revision 1.3 2003/05/15 23:25:59 mdw
52 * Make elliptic curve stuff build.
53 *
b085fd91 54 * Revision 1.2 2002/01/13 13:48:44 mdw
55 * Further progress.
56 *
b0ab12e6 57 * Revision 1.1 2001/04/29 18:12:33 mdw
58 * Prototype version.
59 *
60 */
61
62/*----- Header files ------------------------------------------------------*/
63
64#include <mLib/sub.h>
65
66#include "field.h"
67#include "mpmont.h"
9b8b6877 68#include "mprand.h"
b0ab12e6 69
70/*----- Data structures ---------------------------------------------------*/
71
72typedef struct fctx {
73 field f;
74 mpmont mm;
75} fctx;
76
77/*----- Main code ---------------------------------------------------------*/
78
79/* --- Field operations --- */
80
81static void fdestroy(field *ff)
82{
83 fctx *f = (fctx *)ff;
84 mpmont_destroy(&f->mm);
85 DESTROY(f);
86}
87
9b8b6877 88static mp *frand(field *ff, mp *d, grand *r)
89{
90 fctx *f = (fctx *)ff;
91 return (mprand_range(d, f->mm.m, r, 0));
92}
93
b0ab12e6 94static mp *fin(field *ff, mp *d, mp *x)
95{
96 fctx *f = (fctx *)ff;
dbfee00a 97 mp_div(0, &d, x, f->mm.m);
98 return (mpmont_mul(&f->mm, d, d, f->mm.r2));
b0ab12e6 99}
100
101static mp *fout(field *ff, mp *d, mp *x)
102{
103 fctx *f = (fctx *)ff;
104 return (mpmont_reduce(&f->mm, d, x));
105}
106
8823192f 107static int fzerop(field *ff, mp *x)
108{
109 return (!MP_LEN(x));
110}
111
b085fd91 112static mp *fneg(field *ff, mp *d, mp *x)
113{
114 fctx *f = (fctx *)ff;
115 return (mp_sub(d, f->mm.m, x));
116}
117
b0ab12e6 118static mp *fadd(field *ff, mp *d, mp *x, mp *y)
119{
dbfee00a 120 fctx *f = (fctx *)ff;
121 d = mp_add(d, x, y);
122 if (d->f & MP_NEG)
123 d = mp_add(d, d, f->mm.m);
124 else if (MP_CMP(d, >, f->mm.m))
125 d = mp_sub(d, d, f->mm.m);
126 return (d);
b0ab12e6 127}
128
129static mp *fsub(field *ff, mp *d, mp *x, mp *y)
130{
dbfee00a 131 fctx *f = (fctx *)ff;
132 d = mp_sub(d, x, y);
133 if (d->f & MP_NEG)
134 d = mp_add(d, d, f->mm.m);
135 else if (MP_CMP(d, >, f->mm.m))
136 d = mp_sub(d, d, f->mm.m);
137 return (d);
b0ab12e6 138}
139
140static mp *fmul(field *ff, mp *d, mp *x, mp *y)
141{
142 fctx *f = (fctx *)ff;
143 return (mpmont_mul(&f->mm, d, x, y));
144}
145
146static mp *fsqr(field *ff, mp *d, mp *x)
147{
148 fctx *f = (fctx *)ff;
149 d = mp_sqr(d, x);
150 return (mpmont_reduce(&f->mm, d, d));
151}
152
153static mp *finv(field *ff, mp *d, mp *x)
154{
155 fctx *f = (fctx *)ff;
41cb1beb 156 d = mpmont_reduce(&f->mm, d, x);
b0ab12e6 157 mp_gcd(0, 0, &d, f->mm.m, d);
158 return (mpmont_mul(&f->mm, d, d, f->mm.r2));
159}
160
161static mp *freduce(field *ff, mp *d, mp *x)
162{
163 fctx *f = (fctx *)ff;
164 mp_div(0, &d, x, f->mm.m);
165 return (d);
166}
167
ceb3f0c0 168static mp *fsqrt(field *ff, mp *d, mp *x)
169{
170 fctx *f = (fctx *)ff;
171 d = mpmont_reduce(&f->mm, d, x);
172 d = mp_modsqrt(d, d, f->mm.m);
173 if (!d)
174 return (d);
175 return (mpmont_mul(&f->mm, d, d, f->mm.r2));
176}
177
b0ab12e6 178static mp *fdbl(field *ff, mp *d, mp *x)
179{
dbfee00a 180 fctx *f = (fctx *)ff;
181 d = mp_lsl(d, x, 1);
182 if (MP_CMP(d, >, f->mm.m))
183 d = mp_sub(d, d, f->mm.m);
184 return (d);
b0ab12e6 185}
186
187static mp *ftpl(field *ff, mp *d, mp *x)
188{
dbfee00a 189 fctx *f = (fctx *)ff;
b0ab12e6 190 MP_DEST(d, MP_LEN(x) + 1, x->f);
191 MPX_UMULN(d->v, d->vl, x->v, x->vl, 3);
dbfee00a 192 while (MP_CMP(d, >, f->mm.m))
193 d = mp_sub(d, d, f->mm.m);
b0ab12e6 194 return (d);
195}
196
8823192f 197static mp *fqdl(field *ff, mp *d, mp *x)
b0ab12e6 198{
199 fctx *f = (fctx *)ff;
8823192f 200 d = mp_lsl(d, x, 2);
201 while (MP_CMP(d, >, f->mm.m))
202 d = mp_sub(d, d, f->mm.m);
203 return (d);
204}
205
206static mp *fhlv(field *ff, mp *d, mp *x)
207{
208 fctx *f = (fctx *)ff;
209 if (!MP_LEN(x)) {
210 MP_COPY(x);
211 MP_DROP(d);
212 return (x);
213 }
214 if (x->v[0] & 1) {
215 d = mp_add(d, x, f->mm.m);
216 x = d;
217 }
218 return (mp_lsr(d, x, 1));
b0ab12e6 219}
220
221/* --- Field operations table --- */
222
223static field_ops fops = {
bc985cef 224 FTY_PRIME, "prime",
9b8b6877 225 fdestroy, frand,
b0ab12e6 226 fin, fout,
ceb3f0c0 227 fzerop, fneg, fadd, fsub, fmul, fsqr, finv, freduce, fsqrt,
228 0,
229 fdbl, ftpl, fqdl, fhlv
b0ab12e6 230};
231
232/* --- @field_prime@ --- *
233 *
234 * Arguments: @mp *p@ = the characteristic of the field
235 *
236 * Returns: A pointer to the field.
237 *
238 * Use: Creates a field structure for a prime field of size %$p$%,
239 * using Montgomery reduction for arithmetic.
240 */
241
242field *field_prime(mp *p)
243{
41cb1beb 244 fctx *f = CREATE(fctx);
b0ab12e6 245 f->f.ops = &fops;
246 mpmont_create(&f->mm, p);
41cb1beb 247 f->f.zero = MP_ZERO;
248 f->f.one = f->mm.r;
b0ab12e6 249 return (&f->f);
250}
251
252/*----- That's all, folks -------------------------------------------------*/