Coverage Report

Created: 2026-02-14 07:20

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl36/crypto/bn/bn_mul.c
Line
Count
Source
1
/*
2
 * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the Apache License 2.0 (the "License").  You may not use
5
 * this file except in compliance with the License.  You can obtain a copy
6
 * in the file LICENSE in the source distribution or at
7
 * https://www.openssl.org/source/license.html
8
 */
9
10
#include <assert.h>
11
#include "internal/cryptlib.h"
12
#include "bn_local.h"
13
14
#if defined(OPENSSL_NO_ASM) || !defined(OPENSSL_BN_ASM_PART_WORDS)
15
/*
16
 * Here follows specialised variants of bn_add_words() and bn_sub_words().
17
 * They have the property performing operations on arrays of different sizes.
18
 * The sizes of those arrays is expressed through cl, which is the common
19
 * length ( basically, min(len(a),len(b)) ), and dl, which is the delta
20
 * between the two lengths, calculated as len(a)-len(b). All lengths are the
21
 * number of BN_ULONGs...  For the operations that require a result array as
22
 * parameter, it must have the length cl+abs(dl). These functions should
23
 * probably end up in bn_asm.c as soon as there are assembler counterparts
24
 * for the systems that use assembler files.
25
 */
26
27
BN_ULONG bn_sub_part_words(BN_ULONG *r,
28
    const BN_ULONG *a, const BN_ULONG *b,
29
    int cl, int dl)
30
114M
{
31
114M
    BN_ULONG c, t;
32
33
114M
    assert(cl >= 0);
34
114M
    c = bn_sub_words(r, a, b, cl);
35
36
114M
    if (dl == 0)
37
110M
        return c;
38
39
3.66M
    r += cl;
40
3.66M
    a += cl;
41
3.66M
    b += cl;
42
43
3.66M
    if (dl < 0) {
44
820k
        for (;;) {
45
820k
            t = b[0];
46
820k
            r[0] = (0 - t - c) & BN_MASK2;
47
820k
            if (t != 0)
48
0
                c = 1;
49
820k
            if (++dl >= 0)
50
80.4k
                break;
51
52
739k
            t = b[1];
53
739k
            r[1] = (0 - t - c) & BN_MASK2;
54
739k
            if (t != 0)
55
0
                c = 1;
56
739k
            if (++dl >= 0)
57
33.3k
                break;
58
59
706k
            t = b[2];
60
706k
            r[2] = (0 - t - c) & BN_MASK2;
61
706k
            if (t != 0)
62
0
                c = 1;
63
706k
            if (++dl >= 0)
64
160k
                break;
65
66
546k
            t = b[3];
67
546k
            r[3] = (0 - t - c) & BN_MASK2;
68
546k
            if (t != 0)
69
0
                c = 1;
70
546k
            if (++dl >= 0)
71
25.8k
                break;
72
73
520k
            b += 4;
74
520k
            r += 4;
75
520k
        }
76
3.36M
    } else {
77
3.36M
        int save_dl = dl;
78
3.98M
        while (c) {
79
780k
            t = a[0];
80
780k
            r[0] = (t - c) & BN_MASK2;
81
780k
            if (t != 0)
82
338k
                c = 0;
83
780k
            if (--dl <= 0)
84
62.0k
                break;
85
86
718k
            t = a[1];
87
718k
            r[1] = (t - c) & BN_MASK2;
88
718k
            if (t != 0)
89
294k
                c = 0;
90
718k
            if (--dl <= 0)
91
17.5k
                break;
92
93
700k
            t = a[2];
94
700k
            r[2] = (t - c) & BN_MASK2;
95
700k
            if (t != 0)
96
325k
                c = 0;
97
700k
            if (--dl <= 0)
98
52.2k
                break;
99
100
648k
            t = a[3];
101
648k
            r[3] = (t - c) & BN_MASK2;
102
648k
            if (t != 0)
103
282k
                c = 0;
104
648k
            if (--dl <= 0)
105
27.6k
                break;
106
107
620k
            save_dl = dl;
108
620k
            a += 4;
109
620k
            r += 4;
110
620k
        }
111
3.36M
        if (dl > 0) {
112
3.20M
            if (save_dl > dl) {
113
0
                switch (save_dl - dl) {
114
0
                case 1:
115
0
                    r[1] = a[1];
116
0
                    if (--dl <= 0)
117
0
                        break;
118
                    /* fall through */
119
0
                case 2:
120
0
                    r[2] = a[2];
121
0
                    if (--dl <= 0)
122
0
                        break;
123
                    /* fall through */
124
0
                case 3:
125
0
                    r[3] = a[3];
126
0
                    if (--dl <= 0)
127
0
                        break;
128
0
                }
129
0
                a += 4;
130
0
                r += 4;
131
0
            }
132
3.20M
        }
133
3.36M
        if (dl > 0) {
134
21.4M
            for (;;) {
135
21.4M
                r[0] = a[0];
136
21.4M
                if (--dl <= 0)
137
557k
                    break;
138
20.8M
                r[1] = a[1];
139
20.8M
                if (--dl <= 0)
140
293k
                    break;
141
20.5M
                r[2] = a[2];
142
20.5M
                if (--dl <= 0)
143
1.54M
                    break;
144
19.0M
                r[3] = a[3];
145
19.0M
                if (--dl <= 0)
146
811k
                    break;
147
148
18.2M
                a += 4;
149
18.2M
                r += 4;
150
18.2M
            }
151
3.20M
        }
152
3.36M
    }
153
3.66M
    return c;
154
3.66M
}
155
#endif
156
157
#ifdef BN_RECURSION
158
/*
159
 * Karatsuba recursive multiplication algorithm (cf. Knuth, The Art of
160
 * Computer Programming, Vol. 2)
161
 */
