Coverage Report

Created: 2025-06-13 06:58

/src/openssl32/crypto/ec/ec_lib.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 2001-2025 The OpenSSL Project Authors. All Rights Reserved.
3
 * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
4
 *
5
 * Licensed under the Apache License 2.0 (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
/*
12
 * EC_GROUP low level APIs are deprecated for public use, but still ok for
13
 * internal use.
14
 */
15
#include "internal/deprecated.h"
16
17
#include <string.h>
18
#include <openssl/params.h>
19
#include <openssl/core_names.h>
20
#include <openssl/err.h>
21
#include <openssl/opensslv.h>
22
#include <openssl/param_build.h>
23
#include "crypto/ec.h"
24
#include "crypto/bn.h"
25
#include "internal/nelem.h"
26
#include "ec_local.h"
27
28
/* functions for EC_GROUP objects */
29
30
EC_GROUP *ossl_ec_group_new_ex(OSSL_LIB_CTX *libctx, const char *propq,
31
                               const EC_METHOD *meth)
32
938k
{
33
938k
    EC_GROUP *ret;
34
35
938k
    if (meth == NULL) {
36
0
        ERR_raise(ERR_LIB_EC, EC_R_SLOT_FULL);
37
0
        return NULL;
38
0
    }
39
938k
    if (meth->group_init == 0) {
40
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
41
0
        return NULL;
42
0
    }
43
44
938k
    ret = OPENSSL_zalloc(sizeof(*ret));
45
938k
    if (ret == NULL)
46
0
        return NULL;
47
48
938k
    ret->libctx = libctx;
49
938k
    if (propq != NULL) {
50
343
        ret->propq = OPENSSL_strdup(propq);
51
343
        if (ret->propq == NULL)
52
0
            goto err;
53
343
    }
54
938k
    ret->meth = meth;
55
938k
    if ((ret->meth->flags & EC_FLAGS_CUSTOM_CURVE) == 0) {
56
938k
        ret->order = BN_new();
57
938k
        if (ret->order == NULL)
58
0
            goto err;
59
938k
        ret->cofactor = BN_new();
60
938k
        if (ret->cofactor == NULL)
61
0
            goto err;
62
938k
    }
63
938k
    ret->asn1_flag = OPENSSL_EC_EXPLICIT_CURVE;
64
938k
    ret->asn1_form = POINT_CONVERSION_UNCOMPRESSED;
65
938k
    if (!meth->group_init(ret))
66
0
        goto err;
67
938k
    return ret;
68
69
0
 err:
70
0
    BN_free(ret->order);
71
0
    BN_free(ret->cofactor);
72
0
    OPENSSL_free(ret->propq);
73
0
    OPENSSL_free(ret);
74
0
    return NULL;
75
938k
}
76
77
#ifndef OPENSSL_NO_DEPRECATED_3_0
78
# ifndef FIPS_MODULE
79
EC_GROUP *EC_GROUP_new(const EC_METHOD *meth)
80
0
{
81
0
    return ossl_ec_group_new_ex(NULL, NULL, meth);
82
0
}
83
# endif
84
#endif
85
86
void EC_pre_comp_free(EC_GROUP *group)
87
491k
{
88
491k
    switch (group->pre_comp_type) {
89
491k
    case PCT_none:
90
491k
        break;
91
0
    case PCT_nistz256:
92
0
#ifdef ECP_NISTZ256_ASM
93
0
        EC_nistz256_pre_comp_free(group->pre_comp.nistz256);
94
0
#endif
95
0
        break;
96
0
#ifndef OPENSSL_NO_EC_NISTP_64_GCC_128
97
0
    case PCT_nistp224:
98
0
        EC_nistp224_pre_comp_free(group->pre_comp.nistp224);
99
0
        break;
100
0
    case PCT_nistp256:
101
0
        EC_nistp256_pre_comp_free(group->pre_comp.nistp256);
102
0
        break;
103
0
    case PCT_nistp384:
104
0
        ossl_ec_nistp384_pre_comp_free(group->pre_comp.nistp384);
105
0
        break;
106
0
    case PCT_nistp521:
107
0
        EC_nistp521_pre_comp_free(group->pre_comp.nistp521);
108
0
        break;
109
#else
110
    case PCT_nistp224:
111
    case PCT_nistp256:
112
    case PCT_nistp384:
113
    case PCT_nistp521:
114
        break;
115
#endif
116
0
    case PCT_ec:
117
0
        EC_ec_pre_comp_free(group->pre_comp.ec);
118
0
        break;
119
491k
    }
120
491k
    group->pre_comp.ec = NULL;
121
491k
}
122
123
void EC_GROUP_free(EC_GROUP *group)
124
1.68M
{
125
1.68M
    if (!group)
126
745k
        return;
127
128
938k
    if (group->meth->group_finish != 0)
129
938k
        group->meth->group_finish(group);
130
131
938k
    EC_pre_comp_free(group);
132
938k
    BN_MONT_CTX_free(group->mont_data);
133
938k
    EC_POINT_free(group->generator);
134
938k
    BN_free(group->order);
135
938k
    BN_free(group->cofactor);
136
938k
    OPENSSL_free(group->seed);
137
938k
    OPENSSL_free(group->propq);
138
938k
    OPENSSL_free(group);
139
938k
}
140
141
#ifndef OPENSSL_NO_DEPRECATED_3_0
142
void EC_GROUP_clear_free(EC_GROUP *group)
143
0
{
144
0
    if (!group)
145
0
        return;
146
147
0
    if (group->meth->group_clear_finish != 0)
148
0
        group->meth->group_clear_finish(group);
149
0
    else if (group->meth->group_finish != 0)
150
0
        group->meth->group_finish(group);
151
152
0
    EC_pre_comp_free(group);
153
0
    BN_MONT_CTX_free(group->mont_data);
154
0
    EC_POINT_clear_free(group->generator);
155
0
    BN_clear_free(group->order);
156
0
    BN_clear_free(group->cofactor);
157
0
    OPENSSL_clear_free(group->seed, group->seed_len);
158
0
    OPENSSL_clear_free(group, sizeof(*group));
159
0
}
160
#endif
161
162
int EC_GROUP_copy(EC_GROUP *dest, const EC_GROUP *src)
163
233k
{
164
233k
    if (dest->meth->group_copy == 0) {
165
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
166
0
        return 0;
167
0
    }
168
233k
    if (dest->meth != src->meth) {
169
0
        ERR_raise(ERR_LIB_EC, EC_R_INCOMPATIBLE_OBJECTS);
170
0
        return 0;
171
0
    }
172
233k
    if (dest == src)
173
0
        return 1;
174
175
233k
    dest->libctx = src->libctx;
176
233k
    dest->curve_name = src->curve_name;
177
178
    /* Copy precomputed */
179
233k
    dest->pre_comp_type = src->pre_comp_type;
180
233k
    switch (src->pre_comp_type) {
181
233k
    case PCT_none:
182
233k
        dest->pre_comp.ec = NULL;
183
233k
        break;
184
0
    case PCT_nistz256:
185
0
#ifdef ECP_NISTZ256_ASM
186
0
        dest->pre_comp.nistz256 = EC_nistz256_pre_comp_dup(src->pre_comp.nistz256);
187
0
#endif
188
0
        break;
189
0
#ifndef OPENSSL_NO_EC_NISTP_64_GCC_128
190
0
    case PCT_nistp224:
191
0
        dest->pre_comp.nistp224 = EC_nistp224_pre_comp_dup(src->pre_comp.nistp224);
192
0
        break;
193
0
    case PCT_nistp256:
194
0
        dest->pre_comp.nistp256 = EC_nistp256_pre_comp_dup(src->pre_comp.nistp256);
195
0
        break;
196
0
    case PCT_nistp384:
197
0
        dest->pre_comp.nistp384 = ossl_ec_nistp384_pre_comp_dup(src->pre_comp.nistp384);
198
0
        break;
199
0
    case PCT_nistp521:
200
0
        dest->pre_comp.nistp521 = EC_nistp521_pre_comp_dup(src->pre_comp.nistp521);
201
0
        break;
202
#else
203
    case PCT_nistp224:
204
    case PCT_nistp256:
205
    case PCT_nistp384:
206
    case PCT_nistp521:
207
        break;
208
#endif
209
0
    case PCT_ec:
210
0
        dest->pre_comp.ec = EC_ec_pre_comp_dup(src->pre_comp.ec);
211
0
        break;
212
233k
    }
213
214
233k
    if (src->mont_data != NULL) {
215
229k
        if (dest->mont_data == NULL) {
216
229k
            dest->mont_data = BN_MONT_CTX_new();
217
229k
            if (dest->mont_data == NULL)
218
0
                return 0;
219
229k
        }
220
229k
        if (!BN_MONT_CTX_copy(dest->mont_data, src->mont_data))
221
0
            return 0;
222
229k
    } else {
223
        /* src->generator == NULL */
224
4.47k
        BN_MONT_CTX_free(dest->mont_data);
225
4.47k
        dest->mont_data = NULL;
226
4.47k
    }
227
228
233k
    if (src->generator != NULL) {
229
233k
        if (dest->generator == NULL) {
230
233k
            dest->generator = EC_POINT_new(dest);
231
233k
            if (dest->generator == NULL)
232
0
                return 0;
233
233k
        }
234
233k
        if (!EC_POINT_copy(dest->generator, src->generator))
235
0
            return 0;
236
233k
    } else {
237
        /* src->generator == NULL */
238
0
        EC_POINT_clear_free(dest->generator);
239
0
        dest->generator = NULL;
240
0
    }
241
242
233k
    if ((src->meth->flags & EC_FLAGS_CUSTOM_CURVE) == 0) {
243
233k
        if (!BN_copy(dest->order, src->order))
244
0
            return 0;
245
233k
        if (!BN_copy(dest->cofactor, src->cofactor))
246
0
            return 0;
247
233k
    }
248
249
233k
    dest->asn1_flag = src->asn1_flag;
250
233k
    dest->asn1_form = src->asn1_form;
251
233k
    dest->decoded_from_explicit_params = src->decoded_from_explicit_params;
252
253
233k
    if (src->seed) {
254
165k
        OPENSSL_free(dest->seed);
255
165k
        if ((dest->seed = OPENSSL_malloc(src->seed_len)) == NULL)
256
0
            return 0;
257
165k
        if (!memcpy(dest->seed, src->seed, src->seed_len))
258
0
            return 0;
259
165k
        dest->seed_len = src->seed_len;
260
165k
    } else {
261
68.1k
        OPENSSL_free(dest->seed);
262
68.1k
        dest->seed = NULL;
263
68.1k
        dest->seed_len = 0;
264
68.1k
    }
265
266
233k
    return dest->meth->group_copy(dest, src);
267
233k
}
268
269
EC_GROUP *EC_GROUP_dup(const EC_GROUP *a)
270
443k
{
271
443k
    EC_GROUP *t = NULL;
272
443k
    int ok = 0;
273
274
443k
    if (a == NULL)
275
0
        return NULL;
276
277
443k
    if ((t = ossl_ec_group_new_ex(a->libctx, a->propq, a->meth)) == NULL)
278
0
        return NULL;
279
443k
    if (!EC_GROUP_copy(t, a))
280
0
        goto err;
281
282
443k
    ok = 1;
283
284
443k
 err:
285
443k
    if (!ok) {
286
0
        EC_GROUP_free(t);
287
0
        return NULL;
288
0
    }
289
443k
        return t;
290
443k
}
291
292
#ifndef OPENSSL_NO_DEPRECATED_3_0
293
const EC_METHOD *EC_GROUP_method_of(const EC_GROUP *group)
294
0
{
295
0
    return group->meth;
296
0
}
297
298
int EC_METHOD_get_field_type(const EC_METHOD *meth)
299
0
{
300
0
    return meth->field_type;
301
0
}
302
#endif
303
304
static int ec_precompute_mont_data(EC_GROUP *);
305
306
/*-
307
 * Try computing cofactor from the generator order (n) and field cardinality (q).
308
 * This works for all curves of cryptographic interest.
309
 *
310
 * Hasse thm: q + 1 - 2*sqrt(q) <= n*h <= q + 1 + 2*sqrt(q)
311
 * h_min = (q + 1 - 2*sqrt(q))/n
312
 * h_max = (q + 1 + 2*sqrt(q))/n
313
 * h_max - h_min = 4*sqrt(q)/n
314
 * So if n > 4*sqrt(q) holds, there is only one possible value for h:
315
 * h = \lfloor (h_min + h_max)/2 \rceil = \lfloor (q + 1)/n \rceil
316
 *
317
 * Otherwise, zero cofactor and return success.
318
 */
319
22.6k
static int ec_guess_cofactor(EC_GROUP *group) {
320
22.6k
    int ret = 0;
321
22.6k
    BN_CTX *ctx = NULL;
322
22.6k
    BIGNUM *q = NULL;
323
324
    /*-
325
     * If the cofactor is too large, we cannot guess it.
326
     * The RHS of below is a strict overestimate of lg(4 * sqrt(q))
327
     */
328
22.6k
    if (BN_num_bits(group->order) <= (BN_num_bits(group->field) + 1) / 2 + 3) {
329
        /* default to 0 */
330
5.06k
        BN_zero(group->cofactor);
331
        /* return success */
332
5.06k
        return 1;
333
5.06k
    }
334
335
17.5k
    if ((ctx = BN_CTX_new_ex(group->libctx)) == NULL)
336
0
        return 0;
337
338
17.5k
    BN_CTX_start(ctx);
339
17.5k
    if ((q = BN_CTX_get(ctx)) == NULL)
340
0
        goto err;
341
342
    /* set q = 2**m for binary fields; q = p otherwise */
343
17.5k
    if (group->meth->field_type == NID_X9_62_characteristic_two_field) {
344
0
        BN_zero(q);
345
0
        if (!BN_set_bit(q, BN_num_bits(group->field) - 1))
346
0
            goto err;
347
17.5k
    } else {
348
17.5k
        if (!BN_copy(q, group->field))
349
0
            goto err;
350
17.5k
    }
351
352
    /* compute h = \lfloor (q + 1)/n \rceil = \lfloor (q + 1 + n/2)/n \rfloor */
353
17.5k
    if (!BN_rshift1(group->cofactor, group->order) /* n/2 */
354
17.5k
        || !BN_add(group->cofactor, group->cofactor, q) /* q + n/2 */
355
        /* q + 1 + n/2 */
356
17.5k
        || !BN_add(group->cofactor, group->cofactor, BN_value_one())
357
        /* (q + 1 + n/2)/n */
358
17.5k
        || !BN_div(group->cofactor, NULL, group->cofactor, group->order, ctx))
359
0
        goto err;
360
17.5k
    ret = 1;
361
17.5k
 err:
362
17.5k
    BN_CTX_end(ctx);
363
17.5k
    BN_CTX_free(ctx);
364
17.5k
    return ret;
365
17.5k
}
366
367
int EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator,
368
                           const BIGNUM *order, const BIGNUM *cofactor)
