/src/openssl/crypto/bn/bn_gf2m.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright 2002-2018 The OpenSSL Project Authors. All Rights Reserved. |
3 | | * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved |
4 | | * |
5 | | * Licensed under the OpenSSL license (the "License"). You may not use |
6 | | * this file except in compliance with the License. You can obtain a copy |
7 | | * in the file LICENSE in the source distribution or at |
8 | | * https://www.openssl.org/source/license.html |
9 | | */ |
10 | | |
11 | | #include <assert.h> |
12 | | #include <limits.h> |
13 | | #include <stdio.h> |
14 | | #include "internal/cryptlib.h" |
15 | | #include "bn_lcl.h" |
16 | | |
17 | | #ifndef OPENSSL_NO_EC2M |
18 | | |
19 | | /* |
20 | | * Maximum number of iterations before BN_GF2m_mod_solve_quad_arr should |
21 | | * fail. |
22 | | */ |
23 | 0 | # define MAX_ITERATIONS 50 |
24 | | |
25 | 0 | # define SQR_nibble(w) ((((w) & 8) << 3) \ |
26 | 0 | | (((w) & 4) << 2) \ |
27 | 0 | | (((w) & 2) << 1) \ |
28 | 0 | | ((w) & 1)) |
29 | | |
30 | | |
31 | | /* Platform-specific macros to accelerate squaring. */ |
32 | | # if defined(SIXTY_FOUR_BIT) || defined(SIXTY_FOUR_BIT_LONG) |
33 | | # define SQR1(w) \ |
34 | 0 | SQR_nibble((w) >> 60) << 56 | SQR_nibble((w) >> 56) << 48 | \ |
35 | 0 | SQR_nibble((w) >> 52) << 40 | SQR_nibble((w) >> 48) << 32 | \ |
36 | 0 | SQR_nibble((w) >> 44) << 24 | SQR_nibble((w) >> 40) << 16 | \ |
37 | 0 | SQR_nibble((w) >> 36) << 8 | SQR_nibble((w) >> 32) |
38 | | # define SQR0(w) \ |
39 | 0 | SQR_nibble((w) >> 28) << 56 | SQR_nibble((w) >> 24) << 48 | \ |
40 | 0 | SQR_nibble((w) >> 20) << 40 | SQR_nibble((w) >> 16) << 32 | \ |
41 | 0 | SQR_nibble((w) >> 12) << 24 | SQR_nibble((w) >> 8) << 16 | \ |
42 | 0 | SQR_nibble((w) >> 4) << 8 | SQR_nibble((w) ) |
43 | | # endif |
44 | | # ifdef THIRTY_TWO_BIT |
45 | | # define SQR1(w) \ |
46 | | SQR_nibble((w) >> 28) << 24 | SQR_nibble((w) >> 24) << 16 | \ |
47 | | SQR_nibble((w) >> 20) << 8 | SQR_nibble((w) >> 16) |
48 | | # define SQR0(w) \ |
49 | | SQR_nibble((w) >> 12) << 24 | SQR_nibble((w) >> 8) << 16 | \ |
50 | | SQR_nibble((w) >> 4) << 8 | SQR_nibble((w) ) |
51 | | # endif |
52 | | |
53 | | # if !defined(OPENSSL_BN_ASM_GF2m) |
54 | | /* |
55 | | * Product of two polynomials a, b each with degree < BN_BITS2 - 1, result is |
56 | | * a polynomial r with degree < 2 * BN_BITS - 1 The caller MUST ensure that |
57 | | * the variables have the right amount of space allocated. |
58 | | */ |
59 | | # ifdef THIRTY_TWO_BIT |
60 | | static void bn_GF2m_mul_1x1(BN_ULONG *r1, BN_ULONG *r0, const BN_ULONG a, |
61 | | const BN_ULONG b) |
62 | | { |
63 | | register BN_ULONG h, l, s; |
64 | | BN_ULONG tab[8], top2b = a >> 30; |
65 | | register BN_ULONG a1, a2, a4; |
66 | | |
67 | | a1 = a & (0x3FFFFFFF); |
68 | | a2 = a1 << 1; |
69 | | a4 = a2 << 1; |
70 | | |
71 | | tab[0] = 0; |
72 | | tab[1] = a1; |
73 | | tab[2] = a2; |
74 | | tab[3] = a1 ^ a2; |
75 | | tab[4] = a4; |
76 | | tab[5] = a1 ^ a4; |
77 | | tab[6] = a2 ^ a4; |
78 | | tab[7] = a1 ^ a2 ^ a4; |
79 | | |
80 | | s = tab[b & 0x7]; |
81 | | l = s; |
82 | | s = tab[b >> 3 & 0x7]; |
83 | | l ^= s << 3; |
84 | | h = s >> 29; |
85 | | s = tab[b >> 6 & 0x7]; |
86 | | l ^= s << 6; |
87 | | h ^= s >> 26; |
88 | | s = tab[b >> 9 & 0x7]; |
89 | | l ^= s << 9; |
90 | | h ^= s >> 23; |
91 | | s = tab[b >> 12 & 0x7]; |
92 | | l ^= s << 12; |
93 | | h ^= s >> 20; |
94 | | s = tab[b >> 15 & 0x7]; |
95 | | l ^= s << 15; |
96 | | h ^= s >> 17; |
97 | | s = tab[b >> 18 & 0x7]; |
98 | | l ^= s << 18; |
99 | | h ^= s >> 14; |
100 | | s = tab[b >> 21 & 0x7]; |
101 | | l ^= s << 21; |
102 | | h ^= s >> 11; |
103 | | s = tab[b >> 24 & 0x7]; |
104 | | l ^= s << 24; |
105 | | h ^= s >> 8; |
106 | | s = tab[b >> 27 & 0x7]; |
107 | | l ^= s << 27; |
108 | | h ^= s >> 5; |
109 | | s = tab[b >> 30]; |
110 | | l ^= s << 30; |
111 | | h ^= s >> 2; |
112 | | |
113 | | /* compensate for the top two bits of a */ |
114 | | |
115 | | if (top2b & 01) { |
116 | | l ^= b << 30; |
117 | | h ^= b >> 2; |
118 | | } |
119 | | if (top2b & 02) { |
120 | | l ^= b << 31; |
121 | | h ^= b >> 1; |
122 | | } |
123 | | |
124 | | *r1 = h; |
125 | | *r0 = l; |
126 | | } |
127 | | # endif |
128 | | # if defined(SIXTY_FOUR_BIT) || defined(SIXTY_FOUR_BIT_LONG) |
129 | | static void bn_GF2m_mul_1x1(BN_ULONG *r1, BN_ULONG *r0, const BN_ULONG a, |
130 | | const BN_ULONG b) |
131 | | { |
132 | | register BN_ULONG h, l, s; |
133 | | BN_ULONG tab[16], top3b = a >> 61; |
134 | | register BN_ULONG a1, a2, a4, a8; |
135 | | |
136 | | a1 = a & (0x1FFFFFFFFFFFFFFFULL); |
137 | | a2 = a1 << 1; |
138 | | a4 = a2 << 1; |
139 | | a8 = a4 << 1; |
140 | | |
141 | | tab[0] = 0; |
142 | | tab[1] = a1; |
143 | | tab[2] = a2; |
144 | | tab[3] = a1 ^ a2; |
145 | | tab[4] = a4; |
146 | | tab[5] = a1 ^ a4; |
147 | | tab[6] = a2 ^ a4; |
148 | | tab[7] = a1 ^ a2 ^ a4; |
149 | | tab[8] = a8; |
150 | | tab[9] = a1 ^ a8; |
151 | | tab[10] = a2 ^ a8; |
152 | | tab[11] = a1 ^ a2 ^ a8; |
153 | | tab[12] = a4 ^ a8; |
154 | | tab[13] = a1 ^ a4 ^ a8; |
155 | | tab[14] = a2 ^ a4 ^ a8; |
156 | | tab[15] = a1 ^ a2 ^ a4 ^ a8; |
157 | | |
158 | | s = tab[b & 0xF]; |
159 | | l = s; |
160 | | s = tab[b >> 4 & 0xF]; |
161 | | l ^= s << 4; |
162 | | h = s >> 60; |
163 | | s = tab[b >> 8 & 0xF]; |
164 | | l ^= s << 8; |
165 | | h ^= s >> 56; |
166 | | s = tab[b >> 12 & 0xF]; |
167 | | l ^= s << 12; |
168 | | h ^= s >> 52; |
169 | | s = tab[b >> 16 & 0xF]; |
170 | | l ^= s << 16; |
171 | | h ^= s >> 48; |
172 | | s = tab[b >> 20 & 0xF]; |
173 | | l ^= s << 20; |
174 | | h ^= s >> 44; |
175 | | s = tab[b >> 24 & 0xF]; |
176 | | l ^= s << 24; |
177 | | h ^= s >> 40; |
178 | | s = tab[b >> 28 & 0xF]; |
179 | | l ^= s << 28; |
180 | | h ^= s >> 36; |
181 | | s = tab[b >> 32 & 0xF]; |
182 | | l ^= s << 32; |
183 | | h ^= s >> 32; |
184 | | s = tab[b >> 36 & 0xF]; |
185 | | l ^= s << 36; |
186 | | h ^= s >> 28; |
187 | | s = tab[b >> 40 & 0xF]; |
188 | | l ^= s << 40; |
189 | | h ^= s >> 24; |
190 | | s = tab[b >> 44 & 0xF]; |
191 | | l ^= s << 44; |
192 | | h ^= s >> 20; |
193 | | s = tab[b >> 48 & 0xF]; |
194 | | l ^= s << 48; |
195 | | h ^= s >> 16; |
196 | | s = tab[b >> 52 & 0xF]; |
197 | | l ^= s << 52; |
198 | | h ^= s >> 12; |
199 | | s = tab[b >> 56 & 0xF]; |
200 | | l ^= s << 56; |
201 | | h ^= s >> 8; |
202 | | s = tab[b >> 60]; |
203 | | l ^= s << 60; |
204 | | h ^= s >> 4; |
205 | | |
206 | | /* compensate for the top three bits of a */ |
207 | | |
208 | | if (top3b & 01) { |
209 | | l ^= b << 61; |
210 | | h ^= b >> 3; |
211 | | } |
212 | | if (top3b & 02) { |
213 | | l ^= b << 62; |
214 | | h ^= b >> 2; |
215 | | } |
216 | | if (top3b & 04) { |
217 | | l ^= b << 63; |
218 | | h ^= b >> 1; |
219 | | } |
220 | | |
221 | | *r1 = h; |
222 | | *r0 = l; |
223 | | } |
224 | | # endif |
225 | | |
226 | | /* |
227 | | * Product of two polynomials a, b each with degree < 2 * BN_BITS2 - 1, |
228 | | * result is a polynomial r with degree < 4 * BN_BITS2 - 1 The caller MUST |
229 | | * ensure that the variables have the right amount of space allocated. |
230 | | */ |
231 | | static void bn_GF2m_mul_2x2(BN_ULONG *r, const BN_ULONG a1, const BN_ULONG a0, |
232 | | const BN_ULONG b1, const BN_ULONG b0) |
233 | | { |
234 | | BN_ULONG m1, m0; |
235 | | /* r[3] = h1, r[2] = h0; r[1] = l1; r[0] = l0 */ |
236 | | bn_GF2m_mul_1x1(r + 3, r + 2, a1, b1); |
237 | | bn_GF2m_mul_1x1(r + 1, r, a0, b0); |
238 | | bn_GF2m_mul_1x1(&m1, &m0, a0 ^ a1, b0 ^ b1); |
239 | | /* Correction on m1 ^= l1 ^ h1; m0 ^= l0 ^ h0; */ |
240 | | r[2] ^= m1 ^ r[1] ^ r[3]; /* h0 ^= m1 ^ l1 ^ h1; */ |
241 | | r[1] = r[3] ^ r[2] ^ r[0] ^ m1 ^ m0; /* l1 ^= l0 ^ h0 ^ m0; */ |
242 | | } |
243 | | # else |
244 | | void bn_GF2m_mul_2x2(BN_ULONG *r, BN_ULONG a1, BN_ULONG a0, BN_ULONG b1, |
245 | | BN_ULONG b0); |
246 | | # endif |
247 | | |
248 | | /* |
249 | | * Add polynomials a and b and store result in r; r could be a or b, a and b |
250 | | * could be equal; r is the bitwise XOR of a and b. |
251 | | */ |
252 | | int BN_GF2m_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b) |
253 | 0 | { |
254 | 0 | int i; |
255 | 0 | const BIGNUM *at, *bt; |
256 | 0 |
|
257 | 0 | bn_check_top(a); |
258 | 0 | bn_check_top(b); |
259 | 0 |
|
260 | 0 | if (a->top < b->top) { |
261 | 0 | at = b; |
262 | 0 | bt = a; |
263 | 0 | } else { |
264 | 0 | at = a; |
265 | 0 | bt = b; |
266 | 0 | } |
267 | 0 |
|
268 | 0 | if (bn_wexpand(r, at->top) == NULL) |
269 | 0 | return 0; |
270 | 0 | |
271 | 0 | for (i = 0; i < bt->top; i++) { |
272 | 0 | r->d[i] = at->d[i] ^ bt->d[i]; |
273 | 0 | } |
274 | 0 | for (; i < at->top; i++) { |
275 | 0 | r->d[i] = at->d[i]; |
276 | 0 | } |
277 | 0 |
|
278 | 0 | r->top = at->top; |
279 | 0 | bn_correct_top(r); |
280 | 0 |
|
281 | 0 | return 1; |
282 | 0 | } |
283 | | |
284 | | /*- |
285 | | * Some functions allow for representation of the irreducible polynomials |
286 | | * as an int[], say p. The irreducible f(t) is then of the form: |
287 | | * t^p[0] + t^p[1] + ... + t^p[k] |
288 | | * where m = p[0] > p[1] > ... > p[k] = 0. |
289 | | */ |
290 | | |
291 | | /* Performs modular reduction of a and store result in r. r could be a. */ |
292 | | int BN_GF2m_mod_arr(BIGNUM *r, const BIGNUM *a, const int p[]) |
293 | 0 | { |
294 | 0 | int j, k; |
295 | 0 | int n, dN, d0, d1; |
296 | 0 | BN_ULONG zz, *z; |
297 | 0 |
|
298 | 0 | bn_check_top(a); |
299 | 0 |
|
300 | 0 | if (!p[0]) { |
301 | 0 | /* reduction mod 1 => return 0 */ |
302 | 0 | BN_zero(r); |
303 | 0 | return 1; |
304 | 0 | } |
305 | 0 |
|
306 | 0 | /* |
307 | 0 | * Since the algorithm does reduction in the r value, if a != r, copy the |
308 | 0 | * contents of a into r so we can do reduction in r. |
309 | 0 | */ |
310 | 0 | if (a != r) { |
311 | 0 | if (!bn_wexpand(r, a->top)) |
312 | 0 | return 0; |
313 | 0 | for (j = 0; j < a->top; j++) { |
314 | 0 | r->d[j] = a->d[j]; |
315 | 0 | } |
316 | 0 | r->top = a->top; |
317 | 0 | } |
318 | 0 | z = r->d; |
319 | 0 |
|
320 | 0 | /* start reduction */ |
321 | 0 | dN = p[0] / BN_BITS2; |
322 | 0 | for (j = r->top - 1; j > dN;) { |
323 | 0 | zz = z[j]; |
324 | 0 | if (z[j] == 0) { |
325 | 0 | j--; |
326 | 0 | continue; |
327 | 0 | } |
328 | 0 | z[j] = 0; |
329 | 0 |
|
330 | 0 | for (k = 1; p[k] != 0; k++) { |
331 | 0 | /* reducing component t^p[k] */ |
332 | 0 | n = p[0] - p[k]; |
333 | 0 | d0 = n % BN_BITS2; |
334 | 0 | d1 = BN_BITS2 - d0; |
335 | 0 | n /= BN_BITS2; |
336 | 0 | z[j - n] ^= (zz >> d0); |
337 | 0 | if (d0) |
338 | 0 | z[j - n - 1] ^= (zz << d1); |
339 | 0 | } |
340 | 0 |
|
341 | 0 | /* reducing component t^0 */ |
342 | 0 | n = dN; |
343 | 0 | d0 = p[0] % BN_BITS2; |
344 | 0 | d1 = BN_BITS2 - d0; |
345 | 0 | z[j - n] ^= (zz >> d0); |
346 | 0 | if (d0) |
347 | 0 | z[j - n - 1] ^= (zz << d1); |
348 | 0 | } |
349 | 0 |
|
350 | 0 | /* final round of reduction */ |
351 | 0 | while (j == dN) { |
352 | 0 |
|
353 | 0 | d0 = p[0] % BN_BITS2; |
354 | 0 | zz = z[dN] >> d0; |
355 | 0 | if (zz == 0) |
356 | 0 | break; |
357 | 0 | d1 = BN_BITS2 - d0; |
358 | 0 |
|
359 | 0 | /* clear up the top d1 bits */ |
360 | 0 | if (d0) |
361 | 0 | z[dN] = (z[dN] << d1) >> d1; |
362 | 0 | else |
363 | 0 | z[dN] = 0; |
364 | 0 | z[0] ^= zz; /* reduction t^0 component */ |
365 | 0 |
|
366 | 0 | for (k = 1; p[k] != 0; k++) { |
367 | 0 | BN_ULONG tmp_ulong; |
368 | 0 |
|
369 | 0 | /* reducing component t^p[k] */ |
370 | 0 | n = p[k] / BN_BITS2; |
371 | 0 | d0 = p[k] % BN_BITS2; |
372 | 0 | d1 = BN_BITS2 - d0; |
373 | 0 | z[n] ^= (zz << d0); |
374 | 0 | if (d0 && (tmp_ulong = zz >> d1)) |
375 | 0 | z[n + 1] ^= tmp_ulong; |
376 | 0 | } |
377 | 0 |
|
378 | 0 | } |
379 | 0 |
|
380 | 0 | bn_correct_top(r); |
381 | 0 | return 1; |
382 | 0 | } |
383 | | |
384 | | /* |
385 | | * Performs modular reduction of a by p and store result in r. r could be a. |
386 | | * This function calls down to the BN_GF2m_mod_arr implementation; this wrapper |
387 | | * function is only provided for convenience; for best performance, use the |
388 | | * BN_GF2m_mod_arr function. |
389 | | */ |
390 | | int BN_GF2m_mod(BIGNUM *r, const BIGNUM *a, const BIGNUM *p) |
391 | 0 | { |
392 | 0 | int ret = 0; |
393 | 0 | int arr[6]; |
394 | 0 | bn_check_top(a); |
395 | 0 | bn_check_top(p); |
396 | 0 | ret = BN_GF2m_poly2arr(p, arr, OSSL_NELEM(arr)); |
397 | 0 | if (!ret || ret > (int)OSSL_NELEM(arr)) { |
398 | 0 | BNerr(BN_F_BN_GF2M_MOD, BN_R_INVALID_LENGTH); |
399 | 0 | return 0; |
400 | 0 | } |
401 | 0 | ret = BN_GF2m_mod_arr(r, a, arr); |
402 | 0 | bn_check_top(r); |
403 | 0 | return ret; |
404 | 0 | } |
405 | | |
406 | | /* |
407 | | * Compute the product of two polynomials a and b, reduce modulo p, and store |
408 | | * the result in r. r could be a or b; a could be b. |
409 | | */ |
410 | | int BN_GF2m_mod_mul_arr(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, |
411 | | const int p[], BN_CTX *ctx) |
412 | 0 | { |
413 | 0 | int zlen, i, j, k, ret = 0; |
414 | 0 | BIGNUM *s; |
415 | 0 | BN_ULONG x1, x0, y1, y0, zz[4]; |
416 | 0 |
|
417 | 0 | bn_check_top(a); |
418 | 0 | bn_check_top(b); |
419 | 0 |
|
420 | 0 | if (a == b) { |
421 | 0 | return BN_GF2m_mod_sqr_arr(r, a, p, ctx); |
422 | 0 | } |
423 | 0 | |
424 | 0 | BN_CTX_start(ctx); |
425 | 0 | if ((s = BN_CTX_get(ctx)) == NULL) |
426 | 0 | goto err; |
427 | 0 | |
428 | 0 | zlen = a->top + b->top + 4; |
429 | 0 | if (!bn_wexpand(s, zlen)) |
430 | 0 | goto err; |
431 | 0 | s->top = zlen; |
432 | 0 |
|
433 | 0 | for (i = 0; i < zlen; i++) |
434 | 0 | s->d[i] = 0; |
435 | 0 |
|
436 | 0 | for (j = 0; j < b->top; j += 2) { |
437 | 0 | y0 = b->d[j]; |
438 | 0 | y1 = ((j + 1) == b->top) ? 0 : b->d[j + 1]; |
439 | 0 | for (i = 0; i < a->top; i += 2) { |
440 | 0 | x0 = a->d[i]; |
441 | 0 | x1 = ((i + 1) == a->top) ? 0 : a->d[i + 1]; |
442 | 0 | bn_GF2m_mul_2x2(zz, x1, x0, y1, y0); |
443 | 0 | for (k = 0; k < 4; k++) |
444 | 0 | s->d[i + j + k] ^= zz[k]; |
445 | 0 | } |
446 | 0 | } |
447 | 0 |
|
448 | 0 | bn_correct_top(s); |
449 | 0 | if (BN_GF2m_mod_arr(r, s, p)) |
450 | 0 | ret = 1; |
451 | 0 | bn_check_top(r); |
452 | 0 |
|
453 | 0 | err: |
454 | 0 | BN_CTX_end(ctx); |
455 | 0 | return ret; |
456 | 0 | } |
457 | | |
458 | | /* |
459 | | * Compute the product of two polynomials a and b, reduce modulo p, and store |
460 | | * the result in r. r could be a or b; a could equal b. This function calls |
461 | | * down to the BN_GF2m_mod_mul_arr implementation; this wrapper function is |
462 | | * only provided for convenience; for best performance, use the |
463 | | * BN_GF2m_mod_mul_arr function. |
464 | | */ |
465 | | int BN_GF2m_mod_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, |
466 | | const BIGNUM *p, BN_CTX *ctx) |
467 | 0 | { |
468 | 0 | int ret = 0; |
469 | 0 | const int max = BN_num_bits(p) + 1; |
470 | 0 | int *arr = NULL; |
471 | 0 | bn_check_top(a); |
472 | 0 | bn_check_top(b); |
473 | 0 | bn_check_top(p); |
474 | 0 | if ((arr = OPENSSL_malloc(sizeof(*arr) * max)) == NULL) |
475 | 0 | goto err; |
476 | 0 | ret = BN_GF2m_poly2arr(p, arr, max); |
477 | 0 | if (!ret || ret > max) { |
478 | 0 | BNerr(BN_F_BN_GF2M_MOD_MUL, BN_R_INVALID_LENGTH); |
479 | 0 | goto err; |
480 | 0 | } |
481 | 0 | ret = BN_GF2m_mod_mul_arr(r, a, b, arr, ctx); |
482 | 0 | bn_check_top(r); |
483 | 0 | err: |
484 | 0 | OPENSSL_free(arr); |
485 | 0 | return ret; |
486 | 0 | } |
487 | | |
488 | | /* Square a, reduce the result mod p, and store it in a. r could be a. */ |
489 | | int BN_GF2m_mod_sqr_arr(BIGNUM *r, const BIGNUM *a, const int p[], |
490 | | BN_CTX *ctx) |
491 | 0 | { |
492 | 0 | int i, ret = 0; |
493 | 0 | BIGNUM *s; |
494 | 0 |
|
495 | 0 | bn_check_top(a); |
496 | 0 | BN_CTX_start(ctx); |
497 | 0 | if ((s = BN_CTX_get(ctx)) == NULL) |
498 | 0 | goto err; |
499 | 0 | if (!bn_wexpand(s, 2 * a->top)) |
500 | 0 | goto err; |
501 | 0 | |
502 | 0 | for (i = a->top - 1; i >= 0; i--) { |
503 | 0 | s->d[2 * i + 1] = SQR1(a->d[i]); |
504 | 0 | s->d[2 * i] = SQR0(a->d[i]); |
505 | 0 | } |
506 | 0 |
|
507 | 0 | s->top = 2 * a->top; |
508 | 0 | bn_correct_top(s); |
509 | 0 | if (!BN_GF2m_mod_arr(r, s, p)) |
510 | 0 | goto err; |
511 | 0 | bn_check_top(r); |
512 | 0 | ret = 1; |
513 | 0 | err: |
514 | 0 | BN_CTX_end(ctx); |
515 | 0 | return ret; |
516 | 0 | } |
517 | | |
518 | | /* |
519 | | * Square a, reduce the result mod p, and store it in a. r could be a. This |
520 | | * function calls down to the BN_GF2m_mod_sqr_arr implementation; this |
521 | | * wrapper function is only provided for convenience; for best performance, |
522 | | * use the BN_GF2m_mod_sqr_arr function. |
523 | | */ |
524 | | int BN_GF2m_mod_sqr(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx) |
525 | 0 | { |
526 | 0 | int ret = 0; |
527 | 0 | const int max = BN_num_bits(p) + 1; |
528 | 0 | int *arr = NULL; |
529 | 0 |
|
530 | 0 | bn_check_top(a); |
531 | 0 | bn_check_top(p); |
532 | 0 | if ((arr = OPENSSL_malloc(sizeof(*arr) * max)) == NULL) |
533 | 0 | goto err; |
534 | 0 | ret = BN_GF2m_poly2arr(p, arr, max); |
535 | 0 | if (!ret || ret > max) { |
536 | 0 | BNerr(BN_F_BN_GF2M_MOD_SQR, BN_R_INVALID_LENGTH); |
537 | 0 | goto err; |
538 | 0 | } |
539 | 0 | ret = BN_GF2m_mod_sqr_arr(r, a, arr, ctx); |
540 | 0 | bn_check_top(r); |
541 | 0 | err: |
542 | 0 | OPENSSL_free(arr); |
543 | 0 | return ret; |
544 | 0 | } |
545 | | |
546 | | /* |
547 | | * Invert a, reduce modulo p, and store the result in r. r could be a. Uses |
548 | | * Modified Almost Inverse Algorithm (Algorithm 10) from Hankerson, D., |
549 | | * Hernandez, J.L., and Menezes, A. "Software Implementation of Elliptic |
550 | | * Curve Cryptography Over Binary Fields". |
551 | | */ |
552 | | static int BN_GF2m_mod_inv_vartime(BIGNUM *r, const BIGNUM *a, |
553 | | const BIGNUM *p, BN_CTX *ctx) |
554 | 0 | { |
555 | 0 | BIGNUM *b, *c = NULL, *u = NULL, *v = NULL, *tmp; |
556 | 0 | int ret = 0; |
557 | 0 |
|
558 | 0 | bn_check_top(a); |
559 | 0 | bn_check_top(p); |
560 | 0 |
|
561 | 0 | BN_CTX_start(ctx); |
562 | 0 |
|
563 | 0 | b = BN_CTX_get(ctx); |
564 | 0 | c = BN_CTX_get(ctx); |
565 | 0 | u = BN_CTX_get(ctx); |
566 | 0 | v = BN_CTX_get(ctx); |
567 | 0 | if (v == NULL) |
568 | 0 | goto err; |
569 | 0 | |
570 | 0 | if (!BN_GF2m_mod(u, a, p)) |
571 | 0 | goto err; |
572 | 0 | if (BN_is_zero(u)) |
573 | 0 | goto err; |
574 | 0 | |
575 | 0 | if (!BN_copy(v, p)) |
576 | 0 | goto err; |
577 | | # if 0 |
578 | | if (!BN_one(b)) |
579 | | goto err; |
580 | | |
581 | | while (1) { |
582 | | while (!BN_is_odd(u)) { |
583 | | if (BN_is_zero(u)) |
584 | | goto err; |
585 | | if (!BN_rshift1(u, u)) |
586 | | goto err; |
587 | | if (BN_is_odd(b)) { |
588 | | if (!BN_GF2m_add(b, b, p)) |
589 | | goto err; |
590 | | } |
591 | | if (!BN_rshift1(b, b)) |
592 | | goto err; |
593 | | } |
594 | | |
595 | | if (BN_abs_is_word(u, 1)) |
596 | | break; |
597 | | |
598 | | if (BN_num_bits(u) < BN_num_bits(v)) { |
599 | | tmp = u; |
600 | | u = v; |
601 | | v = tmp; |
602 | | tmp = b; |
603 | | b = c; |
604 | | c = tmp; |
605 | | } |
606 | | |
607 | | if (!BN_GF2m_add(u, u, v)) |
608 | | goto err; |
609 | | if (!BN_GF2m_add(b, b, c)) |
610 | | goto err; |
611 | | } |
612 | | # else |
613 | 0 | { |
614 | 0 | int i; |
615 | 0 | int ubits = BN_num_bits(u); |
616 | 0 | int vbits = BN_num_bits(v); /* v is copy of p */ |
617 | 0 | int top = p->top; |
618 | 0 | BN_ULONG *udp, *bdp, *vdp, *cdp; |
619 | 0 |
|
620 | 0 | if (!bn_wexpand(u, top)) |
621 | 0 | goto err; |
622 | 0 | udp = u->d; |
623 | 0 | for (i = u->top; i < top; i++) |
624 | 0 | udp[i] = 0; |
625 | 0 | u->top = top; |
626 | 0 | if (!bn_wexpand(b, top)) |
627 | 0 | goto err; |
628 | 0 | bdp = b->d; |
629 | 0 | bdp[0] = 1; |
630 | 0 | for (i = 1; i < top; i++) |
631 | 0 | bdp[i] = 0; |
632 | 0 | b->top = top; |
633 | 0 | if (!bn_wexpand(c, top)) |
634 | 0 | goto err; |
635 | 0 | cdp = c->d; |
636 | 0 | for (i = 0; i < top; i++) |
637 | 0 | cdp[i] = 0; |
638 | 0 | c->top = top; |
639 | 0 | vdp = v->d; /* It pays off to "cache" *->d pointers, |
640 | 0 | * because it allows optimizer to be more |
641 | 0 | * aggressive. But we don't have to "cache" |
642 | 0 | * p->d, because *p is declared 'const'... */ |
643 | 0 | while (1) { |
644 | 0 | while (ubits && !(udp[0] & 1)) { |
645 | 0 | BN_ULONG u0, u1, b0, b1, mask; |
646 | 0 |
|
647 | 0 | u0 = udp[0]; |
648 | 0 | b0 = bdp[0]; |
649 | 0 | mask = (BN_ULONG)0 - (b0 & 1); |
650 | 0 | b0 ^= p->d[0] & mask; |
651 | 0 | for (i = 0; i < top - 1; i++) { |
652 | 0 | u1 = udp[i + 1]; |
653 | 0 | udp[i] = ((u0 >> 1) | (u1 << (BN_BITS2 - 1))) & BN_MASK2; |
654 | 0 | u0 = u1; |
655 | 0 | b1 = bdp[i + 1] ^ (p->d[i + 1] & mask); |
656 | 0 | bdp[i] = ((b0 >> 1) | (b1 << (BN_BITS2 - 1))) & BN_MASK2; |
657 | 0 | b0 = b1; |
658 | 0 | } |
659 | 0 | udp[i] = u0 >> 1; |
660 | 0 | bdp[i] = b0 >> 1; |
661 | 0 | ubits--; |
662 | 0 | } |
663 | 0 |
|
664 | 0 | if (ubits <= BN_BITS2) { |
665 | 0 | if (udp[0] == 0) /* poly was reducible */ |
666 | 0 | goto err; |
667 | 0 | if (udp[0] == 1) |
668 | 0 | break; |
669 | 0 | } |
670 | 0 | |
671 | 0 | if (ubits < vbits) { |
672 | 0 | i = ubits; |
673 | 0 | ubits = vbits; |
674 | 0 | vbits = i; |
675 | 0 | tmp = u; |
676 | 0 | u = v; |
677 | 0 | v = tmp; |
678 | 0 | tmp = b; |
679 | 0 | b = c; |
680 | 0 | c = tmp; |
681 | 0 | udp = vdp; |
682 | 0 | vdp = v->d; |
683 | 0 | bdp = cdp; |
684 | 0 | cdp = c->d; |
685 | 0 | } |
686 | 0 | for (i = 0; i < top; i++) { |
687 | 0 | udp[i] ^= vdp[i]; |
688 | 0 | bdp[i] ^= cdp[i]; |
689 | 0 | } |
690 | 0 | if (ubits == vbits) { |
691 | 0 | BN_ULONG ul; |
692 | 0 | int utop = (ubits - 1) / BN_BITS2; |
693 | 0 |
|
694 | 0 | while ((ul = udp[utop]) == 0 && utop) |
695 | 0 | utop--; |
696 | 0 | ubits = utop * BN_BITS2 + BN_num_bits_word(ul); |
697 | 0 | } |
698 | 0 | } |
699 | 0 | bn_correct_top(b); |
700 | 0 | } |
701 | 0 | # endif |
702 | 0 |
|
703 | 0 | if (!BN_copy(r, b)) |
704 | 0 | goto err; |
705 | 0 | bn_check_top(r); |
706 | 0 | ret = 1; |
707 | 0 |
|
708 | 0 | err: |
709 | | # ifdef BN_DEBUG /* BN_CTX_end would complain about the |
710 | | * expanded form */ |
711 | | bn_correct_top(c); |
712 | | bn_correct_top(u); |
713 | | bn_correct_top(v); |
714 | | # endif |
715 | | BN_CTX_end(ctx); |
716 | 0 | return ret; |
717 | 0 | } |
718 | | |
719 | | /*- |
720 | | * Wrapper for BN_GF2m_mod_inv_vartime that blinds the input before calling. |
721 | | * This is not constant time. |
722 | | * But it does eliminate first order deduction on the input. |
723 | | */ |
724 | | int BN_GF2m_mod_inv(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx) |
725 | 0 | { |
726 | 0 | BIGNUM *b = NULL; |
727 | 0 | int ret = 0; |
728 | 0 |
|
729 | 0 | BN_CTX_start(ctx); |
730 | 0 | if ((b = BN_CTX_get(ctx)) == NULL) |
731 | 0 | goto err; |
732 | 0 | |
733 | 0 | /* generate blinding value */ |
734 | 0 | do { |
735 | 0 | if (!BN_priv_rand(b, BN_num_bits(p) - 1, |
736 | 0 | BN_RAND_TOP_ANY, BN_RAND_BOTTOM_ANY)) |
737 | 0 | goto err; |
738 | 0 | } while (BN_is_zero(b)); |
739 | 0 |
|
740 | 0 | /* r := a * b */ |
741 | 0 | if (!BN_GF2m_mod_mul(r, a, b, p, ctx)) |
742 | 0 | goto err; |
743 | 0 | |
744 | 0 | /* r := 1/(a * b) */ |
745 | 0 | if (!BN_GF2m_mod_inv_vartime(r, r, p, ctx)) |
746 | 0 | goto err; |
747 | 0 | |
748 | 0 | /* r := b/(a * b) = 1/a */ |
749 | 0 | if (!BN_GF2m_mod_mul(r, r, b, p, ctx)) |
750 | 0 | goto err; |
751 | 0 | |
752 | 0 | ret = 1; |
753 | 0 |
|
754 | 0 | err: |
755 | 0 | BN_CTX_end(ctx); |
756 | 0 | return ret; |
757 | 0 | } |
758 | | |
759 | | /* |
760 | | * Invert xx, reduce modulo p, and store the result in r. r could be xx. |
761 | | * This function calls down to the BN_GF2m_mod_inv implementation; this |
762 | | * wrapper function is only provided for convenience; for best performance, |
763 | | * use the BN_GF2m_mod_inv function. |
764 | | */ |
765 | | int BN_GF2m_mod_inv_arr(BIGNUM *r, const BIGNUM *xx, const int p[], |
766 | | BN_CTX *ctx) |
767 | 0 | { |
768 | 0 | BIGNUM *field; |
769 | 0 | int ret = 0; |
770 | 0 |
|
771 | 0 | bn_check_top(xx); |
772 | 0 | BN_CTX_start(ctx); |
773 | 0 | if ((field = BN_CTX_get(ctx)) == NULL) |
774 | 0 | goto err; |
775 | 0 | if (!BN_GF2m_arr2poly(p, field)) |
776 | 0 | goto err; |
777 | 0 | |
778 | 0 | ret = BN_GF2m_mod_inv(r, xx, field, ctx); |
779 | 0 | bn_check_top(r); |
780 | 0 |
|
781 | 0 | err: |
782 | 0 | BN_CTX_end(ctx); |
783 | 0 | return ret; |
784 | 0 | } |
785 | | |
786 | | /* |
787 | | * Divide y by x, reduce modulo p, and store the result in r. r could be x |
788 | | * or y, x could equal y. |
789 | | */ |
790 | | int BN_GF2m_mod_div(BIGNUM *r, const BIGNUM *y, const BIGNUM *x, |
791 | | const BIGNUM *p, BN_CTX *ctx) |
792 | 0 | { |
793 | 0 | BIGNUM *xinv = NULL; |
794 | 0 | int ret = 0; |
795 | 0 |
|
796 | 0 | bn_check_top(y); |
797 | 0 | bn_check_top(x); |
798 | 0 | bn_check_top(p); |
799 | 0 |
|
800 | 0 | BN_CTX_start(ctx); |
801 | 0 | xinv = BN_CTX_get(ctx); |
802 | 0 | if (xinv == NULL) |
803 | 0 | goto err; |
804 | 0 | |
805 | 0 | if (!BN_GF2m_mod_inv(xinv, x, p, ctx)) |
806 | 0 | goto err; |
807 | 0 | if (!BN_GF2m_mod_mul(r, y, xinv, p, ctx)) |
808 | 0 | goto err; |
809 | 0 | bn_check_top(r); |
810 | 0 | ret = 1; |
811 | 0 |
|
812 | 0 | err: |
813 | 0 | BN_CTX_end(ctx); |
814 | 0 | return ret; |
815 | 0 | } |
816 | | |
817 | | /* |
818 | | * Divide yy by xx, reduce modulo p, and store the result in r. r could be xx |
819 | | * * or yy, xx could equal yy. This function calls down to the |
820 | | * BN_GF2m_mod_div implementation; this wrapper function is only provided for |
821 | | * convenience; for best performance, use the BN_GF2m_mod_div function. |
822 | | */ |
823 | | int BN_GF2m_mod_div_arr(BIGNUM *r, const BIGNUM *yy, const BIGNUM *xx, |
824 | | const int p[], BN_CTX *ctx) |
825 | 0 | { |
826 | 0 | BIGNUM *field; |
827 | 0 | int ret = 0; |
828 | 0 |
|
829 | 0 | bn_check_top(yy); |
830 | 0 | bn_check_top(xx); |
831 | 0 |
|
832 | 0 | BN_CTX_start(ctx); |
833 | 0 | if ((field = BN_CTX_get(ctx)) == NULL) |
834 | 0 | goto err; |
835 | 0 | if (!BN_GF2m_arr2poly(p, field)) |
836 | 0 | goto err; |
837 | 0 | |
838 | 0 | ret = BN_GF2m_mod_div(r, yy, xx, field, ctx); |
839 | 0 | bn_check_top(r); |
840 | 0 |
|
841 | 0 | err: |
842 | 0 | BN_CTX_end(ctx); |
843 | 0 | return ret; |
844 | 0 | } |
845 | | |
846 | | /* |
847 | | * Compute the bth power of a, reduce modulo p, and store the result in r. r |
848 | | * could be a. Uses simple square-and-multiply algorithm A.5.1 from IEEE |
849 | | * P1363. |
850 | | */ |
851 | | int BN_GF2m_mod_exp_arr(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, |
852 | | const int p[], BN_CTX *ctx) |
853 | 0 | { |
854 | 0 | int ret = 0, i, n; |
855 | 0 | BIGNUM *u; |
856 | 0 |
|
857 | 0 | bn_check_top(a); |
858 | 0 | bn_check_top(b); |
859 | 0 |
|
860 | 0 | if (BN_is_zero(b)) |
861 | 0 | return BN_one(r); |
862 | 0 | |
863 | 0 | if (BN_abs_is_word(b, 1)) |
864 | 0 | return (BN_copy(r, a) != NULL); |
865 | 0 | |
866 | 0 | BN_CTX_start(ctx); |
867 | 0 | if ((u = BN_CTX_get(ctx)) == NULL) |
868 | 0 | goto err; |
869 | 0 | |
870 | 0 | if (!BN_GF2m_mod_arr(u, a, p)) |
871 | 0 | goto err; |
872 | 0 | |
873 | 0 | n = BN_num_bits(b) - 1; |
874 | 0 | for (i = n - 1; i >= 0; i--) { |
875 | 0 | if (!BN_GF2m_mod_sqr_arr(u, u, p, ctx)) |
876 | 0 | goto err; |
877 | 0 | if (BN_is_bit_set(b, i)) { |
878 | 0 | if (!BN_GF2m_mod_mul_arr(u, u, a, p, ctx)) |
879 | 0 | goto err; |
880 | 0 | } |
881 | 0 | } |
882 | 0 | if (!BN_copy(r, u)) |
883 | 0 | goto err; |
884 | 0 | bn_check_top(r); |
885 | 0 | ret = 1; |
886 | 0 | err: |
887 | 0 | BN_CTX_end(ctx); |
888 | 0 | return ret; |
889 | 0 | } |
890 | | |
891 | | /* |
892 | | * Compute the bth power of a, reduce modulo p, and store the result in r. r |
893 | | * could be a. This function calls down to the BN_GF2m_mod_exp_arr |
894 | | * implementation; this wrapper function is only provided for convenience; |
895 | | * for best performance, use the BN_GF2m_mod_exp_arr function. |
896 | | */ |
897 | | int BN_GF2m_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, |
898 | | const BIGNUM *p, BN_CTX *ctx) |
899 | 0 | { |
900 | 0 | int ret = 0; |
901 | 0 | const int max = BN_num_bits(p) + 1; |
902 | 0 | int *arr = NULL; |
903 | 0 | bn_check_top(a); |
904 | 0 | bn_check_top(b); |
905 | 0 | bn_check_top(p); |
906 | 0 | if ((arr = OPENSSL_malloc(sizeof(*arr) * max)) == NULL) |
907 | 0 | goto err; |
908 | 0 | ret = BN_GF2m_poly2arr(p, arr, max); |
909 | 0 | if (!ret || ret > max) { |
910 | 0 | BNerr(BN_F_BN_GF2M_MOD_EXP, BN_R_INVALID_LENGTH); |
911 | 0 | goto err; |
912 | 0 | } |
913 | 0 | ret = BN_GF2m_mod_exp_arr(r, a, b, arr, ctx); |
914 | 0 | bn_check_top(r); |
915 | 0 | err: |
916 | 0 | OPENSSL_free(arr); |
917 | 0 | return ret; |
918 | 0 | } |
919 | | |
920 | | /* |
921 | | * Compute the square root of a, reduce modulo p, and store the result in r. |
922 | | * r could be a. Uses exponentiation as in algorithm A.4.1 from IEEE P1363. |
923 | | */ |
924 | | int BN_GF2m_mod_sqrt_arr(BIGNUM *r, const BIGNUM *a, const int p[], |
925 | | BN_CTX *ctx) |
926 | 0 | { |
927 | 0 | int ret = 0; |
928 | 0 | BIGNUM *u; |
929 | 0 |
|
930 | 0 | bn_check_top(a); |
931 | 0 |
|
932 | 0 | if (!p[0]) { |
933 | 0 | /* reduction mod 1 => return 0 */ |
934 | 0 | BN_zero(r); |
935 | 0 | return 1; |
936 | 0 | } |
937 | 0 |
|
938 | 0 | BN_CTX_start(ctx); |
939 | 0 | if ((u = BN_CTX_get(ctx)) == NULL) |
940 | 0 | goto err; |
941 | 0 | |
942 | 0 | if (!BN_set_bit(u, p[0] - 1)) |
943 | 0 | goto err; |
944 | 0 | ret = BN_GF2m_mod_exp_arr(r, a, u, p, ctx); |
945 | 0 | bn_check_top(r); |
946 | 0 |
|
947 | 0 | err: |
948 | 0 | BN_CTX_end(ctx); |
949 | 0 | return ret; |
950 | 0 | } |
951 | | |
952 | | /* |
953 | | * Compute the square root of a, reduce modulo p, and store the result in r. |
954 | | * r could be a. This function calls down to the BN_GF2m_mod_sqrt_arr |
955 | | * implementation; this wrapper function is only provided for convenience; |
956 | | * for best performance, use the BN_GF2m_mod_sqrt_arr function. |
957 | | */ |
958 | | int BN_GF2m_mod_sqrt(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx) |
959 | 0 | { |
960 | 0 | int ret = 0; |
961 | 0 | const int max = BN_num_bits(p) + 1; |
962 | 0 | int *arr = NULL; |
963 | 0 | bn_check_top(a); |
964 | 0 | bn_check_top(p); |
965 | 0 | if ((arr = OPENSSL_malloc(sizeof(*arr) * max)) == NULL) |
966 | 0 | goto err; |
967 | 0 | ret = BN_GF2m_poly2arr(p, arr, max); |
968 | 0 | if (!ret || ret > max) { |
969 | 0 | BNerr(BN_F_BN_GF2M_MOD_SQRT, BN_R_INVALID_LENGTH); |
970 | 0 | goto err; |
971 | 0 | } |
972 | 0 | ret = BN_GF2m_mod_sqrt_arr(r, a, arr, ctx); |
973 | 0 | bn_check_top(r); |
974 | 0 | err: |
975 | 0 | OPENSSL_free(arr); |
976 | 0 | return ret; |
977 | 0 | } |
978 | | |
979 | | /* |
980 | | * Find r such that r^2 + r = a mod p. r could be a. If no r exists returns |
981 | | * 0. Uses algorithms A.4.7 and A.4.6 from IEEE P1363. |
982 | | */ |
983 | | int BN_GF2m_mod_solve_quad_arr(BIGNUM *r, const BIGNUM *a_, const int p[], |
984 | | BN_CTX *ctx) |
985 | 0 | { |
986 | 0 | int ret = 0, count = 0, j; |
987 | 0 | BIGNUM *a, *z, *rho, *w, *w2, *tmp; |
988 | 0 |
|
989 | 0 | bn_check_top(a_); |
990 | 0 |
|
991 | 0 | if (!p[0]) { |
992 | 0 | /* reduction mod 1 => return 0 */ |
993 | 0 | BN_zero(r); |
994 | 0 | return 1; |
995 | 0 | } |
996 | 0 |
|
997 | 0 | BN_CTX_start(ctx); |
998 | 0 | a = BN_CTX_get(ctx); |
999 | 0 | z = BN_CTX_get(ctx); |
1000 | 0 | w = BN_CTX_get(ctx); |
1001 | 0 | if (w == NULL) |
1002 | 0 | goto err; |
1003 | 0 | |
1004 | 0 | if (!BN_GF2m_mod_arr(a, a_, p)) |
1005 | 0 | goto err; |
1006 | 0 | |
1007 | 0 | if (BN_is_zero(a)) { |
1008 | 0 | BN_zero(r); |
1009 | 0 | ret = 1; |
1010 | 0 | goto err; |
1011 | 0 | } |
1012 | 0 |
|
1013 | 0 | if (p[0] & 0x1) { /* m is odd */ |
1014 | 0 | /* compute half-trace of a */ |
1015 | 0 | if (!BN_copy(z, a)) |
1016 | 0 | goto err; |
1017 | 0 | for (j = 1; j <= (p[0] - 1) / 2; j++) { |
1018 | 0 | if (!BN_GF2m_mod_sqr_arr(z, z, p, ctx)) |
1019 | 0 | goto err; |
1020 | 0 | if (!BN_GF2m_mod_sqr_arr(z, z, p, ctx)) |
1021 | 0 | goto err; |
1022 | 0 | if (!BN_GF2m_add(z, z, a)) |
1023 | 0 | goto err; |
1024 | 0 | } |
1025 | 0 |
|
1026 | 0 | } else { /* m is even */ |
1027 | 0 |
|
1028 | 0 | rho = BN_CTX_get(ctx); |
1029 | 0 | w2 = BN_CTX_get(ctx); |
1030 | 0 | tmp = BN_CTX_get(ctx); |
1031 | 0 | if (tmp == NULL) |
1032 | 0 | goto err; |
1033 | 0 | do { |
1034 | 0 | if (!BN_priv_rand(rho, p[0], BN_RAND_TOP_ONE, BN_RAND_BOTTOM_ANY)) |
1035 | 0 | goto err; |
1036 | 0 | if (!BN_GF2m_mod_arr(rho, rho, p)) |
1037 | 0 | goto err; |
1038 | 0 | BN_zero(z); |
1039 | 0 | if (!BN_copy(w, rho)) |
1040 | 0 | goto err; |
1041 | 0 | for (j = 1; j <= p[0] - 1; j++) { |
1042 | 0 | if (!BN_GF2m_mod_sqr_arr(z, z, p, ctx)) |
1043 | 0 | goto err; |
1044 | 0 | if (!BN_GF2m_mod_sqr_arr(w2, w, p, ctx)) |
1045 | 0 | goto err; |
1046 | 0 | if (!BN_GF2m_mod_mul_arr(tmp, w2, a, p, ctx)) |
1047 | 0 | goto err; |
1048 | 0 | if (!BN_GF2m_add(z, z, tmp)) |
1049 | 0 | goto err; |
1050 | 0 | if (!BN_GF2m_add(w, w2, rho)) |
1051 | 0 | goto err; |
1052 | 0 | } |
1053 | 0 | count++; |
1054 | 0 | } while (BN_is_zero(w) && (count < MAX_ITERATIONS)); |
1055 | 0 | if (BN_is_zero(w)) { |
1056 | 0 | BNerr(BN_F_BN_GF2M_MOD_SOLVE_QUAD_ARR, BN_R_TOO_MANY_ITERATIONS); |
1057 | 0 | goto err; |
1058 | 0 | } |
1059 | 0 | } |
1060 | 0 |
|
1061 | 0 | if (!BN_GF2m_mod_sqr_arr(w, z, p, ctx)) |
1062 | 0 | goto err; |
1063 | 0 | if (!BN_GF2m_add(w, z, w)) |
1064 | 0 | goto err; |
1065 | 0 | if (BN_GF2m_cmp(w, a)) { |
1066 | 0 | BNerr(BN_F_BN_GF2M_MOD_SOLVE_QUAD_ARR, BN_R_NO_SOLUTION); |
1067 | 0 | goto err; |
1068 | 0 | } |
1069 | 0 |
|
1070 | 0 | if (!BN_copy(r, z)) |
1071 | 0 | goto err; |
1072 | 0 | bn_check_top(r); |
1073 | 0 |
|
1074 | 0 | ret = 1; |
1075 | 0 |
|
1076 | 0 | err: |
1077 | 0 | BN_CTX_end(ctx); |
1078 | 0 | return ret; |
1079 | 0 | } |
1080 | | |
1081 | | /* |
1082 | | * Find r such that r^2 + r = a mod p. r could be a. If no r exists returns |
1083 | | * 0. This function calls down to the BN_GF2m_mod_solve_quad_arr |
1084 | | * implementation; this wrapper function is only provided for convenience; |
1085 | | * for best performance, use the BN_GF2m_mod_solve_quad_arr function. |
1086 | | */ |
1087 | | int BN_GF2m_mod_solve_quad(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, |
1088 | | BN_CTX *ctx) |
1089 | 0 | { |
1090 | 0 | int ret = 0; |
1091 | 0 | const int max = BN_num_bits(p) + 1; |
1092 | 0 | int *arr = NULL; |
1093 | 0 | bn_check_top(a); |
1094 | 0 | bn_check_top(p); |
1095 | 0 | if ((arr = OPENSSL_malloc(sizeof(*arr) * max)) == NULL) |
1096 | 0 | goto err; |
1097 | 0 | ret = BN_GF2m_poly2arr(p, arr, max); |
1098 | 0 | if (!ret || ret > max) { |
1099 | 0 | BNerr(BN_F_BN_GF2M_MOD_SOLVE_QUAD, BN_R_INVALID_LENGTH); |
1100 | 0 | goto err; |
1101 | 0 | } |
1102 | 0 | ret = BN_GF2m_mod_solve_quad_arr(r, a, arr, ctx); |
1103 | 0 | bn_check_top(r); |
1104 | 0 | err: |
1105 | 0 | OPENSSL_free(arr); |
1106 | 0 | return ret; |
1107 | 0 | } |
1108 | | |
1109 | | /* |
1110 | | * Convert the bit-string representation of a polynomial ( \sum_{i=0}^n a_i * |
1111 | | * x^i) into an array of integers corresponding to the bits with non-zero |
1112 | | * coefficient. Array is terminated with -1. Up to max elements of the array |
1113 | | * will be filled. Return value is total number of array elements that would |
1114 | | * be filled if array was large enough. |
1115 | | */ |
1116 | | int BN_GF2m_poly2arr(const BIGNUM *a, int p[], int max) |
1117 | 0 | { |
1118 | 0 | int i, j, k = 0; |
1119 | 0 | BN_ULONG mask; |
1120 | 0 |
|
1121 | 0 | if (BN_is_zero(a)) |
1122 | 0 | return 0; |
1123 | 0 | |
1124 | 0 | for (i = a->top - 1; i >= 0; i--) { |
1125 | 0 | if (!a->d[i]) |
1126 | 0 | /* skip word if a->d[i] == 0 */ |
1127 | 0 | continue; |
1128 | 0 | mask = BN_TBIT; |
1129 | 0 | for (j = BN_BITS2 - 1; j >= 0; j--) { |
1130 | 0 | if (a->d[i] & mask) { |
1131 | 0 | if (k < max) |
1132 | 0 | p[k] = BN_BITS2 * i + j; |
1133 | 0 | k++; |
1134 | 0 | } |
1135 | 0 | mask >>= 1; |
1136 | 0 | } |
1137 | 0 | } |
1138 | 0 |
|
1139 | 0 | if (k < max) { |
1140 | 0 | p[k] = -1; |
1141 | 0 | k++; |
1142 | 0 | } |
1143 | 0 |
|
1144 | 0 | return k; |
1145 | 0 | } |
1146 | | |
1147 | | /* |
1148 | | * Convert the coefficient array representation of a polynomial to a |
1149 | | * bit-string. The array must be terminated by -1. |
1150 | | */ |
1151 | | int BN_GF2m_arr2poly(const int p[], BIGNUM *a) |
1152 | 0 | { |
1153 | 0 | int i; |
1154 | 0 |
|
1155 | 0 | bn_check_top(a); |
1156 | 0 | BN_zero(a); |
1157 | 0 | for (i = 0; p[i] != -1; i++) { |
1158 | 0 | if (BN_set_bit(a, p[i]) == 0) |
1159 | 0 | return 0; |
1160 | 0 | } |
1161 | 0 | bn_check_top(a); |
1162 | 0 |
|
1163 | 0 | return 1; |
1164 | 0 | } |
1165 | | |
1166 | | #endif |