162
163
/*-
164
 * r is 2*n2 words in size,
165
 * a and b are both n2 words in size.
166
 * n2 must be a power of 2.
167
 * We multiply and return the result.
168
 * t must be 2*n2 words in size
169
 * We calculate
170
 * a[0]*b[0]
171
 * a[0]*b[0]+a[1]*b[1]+(a[0]-a[1])*(b[1]-b[0])
172
 * a[1]*b[1]
173
 */
174
/* dnX may not be positive, but n2/2+dnX has to be */
175
void bn_mul_recursive(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n2,
176
    int dna, int dnb, BN_ULONG *t)
177
59.0M
{
178
59.0M
    int n = n2 / 2, c1, c2;
179
59.0M
    int tna = n + dna, tnb = n + dnb;
180
59.0M
    unsigned int neg, zero;
181
59.0M
    BN_ULONG ln, lo, *p;
182
183
59.0M
#ifdef BN_MUL_COMBA
184
#if 0
185
    if (n2 == 4) {
186
        bn_mul_comba4(r, a, b);
187
        return;
188
    }
189
#endif
190
    /*
191
     * Only call bn_mul_comba 8 if n2 == 8 and the two arrays are complete
192
     * [steve]
193
     */
194
59.0M
    if (n2 == 8 && dna == 0 && dnb == 0) {
195
122k
        bn_mul_comba8(r, a, b);
196
122k
        return;
197
122k
    }
198
58.8M
#endif /* BN_MUL_COMBA */
199
    /* Else do normal multiply */
200
58.8M
    if (n2 < BN_MUL_RECURSIVE_SIZE_NORMAL) {
201
64.4k
        bn_mul_normal(r, a, n2 + dna, b, n2 + dnb);
202
64.4k
        if ((dna + dnb) < 0)
203
64.4k
            memset(&r[2 * n2 + dna + dnb], 0,
204
64.4k
                sizeof(BN_ULONG) * -(dna + dnb));
205
64.4k
        return;
206
64.4k
    }
207
    /* r=(a[0]-a[1])*(b[1]-b[0]) */
208
58.8M
    c1 = bn_cmp_part_words(a, &(a[n]), tna, n - tna);
209
58.8M
    c2 = bn_cmp_part_words(&(b[n]), b, tnb, tnb - n);
210
58.8M
    zero = neg = 0;
211
58.8M
    switch (c1 * 3 + c2) {
212
11.6M
    case -4:
213
11.6M
        bn_sub_part_words(t, &(a[n]), a, tna, tna - n); /* - */
214
11.6M
        bn_sub_part_words(&(t[n]), b, &(b[n]), tnb, n - tnb); /* - */
215
11.6M
        break;
216
758k
    case -3:
217
758k
        zero = 1;
218
758k
        break;
219
12.3M
    case -2:
220
12.3M
        bn_sub_part_words(t, &(a[n]), a, tna, tna - n); /* - */
221
12.3M
        bn_sub_part_words(&(t[n]), &(b[n]), b, tnb, tnb - n); /* + */
222
12.3M
        neg = 1;
223
12.3M
        break;
224
173k
    case -1:
225
1.70M
    case 0:
226
1.86M
    case 1:
227
1.86M
        zero = 1;
228
1.86M
        break;
229
19.6M
    case 2:
230
19.6M
        bn_sub_part_words(t, a, &(a[n]), tna, n - tna); /* + */
231
19.6M
        bn_sub_part_words(&(t[n]), b, &(b[n]), tnb, n - tnb); /* - */
232
19.6M
        neg = 1;
233
19.6M
        break;
234
829k
    case 3:
235
829k
        zero = 1;
236
829k
        break;
237
11.7M
    case 4:
238
11.7M
        bn_sub_part_words(t, a, &(a[n]), tna, n - tna);
239
11.7M
        bn_sub_part_words(&(t[n]), &(b[n]), b, tnb, tnb - n);
240
11.7M
        break;
241
58.8M
    }
242
243
58.8M
#ifdef BN_MUL_COMBA
244
58.8M
    if (n == 4 && dna == 0 && dnb == 0) { /* XXX: bn_mul_comba4 could take
245
                                           * extra args to do this well */
246
0
        if (!zero)
247
0
            bn_mul_comba4(&(t[n2]), t, &(t[n]));
248
0
        else
249
0
            memset(&t[n2], 0, sizeof(*t) * 8);
250
251
0
        bn_mul_comba4(r, a, b);
252
0
        bn_mul_comba4(&(r[n2]), &(a[n]), &(b[n]));
253
58.8M
    } else if (n == 8 && dna == 0 && dnb == 0) { /* XXX: bn_mul_comba8 could
254
                                                  * take extra args to do
255
                                                  * this well */
256
40.1M
        if (!zero)
257
37.5M
            bn_mul_comba8(&(t[n2]), t, &(t[n]));
258
2.53M
        else
259
2.53M
            memset(&t[n2], 0, sizeof(*t) * 16);
260
261
40.1M
        bn_mul_comba8(r, a, b);
262
40.1M
        bn_mul_comba8(&(r[n2]), &(a[n]), &(b[n]));
263
40.1M
    } else
264
18.7M
#endif /* BN_MUL_COMBA */
265
18.7M
    {
266
18.7M
        p = &(t[n2 * 2]);
267
18.7M
        if (!zero)
268
17.7M
            bn_mul_recursive(&(t[n2]), t, &(t[n]), n, 0, 0, p);
269
922k
        else
270
922k
            memset(&t[n2], 0, sizeof(*t) * n2);
271
18.7M
        bn_mul_recursive(r, a, b, n, 0, 0, p);
272
18.7M
        bn_mul_recursive(&(r[n2]), &(a[n]), &(b[n]), n, dna, dnb, p);
273
18.7M
    }
274
275
    /*-
276
     * t[32] holds (a[0]-a[1])*(b[1]-b[0]), c1 is the sign
277
     * r[10] holds (a[0]*b[0])
278
     * r[32] holds (b[1]*b[1])
279
     */
280
281
58.8M
    c1 = (int)(bn_add_words(t, r, &(r[n2]), n2));
282
283
58.8M
    if (neg) { /* if t[32] is negative */
284
31.9M
        c1 -= (int)(bn_sub_words(&(t[n2]), t, &(t[n2]), n2));
285
31.9M
    } else {
286
        /* Might have a carry */
287
26.8M
        c1 += (int)(bn_add_words(&(t[n2]), &(t[n2]), t, n2));
288
26.8M
    }
289
290
    /*-
291
     * t[32] holds (a[0]-a[1])*(b[1]-b[0])+(a[0]*b[0])+(a[1]*b[1])
292
     * r[10] holds (a[0]*b[0])
293
     * r[32] holds (b[1]*b[1])
294
     * c1 holds the carry bits
295
     */
296
58.8M
    c1 += (int)(bn_add_words(&(r[n]), &(r[n]), &(t[n2]), n2));
297
58.8M
    if (c1) {
298
22.4M
        p = &(r[n + n2]);
299
22.4M
        lo = *p;
300
22.4M
        ln = (lo + c1) & BN_MASK2;
301
22.4M
        *p = ln;
302
303
        /*
304
         * The overflow will stop before we over write words we should not
305
         * overwrite
306
         */
307
22.4M
        if (ln < (BN_ULONG)c1) {
308
753k
            do {
309
753k
                p++;
310
753k
                lo = *p;
311
753k
                ln = (lo + 1) & BN_MASK2;
312
753k
                *p = ln;
313
753k
            } while (ln == 0);
314
155k
        }
315
22.4M
    }
316
58.8M
}
317
318
/*
319
 * n+tn is the word length t needs to be n*4 is size, as does r
320
 */