369
454k
{
370
454k
    if (generator == NULL) {
371
0
        ERR_raise(ERR_LIB_EC, ERR_R_PASSED_NULL_PARAMETER);
372
0
        return 0;
373
0
    }
374
375
    /* require group->field >= 1 */
376
454k
    if (group->field == NULL || BN_is_zero(group->field)
377
454k
        || BN_is_negative(group->field)) {
378
0
        ERR_raise(ERR_LIB_EC, EC_R_INVALID_FIELD);
379
0
        return 0;
380
0
    }
381
382
    /*-
383
     * - require order >= 1
384
     * - enforce upper bound due to Hasse thm: order can be no more than one bit
385
     *   longer than field cardinality
386
     */
387
454k
    if (order == NULL || BN_is_zero(order) || BN_is_negative(order)
388
454k
        || BN_num_bits(order) > BN_num_bits(group->field) + 1) {
389
0
        ERR_raise(ERR_LIB_EC, EC_R_INVALID_GROUP_ORDER);
390
0
        return 0;
391
0
    }
392
393
    /*-
394
     * Unfortunately the cofactor is an optional field in many standards.
395
     * Internally, the lib uses 0 cofactor as a marker for "unknown cofactor".
396
     * So accept cofactor == NULL or cofactor >= 0.
397
     */
398
454k
    if (cofactor != NULL && BN_is_negative(cofactor)) {
399
220
        ERR_raise(ERR_LIB_EC, EC_R_UNKNOWN_COFACTOR);
400
220
        return 0;
401
220
    }
402
403
454k
    if (group->generator == NULL) {
404
436k
        group->generator = EC_POINT_new(group);
405
436k
        if (group->generator == NULL)
406
0
            return 0;
407
436k
    }
408
454k
    if (!EC_POINT_copy(group->generator, generator))
409
0
        return 0;
410
411
454k
    if (!BN_copy(group->order, order))
412
0
        return 0;
413
414
    /* Either take the provided positive cofactor, or try to compute it */
415
454k
    if (cofactor != NULL && !BN_is_zero(cofactor)) {
416
431k
        if (!BN_copy(group->cofactor, cofactor))
417
0
            return 0;
418
431k
    } else if (!ec_guess_cofactor(group)) {
419
0
        BN_zero(group->cofactor);
420
0
        return 0;
421
0
    }
422
423
    /*
424
     * Some groups have an order with
425
     * factors of two, which makes the Montgomery setup fail.
426
     * |group->mont_data| will be NULL in this case.
427
     */
428
454k
    if (BN_is_odd(group->order)) {
429
426k
        return ec_precompute_mont_data(group);
430
426k
    }
431
432
27.5k
    BN_MONT_CTX_free(group->mont_data);
433
27.5k
    group->mont_data = NULL;
434
27.5k
    return 1;
435
454k
}
436
437
const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group)
438
136k
{
439
136k
    return group->generator;
440
136k
}
441
442
BN_MONT_CTX *EC_GROUP_get_mont_data(const EC_GROUP *group)
443
0
{
444
0
    return group->mont_data;
445
0
}
446
447
int EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx)
448
17.0k
{
449
17.0k
    if (group->order == NULL)
450
0
        return 0;
451
17.0k
    if (!BN_copy(order, group->order))
452
0
        return 0;
453
454
17.0k
    return !BN_is_zero(order);
455
17.0k
}
456
457
const BIGNUM *EC_GROUP_get0_order(const EC_GROUP *group)
458
496k
{
459
496k
    return group->order;
460
496k
}
461
462
int EC_GROUP_order_bits(const EC_GROUP *group)
463
659k
{
464
659k
    return group->meth->group_order_bits(group);
465
659k
}
466
467
int EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor,
468
                          BN_CTX *ctx)
