Remove development artifacts.
[openssl.git] / crypto / ec / ec_mult.c
1 /*
2  * Copyright 2001-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 <string.h>
12 #include <openssl/err.h>
13
14 #include "internal/cryptlib.h"
15 #include "internal/bn_int.h"
16 #include "ec_lcl.h"
17 #include "internal/refcount.h"
18
19 /*
20  * This file implements the wNAF-based interleaving multi-exponentiation method
21  * Formerly at:
22  *   http://www.informatik.tu-darmstadt.de/TI/Mitarbeiter/moeller.html#multiexp
23  * You might now find it here:
24  *   http://link.springer.com/chapter/10.1007%2F3-540-45537-X_13
25  *   http://www.bmoeller.de/pdf/TI-01-08.multiexp.pdf
26  * For multiplication with precomputation, we use wNAF splitting, formerly at:
27  *   http://www.informatik.tu-darmstadt.de/TI/Mitarbeiter/moeller.html#fastexp
28  */
29
30 /* structure for precomputed multiples of the generator */
31 struct ec_pre_comp_st {
32     const EC_GROUP *group;      /* parent EC_GROUP object */
33     size_t blocksize;           /* block size for wNAF splitting */
34     size_t numblocks;           /* max. number of blocks for which we have
35                                  * precomputation */
36     size_t w;                   /* window size */
37     EC_POINT **points;          /* array with pre-calculated multiples of
38                                  * generator: 'num' pointers to EC_POINT
39                                  * objects followed by a NULL */
40     size_t num;                 /* numblocks * 2^(w-1) */
41     CRYPTO_REF_COUNT references;
42     CRYPTO_RWLOCK *lock;
43 };
44
45 static EC_PRE_COMP *ec_pre_comp_new(const EC_GROUP *group)
46 {
47     EC_PRE_COMP *ret = NULL;
48
49     if (!group)
50         return NULL;
51
52     ret = OPENSSL_zalloc(sizeof(*ret));
53     if (ret == NULL) {
54         ECerr(EC_F_EC_PRE_COMP_NEW, ERR_R_MALLOC_FAILURE);
55         return ret;
56     }
57
58     ret->group = group;
59     ret->blocksize = 8;         /* default */
60     ret->w = 4;                 /* default */
61     ret->references = 1;
62
63     ret->lock = CRYPTO_THREAD_lock_new();
64     if (ret->lock == NULL) {
65         ECerr(EC_F_EC_PRE_COMP_NEW, ERR_R_MALLOC_FAILURE);
66         OPENSSL_free(ret);
67         return NULL;
68     }
69     return ret;
70 }
71
72 EC_PRE_COMP *EC_ec_pre_comp_dup(EC_PRE_COMP *pre)
73 {
74     int i;
75     if (pre != NULL)
76         CRYPTO_UP_REF(&pre->references, &i, pre->lock);
77     return pre;
78 }
79
80 void EC_ec_pre_comp_free(EC_PRE_COMP *pre)
81 {
82     int i;
83
84     if (pre == NULL)
85         return;
86
87     CRYPTO_DOWN_REF(&pre->references, &i, pre->lock);
88     REF_PRINT_COUNT("EC_ec", pre);
89     if (i > 0)
90         return;
91     REF_ASSERT_ISNT(i < 0);
92
93     if (pre->points != NULL) {
94         EC_POINT **pts;
95
96         for (pts = pre->points; *pts != NULL; pts++)
97             EC_POINT_free(*pts);
98         OPENSSL_free(pre->points);
99     }
100     CRYPTO_THREAD_lock_free(pre->lock);
101     OPENSSL_free(pre);
102 }
103
104 #define EC_POINT_BN_set_flags(P, flags) do { \
105     BN_set_flags((P)->X, (flags)); \
106     BN_set_flags((P)->Y, (flags)); \
107     BN_set_flags((P)->Z, (flags)); \
108 } while(0)
109
110 /*-
111  * This functions computes (in constant time) a point multiplication over the
112  * EC group.
113  *
114  * At a high level, it is Montgomery ladder with conditional swaps.
115  *
116  * It performs either a fixed point multiplication
117  *          (scalar * generator)
118  * when point is NULL, or a variable point multiplication
119  *          (scalar * point)
120  * when point is not NULL.
121  *
122  * scalar should be in the range [0,n) otherwise all constant time bets are off.
123  *
124  * NB: This says nothing about EC_POINT_add and EC_POINT_dbl,
125  * which of course are not constant time themselves.
126  *
127  * The product is stored in r.
128  *
129  * Returns 1 on success, 0 otherwise.
130  */
131 static int ec_mul_consttime(const EC_GROUP *group, EC_POINT *r,
132                             const BIGNUM *scalar, const EC_POINT *point,
133                             BN_CTX *ctx)
134 {
135     int i, cardinality_bits, group_top, kbit, pbit, Z_is_one;
136     EC_POINT *s = NULL;
137     BIGNUM *k = NULL;
138     BIGNUM *lambda = NULL;
139     BIGNUM *cardinality = NULL;
140     BN_CTX *new_ctx = NULL;
141     int ret = 0;
142
143     if (ctx == NULL && (ctx = new_ctx = BN_CTX_secure_new()) == NULL)
144         return 0;
145
146     BN_CTX_start(ctx);
147
148     s = EC_POINT_new(group);
149     if (s == NULL)
150         goto err;
151
152     if (point == NULL) {
153         if (!EC_POINT_copy(s, group->generator))
154             goto err;
155     } else {
156         if (!EC_POINT_copy(s, point))
157             goto err;
158     }
159
160     EC_POINT_BN_set_flags(s, BN_FLG_CONSTTIME);
161
162     cardinality = BN_CTX_get(ctx);
163     lambda = BN_CTX_get(ctx);
164     k = BN_CTX_get(ctx);
165     if (k == NULL || !BN_mul(cardinality, group->order, group->cofactor, ctx))
166         goto err;
167
168     /*
169      * Group cardinalities are often on a word boundary.
170      * So when we pad the scalar, some timing diff might
171      * pop if it needs to be expanded due to carries.
172      * So expand ahead of time.
173      */
174     cardinality_bits = BN_num_bits(cardinality);
175     group_top = bn_get_top(cardinality);
176     if ((bn_wexpand(k, group_top + 1) == NULL)
177         || (bn_wexpand(lambda, group_top + 1) == NULL))
178         goto err;
179
180     if (!BN_copy(k, scalar))
181         goto err;
182
183     BN_set_flags(k, BN_FLG_CONSTTIME);
184
185     if ((BN_num_bits(k) > cardinality_bits) || (BN_is_negative(k))) {
186         /*-
187          * this is an unusual input, and we don't guarantee
188          * constant-timeness
189          */
190         if (!BN_nnmod(k, k, cardinality, ctx))
191             goto err;
192     }
193
194     if (!BN_add(lambda, k, cardinality))
195         goto err;
196     BN_set_flags(lambda, BN_FLG_CONSTTIME);
197     if (!BN_add(k, lambda, cardinality))
198         goto err;
199     /*
200      * lambda := scalar + cardinality
201      * k := scalar + 2*cardinality
202      */
203     kbit = BN_is_bit_set(lambda, cardinality_bits);
204     BN_consttime_swap(kbit, k, lambda, group_top + 1);
205
206     group_top = bn_get_top(group->field);
207     if ((bn_wexpand(s->X, group_top) == NULL)
208         || (bn_wexpand(s->Y, group_top) == NULL)
209         || (bn_wexpand(s->Z, group_top) == NULL)
210         || (bn_wexpand(r->X, group_top) == NULL)
211         || (bn_wexpand(r->Y, group_top) == NULL)
212         || (bn_wexpand(r->Z, group_top) == NULL))
213         goto err;
214
215     /*-
216      * Apply coordinate blinding for EC_POINT.
217      *
218      * The underlying EC_METHOD can optionally implement this function:
219      * ec_point_blind_coordinates() returns 0 in case of errors or 1 on
220      * success or if coordinate blinding is not implemented for this
221      * group.
222      */
223     if (!ec_point_blind_coordinates(group, s, ctx))
224         goto err;
225
226     /* top bit is a 1, in a fixed pos */
227     if (!EC_POINT_copy(r, s))
228         goto err;
229
230     EC_POINT_BN_set_flags(r, BN_FLG_CONSTTIME);
231
232     if (!EC_POINT_dbl(group, s, s, ctx))
233         goto err;
234
235     pbit = 0;
236
237 #define EC_POINT_CSWAP(c, a, b, w, t) do {         \
238         BN_consttime_swap(c, (a)->X, (b)->X, w);   \
239         BN_consttime_swap(c, (a)->Y, (b)->Y, w);   \
240         BN_consttime_swap(c, (a)->Z, (b)->Z, w);   \
241         t = ((a)->Z_is_one ^ (b)->Z_is_one) & (c); \
242         (a)->Z_is_one ^= (t);                      \
243         (b)->Z_is_one ^= (t);                      \
244 } while(0)
245
246     /*-
247      * The ladder step, with branches, is
248      *
249      * k[i] == 0: S = add(R, S), R = dbl(R)
250      * k[i] == 1: R = add(S, R), S = dbl(S)
251      *
252      * Swapping R, S conditionally on k[i] leaves you with state
253      *
254      * k[i] == 0: T, U = R, S
255      * k[i] == 1: T, U = S, R
256      *
257      * Then perform the ECC ops.
258      *
259      * U = add(T, U)
260      * T = dbl(T)
261      *
262      * Which leaves you with state
263      *
264      * k[i] == 0: U = add(R, S), T = dbl(R)
265      * k[i] == 1: U = add(S, R), T = dbl(S)
266      *
267      * Swapping T, U conditionally on k[i] leaves you with state
268      *
269      * k[i] == 0: R, S = T, U
270      * k[i] == 1: R, S = U, T
271      *
272      * Which leaves you with state
273      *
274      * k[i] == 0: S = add(R, S), R = dbl(R)
275      * k[i] == 1: R = add(S, R), S = dbl(S)
276      *
277      * So we get the same logic, but instead of a branch it's a
278      * conditional swap, followed by ECC ops, then another conditional swap.
279      *
280      * Optimization: The end of iteration i and start of i-1 looks like
281      *
282      * ...
283      * CSWAP(k[i], R, S)
284      * ECC
285      * CSWAP(k[i], R, S)
286      * (next iteration)
287      * CSWAP(k[i-1], R, S)
288      * ECC
289      * CSWAP(k[i-1], R, S)
290      * ...
291      *
292      * So instead of two contiguous swaps, you can merge the condition
293      * bits and do a single swap.
294      *
295      * k[i]   k[i-1]    Outcome
296      * 0      0         No Swap
297      * 0      1         Swap
298      * 1      0         Swap
299      * 1      1         No Swap
300      *
301      * This is XOR. pbit tracks the previous bit of k.
302      */
303
304     for (i = cardinality_bits - 1; i >= 0; i--) {
305         kbit = BN_is_bit_set(k, i) ^ pbit;
306         EC_POINT_CSWAP(kbit, r, s, group_top, Z_is_one);
307         if (!EC_POINT_add(group, s, r, s, ctx))
308             goto err;
309         if (!EC_POINT_dbl(group, r, r, ctx))
310             goto err;
311         /*
312          * pbit logic merges this cswap with that of the
313          * next iteration
314          */
315         pbit ^= kbit;
316     }
317     /* one final cswap to move the right value into r */
318     EC_POINT_CSWAP(pbit, r, s, group_top, Z_is_one);
319 #undef EC_POINT_CSWAP
320
321     ret = 1;
322
323  err:
324     EC_POINT_free(s);
325     BN_CTX_end(ctx);
326     BN_CTX_free(new_ctx);
327
328     return ret;
329 }
330
331 #undef EC_POINT_BN_set_flags
332
333 /*
334  * TODO: table should be optimised for the wNAF-based implementation,
335  * sometimes smaller windows will give better performance (thus the
336  * boundaries should be increased)
337  */
338 #define EC_window_bits_for_scalar_size(b) \
339                 ((size_t) \
340                  ((b) >= 2000 ? 6 : \
341                   (b) >=  800 ? 5 : \
342                   (b) >=  300 ? 4 : \
343                   (b) >=   70 ? 3 : \
344                   (b) >=   20 ? 2 : \
345                   1))
346
347 /*-
348  * Compute
349  *      \sum scalars[i]*points[i],
350  * also including
351  *      scalar*generator
352  * in the addition if scalar != NULL
353  */
354 int ec_wNAF_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
355                 size_t num, const EC_POINT *points[], const BIGNUM *scalars[],
356                 BN_CTX *ctx)
357 {
358     BN_CTX *new_ctx = NULL;
359     const EC_POINT *generator = NULL;
360     EC_POINT *tmp = NULL;
361     size_t totalnum;
362     size_t blocksize = 0, numblocks = 0; /* for wNAF splitting */
363     size_t pre_points_per_block = 0;
364     size_t i, j;
365     int k;
366     int r_is_inverted = 0;
367     int r_is_at_infinity = 1;
368     size_t *wsize = NULL;       /* individual window sizes */
369     signed char **wNAF = NULL;  /* individual wNAFs */
370     size_t *wNAF_len = NULL;
371     size_t max_len = 0;
372     size_t num_val;
373     EC_POINT **val = NULL;      /* precomputation */
374     EC_POINT **v;
375     EC_POINT ***val_sub = NULL; /* pointers to sub-arrays of 'val' or
376                                  * 'pre_comp->points' */
377     const EC_PRE_COMP *pre_comp = NULL;
378     int num_scalar = 0;         /* flag: will be set to 1 if 'scalar' must be
379                                  * treated like other scalars, i.e.
380                                  * precomputation is not available */
381     int ret = 0;
382
383     if (!ec_point_is_compat(r, group)) {
384         ECerr(EC_F_EC_WNAF_MUL, EC_R_INCOMPATIBLE_OBJECTS);
385         return 0;
386     }
387
388     if ((scalar == NULL) && (num == 0)) {
389         return EC_POINT_set_to_infinity(group, r);
390     }
391
392     /*-
393      * Handle the common cases where the scalar is secret, enforcing a constant
394      * time scalar multiplication algorithm.
395      */
396     if ((scalar != NULL) && (num == 0)) {
397         /*-
398          * In this case we want to compute scalar * GeneratorPoint: this
399          * codepath is reached most prominently by (ephemeral) key generation
400          * of EC cryptosystems (i.e. ECDSA keygen and sign setup, ECDH
401          * keygen/first half), where the scalar is always secret. This is why
402          * we ignore if BN_FLG_CONSTTIME is actually set and we always call the
403          * constant time version.
404          */
405         return ec_mul_consttime(group, r, scalar, NULL, ctx);
406     }
407     if ((scalar == NULL) && (num == 1)) {
408         /*-
409          * In this case we want to compute scalar * GenericPoint: this codepath
410          * is reached most prominently by the second half of ECDH, where the
411          * secret scalar is multiplied by the peer's public point. To protect
412          * the secret scalar, we ignore if BN_FLG_CONSTTIME is actually set and
413          * we always call the constant time version.
414          */
415         return ec_mul_consttime(group, r, scalars[0], points[0], ctx);
416     }
417
418     for (i = 0; i < num; i++) {
419         if (!ec_point_is_compat(points[i], group)) {
420             ECerr(EC_F_EC_WNAF_MUL, EC_R_INCOMPATIBLE_OBJECTS);
421             return 0;
422         }
423     }
424
425     if (ctx == NULL) {
426         ctx = new_ctx = BN_CTX_new();
427         if (ctx == NULL)
428             goto err;
429     }
430
431     if (scalar != NULL) {
432         generator = EC_GROUP_get0_generator(group);
433         if (generator == NULL) {
434             ECerr(EC_F_EC_WNAF_MUL, EC_R_UNDEFINED_GENERATOR);
435             goto err;
436         }
437
438         /* look if we can use precomputed multiples of generator */
439
440         pre_comp = group->pre_comp.ec;
441         if (pre_comp && pre_comp->numblocks
442             && (EC_POINT_cmp(group, generator, pre_comp->points[0], ctx) ==
443                 0)) {
444             blocksize = pre_comp->blocksize;
445
446             /*
447              * determine maximum number of blocks that wNAF splitting may
448              * yield (NB: maximum wNAF length is bit length plus one)
449              */
450             numblocks = (BN_num_bits(scalar) / blocksize) + 1;
451
452             /*
453              * we cannot use more blocks than we have precomputation for
454              */
455             if (numblocks > pre_comp->numblocks)
456                 numblocks = pre_comp->numblocks;
457
458             pre_points_per_block = (size_t)1 << (pre_comp->w - 1);
459
460             /* check that pre_comp looks sane */
461             if (pre_comp->num != (pre_comp->numblocks * pre_points_per_block)) {
462                 ECerr(EC_F_EC_WNAF_MUL, ERR_R_INTERNAL_ERROR);
463                 goto err;
464             }
465         } else {
466             /* can't use precomputation */
467             pre_comp = NULL;
468             numblocks = 1;
469             num_scalar = 1;     /* treat 'scalar' like 'num'-th element of
470                                  * 'scalars' */
471         }
472     }
473
474     totalnum = num + numblocks;
475
476     wsize = OPENSSL_malloc(totalnum * sizeof(wsize[0]));
477     wNAF_len = OPENSSL_malloc(totalnum * sizeof(wNAF_len[0]));
478     /* include space for pivot */
479     wNAF = OPENSSL_malloc((totalnum + 1) * sizeof(wNAF[0]));
480     val_sub = OPENSSL_malloc(totalnum * sizeof(val_sub[0]));
481
482     /* Ensure wNAF is initialised in case we end up going to err */
483     if (wNAF != NULL)
484         wNAF[0] = NULL;         /* preliminary pivot */
485
486     if (wsize == NULL || wNAF_len == NULL || wNAF == NULL || val_sub == NULL) {
487         ECerr(EC_F_EC_WNAF_MUL, ERR_R_MALLOC_FAILURE);
488         goto err;
489     }
490
491     /*
492      * num_val will be the total number of temporarily precomputed points
493      */
494     num_val = 0;
495
496     for (i = 0; i < num + num_scalar; i++) {
497         size_t bits;
498
499         bits = i < num ? BN_num_bits(scalars[i]) : BN_num_bits(scalar);
500         wsize[i] = EC_window_bits_for_scalar_size(bits);
501         num_val += (size_t)1 << (wsize[i] - 1);
502         wNAF[i + 1] = NULL;     /* make sure we always have a pivot */
503         wNAF[i] =
504             bn_compute_wNAF((i < num ? scalars[i] : scalar), wsize[i],
505                             &wNAF_len[i]);
506         if (wNAF[i] == NULL)
507             goto err;
508         if (wNAF_len[i] > max_len)
509             max_len = wNAF_len[i];
510     }
511
512     if (numblocks) {
513         /* we go here iff scalar != NULL */
514
515         if (pre_comp == NULL) {
516             if (num_scalar != 1) {
517                 ECerr(EC_F_EC_WNAF_MUL, ERR_R_INTERNAL_ERROR);
518                 goto err;
519             }
520             /* we have already generated a wNAF for 'scalar' */
521         } else {
522             signed char *tmp_wNAF = NULL;
523             size_t tmp_len = 0;
524
525             if (num_scalar != 0) {
526                 ECerr(EC_F_EC_WNAF_MUL, ERR_R_INTERNAL_ERROR);
527                 goto err;
528             }
529
530             /*
531              * use the window size for which we have precomputation
532              */
533             wsize[num] = pre_comp->w;
534             tmp_wNAF = bn_compute_wNAF(scalar, wsize[num], &tmp_len);
535             if (!tmp_wNAF)
536                 goto err;
537
538             if (tmp_len <= max_len) {
539                 /*
540                  * One of the other wNAFs is at least as long as the wNAF
541                  * belonging to the generator, so wNAF splitting will not buy
542                  * us anything.
543                  */
544
545                 numblocks = 1;
546                 totalnum = num + 1; /* don't use wNAF splitting */
547                 wNAF[num] = tmp_wNAF;
548                 wNAF[num + 1] = NULL;
549                 wNAF_len[num] = tmp_len;
550                 /*
551                  * pre_comp->points starts with the points that we need here:
552                  */
553                 val_sub[num] = pre_comp->points;
554             } else {
555                 /*
556                  * don't include tmp_wNAF directly into wNAF array - use wNAF
557                  * splitting and include the blocks
558                  */
559
560                 signed char *pp;
561                 EC_POINT **tmp_points;
562
563                 if (tmp_len < numblocks * blocksize) {
564                     /*
565                      * possibly we can do with fewer blocks than estimated
566                      */
567                     numblocks = (tmp_len + blocksize - 1) / blocksize;
568                     if (numblocks > pre_comp->numblocks) {
569                         ECerr(EC_F_EC_WNAF_MUL, ERR_R_INTERNAL_ERROR);
570                         OPENSSL_free(tmp_wNAF);
571                         goto err;
572                     }
573                     totalnum = num + numblocks;
574                 }
575
576                 /* split wNAF in 'numblocks' parts */
577                 pp = tmp_wNAF;
578                 tmp_points = pre_comp->points;
579
580                 for (i = num; i < totalnum; i++) {
581                     if (i < totalnum - 1) {
582                         wNAF_len[i] = blocksize;
583                         if (tmp_len < blocksize) {
584                             ECerr(EC_F_EC_WNAF_MUL, ERR_R_INTERNAL_ERROR);
585                             OPENSSL_free(tmp_wNAF);
586                             goto err;
587                         }
588                         tmp_len -= blocksize;
589                     } else
590                         /*
591                          * last block gets whatever is left (this could be
592                          * more or less than 'blocksize'!)
593                          */
594                         wNAF_len[i] = tmp_len;
595
596                     wNAF[i + 1] = NULL;
597                     wNAF[i] = OPENSSL_malloc(wNAF_len[i]);
598                     if (wNAF[i] == NULL) {
599                         ECerr(EC_F_EC_WNAF_MUL, ERR_R_MALLOC_FAILURE);
600                         OPENSSL_free(tmp_wNAF);
601                         goto err;
602                     }
603                     memcpy(wNAF[i], pp, wNAF_len[i]);
604                     if (wNAF_len[i] > max_len)
605                         max_len = wNAF_len[i];
606
607                     if (*tmp_points == NULL) {
608                         ECerr(EC_F_EC_WNAF_MUL, ERR_R_INTERNAL_ERROR);
609                         OPENSSL_free(tmp_wNAF);
610                         goto err;
611                     }
612                     val_sub[i] = tmp_points;
613                     tmp_points += pre_points_per_block;
614                     pp += blocksize;
615                 }
616                 OPENSSL_free(tmp_wNAF);
617             }
618         }
619     }
620
621     /*
622      * All points we precompute now go into a single array 'val'.
623      * 'val_sub[i]' is a pointer to the subarray for the i-th point, or to a
624      * subarray of 'pre_comp->points' if we already have precomputation.
625      */
626     val = OPENSSL_malloc((num_val + 1) * sizeof(val[0]));
627     if (val == NULL) {
628         ECerr(EC_F_EC_WNAF_MUL, ERR_R_MALLOC_FAILURE);
629         goto err;
630     }
631     val[num_val] = NULL;        /* pivot element */
632
633     /* allocate points for precomputation */
634     v = val;
635     for (i = 0; i < num + num_scalar; i++) {
636         val_sub[i] = v;
637         for (j = 0; j < ((size_t)1 << (wsize[i] - 1)); j++) {
638             *v = EC_POINT_new(group);
639             if (*v == NULL)
640                 goto err;
641             v++;
642         }
643     }
644     if (!(v == val + num_val)) {
645         ECerr(EC_F_EC_WNAF_MUL, ERR_R_INTERNAL_ERROR);
646         goto err;
647     }
648
649     if ((tmp = EC_POINT_new(group)) == NULL)
650         goto err;
651
652     /*-
653      * prepare precomputed values:
654      *    val_sub[i][0] :=     points[i]
655      *    val_sub[i][1] := 3 * points[i]
656      *    val_sub[i][2] := 5 * points[i]
657      *    ...
658      */
659     for (i = 0; i < num + num_scalar; i++) {
660         if (i < num) {
661             if (!EC_POINT_copy(val_sub[i][0], points[i]))
662                 goto err;
663         } else {
664             if (!EC_POINT_copy(val_sub[i][0], generator))
665                 goto err;
666         }
667
668         if (wsize[i] > 1) {
669             if (!EC_POINT_dbl(group, tmp, val_sub[i][0], ctx))
670                 goto err;
671             for (j = 1; j < ((size_t)1 << (wsize[i] - 1)); j++) {
672                 if (!EC_POINT_add
673                     (group, val_sub[i][j], val_sub[i][j - 1], tmp, ctx))
674                     goto err;
675             }
676         }
677     }
678
679     if (!EC_POINTs_make_affine(group, num_val, val, ctx))
680         goto err;
681
682     r_is_at_infinity = 1;
683
684     for (k = max_len - 1; k >= 0; k--) {
685         if (!r_is_at_infinity) {
686             if (!EC_POINT_dbl(group, r, r, ctx))
687                 goto err;
688         }
689
690         for (i = 0; i < totalnum; i++) {
691             if (wNAF_len[i] > (size_t)k) {
692                 int digit = wNAF[i][k];
693                 int is_neg;
694
695                 if (digit) {
696                     is_neg = digit < 0;
697
698                     if (is_neg)
699                         digit = -digit;
700
701                     if (is_neg != r_is_inverted) {
702                         if (!r_is_at_infinity) {
703                             if (!EC_POINT_invert(group, r, ctx))
704                                 goto err;
705                         }
706                         r_is_inverted = !r_is_inverted;
707                     }
708
709                     /* digit > 0 */
710
711                     if (r_is_at_infinity) {
712                         if (!EC_POINT_copy(r, val_sub[i][digit >> 1]))
713                             goto err;
714                         r_is_at_infinity = 0;
715                     } else {
716                         if (!EC_POINT_add
717                             (group, r, r, val_sub[i][digit >> 1], ctx))
718                             goto err;
719                     }
720                 }
721             }
722         }
723     }
724
725     if (r_is_at_infinity) {
726         if (!EC_POINT_set_to_infinity(group, r))
727             goto err;
728     } else {
729         if (r_is_inverted)
730             if (!EC_POINT_invert(group, r, ctx))
731                 goto err;
732     }
733
734     ret = 1;
735
736  err:
737     BN_CTX_free(new_ctx);
738     EC_POINT_free(tmp);
739     OPENSSL_free(wsize);
740     OPENSSL_free(wNAF_len);
741     if (wNAF != NULL) {
742         signed char **w;
743
744         for (w = wNAF; *w != NULL; w++)
745             OPENSSL_free(*w);
746
747         OPENSSL_free(wNAF);
748     }
749     if (val != NULL) {
750         for (v = val; *v != NULL; v++)
751             EC_POINT_clear_free(*v);
752
753         OPENSSL_free(val);
754     }
755     OPENSSL_free(val_sub);
756     return ret;
757 }
758
759 /*-
760  * ec_wNAF_precompute_mult()
761  * creates an EC_PRE_COMP object with preprecomputed multiples of the generator
762  * for use with wNAF splitting as implemented in ec_wNAF_mul().
763  *
764  * 'pre_comp->points' is an array of multiples of the generator
765  * of the following form:
766  * points[0] =     generator;
767  * points[1] = 3 * generator;
768  * ...
769  * points[2^(w-1)-1] =     (2^(w-1)-1) * generator;
770  * points[2^(w-1)]   =     2^blocksize * generator;
771  * points[2^(w-1)+1] = 3 * 2^blocksize * generator;
772  * ...
773  * points[2^(w-1)*(numblocks-1)-1] = (2^(w-1)) *  2^(blocksize*(numblocks-2)) * generator
774  * points[2^(w-1)*(numblocks-1)]   =              2^(blocksize*(numblocks-1)) * generator
775  * ...
776  * points[2^(w-1)*numblocks-1]     = (2^(w-1)) *  2^(blocksize*(numblocks-1)) * generator
777  * points[2^(w-1)*numblocks]       = NULL
778  */
779 int ec_wNAF_precompute_mult(EC_GROUP *group, BN_CTX *ctx)
780 {
781     const EC_POINT *generator;
782     EC_POINT *tmp_point = NULL, *base = NULL, **var;
783     BN_CTX *new_ctx = NULL;
784     const BIGNUM *order;
785     size_t i, bits, w, pre_points_per_block, blocksize, numblocks, num;
786     EC_POINT **points = NULL;
787     EC_PRE_COMP *pre_comp;
788     int ret = 0;
789
790     /* if there is an old EC_PRE_COMP object, throw it away */
791     EC_pre_comp_free(group);
792     if ((pre_comp = ec_pre_comp_new(group)) == NULL)
793         return 0;
794
795     generator = EC_GROUP_get0_generator(group);
796     if (generator == NULL) {
797         ECerr(EC_F_EC_WNAF_PRECOMPUTE_MULT, EC_R_UNDEFINED_GENERATOR);
798         goto err;
799     }
800
801     if (ctx == NULL) {
802         ctx = new_ctx = BN_CTX_new();
803         if (ctx == NULL)
804             goto err;
805     }
806
807     BN_CTX_start(ctx);
808
809     order = EC_GROUP_get0_order(group);
810     if (order == NULL)
811         goto err;
812     if (BN_is_zero(order)) {
813         ECerr(EC_F_EC_WNAF_PRECOMPUTE_MULT, EC_R_UNKNOWN_ORDER);
814         goto err;
815     }
816
817     bits = BN_num_bits(order);
818     /*
819      * The following parameters mean we precompute (approximately) one point
820      * per bit. TBD: The combination 8, 4 is perfect for 160 bits; for other
821      * bit lengths, other parameter combinations might provide better
822      * efficiency.
823      */
824     blocksize = 8;
825     w = 4;
826     if (EC_window_bits_for_scalar_size(bits) > w) {
827         /* let's not make the window too small ... */
828         w = EC_window_bits_for_scalar_size(bits);
829     }
830
831     numblocks = (bits + blocksize - 1) / blocksize; /* max. number of blocks
832                                                      * to use for wNAF
833                                                      * splitting */
834
835     pre_points_per_block = (size_t)1 << (w - 1);
836     num = pre_points_per_block * numblocks; /* number of points to compute
837                                              * and store */
838
839     points = OPENSSL_malloc(sizeof(*points) * (num + 1));
840     if (points == NULL) {
841         ECerr(EC_F_EC_WNAF_PRECOMPUTE_MULT, ERR_R_MALLOC_FAILURE);
842         goto err;
843     }
844
845     var = points;
846     var[num] = NULL;            /* pivot */
847     for (i = 0; i < num; i++) {
848         if ((var[i] = EC_POINT_new(group)) == NULL) {
849             ECerr(EC_F_EC_WNAF_PRECOMPUTE_MULT, ERR_R_MALLOC_FAILURE);
850             goto err;
851         }
852     }
853
854     if ((tmp_point = EC_POINT_new(group)) == NULL
855         || (base = EC_POINT_new(group)) == NULL) {
856         ECerr(EC_F_EC_WNAF_PRECOMPUTE_MULT, ERR_R_MALLOC_FAILURE);
857         goto err;
858     }
859
860     if (!EC_POINT_copy(base, generator))
861         goto err;
862
863     /* do the precomputation */
864     for (i = 0; i < numblocks; i++) {
865         size_t j;
866
867         if (!EC_POINT_dbl(group, tmp_point, base, ctx))
868             goto err;
869
870         if (!EC_POINT_copy(*var++, base))
871             goto err;
872
873         for (j = 1; j < pre_points_per_block; j++, var++) {
874             /*
875              * calculate odd multiples of the current base point
876              */
877             if (!EC_POINT_add(group, *var, tmp_point, *(var - 1), ctx))
878                 goto err;
879         }
880
881         if (i < numblocks - 1) {
882             /*
883              * get the next base (multiply current one by 2^blocksize)
884              */
885             size_t k;
886
887             if (blocksize <= 2) {
888                 ECerr(EC_F_EC_WNAF_PRECOMPUTE_MULT, ERR_R_INTERNAL_ERROR);
889                 goto err;
890             }
891
892             if (!EC_POINT_dbl(group, base, tmp_point, ctx))
893                 goto err;
894             for (k = 2; k < blocksize; k++) {
895                 if (!EC_POINT_dbl(group, base, base, ctx))
896                     goto err;
897             }
898         }
899     }
900
901     if (!EC_POINTs_make_affine(group, num, points, ctx))
902         goto err;
903
904     pre_comp->group = group;
905     pre_comp->blocksize = blocksize;
906     pre_comp->numblocks = numblocks;
907     pre_comp->w = w;
908     pre_comp->points = points;
909     points = NULL;
910     pre_comp->num = num;
911     SETPRECOMP(group, ec, pre_comp);
912     pre_comp = NULL;
913     ret = 1;
914
915  err:
916     if (ctx != NULL)
917         BN_CTX_end(ctx);
918     BN_CTX_free(new_ctx);
919     EC_ec_pre_comp_free(pre_comp);
920     if (points) {
921         EC_POINT **p;
922
923         for (p = points; *p != NULL; p++)
924             EC_POINT_free(*p);
925         OPENSSL_free(points);
926     }
927     EC_POINT_free(tmp_point);
928     EC_POINT_free(base);
929     return ret;
930 }
931
932 int ec_wNAF_have_precompute_mult(const EC_GROUP *group)
933 {
934     return HAVEPRECOMP(group, ec);
935 }