321
/* tnX may not be negative but less than n */
322
void bn_mul_part_recursive(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n,
323
    int tna, int tnb, BN_ULONG *t)
324
1.78M
{
325
1.78M
    int i, j, n2 = n * 2;
326
1.78M
    int c1, c2, neg;
327
1.78M
    BN_ULONG ln, lo, *p;
328
329
1.78M
    if (n < 8) {
330
0
        bn_mul_normal(r, a, n + tna, b, n + tnb);
331
0
        return;
332
0
    }
333
334
    /* r=(a[0]-a[1])*(b[1]-b[0]) */
335
1.78M
    c1 = bn_cmp_part_words(a, &(a[n]), tna, n - tna);
336
1.78M
    c2 = bn_cmp_part_words(&(b[n]), b, tnb, tnb - n);
337
1.78M
    neg = 0;
338
1.78M
    switch (c1 * 3 + c2) {
339
181k
    case -4:
340
181k
        bn_sub_part_words(t, &(a[n]), a, tna, tna - n); /* - */
341
181k
        bn_sub_part_words(&(t[n]), b, &(b[n]), tnb, n - tnb); /* - */
342
181k
        break;
343
7.67k
    case -3:
344
28.4k
    case -2:
345
28.4k
        bn_sub_part_words(t, &(a[n]), a, tna, tna - n); /* - */
346
28.4k
        bn_sub_part_words(&(t[n]), &(b[n]), b, tnb, tnb - n); /* + */
347
28.4k
        neg = 1;
348
28.4k
        break;
349
21.4k
    case -1:
350
25.5k
    case 0:
351
29.5k
    case 1:
352
1.52M
    case 2:
353
1.52M
        bn_sub_part_words(t, a, &(a[n]), tna, n - tna); /* + */
354
1.52M
        bn_sub_part_words(&(t[n]), b, &(b[n]), tnb, n - tnb); /* - */
355
1.52M
        neg = 1;
356
1.52M
        break;
357
21.8k
    case 3:
358
54.5k
    case 4:
359
54.5k
        bn_sub_part_words(t, a, &(a[n]), tna, n - tna);
360
54.5k
        bn_sub_part_words(&(t[n]), &(b[n]), b, tnb, tnb - n);
361
54.5k
        break;
362
1.78M
    }
363
    /*
364
     * The zero case isn't yet implemented here. The speedup would probably
365
     * be negligible.
366
     */
367
#if 0
368
    if (n == 4) {
369
        bn_mul_comba4(&(t[n2]), t, &(t[n]));
370
        bn_mul_comba4(r, a, b);
371
        bn_mul_normal(&(r[n2]), &(a[n]), tn, &(b[n]), tn);
372
        memset(&r[n2 + tn * 2], 0, sizeof(*r) * (n2 - tn * 2));
373
    } else
374
#endif
375
1.78M
    if (n == 8) {
376
177k
        bn_mul_comba8(&(t[n2]), t, &(t[n]));
377
177k
        bn_mul_comba8(r, a, b);
378
177k
        bn_mul_normal(&(r[n2]), &(a[n]), tna, &(b[n]), tnb);
379
177k
        memset(&r[n2 + tna + tnb], 0, sizeof(*r) * (n2 - tna - tnb));
380
1.60M
    } else {
381
1.60M
        p = &(t[n2 * 2]);
382
1.60M
        bn_mul_recursive(&(t[n2]), t, &(t[n]), n, 0, 0, p);
383
1.60M
        bn_mul_recursive(r, a, b, n, 0, 0, p);
384
1.60M
        i = n / 2;
385
        /*
386
         * If there is only a bottom half to the number, just do it
387
         */
388
1.60M
        if (tna > tnb)
389
115k
            j = tna - i;
390
1.49M
        else
391
1.49M
            j = tnb - i;
392
1.60M
        if (j == 0) {
393
34.9k
            bn_mul_recursive(&(r[n2]), &(a[n]), &(b[n]),
394
34.9k
                i, tna - i, tnb - i, p);
395
34.9k
            memset(&r[n2 + i * 2], 0, sizeof(*r) * (n2 - i * 2));
396
1.57M
        } else if (j > 0) { /* eg, n == 16, i == 8 and tn == 11 */
397
271k
            bn_mul_part_recursive(&(r[n2]), &(a[n]), &(b[n]),
398
271k
                i, tna - i, tnb - i, p);
399
271k
            memset(&(r[n2 + tna + tnb]), 0,
400
271k
                sizeof(BN_ULONG) * (n2 - tna - tnb));
401
1.30M
        } else { /* (j < 0) eg, n == 16, i == 8 and tn == 5 */
402
403
1.30M
            memset(&r[n2], 0, sizeof(*r) * n2);
404
1.30M
            if (tna < BN_MUL_RECURSIVE_SIZE_NORMAL
405
1.12M
                && tnb < BN_MUL_RECURSIVE_SIZE_NORMAL) {
406
1.11M
                bn_mul_normal(&(r[n2]), &(a[n]), tna, &(b[n]), tnb);
407
1.11M
            } else {
408
203k
                for (;;) {
409
203k
                    i /= 2;
410
                    /*
411
                     * these simplified conditions work exclusively because
412
                     * difference between tna and tnb is 1 or 0
413
                     */
414
203k
                    if (i < tna || i < tnb) {
415
54.2k
                        bn_mul_part_recursive(&(r[n2]),
416
54.2k
                            &(a[n]), &(b[n]),
417
54.2k
                            i, tna - i, tnb - i, p);
418
54.2k
                        break;
419
149k
                    } else if (i == tna || i == tnb) {
420
133k
                        bn_mul_recursive(&(r[n2]),
421
133k
                            &(a[n]), &(b[n]),
422
133k
                            i, tna - i, tnb - i, p);
423
133k
                        break;
424
133k
                    }
425
203k
                }
426
187k
            }
427
1.30M
        }
428
1.60M
    }
429
430
    /*-
431
     * t[32] holds (a[0]-a[1])*(b[1]-b[0]), c1 is the sign
432
     * r[10] holds (a[0]*b[0])
433
     * r[32] holds (b[1]*b[1])
434
     */
435
436
1.78M
    c1 = (int)(bn_add_words(t, r, &(r[n2]), n2));
437
438
1.78M
    if (neg) { /* if t[32] is negative */
439
1.54M
        c1 -= (int)(bn_sub_words(&(t[n2]), t, &(t[n2]), n2));
440
1.54M
    } else {
441
        /* Might have a carry */
442
236k
        c1 += (int)(bn_add_words(&(t[n2]), &(t[n2]), t, n2));
443
236k
    }
444
445
    /*-
446
     * t[32] holds (a[0]-a[1])*(b[1]-b[0])+(a[0]*b[0])+(a[1]*b[1])
447
     * r[10] holds (a[0]*b[0])
448
     * r[32] holds (b[1]*b[1])
449
     * c1 holds the carry bits
450
     */
451
1.78M
    c1 += (int)(bn_add_words(&(r[n]), &(r[n]), &(t[n2]), n2));
452
1.78M
    if (c1) {
453
20.2k
        p = &(r[n + n2]);
454
20.2k
        lo = *p;
455
20.2k
        ln = (lo + c1) & BN_MASK2;
456
20.2k
        *p = ln;
457
458
        /*
459
         * The overflow will stop before we over write words we should not
460
         * overwrite
461
         */
462
20.2k
        if (ln < (BN_ULONG)c1) {
463
50.0k
            do {
464
50.0k
                p++;
465
50.0k
                lo = *p;
466
50.0k
                ln = (lo + 1) & BN_MASK2;
467
50.0k
                *p = ln;
468
50.0k
            } while (ln == 0);
469
9.66k
        }
470
20.2k
    }
471
1.78M
}
472
473
/*-
474
 * a and b must be the same size, which is n2.
475
 * r needs to be n2 words and t needs to be n2*2
476
 */