469
0
{
470
471
0
    if (group->cofactor == NULL)
472
0
        return 0;
473
0
    if (!BN_copy(cofactor, group->cofactor))
474
0
        return 0;
475
476
0
    return !BN_is_zero(group->cofactor);
477
0
}
478
479
const BIGNUM *EC_GROUP_get0_cofactor(const EC_GROUP *group)
480
189k
{
481
189k
    return group->cofactor;
482
189k
}
483
484
void EC_GROUP_set_curve_name(EC_GROUP *group, int nid)
485
461k
{
486
461k
    group->curve_name = nid;
487
461k
    group->asn1_flag =
488
461k
        (nid != NID_undef)
489
461k
        ? OPENSSL_EC_NAMED_CURVE
490
461k
        : OPENSSL_EC_EXPLICIT_CURVE;
491
461k
}
492
493
int EC_GROUP_get_curve_name(const EC_GROUP *group)
494
1.64M
{
495
1.64M
    return group->curve_name;
496
1.64M
}
497
498
const BIGNUM *EC_GROUP_get0_field(const EC_GROUP *group)
499
0
{
500
0
    return group->field;
501
0
}
502
503
int EC_GROUP_get_field_type(const EC_GROUP *group)
504
950k
{
505
950k
    return group->meth->field_type;
506
950k
}
507
508
void EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag)
509
473k
{
510
473k
    group->asn1_flag = flag;
511
473k
}
512
513
int EC_GROUP_get_asn1_flag(const EC_GROUP *group)
514
786k
{
515
786k
    return group->asn1_flag;
516
786k
}
517
518
void EC_GROUP_set_point_conversion_form(EC_GROUP *group,
519
                                        point_conversion_form_t form)
520
127k
{
521
127k
    group->asn1_form = form;
522
127k
}
523
524
point_conversion_form_t EC_GROUP_get_point_conversion_form(const EC_GROUP
525
                                                           *group)
526
353k
{
527
353k
    return group->asn1_form;
528
353k
}
529
530
size_t EC_GROUP_set_seed(EC_GROUP *group, const unsigned char *p, size_t len)
531
336k
{
532
336k
    OPENSSL_free(group->seed);
533
336k
    group->seed = NULL;
534
336k
    group->seed_len = 0;
535
536
336k
    if (!len || !p)
537
17.4k
        return 1;
538
539
318k
    if ((group->seed = OPENSSL_malloc(len)) == NULL)
540
0
        return 0;
541
318k
    memcpy(group->seed, p, len);
542
318k
    group->seed_len = len;
543
544
318k
    return len;
545
318k
}
546
547
unsigned char *EC_GROUP_get0_seed(const EC_GROUP *group)
548
18.8k
{
549
18.8k
    return group->seed;
550
18.8k
}
551
552
size_t EC_GROUP_get_seed_len(const EC_GROUP *group)
553
18.0k
{
554
18.0k
    return group->seed_len;
555
18.0k
}
556
557
int EC_GROUP_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a,
558
                       const BIGNUM *b, BN_CTX *ctx)
559
321k
{
560
321k
    if (group->meth->group_set_curve == 0) {
561
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
562
0
        return 0;
563
0
    }
564
321k
    return group->meth->group_set_curve(group, p, a, b, ctx);
565
321k
}
566
567
int EC_GROUP_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b,
568
                       BN_CTX *ctx)
569
20.7k
{
570
20.7k
    if (group->meth->group_get_curve == NULL) {
571
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
572
0
        return 0;
573
0
    }
574
20.7k
    return group->meth->group_get_curve(group, p, a, b, ctx);
575
20.7k
}
576
577
#ifndef OPENSSL_NO_DEPRECATED_3_0
578
int EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a,
579
                           const BIGNUM *b, BN_CTX *ctx)
580
0
{
581
0
    return EC_GROUP_set_curve(group, p, a, b, ctx);
582
0
}
583
584
int EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a,
585
                           BIGNUM *b, BN_CTX *ctx)
586
0
{
587
0
    return EC_GROUP_get_curve(group, p, a, b, ctx);
588
0
}
589
590
# ifndef OPENSSL_NO_EC2M
591
int EC_GROUP_set_curve_GF2m(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a,
592
                            const BIGNUM *b, BN_CTX *ctx)
593
0
{
594
0
    return EC_GROUP_set_curve(group, p, a, b, ctx);
595
0
}
596
597
int EC_GROUP_get_curve_GF2m(const EC_GROUP *group, BIGNUM *p, BIGNUM *a,
598
                            BIGNUM *b, BN_CTX *ctx)
599
0
{
600
0
    return EC_GROUP_get_curve(group, p, a, b, ctx);
601
0
}
602
# endif
603
#endif
604
605
int EC_GROUP_get_degree(const EC_GROUP *group)
606
260k
{
607
260k
    if (group->meth->group_get_degree == 0) {
608
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
609
0
        return 0;
610
0
    }
611
260k
    return group->meth->group_get_degree(group);
612
260k
}
613
614
int EC_GROUP_check_discriminant(const EC_GROUP *group, BN_CTX *ctx)
615
1.76k
{
616
1.76k
    if (group->meth->group_check_discriminant == 0) {
617
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
618
0
        return 0;
619
0
    }
620
1.76k
    return group->meth->group_check_discriminant(group, ctx);
621
1.76k
}
622
623
int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx)
624
54.7k
{
625
54.7k
    int r = 0;
626
54.7k
    BIGNUM *a1, *a2, *a3, *b1, *b2, *b3;
627
54.7k
#ifndef FIPS_MODULE
628
54.7k
    BN_CTX *ctx_new = NULL;
629
54.7k
#endif
630
631
    /* compare the field types */
632
54.7k
    if (EC_GROUP_get_field_type(a) != EC_GROUP_get_field_type(b))
633
0
        return 1;
634
    /* compare the curve name (if present in both) */
635
54.7k
    if (EC_GROUP_get_curve_name(a) && EC_GROUP_get_curve_name(b) &&
636
54.7k
        EC_GROUP_get_curve_name(a) != EC_GROUP_get_curve_name(b))
637
0
        return 1;
638
54.7k
    if (a->meth->flags & EC_FLAGS_CUSTOM_CURVE)
639
0
        return 0;
640
641
54.7k
#ifndef FIPS_MODULE
642
54.7k
    if (ctx == NULL)
643
0
        ctx_new = ctx = BN_CTX_new();
644
54.7k
#endif
645
54.7k
    if (ctx == NULL)
646
0
        return -1;
647
648
54.7k
    BN_CTX_start(ctx);
649
54.7k
    a1 = BN_CTX_get(ctx);
650
54.7k
    a2 = BN_CTX_get(ctx);
651
54.7k
    a3 = BN_CTX_get(ctx);
652
54.7k
    b1 = BN_CTX_get(ctx);
653
54.7k
    b2 = BN_CTX_get(ctx);
654
54.7k
    b3 = BN_CTX_get(ctx);
655
54.7k
    if (b3 == NULL) {
656
0
        BN_CTX_end(ctx);
657
0
#ifndef FIPS_MODULE
658
0
        BN_CTX_free(ctx_new);
659
0
#endif
660
0
        return -1;
661
0
    }
662
663
    /*
664
     * XXX This approach assumes that the external representation of curves
665
     * over the same field type is the same.
666
     */
667
54.7k
    if (!a->meth->group_get_curve(a, a1, a2, a3, ctx) ||
668
54.7k
        !b->meth->group_get_curve(b, b1, b2, b3, ctx))
669
0
        r = 1;
670
671
    /* return 1 if the curve parameters are different */
672
54.7k
    if (r || BN_cmp(a1, b1) != 0 || BN_cmp(a2, b2) != 0 || BN_cmp(a3, b3) != 0)
673
0
        r = 1;
674
675
    /* XXX EC_POINT_cmp() assumes that the methods are equal */
676
    /* return 1 if the generators are different */
677
54.7k
    if (r || EC_POINT_cmp(a, EC_GROUP_get0_generator(a),
678
54.7k
                          EC_GROUP_get0_generator(b), ctx) != 0)
679
0
        r = 1;
680
681
54.7k
    if (!r) {
682
54.7k
        const BIGNUM *ao, *bo, *ac, *bc;
683
        /* compare the orders */
684
54.7k
        ao = EC_GROUP_get0_order(a);
685
54.7k
        bo = EC_GROUP_get0_order(b);
686
54.7k
        if (ao == NULL || bo == NULL) {
687
            /* return an error if either order is NULL */
688
0
            r = -1;
689
0
            goto end;
690
0
        }
691
54.7k
        if (BN_cmp(ao, bo) != 0) {
692
            /* return 1 if orders are different */
693
0
            r = 1;
694
0
            goto end;
695
0
        }
696
        /*
697
         * It gets here if the curve parameters and generator matched.
698
         * Now check the optional cofactors (if both are present).
699
         */
700
54.7k
        ac = EC_GROUP_get0_cofactor(a);
701
54.7k
        bc = EC_GROUP_get0_cofactor(b);
702
        /* Returns 1 (mismatch) if both cofactors are specified and different */
703
54.7k
        if (!BN_is_zero(ac) && !BN_is_zero(bc) && BN_cmp(ac, bc) != 0)
704
0
            r = 1;
705
        /* Returns 0 if the parameters matched */
706
54.7k
    }
707
54.7k
end:
708
54.7k
    BN_CTX_end(ctx);
709
54.7k
#ifndef FIPS_MODULE
710
54.7k
    BN_CTX_free(ctx_new);
711
54.7k
#endif
712
54.7k
    return r;
713
54.7k
}
714
715
/* functions for EC_POINT objects */
716
717
EC_POINT *EC_POINT_new(const EC_GROUP *group)
718
1.99M
{
719
1.99M
    EC_POINT *ret;
720
721
1.99M
    if (group == NULL) {
722
0
        ERR_raise(ERR_LIB_EC, ERR_R_PASSED_NULL_PARAMETER);
723
0
        return NULL;
724
0
    }
725
1.99M
    if (group->meth->point_init == NULL) {
726
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
727
0
        return NULL;
728
0
    }
729
730
1.99M
    ret = OPENSSL_zalloc(sizeof(*ret));
731
1.99M
    if (ret == NULL)
732
0
        return NULL;
733
734
1.99M
    ret->meth = group->meth;
735
1.99M
    ret->curve_name = group->curve_name;
736
737
1.99M
    if (!ret->meth->point_init(ret)) {
738
0
        OPENSSL_free(ret);
739
0
        return NULL;
740
0
    }
741
742
1.99M
    return ret;
743
1.99M
}
744
745
void EC_POINT_free(EC_POINT *point)
746
2.18M
{
747
2.18M
    if (point == NULL)
748
219k
        return;
749
750
1.96M
    if (point->meth->point_finish != 0)
751
1.96M
        point->meth->point_finish(point);
752
1.96M
    OPENSSL_free(point);
753
1.96M
}
754
755
void EC_POINT_clear_free(EC_POINT *point)
756
65.0k
{
757
65.0k
    if (point == NULL)
758
37.6k
        return;
759
760
27.4k
    if (point->meth->point_clear_finish != 0)
761
27.4k
        point->meth->point_clear_finish(point);
762
0
    else if (point->meth->point_finish != 0)
763
0
        point->meth->point_finish(point);
764
27.4k
    OPENSSL_clear_free(point, sizeof(*point));
765
27.4k
}
766
767
int EC_POINT_copy(EC_POINT *dest, const EC_POINT *src)
768
1.02M
{
769
1.02M
    if (dest->meth->point_copy == 0) {
770
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
771
0
        return 0;
772
0
    }
773
1.02M
    if (dest->meth != src->meth
774
1.02M
            || (dest->curve_name != src->curve_name
775
1.02M
                 && dest->curve_name != 0
776
1.02M
                 && src->curve_name != 0)) {
777
0
        ERR_raise(ERR_LIB_EC, EC_R_INCOMPATIBLE_OBJECTS);
778
0
        return 0;
779
0
    }
780
1.02M
    if (dest == src)
781
66
        return 1;
782
1.02M
    return dest->meth->point_copy(dest, src);
783
1.02M
}
784
785
EC_POINT *EC_POINT_dup(const EC_POINT *a, const EC_GROUP *group)
786
50.8k
{
787
50.8k
    EC_POINT *t;
788
50.8k
    int r;
789
790
50.8k
    if (a == NULL)
791
0
        return NULL;
792
793
50.8k
    t = EC_POINT_new(group);
794
50.8k
    if (t == NULL)
795
0
        return NULL;
796
50.8k
    r = EC_POINT_copy(t, a);
797
50.8k
    if (!r) {
798
0
        EC_POINT_free(t);
799
0
        return NULL;
800
0
    }
801
50.8k
    return t;
802
50.8k
}
803
804
#ifndef OPENSSL_NO_DEPRECATED_3_0
805
const EC_METHOD *EC_POINT_method_of(const EC_POINT *point)
806
0
{
807
0
    return point->meth;
808
0
}
809
#endif
810
811
int EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point)
812
57.1k
{
813
57.1k
    if (group->meth->point_set_to_infinity == 0) {
814
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
815
0
        return 0;
816
0
    }
817
57.1k
    if (group->meth != point->meth) {
818
0
        ERR_raise(ERR_LIB_EC, EC_R_INCOMPATIBLE_OBJECTS);
819
0
        return 0;
820
0
    }
821
57.1k
    return group->meth->point_set_to_infinity(group, point);
822
57.1k
}
823
824
#ifndef OPENSSL_NO_DEPRECATED_3_0
825
int EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group,
826
                                             EC_POINT *point, const BIGNUM *x,
