math/mpreduce.h: Missing include files.
[u/mdw/catacomb] / math / f-prime.c
CommitLineData
b0ab12e6 1/* -*-c-*-
2 *
b0ab12e6 3 * Prime fields with Montgomery arithmetic
4 *
5 * (c) 2001 Straylight/Edgeware
6 */
7
45c0fd36 8/*----- Licensing notice --------------------------------------------------*
b0ab12e6 9 *
10 * This file is part of Catacomb.
11 *
12 * Catacomb is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU Library General Public License as
14 * published by the Free Software Foundation; either version 2 of the
15 * License, or (at your option) any later version.
45c0fd36 16 *
b0ab12e6 17 * Catacomb is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU Library General Public License for more details.
45c0fd36 21 *
b0ab12e6 22 * You should have received a copy of the GNU Library General Public
23 * License along with Catacomb; if not, write to the Free
24 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25 * MA 02111-1307, USA.
26 */
27
b0ab12e6 28/*----- Header files ------------------------------------------------------*/
29
30#include <mLib/sub.h>
31
32#include "field.h"
9b8b6877 33#include "mprand.h"
f94b972d 34#include "field-guts.h"
b0ab12e6 35
4edc47b8 36/*----- Main code ---------------------------------------------------------*/
b0ab12e6 37
b0ab12e6 38/* --- Field operations --- */
39
f94b972d 40static void fdestroy(field *ff) {
41 fctx_prime *f = (fctx_prime *)ff;
42 mpmont_destroy(&f->mm);
43 DESTROY(f);
44}
b0ab12e6 45
f94b972d 46static mp *frand(field *ff, mp *d, grand *r) {
47 fctx_prime *f = (fctx_prime *)ff;
48 return (mprand_range(d, f->mm.m, r, 0));
49}
9b8b6877 50
4edc47b8 51static mp *fin(field *ff, mp *d, mp *x) {
f94b972d 52 fctx_prime *f = (fctx_prime *)ff;
dbfee00a 53 mp_div(0, &d, x, f->mm.m);
54 return (mpmont_mul(&f->mm, d, d, f->mm.r2));
b0ab12e6 55}
56
f94b972d 57static mp *fout(field *ff, mp *d, mp *x) {
58 fctx_prime *f = (fctx_prime *)ff;
59 return (mpmont_reduce(&f->mm, d, x));
60}
b0ab12e6 61
a69a3efd 62static int fzerop(field *ff, mp *x) { return (MP_ZEROP(x)); }
8823192f 63
f94b972d 64static mp *fneg(field *ff, mp *d, mp *x) {
65 fctx_prime *f = (fctx_prime *)ff;
66 return (mp_sub(d, f->mm.m, x));
67}
b085fd91 68
4edc47b8 69static mp *fadd(field *ff, mp *d, mp *x, mp *y) {
f94b972d 70 fctx_prime *f = (fctx_prime *)ff; d = mp_add(d, x, y);
a69a3efd 71 if (MP_NEGP(d)) d = mp_add(d, d, f->mm.m);
4edc47b8 72 else if (MP_CMP(d, >, f->mm.m)) d = mp_sub(d, d, f->mm.m);
dbfee00a 73 return (d);
b0ab12e6 74}
75
4edc47b8 76static mp *fsub(field *ff, mp *d, mp *x, mp *y) {
f94b972d 77 fctx_prime *f = (fctx_prime *)ff; d = mp_sub(d, x, y);
a69a3efd 78 if (MP_NEGP(d)) d = mp_add(d, d, f->mm.m);
4edc47b8 79 else if (MP_CMP(d, >, f->mm.m)) d = mp_sub(d, d, f->mm.m);
dbfee00a 80 return (d);
b0ab12e6 81}
82
f94b972d 83static mp *fmul(field *ff, mp *d, mp *x, mp *y) {
84 fctx_prime *f = (fctx_prime *)ff;
85 return (mpmont_mul(&f->mm, d, x, y));
86}
b0ab12e6 87
4edc47b8 88static mp *fsqr(field *ff, mp *d, mp *x) {
f94b972d 89 fctx_prime *f = (fctx_prime *)ff; d = mp_sqr(d, x);
b0ab12e6 90 return (mpmont_reduce(&f->mm, d, d));
91}
92
4edc47b8 93static mp *finv(field *ff, mp *d, mp *x) {
f94b972d 94 fctx_prime *f = (fctx_prime *)ff; d = mpmont_reduce(&f->mm, d, x);
b817bfc6 95 d = mp_modinv(d, d, f->mm.m); return (mpmont_mul(&f->mm, d, d, f->mm.r2));
b0ab12e6 96}
97
f94b972d 98static mp *freduce(field *ff, mp *d, mp *x) {
99 fctx_prime *f = (fctx_prime *)ff;
100 mp_div(0, &d, x, f->mm.m);
101 return (d);
102}
b0ab12e6 103
4edc47b8 104static mp *fsqrt(field *ff, mp *d, mp *x) {
f94b972d 105 fctx_prime *f = (fctx_prime *)ff; d = mpmont_reduce(&f->mm, d, x);
4edc47b8 106 d = mp_modsqrt(d, d, f->mm.m); if (!d) return (d);
ceb3f0c0 107 return (mpmont_mul(&f->mm, d, d, f->mm.r2));
108}
109
4edc47b8 110static mp *fdbl(field *ff, mp *d, mp *x) {
f94b972d 111 fctx_prime *f = (fctx_prime *)ff; d = mp_lsl(d, x, 1);
d2f1ffa0 112 if (MP_CMP(d, >=, f->mm.m)) d = mp_sub(d, d, f->mm.m);
dbfee00a 113 return (d);
b0ab12e6 114}
115
4edc47b8 116static mp *ftpl(field *ff, mp *d, mp *x) {
f94b972d 117 fctx_prime *f = (fctx_prime *)ff; MP_DEST(d, MP_LEN(x) + 1, x->f);
d2f1ffa0 118 MPX_UMULN(d->v, d->vl, x->v, x->vl, 3); d->f &= ~MP_UNDEF;
119 while (MP_CMP(d, >=, f->mm.m)) d = mp_sub(d, d, f->mm.m);
b0ab12e6 120 return (d);
121}
122
4edc47b8 123static mp *fqdl(field *ff, mp *d, mp *x) {
f94b972d 124 fctx_prime *f = (fctx_prime *)ff; d = mp_lsl(d, x, 2);
d2f1ffa0 125 while (MP_CMP(d, >=, f->mm.m)) d = mp_sub(d, d, f->mm.m);
8823192f 126 return (d);
127}
128
4edc47b8 129static mp *fhlv(field *ff, mp *d, mp *x) {
f94b972d 130 fctx_prime *f = (fctx_prime *)ff;
a69a3efd 131 if (MP_ZEROP(x)) { MP_COPY(x); MP_DROP(d); return (x); }
4edc47b8 132 if (x->v[0] & 1) { d = mp_add(d, x, f->mm.m); x = d; }
8823192f 133 return (mp_lsr(d, x, 1));
b0ab12e6 134}
135
136/* --- Field operations table --- */
137
4e66da02 138static const field_ops fops = {
bc985cef 139 FTY_PRIME, "prime",
34e4f738 140 fdestroy, frand, field_stdsamep,
b0ab12e6 141 fin, fout,
ceb3f0c0 142 fzerop, fneg, fadd, fsub, fmul, fsqr, finv, freduce, fsqrt,
143 0,
144 fdbl, ftpl, fqdl, fhlv
b0ab12e6 145};
146
147/* --- @field_prime@ --- *
148 *
149 * Arguments: @mp *p@ = the characteristic of the field
150 *
02d7884d 151 * Returns: A pointer to the field or null.
b0ab12e6 152 *
153 * Use: Creates a field structure for a prime field of size %$p$%,
154 * using Montgomery reduction for arithmetic.
155 */
156
157field *field_prime(mp *p)
158{
f94b972d 159 fctx_prime *f;
02d7884d 160
f94b972d 161 f = CREATE(fctx_prime);
b0ab12e6 162 f->f.ops = &fops;
f4535c64 163 if (mpmont_create(&f->mm, p)) {
164 DESTROY(f);
165 return (0);
166 }
41cb1beb 167 f->f.zero = MP_ZERO;
168 f->f.one = f->mm.r;
432c4e18 169 f->f.m = f->mm.m;
170 f->f.nbits = mp_bits(p);
171 f->f.noctets = (f->f.nbits + 7) >> 3;
1d7857e7 172 f->f.q = f->mm.m;
b0ab12e6 173 return (&f->f);
174}
175
176/*----- That's all, folks -------------------------------------------------*/