477
void bn_mul_low_recursive(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n2,
478
    BN_ULONG *t)
479
0
{
480
0
    int n = n2 / 2;
481
482
0
    bn_mul_recursive(r, a, b, n, 0, 0, &(t[0]));
483
0
    if (n >= BN_MUL_LOW_RECURSIVE_SIZE_NORMAL) {
484
0
        bn_mul_low_recursive(&(t[0]), &(a[0]), &(b[n]), n, &(t[n2]));
485
0
        bn_add_words(&(r[n]), &(r[n]), &(t[0]), n);
486
0
        bn_mul_low_recursive(&(t[0]), &(a[n]), &(b[0]), n, &(t[n2]));
487
0
        bn_add_words(&(r[n]), &(r[n]), &(t[0]), n);
488
0
    } else {
489
0
        bn_mul_low_normal(&(t[0]), &(a[0]), &(b[n]), n);
490
0
        bn_mul_low_normal(&(t[n]), &(a[n]), &(b[0]), n);
491
0
        bn_add_words(&(r[n]), &(r[n]), &(t[0]), n);
492
0
        bn_add_words(&(r[n]), &(r[n]), &(t[n]), n);
493
0
    }
494
0
}
495
#endif /* BN_RECURSION */
496
497
int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
498
28.0M
{
499
28.0M
    int ret = bn_mul_fixed_top(r, a, b, ctx);
500
501
28.0M
    bn_correct_top(r);
502
28.0M
    bn_check_top(r);
503
504
28.0M
    return ret;
505
28.0M
}
506
507
int bn_mul_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
508
32.8M
{
509
32.8M
    int ret = 0;
510
32.8M
    int top, al, bl;
511
32.8M
    BIGNUM *rr;
512
32.8M
#if defined(BN_MUL_COMBA) || defined(BN_RECURSION)
513
32.8M
    int i;
514
32.8M
#endif
515
32.8M
#ifdef BN_RECURSION
516
32.8M
    BIGNUM *t = NULL;
517
32.8M
    int j = 0, k;
518
32.8M
#endif
519
520
32.8M
    bn_check_top(a);
521
32.8M
    bn_check_top(b);
522
32.8M
    bn_check_top(r);
523
524
32.8M
    al = a->top;
525
32.8M
    bl = b->top;
526
527
32.8M
    if ((al == 0) || (bl == 0)) {
528
1.44M
        BN_zero(r);
529
1.44M
        return 1;
530
1.44M
    }
531
31.4M
    top = al + bl;
532
533
31.4M
    BN_CTX_start(ctx);
534
31.4M
    if ((r == a) || (r == b)) {
535
171k
        if ((rr = BN_CTX_get(ctx)) == NULL)
536
0
            goto err;
537
171k
    } else
538
31.2M
        rr = r;
539
540
31.4M
#if defined(BN_MUL_COMBA) || defined(BN_RECURSION)
541
31.4M
    i = al - bl;
542
31.4M
#endif
543
31.4M
#ifdef BN_MUL_COMBA
544
31.4M
    if (i == 0) {
545
#if 0
546
        if (al == 4) {
547
            if (bn_wexpand(rr, 8) == NULL)
548
                goto err;
549
            rr->top = 8;
550
            bn_mul_comba4(rr->d, a->d, b->d);
551
            goto end;
552
        }
553
#endif
554
9.19M
        if (al == 8) {
555
25.9k
            if (bn_wexpand(rr, 16) == NULL)
556
0
                goto err;
557
25.9k
            rr->top = 16;
558
25.9k
            bn_mul_comba8(rr->d, a->d, b->d);
559
25.9k
            goto end;
560
25.9k
        }
561
9.19M
    }
562
31.4M
#endif /* BN_MUL_COMBA */
563
31.4M
#ifdef BN_RECURSION
564
31.4M
    if ((al >= BN_MULL_SIZE_NORMAL) && (bl >= BN_MULL_SIZE_NORMAL)) {
565
1.95M
        if (i >= -1 && i <= 1) {
566
            /*
567
             * Find out the power of two lower or equal to the longest of the
568
             * two numbers
569
             */
570
1.89M
            if (i >= 0) {
571
1.59M
                j = BN_num_bits_word((BN_ULONG)al);
572
1.59M
            }
573
1.89M
            if (i == -1) {
574
294k
                j = BN_num_bits_word((BN_ULONG)bl);
575
294k
            }
576
1.89M
            j = 1 << (j - 1);
577
1.89M
            assert(j <= al || j <= bl);
578
1.89M
            k = j + j;
579
1.89M
            t = BN_CTX_get(ctx);
580
1.89M
            if (t == NULL)
581
0
                goto err;
582
1.89M
            if (al > j || bl > j) {
583
1.45M
                if (bn_wexpand(t, k * 4) == NULL)
584
0
                    goto err;
585
1.45M
                if (bn_wexpand(rr, k * 4) == NULL)
586
0
                    goto err;
587
1.45M
                bn_mul_part_recursive(rr->d, a->d, b->d,
588
1.45M
                    j, al - j, bl - j, t->d);
589
1.45M
            } else { /* al <= j || bl <= j */
590
591
433k
                if (bn_wexpand(t, k * 2) == NULL)
592
0
                    goto err;
593
433k
                if (bn_wexpand(rr, k * 2) == NULL)
594
0
                    goto err;
595
433k
                bn_mul_recursive(rr->d, a->d, b->d, j, al - j, bl - j, t->d);
596
433k
            }
597
1.89M
            rr->top = top;
598
1.89M
            goto end;
599
1.89M
        }
600
1.95M
    }
601
29.5M
#endif /* BN_RECURSION */
602
29.5M
    if (bn_wexpand(rr, top) == NULL)
603
0
        goto err;
604
29.5M
    rr->top = top;
605
29.5M
    bn_mul_normal(rr->d, a->d, al, b->d, bl);
606
607
29.5M
#if defined(BN_MUL_COMBA) || defined(BN_RECURSION)
608
31.4M
end:
609
31.4M
#endif
610
31.4M
    rr->neg = a->neg ^ b->neg;
611
31.4M
    rr->flags |= BN_FLG_FIXED_TOP;
612
31.4M
    if (r != rr && BN_copy(r, rr) == NULL)
613
0
        goto err;
614
615
31.4M
    ret = 1;
616
31.4M
err:
617
31.4M
    bn_check_top(r);
618
31.4M
    BN_CTX_end(ctx);
619
31.4M
    return ret;
620
31.4M
}
621
622
void bn_mul_normal(BN_ULONG *r, BN_ULONG *a, int na, BN_ULONG *b, int nb)
623
30.8M
{
624
30.8M
    BN_ULONG *rr;
625
626
30.8M
    if (na < nb) {
627
21.1M
        int itmp;
628
21.1M
        BN_ULONG *ltmp;
629
630
21.1M
        itmp = na;
631
21.1M
        na = nb;
632
21.1M
        nb = itmp;
633
21.1M
        ltmp = a;
634
21.1M
        a = b;
635
21.1M
        b = ltmp;
636
21.1M
    }
637
30.8M
    rr = &(r[na]);
638
30.8M
    if (nb <= 0) {
639
286k
        (void)bn_mul_words(r, a, na, 0);
640
286k
        return;
641
286k
    } else
642
30.5M
        rr[0] = bn_mul_words(r, a, na, b[0]);
643
644
31.9M
    for (;;) {
645
31.9M
        if (--nb <= 0)
646
25.3M
            return;
647
6.63M
        rr[1] = bn_mul_add_words(&(r[1]), a, na, b[1]);
648
6.63M
        if (--nb <= 0)
649
679k
            return;
650
5.95M
        rr[2] = bn_mul_add_words(&(r[2]), a, na, b[2]);
651
5.95M
        if (--nb <= 0)
652
390k
            return;
653
5.56M
        rr[3] = bn_mul_add_words(&(r[3]), a, na, b[3]);
654
5.56M
        if (--nb <= 0)
655
4.18M
            return;
656
1.38M
        rr[4] = bn_mul_add_words(&(r[4]), a, na, b[4]);
657
1.38M
        rr += 4;
658
1.38M
        r += 4;
659
1.38M
        b += 4;
660
1.38M
    }
661
30.5M
}
662
663
void bn_mul_low_normal(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n)
664
0
{
665
0
    bn_mul_words(r, a, n, b[0]);
666
667
0
    for (;;) {
668
0
        if (--n <= 0)
669
0
            return;
670
0
        bn_mul_add_words(&(r[1]), a, n, b[1]);
671
0
        if (--n <= 0)
672
0
            return;
673
0
        bn_mul_add_words(&(r[2]), a, n, b[2]);
674
0
        if (--n <= 0)
675
0
            return;
676
0
        bn_mul_add_words(&(r[3]), a, n, b[3]);
677
0
        if (--n <= 0)
678
0
            return;
679
0
        bn_mul_add_words(&(r[4]), a, n, b[4]);
680
0
        r += 4;
681
0
        b += 4;
682
0
    }
683
0
}