827
                                             const BIGNUM *y, const BIGNUM *z,
828
                                             BN_CTX *ctx)
829
480k
{
830
480k
    if (group->meth->field_type != NID_X9_62_prime_field) {
831
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
832
0
        return 0;
833
0
    }
834
480k
    if (!ec_point_is_compat(point, group)) {
835
0
        ERR_raise(ERR_LIB_EC, EC_R_INCOMPATIBLE_OBJECTS);
836
0
        return 0;
837
0
    }
838
480k
    return ossl_ec_GFp_simple_set_Jprojective_coordinates_GFp(group, point,
839
480k
                                                              x, y, z, ctx);
840
480k
}
841
842
int EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group,
843
                                             const EC_POINT *point, BIGNUM *x,
844
                                             BIGNUM *y, BIGNUM *z,
845
                                             BN_CTX *ctx)
846
0
{
847
0
    if (group->meth->field_type != NID_X9_62_prime_field) {
848
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
849
0
        return 0;
850
0
    }
851
0
    if (!ec_point_is_compat(point, group)) {
852
0
        ERR_raise(ERR_LIB_EC, EC_R_INCOMPATIBLE_OBJECTS);
853
0
        return 0;
854
0
    }
855
0
    return ossl_ec_GFp_simple_get_Jprojective_coordinates_GFp(group, point,
856
0
                                                              x, y, z, ctx);
857
0
}
858
#endif
859
860
int EC_POINT_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point,
861
                                    const BIGNUM *x, const BIGNUM *y,
862
                                    BN_CTX *ctx)
863
762k
{
864
762k
    if (group->meth->point_set_affine_coordinates == NULL) {
865
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
866
0
        return 0;
867
0
    }
868
762k
    if (!ec_point_is_compat(point, group)) {
869
0
        ERR_raise(ERR_LIB_EC, EC_R_INCOMPATIBLE_OBJECTS);
870
0
        return 0;
871
0
    }
872
762k
    if (!group->meth->point_set_affine_coordinates(group, point, x, y, ctx))
873
0
        return 0;
874
875
762k
    if (EC_POINT_is_on_curve(group, point, ctx) <= 0) {
876
31.4k
        ERR_raise(ERR_LIB_EC, EC_R_POINT_IS_NOT_ON_CURVE);
877
31.4k
        return 0;
878
31.4k
    }
879
731k
    return 1;
880
762k
}
881
882
#ifndef OPENSSL_NO_DEPRECATED_3_0
883
int EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group,
884
                                        EC_POINT *point, const BIGNUM *x,
885
                                        const BIGNUM *y, BN_CTX *ctx)
886
0
{
887
0
    return EC_POINT_set_affine_coordinates(group, point, x, y, ctx);
888
0
}
889
890
# ifndef OPENSSL_NO_EC2M
891
int EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group,
892
                                         EC_POINT *point, const BIGNUM *x,
893
                                         const BIGNUM *y, BN_CTX *ctx)
894
0
{
895
0
    return EC_POINT_set_affine_coordinates(group, point, x, y, ctx);
896
0
}
897
# endif
898
#endif
899
900
int EC_POINT_get_affine_coordinates(const EC_GROUP *group,
901
                                    const EC_POINT *point, BIGNUM *x, BIGNUM *y,
902
                                    BN_CTX *ctx)
903
93.8k
{
904
93.8k
    if (group->meth->point_get_affine_coordinates == NULL) {
905
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
906
0
        return 0;
907
0
    }
908
93.8k
    if (!ec_point_is_compat(point, group)) {
909
0
        ERR_raise(ERR_LIB_EC, EC_R_INCOMPATIBLE_OBJECTS);
910
0
        return 0;
911
0
    }
912
93.8k
    if (EC_POINT_is_at_infinity(group, point)) {
913
376
        ERR_raise(ERR_LIB_EC, EC_R_POINT_AT_INFINITY);
914
376
        return 0;
915
376
    }
916
93.4k
    return group->meth->point_get_affine_coordinates(group, point, x, y, ctx);
917
93.8k
}
918
919
#ifndef OPENSSL_NO_DEPRECATED_3_0
920
int EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group,
921
                                        const EC_POINT *point, BIGNUM *x,
922
                                        BIGNUM *y, BN_CTX *ctx)
923
0
{
924
0
    return EC_POINT_get_affine_coordinates(group, point, x, y, ctx);
925
0
}
926
927
# ifndef OPENSSL_NO_EC2M
928
int EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group,
929
                                         const EC_POINT *point, BIGNUM *x,
930
                                         BIGNUM *y, BN_CTX *ctx)
931
0
{
932
0
    return EC_POINT_get_affine_coordinates(group, point, x, y, ctx);
933
0
}
934
# endif
935
#endif
936
937
int EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a,
938
                 const EC_POINT *b, BN_CTX *ctx)
939
96.9k
{
940
96.9k
    if (group->meth->add == 0) {
941
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
942
0
        return 0;
943
0
    }
944
96.9k
    if (!ec_point_is_compat(r, group) || !ec_point_is_compat(a, group)
945
96.9k
        || !ec_point_is_compat(b, group)) {
946
0
        ERR_raise(ERR_LIB_EC, EC_R_INCOMPATIBLE_OBJECTS);
947
0
        return 0;
948
0
    }
949
96.9k
    return group->meth->add(group, r, a, b, ctx);
950
96.9k
}
951
952
int EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a,
953
                 BN_CTX *ctx)
