Mollify various warnings which occur in 64-bit builds.
[u/mdw/catacomb] / pub / gdsa.c
1 /* -*-c-*-
2 *
3 * Generalized version of DSA
4 *
5 * (c) 2004 Straylight/Edgeware
6 */
7
8 /*----- Licensing notice --------------------------------------------------*
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.
16 *
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.
21 *
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
28 /*----- Header files ------------------------------------------------------*/
29
30 #include "dsa.h"
31 #include "gdsa.h"
32 #include "group.h"
33 #include "ghash.h"
34 #include "mpbarrett.h"
35 #include "mprand.h"
36
37 /*----- Main code ---------------------------------------------------------*/
38
39 /* --- @gdsa_beginhash@ --- *
40 *
41 * Arguments: @const gdsa *c@ = pointer to the context structure
42 *
43 * Returns: A hashing context for you to hash the message.
44 *
45 * Use: Initializes a hash function correctly for you to hash a
46 * message. Requires @h@.
47 */
48
49 ghash *gdsa_beginhash(const gdsa *c) { return (GH_INIT(c->h)); }
50
51 /* --- @gdsa_endhash@ --- *
52 *
53 * Arguments: @const gdsa *c@ = pointer to the context structure
54 * @ghash *h@ = the hashing context
55 *
56 * Returns: ---
57 *
58 * Use: Does any final thing that DSA wants to do when hashing a
59 * message. (Actually, there's nothing.) The hashing context
60 * isn't finalized.
61 */
62
63 void gdsa_endhash(const gdsa *c, ghash *h) { ; }
64
65 /* --- @gdsa_sign@ --- *
66 *
67 * Arguments: @const gdsa *c@ = my context structure
68 * @gdsa_sig *s@ = where to put the signature (initialized)
69 * @const void *m@ = pointer to message hash
70 * @mp *k@ = random exponent for this message or null
71 *
72 * Returns: ---
73 *
74 * Use: Signs a message. Requires @g@, @u@, @h@, and @r@ if @k@ is
75 * null. This is a better idea than inventing @k@ yourself.
76 */
77
78 void gdsa_sign(const gdsa *c, gdsa_sig *s, const void *m, mp *k)
79 {
80 group *g = c->g;
81 mp *mr = dsa_h2n(MP_NEW, g->r, m, c->h->hashsz);
82 ge *z = G_CREATE(g);
83 mp *sr = s->r, *ss = s->s;
84 mpbarrett b;
85
86 if (k) { MP_COPY(k); goto have_k; }
87 new_k:
88 k = mprand_range(k, g->r, c->r, 0);
89 have_k:
90 if (MP_ZEROP(k)) goto new_k;
91 G_EXP(g, z, g->g, k);
92 sr = G_TOINT(g, sr, z); assert(sr);
93 if (MP_ZEROP(sr)) goto new_k;
94
95 mp_div(0, &sr, sr, g->r);
96 mpbarrett_create(&b, g->r);
97 ss = mp_mul(ss, sr, c->u); ss = mpbarrett_reduce(&b, ss, ss);
98 ss = mp_add(ss, ss, mr); mp_div(0, &ss, ss, g->r);
99 k = mp_modinv(k, k, g->r);
100 ss = mp_mul(ss, ss, k); ss = mpbarrett_reduce(&b, ss, ss);
101 s->r = sr; s->s = ss;
102 mp_drop(k); mp_drop(mr); mpbarrett_destroy(&b); G_DESTROY(g, z);
103 }
104
105 /* --- @gdsa_verify@ --- *
106 *
107 * Arguments: @const gdsa *c@ = my context structure
108 * @const gdsa_sig *s@ = the signature to verify
109 * @const void *m@ = pointer to message hash
110 *
111 * Returns: Zero if OK, negative on failure.
112 *
113 * Use: Checks a signature on a message, Requires @g@, @p@ and @h@.
114 */
115
116 int gdsa_verify(const gdsa *c, const gdsa_sig *s, const void *m)
117 {
118 group *g = c->g;
119 group_expfactor e[2];
120 mpbarrett b;
121 mp *h, *t;
122 ge *w;
123 int rc = -1;
124
125 if (MP_CMP(s->r, <, MP_ONE) || MP_CMP(s->r, >=, g->r) ||
126 MP_CMP(s->s, <, MP_ONE) || MP_CMP(s->s, >=, g->r))
127 return (-1);
128 mpbarrett_create(&b, g->r); h = mp_modinv(MP_NEW, s->s, g->r);
129 e[0].base = g->g; e[1].base = c->p;
130 t = dsa_h2n(MP_NEW, g->r, m, c->h->hashsz); mp_div(0, &t, t, g->r);
131 t = mp_mul(t, t, h); e[0].exp = t = mpbarrett_reduce(&b, t, t);
132 h = mp_mul(h, s->r, h); e[1].exp = h = mpbarrett_reduce(&b, h, h);
133 w = G_CREATE(g); G_MEXP(g, w, e, 2);
134 t = G_TOINT(g, t, w); if (!t) goto done;
135 mp_div(0, &t, t, g->r); if (MP_EQ(t, s->r)) rc = 0;
136 done:
137 G_DESTROY(g, w); mp_drop(t); mp_drop(h); mpbarrett_destroy(&b);
138 return (rc);
139 }
140
141 /*----- Test rig ----------------------------------------------------------*/
142
143 #ifdef TEST_RIG
144
145 static group *getgroup(const char *p) {
146 group *g; qd_parse qd;
147 qd.p = p; qd.e = 0; g = group_parse(&qd);
148 if (g && !qd_eofp(&qd)) { G_DESTROYGROUP(g); g = 0; qd.e = "junk at eof"; }
149 if (!g) {
150 fprintf(stderr, "bad group string `%.*s|%s': %s\n",
151 (int)(qd.p - p), p, qd.p, qd.e);
152 exit(1);
153 }
154 return (g);
155 }
156
157 static ge *getge(group *g, const char *p) {
158 ge *x = G_CREATE(g);
159 if (group_readstring(g, x, p, 0)) {
160 fprintf(stderr, "bad group element `%s'\n", p);
161 exit(1);
162 }
163 return (x);
164 }
165
166 static void showge(group *g, const char *p, ge *x) {
167 fprintf(stderr, "*** %s = ", p); group_writefile(g, x, stderr);
168 putc('\n', stderr);
169 }
170
171 static void showmp(const char *p, mp *x, int r) {
172 fprintf(stderr, "*** %s = ", p); mp_writefile(x, stderr, r);
173 putc('\n', stderr);
174 }
175
176 static int tsign(dstr *v)
177 {
178 gdsa c;
179 gdsa_sig s, ss = GDSA_SIG_INIT;
180 ghash *h;
181 mp *k;
182 int ok = 1;
183
184 c.g = getgroup(v[0].buf); c.h = ghash_byname(v[1].buf);
185 c.u = *(mp **)v[2].buf; k = *(mp **)v[4].buf;
186 s.r = *(mp **)v[5].buf; s.s = *(mp **)v[6].buf;
187
188 h = gdsa_beginhash(&c);
189 GH_HASH(h, v[3].buf, v[3].len);
190 gdsa_endhash(&c, h);
191 gdsa_sign(&c, &ss, GH_DONE(h, 0), k);
192 if (!MP_EQ(s.r, ss.r) || !MP_EQ(s.s, ss.s)) {
193 ok = 0;
194 fprintf(stderr, "*** sign failed!\n");
195 fprintf(stderr, "*** group: %s\n", v[0].buf);
196 fprintf(stderr, "*** hash: %s\n", c.h->name);
197 showmp("private key", c.u, 16);
198 fprintf(stderr, "*** message: `%s'\n", v[3].buf);
199 showmp("computed r", ss.r, 16); showmp("computed s", ss.s, 16);
200 showmp("expected r", s.r, 16); showmp("expected s", s.s, 16);
201 }
202 mp_drop(s.r); mp_drop(s.s); mp_drop(ss.r); mp_drop(ss.s);
203 mp_drop(k); mp_drop(c.u); G_DESTROYGROUP(c.g); GH_DESTROY(h);
204 assert(mparena_count(MPARENA_GLOBAL) == 0);
205 return (ok);
206 }
207
208 static int tverify(dstr *v)
209 {
210 gdsa c;
211 gdsa_sig s;
212 ghash *h;
213 int rc, erc;
214 int ok = 1;
215
216 c.g = getgroup(v[0].buf); c.h = ghash_byname(v[1].buf);
217 c.p = getge(c.g, v[2].buf);
218 s.r = *(mp **)v[4].buf; s.s = *(mp **)v[5].buf;
219 erc = *(int *)v[6].buf;
220
221 h = gdsa_beginhash(&c);
222 GH_HASH(h, v[3].buf, v[3].len);
223 gdsa_endhash(&c, h);
224 rc = gdsa_verify(&c, &s, GH_DONE(h, 0));
225 if (!rc != !erc) {
226 ok = 0;
227 fprintf(stderr, "*** verify failed!\n");
228 fprintf(stderr, "*** group: %s\n", v[0].buf);
229 fprintf(stderr, "*** hash: %s\n", c.h->name);
230 showge(c.g, "public key", c.p);
231 fprintf(stderr, "*** message: `%s'\n", v[3].buf);
232 showmp("sig r", s.r, 16); showmp("sig s", s.s, 16);
233 fprintf(stderr, "*** expected %s\n", !erc ? "pass" : "fail");
234 }
235 mp_drop(s.r); mp_drop(s.s); G_DESTROY(c.g, c.p); G_DESTROYGROUP(c.g);
236 GH_DESTROY(h);
237 assert(mparena_count(MPARENA_GLOBAL) == 0);
238 return (ok);
239 }
240
241 static const test_chunk tests[] = {
242 { "sign", tsign, { &type_string, &type_string, &type_mp, &type_string,
243 &type_mp, &type_mp, &type_mp } },
244 { "verify", tverify, { &type_string, &type_string, &type_string,
245 &type_string, &type_mp, &type_mp, &type_int } },
246 { 0 }
247 };
248
249 int main(int argc, char *argv[])
250 {
251 sub_init();
252 test_run(argc, argv, tests, SRCDIR "/t/gdsa");
253 return (0);
254 }
255
256 #endif
257
258 /*----- That's all, folks -------------------------------------------------*/