954
636k
{
955
636k
    if (group->meth->dbl == 0) {
956
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
957
0
        return 0;
958
0
    }
959
636k
    if (!ec_point_is_compat(r, group) || !ec_point_is_compat(a, group)) {
960
0
        ERR_raise(ERR_LIB_EC, EC_R_INCOMPATIBLE_OBJECTS);
961
0
        return 0;
962
0
    }
963
636k
    return group->meth->dbl(group, r, a, ctx);
964
636k
}
965
966
int EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx)
967
43.6k
{
968
43.6k
    if (group->meth->invert == 0) {
969
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
970
0
        return 0;
971
0
    }
972
43.6k
    if (!ec_point_is_compat(a, group)) {
973
0
        ERR_raise(ERR_LIB_EC, EC_R_INCOMPATIBLE_OBJECTS);
974
0
        return 0;
975
0
    }
976
43.6k
    return group->meth->invert(group, a, ctx);
977
43.6k
}
978
979
int EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point)
980
2.14M
{
981
2.14M
    if (group->meth->is_at_infinity == 0) {
982
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
983
0
        return 0;
984
0
    }
985
2.14M
    if (!ec_point_is_compat(point, group)) {
986
0
        ERR_raise(ERR_LIB_EC, EC_R_INCOMPATIBLE_OBJECTS);
987
0
        return 0;
988
0
    }
989
2.14M
    return group->meth->is_at_infinity(group, point);
990
2.14M
}
991
992
/*
993
 * Check whether an EC_POINT is on the curve or not. Note that the return
994
 * value for this function should NOT be treated as a boolean. Return values:
995
 *  1: The point is on the curve
996
 *  0: The point is not on the curve
997
 * -1: An error occurred
998
 */
999
int EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point,
1000
                         BN_CTX *ctx)
1001
769k
{
1002
769k
    if (group->meth->is_on_curve == 0) {
1003
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
1004
0
        return 0;
1005
0
    }
1006
769k
    if (!ec_point_is_compat(point, group)) {
1007
0
        ERR_raise(ERR_LIB_EC, EC_R_INCOMPATIBLE_OBJECTS);
1008
0
        return 0;
1009
0
    }
1010
769k
    return group->meth->is_on_curve(group, point, ctx);
1011
769k
}
1012
1013
int EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b,
1014
                 BN_CTX *ctx)
1015
85.3k
{
1016
85.3k
    if (group->meth->point_cmp == 0) {
1017
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
1018
0
        return -1;
1019
0
    }
1020
85.3k
    if (!ec_point_is_compat(a, group) || !ec_point_is_compat(b, group)) {
1021
0
        ERR_raise(ERR_LIB_EC, EC_R_INCOMPATIBLE_OBJECTS);
1022
0
        return -1;
1023
0
    }
1024
85.3k
    return group->meth->point_cmp(group, a, b, ctx);
1025
85.3k
}
1026
1027
#ifndef OPENSSL_NO_DEPRECATED_3_0
1028
int EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx)
1029
0
{
1030
0
    if (group->meth->make_affine == 0) {
1031
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
1032
0
        return 0;
1033
0
    }
1034
0
    if (!ec_point_is_compat(point, group)) {
1035
0
        ERR_raise(ERR_LIB_EC, EC_R_INCOMPATIBLE_OBJECTS);
1036
0
        return 0;
1037
0
    }
1038
0
    return group->meth->make_affine(group, point, ctx);
1039
0
}
1040
1041
int EC_POINTs_make_affine(const EC_GROUP *group, size_t num,
1042
                          EC_POINT *points[], BN_CTX *ctx)
1043
0
{
1044
0
    size_t i;
1045
1046
0
    if (group->meth->points_make_affine == 0) {
1047
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
1048
0
        return 0;
1049
0
    }
1050
0
    for (i = 0; i < num; i++) {
1051
0
        if (!ec_point_is_compat(points[i], group)) {
1052
0
            ERR_raise(ERR_LIB_EC, EC_R_INCOMPATIBLE_OBJECTS);
1053
0
            return 0;
1054
0
        }
1055
0
    }
1056
0
    return group->meth->points_make_affine(group, num, points, ctx);
1057
0
}
1058
#endif
1059
1060
/*
1061
 * Functions for point multiplication. If group->meth->mul is 0, we use the
1062
 * wNAF-based implementations in ec_mult.c; otherwise we dispatch through
1063
 * methods.
1064
 */
1065
1066
#ifndef OPENSSL_NO_DEPRECATED_3_0
1067
int EC_POINTs_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
1068
                  size_t num, const EC_POINT *points[],
1069
                  const BIGNUM *scalars[], BN_CTX *ctx)
1070
0
{
1071
0
    int ret = 0;
1072
0
    size_t i = 0;
1073
0
#ifndef FIPS_MODULE
1074
0
    BN_CTX *new_ctx = NULL;
1075
0
#endif
1076
1077
0
    if (!ec_point_is_compat(r, group)) {
1078
0
        ERR_raise(ERR_LIB_EC, EC_R_INCOMPATIBLE_OBJECTS);
1079
0
        return 0;
1080
0
    }
1081
1082
0
    if (scalar == NULL && num == 0)
1083
0
        return EC_POINT_set_to_infinity(group, r);
1084
1085
0
    for (i = 0; i < num; i++) {
1086
0
        if (!ec_point_is_compat(points[i], group)) {
1087
0
            ERR_raise(ERR_LIB_EC, EC_R_INCOMPATIBLE_OBJECTS);
1088
0
            return 0;
1089
0
        }
1090
0
    }
1091
1092
0
#ifndef FIPS_MODULE
1093
0
    if (ctx == NULL)
1094
0
        ctx = new_ctx = BN_CTX_secure_new();
1095
0
#endif
1096
0
    if (ctx == NULL) {
1097
0
        ERR_raise(ERR_LIB_EC, ERR_R_INTERNAL_ERROR);
1098
0
        return 0;
1099
0
    }
1100
1101
0
    if (group->meth->mul != NULL)
1102
0
        ret = group->meth->mul(group, r, scalar, num, points, scalars, ctx);
1103
0
    else
1104
        /* use default */
1105
0
        ret = ossl_ec_wNAF_mul(group, r, scalar, num, points, scalars, ctx);
1106
1107
0
#ifndef FIPS_MODULE
1108
0
    BN_CTX_free(new_ctx);
1109
0
#endif
1110
0
    return ret;
1111
0
}
1112
#endif
1113
1114
int EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *g_scalar,
1115
                 const EC_POINT *point, const BIGNUM *p_scalar, BN_CTX *ctx)
1116
23.8k
{
1117
23.8k
    int ret = 0;
1118
23.8k
    size_t num;
1119
23.8k
#ifndef FIPS_MODULE
1120
23.8k
    BN_CTX *new_ctx = NULL;
1121
23.8k
#endif
1122
1123
23.8k
    if (!ec_point_is_compat(r, group)
1124
23.8k
        || (point != NULL && !ec_point_is_compat(point, group))) {
1125
0
        ERR_raise(ERR_LIB_EC, EC_R_INCOMPATIBLE_OBJECTS);
1126
0
        return 0;
1127
0
    }
1128
1129
23.8k
    if (g_scalar == NULL && p_scalar == NULL)
1130
0
        return EC_POINT_set_to_infinity(group, r);
1131
1132
23.8k
#ifndef FIPS_MODULE
1133
23.8k
    if (ctx == NULL)
1134
0
        ctx = new_ctx = BN_CTX_secure_new();
1135
23.8k
#endif
1136
23.8k
    if (ctx == NULL) {
1137
0
        ERR_raise(ERR_LIB_EC, ERR_R_INTERNAL_ERROR);
1138
0
        return 0;
1139
0
    }
1140
1141
23.8k
    num = (point != NULL && p_scalar != NULL) ? 1 : 0;
1142
23.8k
    if (group->meth->mul != NULL)
1143
16.6k
        ret = group->meth->mul(group, r, g_scalar, num, &point, &p_scalar, ctx);
1144
7.18k
    else
1145
        /* use default */
1146
7.18k
        ret = ossl_ec_wNAF_mul(group, r, g_scalar, num, &point, &p_scalar, ctx);
1147
1148
23.8k
#ifndef FIPS_MODULE
1149
23.8k
    BN_CTX_free(new_ctx);
1150
23.8k
#endif
1151
23.8k
    return ret;
1152
23.8k
}
1153
1154
#ifndef OPENSSL_NO_DEPRECATED_3_0
1155
int EC_GROUP_precompute_mult(EC_GROUP *group, BN_CTX *ctx)
1156
0
{
1157
0
    if (group->meth->mul == 0)
1158
        /* use default */
1159
0
        return ossl_ec_wNAF_precompute_mult(group, ctx);
1160
1161
0
    if (group->meth->precompute_mult != 0)
1162
0
        return group->meth->precompute_mult(group, ctx);
1163
0
    else
1164
0
        return 1;               /* nothing to do, so report success */
1165
0
}
1166
1167
int EC_GROUP_have_precompute_mult(const EC_GROUP *group)
1168
0
{
1169
0
    if (group->meth->mul == 0)
1170
        /* use default */
1171
0
        return ossl_ec_wNAF_have_precompute_mult(group);
1172
1173
0
    if (group->meth->have_precompute_mult != 0)
1174
0
        return group->meth->have_precompute_mult(group);
1175
0
    else
1176
0
        return 0;               /* cannot tell whether precomputation has
1177
                                 * been performed */
1178
0
}
1179
#endif
1180
1181
/*
1182
 * ec_precompute_mont_data sets |group->mont_data| from |group->order| and
1183
 * returns one on success. On error it returns zero.
1184
 */
1185
static int ec_precompute_mont_data(EC_GROUP *group)
1186
426k
{
1187
426k
    BN_CTX *ctx = BN_CTX_new_ex(group->libctx);
1188
426k
    int ret = 0;
1189
1190
426k
    BN_MONT_CTX_free(group->mont_data);
1191
426k
    group->mont_data = NULL;
1192
1193
426k
    if (ctx == NULL)
1194
0
        goto err;
1195
1196
426k
    group->mont_data = BN_MONT_CTX_new();
1197
426k
    if (group->mont_data == NULL)
1198
0
        goto err;
1199
1200
426k
    if (!BN_MONT_CTX_set(group->mont_data, group->order, ctx)) {
1201
0
        BN_MONT_CTX_free(group->mont_data);
1202
0
        group->mont_data = NULL;
1203
0
        goto err;
1204
0
    }
1205
1206
426k
    ret = 1;
1207
1208
426k
 err:
1209
1210
426k
    BN_CTX_free(ctx);
1211
426k
    return ret;
1212
426k
}
1213
1214
#ifndef FIPS_MODULE
1215
int EC_KEY_set_ex_data(EC_KEY *key, int idx, void *arg)
1216
0
{
1217
0
    return CRYPTO_set_ex_data(&key->ex_data, idx, arg);
1218
0
}
1219
1220
void *EC_KEY_get_ex_data(const EC_KEY *key, int idx)
1221
0
{
1222
0
    return CRYPTO_get_ex_data(&key->ex_data, idx);
1223
0
}
1224
#endif
1225
1226
int ossl_ec_group_simple_order_bits(const EC_GROUP *group)
1227
659k
{
1228
659k
    if (group->order == NULL)
1229
0
        return 0;
1230
659k
    return BN_num_bits(group->order);
1231
659k
}
1232
1233
static int ec_field_inverse_mod_ord(const EC_GROUP *group, BIGNUM *r,
1234
                                    const BIGNUM *x, BN_CTX *ctx)
1235
464
{
1236
464
    BIGNUM *e = NULL;
1237
464
    int ret = 0;
1238
464
#ifndef FIPS_MODULE
1239
464
    BN_CTX *new_ctx = NULL;
1240
464
#endif
1241
1242
464
    if (group->mont_data == NULL)
1243
0
        return 0;
1244
1245
464
#ifndef FIPS_MODULE
1246
464
    if (ctx == NULL)
1247
0
        ctx = new_ctx = BN_CTX_secure_new();
1248
464
#endif
1249
464
    if (ctx == NULL)
1250
0
        return 0;
1251
1252
464
    BN_CTX_start(ctx);
1253
464
    if ((e = BN_CTX_get(ctx)) == NULL)
1254
0
        goto err;
1255
1256
    /*-
1257
     * We want inverse in constant time, therefore we utilize the fact
1258
     * order must be prime and use Fermats Little Theorem instead.
1259
     */
1260
464
    if (!BN_set_word(e, 2))
1261
0
        goto err;
1262
464
    if (!BN_sub(e, group->order, e))
1263
0
        goto err;
1264
    /*-
1265
     * Although the exponent is public we want the result to be
1266
     * fixed top.
1267
     */
1268
464
    if (!bn_mod_exp_mont_fixed_top(r, x, e, group->order, ctx, group->mont_data))
1269
0
        goto err;
1270
1271
464
    ret = 1;
1272
1273
464
 err:
1274
464
    BN_CTX_end(ctx);
1275
464
#ifndef FIPS_MODULE
1276
464
    BN_CTX_free(new_ctx);
1277
464
#endif
1278
464
    return ret;
1279
464
}
1280
1281
/*-
1282
 * Default behavior, if group->meth->field_inverse_mod_ord is NULL:
1283
 * - When group->order is even, this function returns an error.
1284
 * - When group->order is otherwise composite, the correctness
1285
 *   of the output is not guaranteed.
1286
 * - When x is outside the range [1, group->order), the correctness
1287
 *   of the output is not guaranteed.
1288
 * - Otherwise, this function returns the multiplicative inverse in the
1289
 *   range [1, group->order).
1290
 *
1291
 * EC_METHODs must implement their own field_inverse_mod_ord for
1292
 * other functionality.
1293
 */
1294
int ossl_ec_group_do_inverse_ord(const EC_GROUP *group, BIGNUM *res,
1295
                                 const BIGNUM *x, BN_CTX *ctx)
1296
3.48k
{
1297
3.48k
    if (group->meth->field_inverse_mod_ord != NULL)
1298
3.02k
        return group->meth->field_inverse_mod_ord(group, res, x, ctx);
1299
464
    else
1300
464
        return ec_field_inverse_mod_ord(group, res, x, ctx);
1301
3.48k
}
1302
1303
/*-
1304
 * Coordinate blinding for EC_POINT.
1305
 *
1306
 * The underlying EC_METHOD can optionally implement this function:
1307
 * underlying implementations should return 0 on errors, or 1 on
1308
 * success.
1309
 *
1310
 * This wrapper returns 1 in case the underlying EC_METHOD does not
1311
 * support coordinate blinding.
1312
 */
1313
int ossl_ec_point_blind_coordinates(const EC_GROUP *group, EC_POINT *p,
1314
                                    BN_CTX *ctx)
1315
3.12k
{
1316
3.12k
    if (group->meth->blind_coordinates == NULL)
1317
0
        return 1; /* ignore if not implemented */
1318
1319
3.12k
    return group->meth->blind_coordinates(group, p, ctx);
1320
3.12k
}
1321
1322
int EC_GROUP_get_basis_type(const EC_GROUP *group)
1323
107k
{
1324
107k
    int i;
1325
1326
107k
    if (EC_GROUP_get_field_type(group) != NID_X9_62_characteristic_two_field)
1327
        /* everything else is currently not supported */
1328
0
        return 0;
1329
1330
    /* Find the last non-zero element of group->poly[] */
1331
107k
    for (i = 0;
1332
471k
         i < (int)OSSL_NELEM(group->poly) && group->poly[i] != 0;
1333
364k
         i++)
1334
364k
        continue;
1335
1336
107k
    if (i == 4)
1337
74.8k
        return NID_X9_62_ppBasis;
1338
32.4k
    else if (i == 2)
1339
32.4k
        return NID_X9_62_tpBasis;
1340
0
    else
1341
        /* everything else is currently not supported */
1342
0
        return 0;
1343
107k
}
1344
1345
#ifndef OPENSSL_NO_EC2M
1346
int EC_GROUP_get_trinomial_basis(const EC_GROUP *group, unsigned int *k)
1347
32.4k
{
1348
32.4k
    if (group == NULL)
1349
0
        return 0;
1350
1351
32.4k
    if (EC_GROUP_get_field_type(group) != NID_X9_62_characteristic_two_field
1352
32.4k
        || !((group->poly[0] != 0) && (group->poly[1] != 0)
1353
32.4k
             && (group->poly[2] == 0))) {
1354
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
1355
0
        return 0;
1356
0
    }
1357
1358
32.4k
    if (k)
1359
32.4k
        *k = group->poly[1];
1360
1361
32.4k
    return 1;
1362
32.4k
}
1363
1364
int EC_GROUP_get_pentanomial_basis(const EC_GROUP *group, unsigned int *k1,
1365
                                   unsigned int *k2, unsigned int *k3)
1366
74.8k
{
1367
74.8k
    if (group == NULL)
1368
0
        return 0;
1369
1370
74.8k
    if (EC_GROUP_get_field_type(group) != NID_X9_62_characteristic_two_field
1371
74.8k
        || !((group->poly[0] != 0) && (group->poly[1] != 0)
1372
74.8k
             && (group->poly[2] != 0) && (group->poly[3] != 0)
1373
74.8k
             && (group->poly[4] == 0))) {
1374
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
1375
0
        return 0;
1376
0
    }
1377
1378
74.8k
    if (k1)
1379
74.8k
        *k1 = group->poly[3];
1380
74.8k
    if (k2)
1381
74.8k
        *k2 = group->poly[2];
1382
74.8k
    if (k3)
1383
74.8k
        *k3 = group->poly[1];
1384
1385
74.8k
    return 1;
1386
74.8k
}
1387
#endif
1388
1389
#ifndef FIPS_MODULE
1390
/*
1391
 * Check if the explicit parameters group matches any built-in curves.
1392
 *
1393
 * We create a copy of the group just built, so that we can remove optional
1394
 * fields for the lookup: we do this to avoid the possibility that one of
1395
 * the optional parameters is used to force the library into using a less
1396
 * performant and less secure EC_METHOD instead of the specialized one.
1397
 * In any case, `seed` is not really used in any computation, while a
1398
 * cofactor different from the one in the built-in table is just
1399
 * mathematically wrong anyway and should not be used.
1400
 */
1401
static EC_GROUP *ec_group_explicit_to_named(const EC_GROUP *group,
1402
                                            OSSL_LIB_CTX *libctx,
1403
                                            const char *propq,
1404
                                            BN_CTX *ctx)
1405
0
{
1406
0
    EC_GROUP *ret_group = NULL, *dup = NULL;
1407
0
    int curve_name_nid;
1408
1409
0
    const EC_POINT *point = EC_GROUP_get0_generator(group);
1410
0
    const BIGNUM *order = EC_GROUP_get0_order(group);
1411
0
    int no_seed = (EC_GROUP_get0_seed(group) == NULL);
1412
1413
0
    if ((dup = EC_GROUP_dup(group)) == NULL
1414
0
            || EC_GROUP_set_seed(dup, NULL, 0) != 1
1415
0
            || !EC_GROUP_set_generator(dup, point, order, NULL))
1416
0
        goto err;
1417
0
    if ((curve_name_nid = ossl_ec_curve_nid_from_params(dup, ctx)) != NID_undef) {
1418
        /*
1419
         * The input explicit parameters successfully matched one of the
1420
         * built-in curves: often for built-in curves we have specialized
1421
         * methods with better performance and hardening.
1422
         *
1423
         * In this case we replace the `EC_GROUP` created through explicit
1424
         * parameters with one created from a named group.
1425
         */
1426
1427
0
# ifndef OPENSSL_NO_EC_NISTP_64_GCC_128
1428
        /*
1429
         * NID_wap_wsg_idm_ecid_wtls12 and NID_secp224r1 are both aliases for
1430
         * the same curve, we prefer the SECP nid when matching explicit
1431
         * parameters as that is associated with a specialized EC_METHOD.
1432
         */
1433
0
        if (curve_name_nid == NID_wap_wsg_idm_ecid_wtls12)
1434
0
            curve_name_nid = NID_secp224r1;
1435
0
# endif /* !def(OPENSSL_NO_EC_NISTP_64_GCC_128) */
1436
1437
0
        ret_group = EC_GROUP_new_by_curve_name_ex(libctx, propq, curve_name_nid);
1438
0
        if (ret_group == NULL)
1439
0
            goto err;
1440
1441
        /*
1442
         * Set the flag so that EC_GROUPs created from explicit parameters are
1443
         * serialized using explicit parameters by default.
1444
         */
1445
0
        EC_GROUP_set_asn1_flag(ret_group, OPENSSL_EC_EXPLICIT_CURVE);
1446
1447
        /*
1448
         * If the input params do not contain the optional seed field we make
1449
         * sure it is not added to the returned group.
1450
         *
1451
         * The seed field is not really used inside libcrypto anyway, and
1452
         * adding it to parsed explicit parameter keys would alter their DER
1453
         * encoding output (because of the extra field) which could impact
1454
         * applications fingerprinting keys by their DER encoding.
1455
         */
1456
0
        if (no_seed) {
1457
0
            if (EC_GROUP_set_seed(ret_group, NULL, 0) != 1)
1458
0
                goto err;
1459
0
        }
1460
0
    } else {
1461
0
        ret_group = (EC_GROUP *)group;
1462
0
    }
1463
0
    EC_GROUP_free(dup);
1464
0
    return ret_group;
1465
0
err:
1466
0
    EC_GROUP_free(dup);
1467
0
    EC_GROUP_free(ret_group);
1468
0
    return NULL;
1469
0
}
1470
#endif /* FIPS_MODULE */
1471
1472
static EC_GROUP *group_new_from_name(const OSSL_PARAM *p,
1473
                                     OSSL_LIB_CTX *libctx, const char *propq)
1474
55.7k
{
1475
55.7k
    int ok = 0, nid;
1476
55.7k
    const char *curve_name = NULL;
1477
1478
55.7k
    switch (p->data_type) {
1479
55.7k
    case OSSL_PARAM_UTF8_STRING:
1480
        /* The OSSL_PARAM functions have no support for this */
1481
55.7k
        curve_name = p->data;
1482
55.7k
        ok = (curve_name != NULL);
1483
55.7k
        break;
1484
0
    case OSSL_PARAM_UTF8_PTR:
1485
0
        ok = OSSL_PARAM_get_utf8_ptr(p, &curve_name);
1486
0
        break;
1487
55.7k
    }
1488
1489
55.7k
    if (ok) {
1490
55.7k
        nid = ossl_ec_curve_name2nid(curve_name);
1491
55.7k
        if (nid == NID_undef) {
1492
0
            ERR_raise(ERR_LIB_EC, EC_R_INVALID_CURVE);
1493
0
            return NULL;
1494
55.7k
        } else {
1495
55.7k
            return EC_GROUP_new_by_curve_name_ex(libctx, propq, nid);
1496
55.7k
        }
1497
55.7k
    }
1498
0
    return NULL;
1499
55.7k
}
1500
1501
/* These parameters can be set directly into an EC_GROUP */
1502
int ossl_ec_group_set_params(EC_GROUP *group, const OSSL_PARAM params[])
1503
59.6k
{
1504
59.6k
    int encoding_flag = -1, format = -1;
1505
59.6k
    const OSSL_PARAM *p;
1506
1507
59.6k
    p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_POINT_CONVERSION_FORMAT);
1508
59.6k
    if (p != NULL) {
1509
50.8k
        if (!ossl_ec_pt_format_param2id(p, &format)) {
1510
0
            ERR_raise(ERR_LIB_EC, EC_R_INVALID_FORM);
1511
0
            return 0;
1512
0
        }
1513
50.8k
        EC_GROUP_set_point_conversion_form(group, format);
1514
50.8k
    }
1515
1516
59.6k
    p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_ENCODING);
1517
59.6k
    if (p != NULL) {
1518
50.8k
        if (!ossl_ec_encoding_param2id(p, &encoding_flag)) {
1519
0
            ERR_raise(ERR_LIB_EC, EC_R_INVALID_FORM);
1520
0
            return 0;
1521
0
        }
1522
50.8k
        EC_GROUP_set_asn1_flag(group, encoding_flag);
1523
50.8k
    }
1524
    /* Optional seed */
1525
59.6k
    p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_SEED);
1526
59.6k
    if (p != NULL) {
1527
        /* The seed is allowed to be NULL */
1528
0
        if (p->data_type != OSSL_PARAM_OCTET_STRING
1529
0
            || !EC_GROUP_set_seed(group, p->data, p->data_size)) {
1530
0
            ERR_raise(ERR_LIB_EC, EC_R_INVALID_SEED);
1531
0
            return 0;
1532
0
        }
1533
0
    }
1534
59.6k
    return 1;
1535
59.6k
}
1536
1537
EC_GROUP *EC_GROUP_new_from_params(const OSSL_PARAM params[],
1538
                                   OSSL_LIB_CTX *libctx, const char *propq)
1539
55.7k
{
1540
55.7k
    const OSSL_PARAM *ptmp;
1541
55.7k
    EC_GROUP *group = NULL;
1542
1543
55.7k
#ifndef FIPS_MODULE
1544
55.7k
    const OSSL_PARAM *pa, *pb;
1545
55.7k
    int ok = 0;
1546
55.7k
    EC_GROUP *named_group = NULL;
1547
55.7k
    BIGNUM *p = NULL, *a = NULL, *b = NULL, *order = NULL, *cofactor = NULL;
1548
55.7k
    EC_POINT *point = NULL;
1549
55.7k
    int field_bits = 0;
1550
55.7k
    int is_prime_field = 1;
1551
55.7k
    BN_CTX *bnctx = NULL;
1552
55.7k
    const unsigned char *buf = NULL;
1553
55.7k
    int encoding_flag = -1;
1554
55.7k
#endif
1555
1556
    /* This is the simple named group case */
1557
55.7k
    ptmp = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_GROUP_NAME);
1558
55.7k
    if (ptmp != NULL) {
1559
55.7k
        int decoded = 0;
1560
1561
55.7k
        if ((group = group_new_from_name(ptmp, libctx, propq)) == NULL)
1562
0
            return NULL;
1563
55.7k
        if (!ossl_ec_group_set_params(group, params)) {
1564
0
            EC_GROUP_free(group);
1565
0
            return NULL;
1566
0
        }
1567
1568
55.7k
        ptmp = OSSL_PARAM_locate_const(params,
1569
55.7k
                                       OSSL_PKEY_PARAM_EC_DECODED_FROM_EXPLICIT_PARAMS);
1570
55.7k
        if (ptmp != NULL && !OSSL_PARAM_get_int(ptmp, &decoded)) {
1571
0
            ERR_raise(ERR_LIB_EC, EC_R_WRONG_CURVE_PARAMETERS);
1572
0
            EC_GROUP_free(group);
1573
0
            return NULL;
1574
0
        }
1575
55.7k
        group->decoded_from_explicit_params = decoded > 0;
1576
55.7k
        return group;
1577
55.7k
    }
1578
#ifdef FIPS_MODULE
1579
    ERR_raise(ERR_LIB_EC, EC_R_EXPLICIT_PARAMS_NOT_SUPPORTED);
1580
    return NULL;
1581
#else
1582
    /* If it gets here then we are trying explicit parameters */
1583
0
    bnctx = BN_CTX_new_ex(libctx);
1584
0
    if (bnctx == NULL) {
1585
0
        ERR_raise(ERR_LIB_EC, ERR_R_BN_LIB);
1586
0
        return 0;
1587
0
    }
1588
0
    BN_CTX_start(bnctx);
1589
1590
0
    p = BN_CTX_get(bnctx);
1591
0
    a = BN_CTX_get(bnctx);
1592
0
    b = BN_CTX_get(bnctx);
1593
0
    order = BN_CTX_get(bnctx);
1594
0
    if (order == NULL) {
1595
0
        ERR_raise(ERR_LIB_EC, ERR_R_BN_LIB);
1596
0
        goto err;
1597
0
    }
1598
1599
0
    ptmp = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_FIELD_TYPE);
1600
0
    if (ptmp == NULL || ptmp->data_type != OSSL_PARAM_UTF8_STRING) {
1601
0
        ERR_raise(ERR_LIB_EC, EC_R_INVALID_FIELD);
1602
0
        goto err;
1603
0
    }
1604
0
    if (OPENSSL_strcasecmp(ptmp->data, SN_X9_62_prime_field) == 0) {
1605
0
        is_prime_field = 1;
1606
0
    } else if (OPENSSL_strcasecmp(ptmp->data,
1607
0
                                  SN_X9_62_characteristic_two_field) == 0) {
1608
0
        is_prime_field = 0;
1609
0
    } else {
1610
        /* Invalid field */
1611
0
        ERR_raise(ERR_LIB_EC, EC_R_UNSUPPORTED_FIELD);
1612
0
        goto err;
1613
0
    }
1614
1615
0
    pa = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_A);
1616
0
    if (!OSSL_PARAM_get_BN(pa, &a)) {
1617
0
        ERR_raise(ERR_LIB_EC, EC_R_INVALID_A);
1618
0
        goto err;
1619
0
    }
1620
0
    pb = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_B);
1621
0
    if (!OSSL_PARAM_get_BN(pb, &b)) {
1622
0
        ERR_raise(ERR_LIB_EC, EC_R_INVALID_B);
1623
0
        goto err;
1624
0
    }
1625
1626
    /* extract the prime number or irreducible polynomial */
1627
0
    ptmp = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_P);
1628
0
    if (!OSSL_PARAM_get_BN(ptmp, &p)) {
1629
0
        ERR_raise(ERR_LIB_EC, EC_R_INVALID_P);
1630
0
        goto err;
1631
0
    }
1632
1633
0
    if (is_prime_field) {
1634
0
        if (BN_is_negative(p) || BN_is_zero(p)) {
1635
0
            ERR_raise(ERR_LIB_EC, EC_R_INVALID_P);
1636
0
            goto err;
1637
0
        }
1638
0
        field_bits = BN_num_bits(p);
1639
0
        if (field_bits > OPENSSL_ECC_MAX_FIELD_BITS) {
1640
0
            ERR_raise(ERR_LIB_EC, EC_R_FIELD_TOO_LARGE);
1641
0
            goto err;
1642
0
        }
1643
1644
        /* create the EC_GROUP structure */
1645
0
        group = EC_GROUP_new_curve_GFp(p, a, b, bnctx);
1646
0
    } else {
1647
# ifdef OPENSSL_NO_EC2M
1648
        ERR_raise(ERR_LIB_EC, EC_R_GF2M_NOT_SUPPORTED);
1649
        goto err;
1650
# else
1651
        /* create the EC_GROUP structure */
1652
0
        group = EC_GROUP_new_curve_GF2m(p, a, b, NULL);
1653
0
        if (group != NULL) {
1654
0
            field_bits = EC_GROUP_get_degree(group);
1655
0
            if (field_bits > OPENSSL_ECC_MAX_FIELD_BITS) {
1656
0
                ERR_raise(ERR_LIB_EC, EC_R_FIELD_TOO_LARGE);
1657
0
                goto err;
1658
0
            }
1659
0
        }
1660
0
# endif /* OPENSSL_NO_EC2M */
1661
0
    }
1662
1663
0
    if (group == NULL) {
1664
0
        ERR_raise(ERR_LIB_EC, ERR_R_EC_LIB);
1665
0
        goto err;
1666
0
    }
1667
1668
    /* Optional seed */
1669
0
    ptmp = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_SEED);
1670
0
    if (ptmp != NULL) {
1671
0
        if (ptmp->data_type != OSSL_PARAM_OCTET_STRING) {
1672
0
            ERR_raise(ERR_LIB_EC, EC_R_INVALID_SEED);
1673
0
            goto err;
1674
0
        }
1675
0
        if (!EC_GROUP_set_seed(group, ptmp->data, ptmp->data_size))
1676
0
            goto err;
1677
0
    }
1678
1679
    /* generator base point */
1680
0
    ptmp = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_GENERATOR);
1681
0
    if (ptmp == NULL
1682
0
        || ptmp->data_type != OSSL_PARAM_OCTET_STRING) {
1683
0
        ERR_raise(ERR_LIB_EC, EC_R_INVALID_GENERATOR);
1684
0
        goto err;
1685
0
    }
1686
0
    buf = (const unsigned char *)(ptmp->data);
1687
0
    if ((point = EC_POINT_new(group)) == NULL)
1688
0
        goto err;
1689
0
    EC_GROUP_set_point_conversion_form(group,
1690
0
                                       (point_conversion_form_t)buf[0] & ~0x01);
1691
0
    if (!EC_POINT_oct2point(group, point, buf, ptmp->data_size, bnctx)) {
1692
0
        ERR_raise(ERR_LIB_EC, EC_R_INVALID_GENERATOR);
1693
0
        goto err;
1694
0
    }
1695
1696
    /* order */
1697
0
    ptmp = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_ORDER);
1698
0
    if (!OSSL_PARAM_get_BN(ptmp, &order)
1699
0
        || (BN_is_negative(order) || BN_is_zero(order))
1700
0
        || (BN_num_bits(order) > (int)field_bits + 1)) { /* Hasse bound */
1701
0
        ERR_raise(ERR_LIB_EC, EC_R_INVALID_GROUP_ORDER);
1702
0
        goto err;
1703
0
    }
1704
1705
    /* Optional cofactor */
1706
0
    ptmp = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_COFACTOR);
1707
0
    if (ptmp != NULL) {
1708
0
        cofactor = BN_CTX_get(bnctx);
1709
0
        if (cofactor == NULL || !OSSL_PARAM_get_BN(ptmp, &cofactor)) {
1710
0
            ERR_raise(ERR_LIB_EC, EC_R_INVALID_COFACTOR);
1711
0
            goto err;
1712
0
        }
1713
0
    }
1714
1715
    /* set the generator, order and cofactor (if present) */
1716
0
    if (!EC_GROUP_set_generator(group, point, order, cofactor)) {
1717
0
        ERR_raise(ERR_LIB_EC, EC_R_INVALID_GENERATOR);
1718
0
        goto err;
1719
0
    }
1720
1721
0
    named_group = ec_group_explicit_to_named(group, libctx, propq, bnctx);
1722
0
    if (named_group == NULL) {
1723
0
        ERR_raise(ERR_LIB_EC, EC_R_INVALID_NAMED_GROUP_CONVERSION);
1724
0
        goto err;
1725
0
    }
1726
0
    if (named_group == group) {
1727
        /*
1728
         * If we did not find a named group then the encoding should be explicit
1729
         * if it was specified
1730
         */
1731
0
        ptmp = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_ENCODING);
1732
0
        if (ptmp != NULL
1733
0
            && !ossl_ec_encoding_param2id(ptmp, &encoding_flag)) {
1734
0
            ERR_raise(ERR_LIB_EC, EC_R_INVALID_ENCODING);
1735
0
            goto err;
1736
0
        }
1737
0
        if (encoding_flag == OPENSSL_EC_NAMED_CURVE) {
1738
0
            ERR_raise(ERR_LIB_EC, EC_R_INVALID_ENCODING);
1739
0
            goto err;
1740
0
        }
1741
0
        EC_GROUP_set_asn1_flag(group, OPENSSL_EC_EXPLICIT_CURVE);
1742
0
    } else {
1743
0
        EC_GROUP_free(group);
1744
0
        group = named_group;
1745
0
    }
1746
    /* We've imported the group from explicit parameters, set it so. */
1747
0
    group->decoded_from_explicit_params = 1;
1748
0
    ok = 1;
1749
0
 err:
1750
0
    if (!ok) {
1751
0
        EC_GROUP_free(group);
1752
0
        group = NULL;
1753
0
    }
1754
0
    EC_POINT_free(point);
1755
0
    BN_CTX_end(bnctx);
1756
0
    BN_CTX_free(bnctx);
1757
1758
0
    return group;
1759
0
#endif /* FIPS_MODULE */
1760
0
}
1761
1762
OSSL_PARAM *EC_GROUP_to_params(const EC_GROUP *group, OSSL_LIB_CTX *libctx,
1763
                               const char *propq, BN_CTX *bnctx)
1764
0
{
1765
0
    OSSL_PARAM_BLD *tmpl = NULL;
1766
0
    BN_CTX *new_bnctx = NULL;
1767
0
    unsigned char *gen_buf = NULL;
1768
0
    OSSL_PARAM *params = NULL;
1769
1770
0
    if (group == NULL)
1771
0
        goto err;
1772
1773
0
    tmpl = OSSL_PARAM_BLD_new();
1774
0
    if (tmpl == NULL)
1775
0
        goto err;
1776
1777
0
    if (bnctx == NULL)
1778
0
        bnctx = new_bnctx = BN_CTX_new_ex(libctx);
1779
0
    if (bnctx == NULL)
1780
0
        goto err;
1781
0
    BN_CTX_start(bnctx);
1782
1783
0
    if (!ossl_ec_group_todata(
1784
0
            group, tmpl, NULL, libctx, propq, bnctx, &gen_buf))
1785
0
        goto err;
1786
1787
0
    params = OSSL_PARAM_BLD_to_param(tmpl);
1788
1789
0
 err:
1790
0
    OSSL_PARAM_BLD_free(tmpl);
1791
0
    OPENSSL_free(gen_buf);
1792
0
    BN_CTX_end(bnctx);
1793
0
    BN_CTX_free(new_bnctx);
1794
0
    return params;
1795
0
}