Coverage Report

Created: 2026-04-01 06:39

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl30/crypto/ec/ec_lib.c
Line
Count
Source
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 "crypto/ec.h"
23
#include "crypto/bn.h"
24
#include "internal/nelem.h"
25
#include "ec_local.h"
26
27
/* functions for EC_GROUP objects */
28
29
EC_GROUP *ossl_ec_group_new_ex(OSSL_LIB_CTX *libctx, const char *propq,
30
    const EC_METHOD *meth)
31
1.59M
{
32
1.59M
    EC_GROUP *ret;
33
34
1.59M
    if (meth == NULL) {
35
0
        ERR_raise(ERR_LIB_EC, EC_R_SLOT_FULL);
36
0
        return NULL;
37
0
    }
38
1.59M
    if (meth->group_init == 0) {
39
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
40
0
        return NULL;
41
0
    }
42
43
1.59M
    ret = OPENSSL_zalloc(sizeof(*ret));
44
1.59M
    if (ret == NULL) {
45
0
        ERR_raise(ERR_LIB_EC, ERR_R_MALLOC_FAILURE);
46
0
        return NULL;
47
0
    }
48
49
1.59M
    ret->libctx = libctx;
50
1.59M
    if (propq != NULL) {
51
1.28k
        ret->propq = OPENSSL_strdup(propq);
52
1.28k
        if (ret->propq == NULL) {
53
0
            ERR_raise(ERR_LIB_EC, ERR_R_MALLOC_FAILURE);
54
0
            goto err;
55
0
        }
56
1.28k
    }
57
1.59M
    ret->meth = meth;
58
1.59M
    if ((ret->meth->flags & EC_FLAGS_CUSTOM_CURVE) == 0) {
59
1.59M
        ret->order = BN_new();
60
1.59M
        if (ret->order == NULL)
61
0
            goto err;
62
1.59M
        ret->cofactor = BN_new();
63
1.59M
        if (ret->cofactor == NULL)
64
0
            goto err;
65
1.59M
    }
66
1.59M
    ret->asn1_flag = OPENSSL_EC_EXPLICIT_CURVE;
67
1.59M
    ret->asn1_form = POINT_CONVERSION_UNCOMPRESSED;
68
1.59M
    if (!meth->group_init(ret))
69
0
        goto err;
70
1.59M
    return ret;
71
72
0
err:
73
0
    BN_free(ret->order);
74
0
    BN_free(ret->cofactor);
75
0
    OPENSSL_free(ret->propq);
76
0
    OPENSSL_free(ret);
77
0
    return NULL;
78
1.59M
}
79
80
#ifndef OPENSSL_NO_DEPRECATED_3_0
81
#ifndef FIPS_MODULE
82
EC_GROUP *EC_GROUP_new(const EC_METHOD *meth)
83
0
{
84
0
    return ossl_ec_group_new_ex(NULL, NULL, meth);
85
0
}
86
#endif
87
#endif
88
89
void EC_pre_comp_free(EC_GROUP *group)
90
294k
{
91
294k
    switch (group->pre_comp_type) {
92
294k
    case PCT_none:
93
294k
        break;
94
0
    case PCT_nistz256:
95
0
#ifdef ECP_NISTZ256_ASM
96
0
        EC_nistz256_pre_comp_free(group->pre_comp.nistz256);
97
0
#endif
98
0
        break;
99
0
#ifndef OPENSSL_NO_EC_NISTP_64_GCC_128
100
0
    case PCT_nistp224:
101
0
        EC_nistp224_pre_comp_free(group->pre_comp.nistp224);
102
0
        break;
103
0
    case PCT_nistp256:
104
0
        EC_nistp256_pre_comp_free(group->pre_comp.nistp256);
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_nistp521:
113
        break;
114
#endif
115
0
    case PCT_ec:
116
0
        EC_ec_pre_comp_free(group->pre_comp.ec);
117
0
        break;
118
294k
    }
119
294k
    group->pre_comp.ec = NULL;
120
294k
}
121
122
void EC_GROUP_free(EC_GROUP *group)
123
2.81M
{
124
2.81M
    if (!group)
125
1.21M
        return;
126
127
1.59M
    if (group->meth->group_finish != 0)
128
1.59M
        group->meth->group_finish(group);
129
130
1.59M
    EC_pre_comp_free(group);
131
1.59M
    BN_MONT_CTX_free(group->mont_data);
132
1.59M
    EC_POINT_free(group->generator);
133
1.59M
    BN_free(group->order);
134
1.59M
    BN_free(group->cofactor);
135
1.59M
    OPENSSL_free(group->seed);
136
1.59M
    OPENSSL_free(group->propq);
137
1.59M
    OPENSSL_free(group);
138
1.59M
}
139
140
#ifndef OPENSSL_NO_DEPRECATED_3_0
141
void EC_GROUP_clear_free(EC_GROUP *group)
142
0
{
143
0
    if (!group)
144
0
        return;
145
146
0
    if (group->meth->group_clear_finish != 0)
147
0
        group->meth->group_clear_finish(group);
148
0
    else if (group->meth->group_finish != 0)
149
0
        group->meth->group_finish(group);
150
151
0
    EC_pre_comp_free(group);
152
0
    BN_MONT_CTX_free(group->mont_data);
153
0
    EC_POINT_clear_free(group->generator);
154
0
    BN_clear_free(group->order);
155
0
    BN_clear_free(group->cofactor);
156
0
    OPENSSL_clear_free(group->seed, group->seed_len);
157
0
    OPENSSL_clear_free(group, sizeof(*group));
158
0
}
159
#endif
160
161
int EC_GROUP_copy(EC_GROUP *dest, const EC_GROUP *src)
162
95.0k
{
163
95.0k
    if (dest->meth->group_copy == 0) {
164
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
165
0
        return 0;
166
0
    }
167
95.0k
    if (dest->meth != src->meth) {
168
0
        ERR_raise(ERR_LIB_EC, EC_R_INCOMPATIBLE_OBJECTS);
169
0
        return 0;
170
0
    }
171
95.0k
    if (dest == src)
172
0
        return 1;
173
174
95.0k
    dest->libctx = src->libctx;
175
95.0k
    dest->curve_name = src->curve_name;
176
177
95.0k
    EC_pre_comp_free(dest);
178
179
    /* Copy precomputed */
180
95.0k
    dest->pre_comp_type = src->pre_comp_type;
181
95.0k
    switch (src->pre_comp_type) {
182
95.0k
    case PCT_none:
183
95.0k
        dest->pre_comp.ec = NULL;
184
95.0k
        break;
185
0
    case PCT_nistz256:
186
0
#ifdef ECP_NISTZ256_ASM
187
0
        dest->pre_comp.nistz256 = EC_nistz256_pre_comp_dup(src->pre_comp.nistz256);
188
0
#endif
189
0
        break;
190
0
#ifndef OPENSSL_NO_EC_NISTP_64_GCC_128
191
0
    case PCT_nistp224:
192
0
        dest->pre_comp.nistp224 = EC_nistp224_pre_comp_dup(src->pre_comp.nistp224);
193
0
        break;
194
0
    case PCT_nistp256:
195
0
        dest->pre_comp.nistp256 = EC_nistp256_pre_comp_dup(src->pre_comp.nistp256);
196
0
        break;
197
0
    case PCT_nistp521:
198
0
        dest->pre_comp.nistp521 = EC_nistp521_pre_comp_dup(src->pre_comp.nistp521);
199
0
        break;
200
#else
201
    case PCT_nistp224:
202
    case PCT_nistp256:
203
    case PCT_nistp521:
204
        break;
205
#endif
206
0
    case PCT_ec:
207
0
        dest->pre_comp.ec = EC_ec_pre_comp_dup(src->pre_comp.ec);
208
0
        break;
209
95.0k
    }
210
211
95.0k
    if (src->mont_data != NULL) {
212
91.4k
        if (dest->mont_data == NULL) {
213
91.4k
            dest->mont_data = BN_MONT_CTX_new();
214
91.4k
            if (dest->mont_data == NULL)
215
0
                return 0;
216
91.4k
        }
217
91.4k
        if (!BN_MONT_CTX_copy(dest->mont_data, src->mont_data))
218
0
            return 0;
219
91.4k
    } else {
220
        /* src->generator == NULL */
221
3.62k
        BN_MONT_CTX_free(dest->mont_data);
222
3.62k
        dest->mont_data = NULL;
223
3.62k
    }
224
225
95.0k
    if (src->generator != NULL) {
226
95.0k
        if (dest->generator == NULL) {
227
95.0k
            dest->generator = EC_POINT_new(dest);
228
95.0k
            if (dest->generator == NULL)
229
0
                return 0;
230
95.0k
        }
231
95.0k
        if (!EC_POINT_copy(dest->generator, src->generator))
232
0
            return 0;
233
95.0k
    } else {
234
        /* src->generator == NULL */
235
0
        EC_POINT_clear_free(dest->generator);
236
0
        dest->generator = NULL;
237
0
    }
238
239
95.0k
    if ((src->meth->flags & EC_FLAGS_CUSTOM_CURVE) == 0) {
240
95.0k
        if (!BN_copy(dest->order, src->order))
241
0
            return 0;
242
95.0k
        if (!BN_copy(dest->cofactor, src->cofactor))
243
0
            return 0;
244
95.0k
    }
245
246
95.0k
    dest->asn1_flag = src->asn1_flag;
247
95.0k
    dest->asn1_form = src->asn1_form;
248
95.0k
    dest->decoded_from_explicit_params = src->decoded_from_explicit_params;
249
250
95.0k
    if (src->seed) {
251
65.3k
        OPENSSL_free(dest->seed);
252
65.3k
        if ((dest->seed = OPENSSL_malloc(src->seed_len)) == NULL) {
253
0
            ERR_raise(ERR_LIB_EC, ERR_R_MALLOC_FAILURE);
254
0
            return 0;
255
0
        }
256
65.3k
        if (!memcpy(dest->seed, src->seed, src->seed_len))
257
0
            return 0;
258
65.3k
        dest->seed_len = src->seed_len;
259
65.3k
    } else {
260
29.7k
        OPENSSL_free(dest->seed);
261
29.7k
        dest->seed = NULL;
262
29.7k
        dest->seed_len = 0;
263
29.7k
    }
264
265
95.0k
    return dest->meth->group_copy(dest, src);
266
95.0k
}
267
268
EC_GROUP *EC_GROUP_dup(const EC_GROUP *a)
269
752k
{
270
752k
    EC_GROUP *t = NULL;
271
752k
    int ok = 0;
272
273
752k
    if (a == NULL)
274
0
        return NULL;
275
276
752k
    if ((t = ossl_ec_group_new_ex(a->libctx, a->propq, a->meth)) == NULL)
277
0
        return NULL;
278
752k
    if (!EC_GROUP_copy(t, a))
279
0
        goto err;
280
281
752k
    ok = 1;
282
283
752k
err:
284
752k
    if (!ok) {
285
0
        EC_GROUP_free(t);
286
0
        return NULL;
287
0
    }
288
752k
    return t;
289
752k
}
290
291
#ifndef OPENSSL_NO_DEPRECATED_3_0
292
const EC_METHOD *EC_GROUP_method_of(const EC_GROUP *group)
293
0
{
294
0
    return group->meth;
295
0
}
296
297
int EC_METHOD_get_field_type(const EC_METHOD *meth)
298
0
{
299
0
    return meth->field_type;
300
0
}
301
#endif
302
303
static int ec_precompute_mont_data(EC_GROUP *);
304
305
/*-
306
 * Try computing cofactor from the generator order (n) and field cardinality (q).
307
 * This works for all curves of cryptographic interest.
308
 *
309
 * Hasse thm: q + 1 - 2*sqrt(q) <= n*h <= q + 1 + 2*sqrt(q)
310
 * h_min = (q + 1 - 2*sqrt(q))/n
311
 * h_max = (q + 1 + 2*sqrt(q))/n
312
 * h_max - h_min = 4*sqrt(q)/n
313
 * So if n > 4*sqrt(q) holds, there is only one possible value for h:
314
 * h = \lfloor (h_min + h_max)/2 \rceil = \lfloor (q + 1)/n \rceil
315
 *
316
 * Otherwise, zero cofactor and return success.
317
 */
318
static int ec_guess_cofactor(EC_GROUP *group)
319
16.7k
{
320
16.7k
    int ret = 0;
321
16.7k
    BN_CTX *ctx = NULL;
322
16.7k
    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
16.7k
    if (BN_num_bits(group->order) <= (BN_num_bits(group->field) + 1) / 2 + 3) {
329
        /* default to 0 */
330
8.48k
        BN_zero(group->cofactor);
331
        /* return success */
332
8.48k
        return 1;
333
8.48k
    }
334
335
8.22k
    if ((ctx = BN_CTX_new_ex(group->libctx)) == NULL)
336
0
        return 0;
337
338
8.22k
    BN_CTX_start(ctx);
339
8.22k
    if ((q = BN_CTX_get(ctx)) == NULL)
340
0
        goto err;
341
342
    /* set q = 2**m for binary fields; q = p otherwise */
343
8.22k
    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
8.22k
    } else {
348
8.22k
        if (!BN_copy(q, group->field))
349
0
            goto err;
350
8.22k
    }
351
352
    /* compute h = \lfloor (q + 1)/n \rceil = \lfloor (q + 1 + n/2)/n \rfloor */
353
8.22k
    if (!BN_rshift1(group->cofactor, group->order) /* n/2 */
354
8.22k
        || !BN_add(group->cofactor, group->cofactor, q) /* q + n/2 */
355
        /* q + 1 + n/2 */
356
8.22k
        || !BN_add(group->cofactor, group->cofactor, BN_value_one())
357
        /* (q + 1 + n/2)/n */
358
8.22k
        || !BN_div(group->cofactor, NULL, group->cofactor, group->order, ctx))
359
0
        goto err;
360
8.22k
    ret = 1;
361
8.22k
err:
362
8.22k
    BN_CTX_end(ctx);
363
8.22k
    BN_CTX_free(ctx);
364
8.22k
    return ret;
365
8.22k
}
366
367
int EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator,
368
    const BIGNUM *order, const BIGNUM *cofactor)
369
532k
{
370
532k
    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
532k
    if (group->field == NULL || BN_is_zero(group->field)
377
532k
        || 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
532k
    if (order == NULL || BN_is_zero(order) || BN_is_negative(order)
388
532k
        || 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
532k
    if (cofactor != NULL && BN_is_negative(cofactor)) {
399
149
        ERR_raise(ERR_LIB_EC, EC_R_UNKNOWN_COFACTOR);
400
149
        return 0;
401
149
    }
402
403
532k
    if (group->generator == NULL) {
404
521k
        group->generator = EC_POINT_new(group);
405
521k
        if (group->generator == NULL)
406
0
            return 0;
407
521k
    }
408
532k
    if (!EC_POINT_copy(group->generator, generator))
409
0
        return 0;
410
411
532k
    if (!BN_copy(group->order, order))
412
0
        return 0;
413
414
    /* Either take the provided positive cofactor, or try to compute it */
415
532k
    if (cofactor != NULL && !BN_is_zero(cofactor)) {
416
515k
        if (!BN_copy(group->cofactor, cofactor))
417
0
            return 0;
418
515k
    } 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
532k
    if (BN_is_odd(group->order)) {
429
520k
        return ec_precompute_mont_data(group);
430
520k
    }
431
432
11.9k
    BN_MONT_CTX_free(group->mont_data);
433
11.9k
    group->mont_data = NULL;
434
11.9k
    return 1;
435
532k
}
436
437
const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group)
438
283k
{
439
283k
    return group->generator;
440
283k
}
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
9.67k
{
449
9.67k
    if (group->order == NULL)
450
0
        return 0;
451
9.67k
    if (!BN_copy(order, group->order))
452
0
        return 0;
453
454
9.67k
    return !BN_is_zero(order);
455
9.67k
}
456
457
const BIGNUM *EC_GROUP_get0_order(const EC_GROUP *group)
458
889k
{
459
889k
    return group->order;
460
889k
}
461
462
int EC_GROUP_order_bits(const EC_GROUP *group)
463
1.03M
{
464
1.03M
    return group->meth->group_order_bits(group);
465
1.03M
}
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
387k
{
481
387k
    return group->cofactor;
482
387k
}
483
484
void EC_GROUP_set_curve_name(EC_GROUP *group, int nid)
485
811k
{
486
811k
    group->curve_name = nid;
487
811k
    group->asn1_flag = (nid != NID_undef)
488
811k
        ? OPENSSL_EC_NAMED_CURVE
489
811k
        : OPENSSL_EC_EXPLICIT_CURVE;
490
811k
}
491
492
int EC_GROUP_get_curve_name(const EC_GROUP *group)
493
2.84M
{
494
2.84M
    return group->curve_name;
495
2.84M
}
496
497
const BIGNUM *EC_GROUP_get0_field(const EC_GROUP *group)
498
0
{
499
0
    return group->field;
500
0
}
501
502
int EC_GROUP_get_field_type(const EC_GROUP *group)
503
1.63M
{
504
1.63M
    return group->meth->field_type;
505
1.63M
}
506
507
void EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag)
508
809k
{
509
809k
    group->asn1_flag = flag;
510
809k
}
511
512
int EC_GROUP_get_asn1_flag(const EC_GROUP *group)
513
1.26M
{
514
1.26M
    return group->asn1_flag;
515
1.26M
}
516
517
void EC_GROUP_set_point_conversion_form(EC_GROUP *group,
518
    point_conversion_form_t form)
519
204k
{
520
204k
    group->asn1_form = form;
521
204k
}
522
523
point_conversion_form_t EC_GROUP_get_point_conversion_form(const EC_GROUP
524
        *group)
525
606k
{
526
606k
    return group->asn1_form;
527
606k
}
528
529
size_t EC_GROUP_set_seed(EC_GROUP *group, const unsigned char *p, size_t len)
530
649k
{
531
649k
    OPENSSL_free(group->seed);
532
649k
    group->seed = NULL;
533
649k
    group->seed_len = 0;
534
535
649k
    if (!len || !p)
536
11.4k
        return 1;
537
538
637k
    if ((group->seed = OPENSSL_malloc(len)) == NULL) {
539
0
        ERR_raise(ERR_LIB_EC, ERR_R_MALLOC_FAILURE);
540
0
        return 0;
541
0
    }
542
637k
    memcpy(group->seed, p, len);
543
637k
    group->seed_len = len;
544
545
637k
    return len;
546
637k
}
547
548
unsigned char *EC_GROUP_get0_seed(const EC_GROUP *group)
549
37.6k
{
550
37.6k
    return group->seed;
551
37.6k
}
552
553
size_t EC_GROUP_get_seed_len(const EC_GROUP *group)
554
36.3k
{
555
36.3k
    return group->seed_len;
556
36.3k
}
557
558
int EC_GROUP_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a,
559
    const BIGNUM *b, BN_CTX *ctx)
560
487k
{
561
487k
    if (group->meth->group_set_curve == 0) {
562
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
563
0
        return 0;
564
0
    }
565
487k
    return group->meth->group_set_curve(group, p, a, b, ctx);
566
487k
}
567
568
int EC_GROUP_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b,
569
    BN_CTX *ctx)
570
40.6k
{
571
40.6k
    if (group->meth->group_get_curve == NULL) {
572
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
573
0
        return 0;
574
0
    }
575
40.6k
    return group->meth->group_get_curve(group, p, a, b, ctx);
576
40.6k
}
577
578
#ifndef OPENSSL_NO_DEPRECATED_3_0
579
int EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a,
580
    const BIGNUM *b, BN_CTX *ctx)
581
0
{
582
0
    return EC_GROUP_set_curve(group, p, a, b, ctx);
583
0
}
584
585
int EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a,
586
    BIGNUM *b, BN_CTX *ctx)
587
0
{
588
0
    return EC_GROUP_get_curve(group, p, a, b, ctx);
589
0
}
590
591
#ifndef OPENSSL_NO_EC2M
592
int EC_GROUP_set_curve_GF2m(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a,
593
    const BIGNUM *b, BN_CTX *ctx)
594
0
{
595
0
    return EC_GROUP_set_curve(group, p, a, b, ctx);
596
0
}
597
598
int EC_GROUP_get_curve_GF2m(const EC_GROUP *group, BIGNUM *p, BIGNUM *a,
599
    BIGNUM *b, BN_CTX *ctx)
600
0
{
601
0
    return EC_GROUP_get_curve(group, p, a, b, ctx);
602
0
}
603
#endif
604
#endif
605
606
int EC_GROUP_get_degree(const EC_GROUP *group)
607
465k
{
608
465k
    if (group->meth->group_get_degree == 0) {
609
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
610
0
        return 0;
611
0
    }
612
465k
    return group->meth->group_get_degree(group);
613
465k
}
614
615
int EC_GROUP_check_discriminant(const EC_GROUP *group, BN_CTX *ctx)
616
4.92k
{
617
4.92k
    if (group->meth->group_check_discriminant == 0) {
618
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
619
0
        return 0;
620
0
    }
621
4.92k
    return group->meth->group_check_discriminant(group, ctx);
622
4.92k
}
623
624
int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx)
625
112k
{
626
112k
    int r = 0;
627
112k
    BIGNUM *a1, *a2, *a3, *b1, *b2, *b3;
628
112k
#ifndef FIPS_MODULE
629
112k
    BN_CTX *ctx_new = NULL;
630
112k
#endif
631
632
    /* compare the field types */
633
112k
    if (EC_GROUP_get_field_type(a) != EC_GROUP_get_field_type(b))
634
0
        return 1;
635
    /* compare the curve name (if present in both) */
636
112k
    if (EC_GROUP_get_curve_name(a) && EC_GROUP_get_curve_name(b) && EC_GROUP_get_curve_name(a) != EC_GROUP_get_curve_name(b))
637
0
        return 1;
638
112k
    if (a->meth->flags & EC_FLAGS_CUSTOM_CURVE)
639
0
        return 0;
640
641
112k
#ifndef FIPS_MODULE
642
112k
    if (ctx == NULL)
643
0
        ctx_new = ctx = BN_CTX_new();
644
112k
#endif
645
112k
    if (ctx == NULL)
646
0
        return -1;
647
648
112k
    BN_CTX_start(ctx);
649
112k
    a1 = BN_CTX_get(ctx);
650
112k
    a2 = BN_CTX_get(ctx);
651
112k
    a3 = BN_CTX_get(ctx);
652
112k
    b1 = BN_CTX_get(ctx);
653
112k
    b2 = BN_CTX_get(ctx);
654
112k
    b3 = BN_CTX_get(ctx);
655
112k
    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
112k
    if (!a->meth->group_get_curve(a, a1, a2, a3, ctx) || !b->meth->group_get_curve(b, b1, b2, b3, ctx))
668
0
        r = 1;
669
670
    /* return 1 if the curve parameters are different */
671
112k
    if (r || BN_cmp(a1, b1) != 0 || BN_cmp(a2, b2) != 0 || BN_cmp(a3, b3) != 0)
672
0
        r = 1;
673
674
    /* XXX EC_POINT_cmp() assumes that the methods are equal */
675
    /* return 1 if the generators are different */
676
112k
    if (r || EC_POINT_cmp(a, EC_GROUP_get0_generator(a), EC_GROUP_get0_generator(b), ctx) != 0)
677
0
        r = 1;
678
679
112k
    if (!r) {
680
112k
        const BIGNUM *ao, *bo, *ac, *bc;
681
        /* compare the orders */
682
112k
        ao = EC_GROUP_get0_order(a);
683
112k
        bo = EC_GROUP_get0_order(b);
684
112k
        if (ao == NULL || bo == NULL) {
685
            /* return an error if either order is NULL */
686
0
            r = -1;
687
0
            goto end;
688
0
        }
689
112k
        if (BN_cmp(ao, bo) != 0) {
690
            /* return 1 if orders are different */
691
0
            r = 1;
692
0
            goto end;
693
0
        }
694
        /*
695
         * It gets here if the curve parameters and generator matched.
696
         * Now check the optional cofactors (if both are present).
697
         */
698
112k
        ac = EC_GROUP_get0_cofactor(a);
699
112k
        bc = EC_GROUP_get0_cofactor(b);
700
        /* Returns 1 (mismatch) if both cofactors are specified and different */
701
112k
        if (!BN_is_zero(ac) && !BN_is_zero(bc) && BN_cmp(ac, bc) != 0)
702
0
            r = 1;
703
        /* Returns 0 if the parameters matched */
704
112k
    }
705
112k
end:
706
112k
    BN_CTX_end(ctx);
707
112k
#ifndef FIPS_MODULE
708
112k
    BN_CTX_free(ctx_new);
709
112k
#endif
710
112k
    return r;
711
112k
}
712
713
/* functions for EC_POINT objects */
714
715
EC_POINT *EC_POINT_new(const EC_GROUP *group)
716
3.42M
{
717
3.42M
    EC_POINT *ret;
718
719
3.42M
    if (group == NULL) {
720
0
        ERR_raise(ERR_LIB_EC, ERR_R_PASSED_NULL_PARAMETER);
721
0
        return NULL;
722
0
    }
723
3.42M
    if (group->meth->point_init == NULL) {
724
0
        ERR_raise(ERR_LIB_EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
725
0
        return NULL;
726
0
    }
727
728
3.42M
    ret = OPENSSL_zalloc(sizeof(*ret));
729
3.42M
    if (ret == NULL) {
730
0
        ERR_raise(ERR_LIB_EC, ERR_R_MALLOC_FAILURE);
731
0
        return NULL;
732
0
    }
733
734
3.42M
    ret->meth = group->meth;
735
3.42M
    ret->curve_name = group->curve_name;
736
737
3.42M
    if (!ret->meth->point_init(ret)) {
738
0
        OPENSSL_free(ret);
739
0
        return NULL;
740
0
    }
741
742
3.42M
    return ret;
743
3.42M
}
744
745
void EC_POINT_free(EC_POINT *point)
746
3.73M
{
747
3.73M
    if (point == NULL)
748
348k
        return;
749
750
3.38M
    if (point->meth->point_finish != 0)
751
3.38M
        point->meth->point_finish(point);
752
3.38M
    OPENSSL_free(point);
753
3.38M
}
754
755
void EC_POINT_clear_free(EC_POINT *point)
756
119k
{
757
119k
    if (point == NULL)
758
77.0k
        return;
759
760
42.2k
    if (point->meth->point_clear_finish != 0)
761
42.2k
        point->meth->point_clear_finish(point);
762
0
    else if (point->meth->point_finish != 0)
763
0
        point->meth->point_finish(point);
764
42.2k
    OPENSSL_clear_free(point, sizeof(*point));
765
42.2k
}
766
767
int EC_POINT_copy(EC_POINT *dest, const EC_POINT *src)
768
1.73M
{
769
1.73M
    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.73M
    if (dest->meth != src->meth
774
1.73M
        || (dest->curve_name != src->curve_name
775
142k
            && dest->curve_name != 0
776
142k
            && src->curve_name != 0)) {
777
0
        ERR_raise(ERR_LIB_EC, EC_R_INCOMPATIBLE_OBJECTS);
778
0
        return 0;
779
0
    }
780
1.73M
    if (dest == src)
781
1.68k
        return 1;
782
1.73M
    return dest->meth->point_copy(dest, src);
783
1.73M
}
784
785
EC_POINT *EC_POINT_dup(const EC_POINT *a, const EC_GROUP *group)
786
92.7k
{
787
92.7k
    EC_POINT *t;
788
92.7k
    int r;
789
790
92.7k
    if (a == NULL)
791
0
        return NULL;
792
793
92.7k
    t = EC_POINT_new(group);
794
92.7k
    if (t == NULL)
795
0
        return NULL;
796
92.7k
    r = EC_POINT_copy(t, a);
797
92.7k
    if (!r) {
798
0
        EC_POINT_free(t);
799
0
        return NULL;
800
0
    }
801
92.7k
    return t;
802
92.7k
}
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
53.1k
{
813
53.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
53.1k
    if (group->meth != point->meth) {
818
0
        ERR_raise(ERR_LIB_EC, EC_R_INCOMPATIBLE_OBJECTS);
819
0
        return 0;
820
0
    }
821
53.1k
    return group->meth->point_set_to_infinity(group, point);
822
53.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
850k
{
830
850k
    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
850k
    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
850k
    return ossl_ec_GFp_simple_set_Jprojective_coordinates_GFp(group, point,
839
850k
        x, y, z, ctx);
840
850k
}
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
1.32M
{
864
1.32M
    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
1.32M
    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
1.32M
    if (!group->meth->point_set_affine_coordinates(group, point, x, y, ctx))
873
0
        return 0;
874
875
1.32M
    if (EC_POINT_is_on_curve(group, point, ctx) <= 0) {
876
44.9k
        ERR_raise(ERR_LIB_EC, EC_R_POINT_IS_NOT_ON_CURVE);
877
44.9k
        return 0;
878
44.9k
    }
879
1.27M
    return 1;
880
1.32M
}
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
141k
{
904
141k
    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
141k
    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
141k
    if (EC_POINT_is_at_infinity(group, point)) {
913
995
        ERR_raise(ERR_LIB_EC, EC_R_POINT_AT_INFINITY);
914
995
        return 0;
915
995
    }
916
140k
    return group->meth->point_get_affine_coordinates(group, point, x, y, ctx);
917
141k
}
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
125k
{
940
125k
    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
125k
    if (!ec_point_is_compat(r, group) || !ec_point_is_compat(a, group)
945
125k
        || !ec_point_is_compat(b, group)) {
946
0
        ERR_raise(ERR_LIB_EC, EC_R_INCOMPATIBLE_OBJECTS);
947
0
        return 0;
948
0
    }
949
125k
    return group->meth->add(group, r, a, b, ctx);
950
125k
}
951
952
int EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a,
953
    BN_CTX *ctx)
954
876k
{
955
876k
    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
876k
    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
876k
    return group->meth->dbl(group, r, a, ctx);
964
876k
}
965
966
int EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx)
967
54.6k
{
968
54.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
54.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
54.6k
    return group->meth->invert(group, a, ctx);
977
54.6k
}
978
979
int EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point)
980
3.47M
{
981
3.47M
    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
3.47M
    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
3.47M
    return group->meth->is_at_infinity(group, point);
990
3.47M
}
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
1.34M
{
1002
1.34M
    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
1.34M
    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
1.34M
    return group->meth->is_on_curve(group, point, ctx);
1011
1.34M
}
1012
1013
int EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b,
1014
    BN_CTX *ctx)
1015
178k
{
1016
178k
    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
178k
    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
178k
    return group->meth->point_cmp(group, a, b, ctx);
1025
178k
}
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
52.8k
{
1117
52.8k
    int ret = 0;
1118
52.8k
    size_t num;
1119
52.8k
#ifndef FIPS_MODULE
1120
52.8k
    BN_CTX *new_ctx = NULL;
1121
52.8k
#endif
1122
1123
52.8k
    if (!ec_point_is_compat(r, group)
1124
52.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
52.8k
    if (g_scalar == NULL && p_scalar == NULL)
1130
0
        return EC_POINT_set_to_infinity(group, r);
1131
1132
52.8k
#ifndef FIPS_MODULE
1133
52.8k
    if (ctx == NULL)
1134
0
        ctx = new_ctx = BN_CTX_secure_new();
1135
52.8k
#endif
1136
52.8k
    if (ctx == NULL) {
1137
0
        ERR_raise(ERR_LIB_EC, ERR_R_INTERNAL_ERROR);
1138
0
        return 0;
1139
0
    }
1140
1141
52.8k
    num = (point != NULL && p_scalar != NULL) ? 1 : 0;
1142
52.8k
    if (group->meth->mul != NULL)
1143
42.1k
        ret = group->meth->mul(group, r, g_scalar, num, &point, &p_scalar, ctx);
1144
10.6k
    else
1145
        /* use default */
1146
10.6k
        ret = ossl_ec_wNAF_mul(group, r, g_scalar, num, &point, &p_scalar, ctx);
1147
1148
52.8k
#ifndef FIPS_MODULE
1149
52.8k
    BN_CTX_free(new_ctx);
1150
52.8k
#endif
1151
52.8k
    return ret;
1152
52.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
645k
{
1187
645k
    BN_CTX *ctx = BN_CTX_new_ex(group->libctx);
1188
645k
    int ret = 0;
1189
1190
645k
    BN_MONT_CTX_free(group->mont_data);
1191
645k
    group->mont_data = NULL;
1192
1193
645k
    if (ctx == NULL)
1194
0
        goto err;
1195
1196
645k
    group->mont_data = BN_MONT_CTX_new();
1197
645k
    if (group->mont_data == NULL)
1198
0
        goto err;
1199
1200
645k
    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
645k
    ret = 1;
1207
1208
645k
err:
1209
1210
645k
    BN_CTX_free(ctx);
1211
645k
    return ret;
1212
645k
}
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
1.11M
{
1228
1.11M
    if (group->order == NULL)
1229
0
        return 0;
1230
1.11M
    return BN_num_bits(group->order);
1231
1.11M
}
1232
1233
static int ec_field_inverse_mod_ord(const EC_GROUP *group, BIGNUM *r,
1234
    const BIGNUM *x, BN_CTX *ctx)
1235
466
{
1236
466
    BIGNUM *e = NULL;
1237
466
    int ret = 0;
1238
466
#ifndef FIPS_MODULE
1239
466
    BN_CTX *new_ctx = NULL;
1240
466
#endif
1241
1242
466
    if (group->mont_data == NULL)
1243
0
        return 0;
1244
1245
466
#ifndef FIPS_MODULE
1246
466
    if (ctx == NULL)
1247
0
        ctx = new_ctx = BN_CTX_secure_new();
1248
466
#endif
1249
466
    if (ctx == NULL)
1250
0
        return 0;
1251
1252
466
    BN_CTX_start(ctx);
1253
466
    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
466
    if (!BN_set_word(e, 2))
1261
0
        goto err;
1262
466
    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
466
    if (!bn_mod_exp_mont_fixed_top(r, x, e, group->order, ctx, group->mont_data))
1269
0
        goto err;
1270
1271
466
    ret = 1;
1272
1273
466
err:
1274
466
    BN_CTX_end(ctx);
1275
466
#ifndef FIPS_MODULE
1276
466
    BN_CTX_free(new_ctx);
1277
466
#endif
1278
466
    return ret;
1279
466
}
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
8.00k
{
1297
8.00k
    if (group->meth->field_inverse_mod_ord != NULL)
1298
7.54k
        return group->meth->field_inverse_mod_ord(group, res, x, ctx);
1299
466
    else
1300
466
        return ec_field_inverse_mod_ord(group, res, x, ctx);
1301
8.00k
}
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
4.87k
{
1316
4.87k
    if (group->meth->blind_coordinates == NULL)
1317
0
        return 1; /* ignore if not implemented */
1318
1319
4.87k
    return group->meth->blind_coordinates(group, p, ctx);
1320
4.87k
}
1321
1322
int EC_GROUP_get_basis_type(const EC_GROUP *group)
1323
168k
{
1324
168k
    int i;
1325
1326
168k
    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
168k
    for (i = 0;
1332
754k
        i < (int)OSSL_NELEM(group->poly) && group->poly[i] != 0;
1333
585k
        i++)
1334
585k
        continue;
1335
1336
168k
    if (i == 4)
1337
124k
        return NID_X9_62_ppBasis;
1338
44.5k
    else if (i == 2)
1339
44.5k
        return NID_X9_62_tpBasis;
1340
0
    else
1341
        /* everything else is currently not supported */
1342
0
        return 0;
1343
168k
}
1344
1345
#ifndef OPENSSL_NO_EC2M
1346
int EC_GROUP_get_trinomial_basis(const EC_GROUP *group, unsigned int *k)
1347
44.5k
{
1348
44.5k
    if (group == NULL)
1349
0
        return 0;
1350
1351
44.5k
    if (EC_GROUP_get_field_type(group) != NID_X9_62_characteristic_two_field
1352
44.5k
        || !((group->poly[0] != 0) && (group->poly[1] != 0)
1353
44.5k
            && (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
44.5k
    if (k)
1359
44.5k
        *k = group->poly[1];
1360
1361
44.5k
    return 1;
1362
44.5k
}
1363
1364
int EC_GROUP_get_pentanomial_basis(const EC_GROUP *group, unsigned int *k1,
1365
    unsigned int *k2, unsigned int *k3)
1366
124k
{
1367
124k
    if (group == NULL)
1368
0
        return 0;
1369
1370
124k
    if (EC_GROUP_get_field_type(group) != NID_X9_62_characteristic_two_field
1371
124k
        || !((group->poly[0] != 0) && (group->poly[1] != 0)
1372
124k
            && (group->poly[2] != 0) && (group->poly[3] != 0)
1373
124k
            && (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
124k
    if (k1)
1379
124k
        *k1 = group->poly[3];
1380
124k
    if (k2)
1381
124k
        *k2 = group->poly[2];
1382
124k
    if (k3)
1383
124k
        *k3 = group->poly[1];
1384
1385
124k
    return 1;
1386
124k
}
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
105k
{
1475
105k
    int ok = 0, nid;
1476
105k
    const char *curve_name = NULL;
1477
1478
105k
    switch (p->data_type) {
1479
105k
    case OSSL_PARAM_UTF8_STRING:
1480
        /* The OSSL_PARAM functions have no support for this */
1481
105k
        curve_name = p->data;
1482
105k
        ok = (curve_name != NULL);
1483
105k
        break;
1484
0
    case OSSL_PARAM_UTF8_PTR:
1485
0
        ok = OSSL_PARAM_get_utf8_ptr(p, &curve_name);
1486
0
        break;
1487
105k
    }
1488
1489
105k
    if (ok) {
1490
105k
        nid = ossl_ec_curve_name2nid(curve_name);
1491
105k
        if (nid == NID_undef) {
1492
0
            ERR_raise(ERR_LIB_EC, EC_R_INVALID_CURVE);
1493
0
            return NULL;
1494
105k
        } else {
1495
105k
            return EC_GROUP_new_by_curve_name_ex(libctx, propq, nid);
1496
105k
        }
1497
105k
    }
1498
0
    return NULL;
1499
105k
}
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
114k
{
1504
114k
    int encoding_flag = -1, format = -1;
1505
114k
    const OSSL_PARAM *p;
1506
1507
114k
    p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_POINT_CONVERSION_FORMAT);
1508
114k
    if (p != NULL) {
1509
92.7k
        if (!ossl_ec_pt_format_param2id(p, &format)) {
1510
0
            ECerr(0, EC_R_INVALID_FORM);
1511
0
            return 0;
1512
0
        }
1513
92.7k
        EC_GROUP_set_point_conversion_form(group, format);
1514
92.7k
    }
1515
1516
114k
    p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_ENCODING);
1517
114k
    if (p != NULL) {
1518
92.7k
        if (!ossl_ec_encoding_param2id(p, &encoding_flag)) {
1519
0
            ECerr(0, EC_R_INVALID_FORM);
1520
0
            return 0;
1521
0
        }
1522
92.7k
        EC_GROUP_set_asn1_flag(group, encoding_flag);
1523
92.7k
    }
1524
    /* Optional seed */
1525
114k
    p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_SEED);
1526
114k
    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
            ECerr(0, EC_R_INVALID_SEED);
1531
0
            return 0;
1532
0
        }
1533
0
    }
1534
114k
    return 1;
1535
114k
}
1536
1537
EC_GROUP *EC_GROUP_new_from_params(const OSSL_PARAM params[],
1538
    OSSL_LIB_CTX *libctx, const char *propq)
1539
93.1k
{
1540
93.1k
    const OSSL_PARAM *ptmp;
1541
93.1k
    EC_GROUP *group = NULL;
1542
1543
93.1k
#ifndef FIPS_MODULE
1544
93.1k
    const OSSL_PARAM *pa, *pb;
1545
93.1k
    int ok = 0;
1546
93.1k
    EC_GROUP *named_group = NULL;
1547
93.1k
    BIGNUM *p = NULL, *a = NULL, *b = NULL, *order = NULL, *cofactor = NULL;
1548
93.1k
    EC_POINT *point = NULL;
1549
93.1k
    int field_bits = 0;
1550
93.1k
    int is_prime_field = 1;
1551
93.1k
    BN_CTX *bnctx = NULL;
1552
93.1k
    const unsigned char *buf = NULL;
1553
93.1k
    int encoding_flag = -1;
1554
93.1k
#endif
1555
1556
    /* This is the simple named group case */
1557
93.1k
    ptmp = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_GROUP_NAME);
1558
93.1k
    if (ptmp != NULL) {
1559
93.1k
        int decoded = 0;
1560
1561
93.1k
        if ((group = group_new_from_name(ptmp, libctx, propq)) == NULL)
1562
0
            return NULL;
1563
93.1k
        if (!ossl_ec_group_set_params(group, params)) {
1564
0
            EC_GROUP_free(group);
1565
0
            return NULL;
1566
0
        }
1567
1568
93.1k
        ptmp = OSSL_PARAM_locate_const(params,
1569
93.1k
            OSSL_PKEY_PARAM_EC_DECODED_FROM_EXPLICIT_PARAMS);
1570
93.1k
        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
93.1k
        group->decoded_from_explicit_params = decoded > 0;
1576
93.1k
        return group;
1577
93.1k
    }
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_MALLOC_FAILURE);
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_MALLOC_FAILURE);
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)
1608
0
        == 0) {
1609
0
        is_prime_field = 0;
1610
0
    } else {
1611
        /* Invalid field */
1612
0
        ERR_raise(ERR_LIB_EC, EC_R_UNSUPPORTED_FIELD);
1613
0
        goto err;
1614
0
    }
1615
1616
0
    pa = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_A);
1617
0
    if (!OSSL_PARAM_get_BN(pa, &a)) {
1618
0
        ERR_raise(ERR_LIB_EC, EC_R_INVALID_A);
1619
0
        goto err;
1620
0
    }
1621
0
    pb = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_B);
1622
0
    if (!OSSL_PARAM_get_BN(pb, &b)) {
1623
0
        ERR_raise(ERR_LIB_EC, EC_R_INVALID_B);
1624
0
        goto err;
1625
0
    }
1626
1627
    /* extract the prime number or irreducible polynomial */
1628
0
    ptmp = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_P);
1629
0
    if (!OSSL_PARAM_get_BN(ptmp, &p)) {
1630
0
        ERR_raise(ERR_LIB_EC, EC_R_INVALID_P);
1631
0
        goto err;
1632
0
    }
1633
1634
0
    if (is_prime_field) {
1635
0
        if (BN_is_negative(p) || BN_is_zero(p)) {
1636
0
            ERR_raise(ERR_LIB_EC, EC_R_INVALID_P);
1637
0
            goto err;
1638
0
        }
1639
0
        field_bits = BN_num_bits(p);
1640
0
        if (field_bits > OPENSSL_ECC_MAX_FIELD_BITS) {
1641
0
            ERR_raise(ERR_LIB_EC, EC_R_FIELD_TOO_LARGE);
1642
0
            goto err;
1643
0
        }
1644
1645
        /* create the EC_GROUP structure */
1646
0
        group = EC_GROUP_new_curve_GFp(p, a, b, bnctx);
1647
0
    } else {
1648
#ifdef OPENSSL_NO_EC2M
1649
        ERR_raise(ERR_LIB_EC, EC_R_GF2M_NOT_SUPPORTED);
1650
        goto err;
1651
#else
1652
        /* create the EC_GROUP structure */
1653
0
        group = EC_GROUP_new_curve_GF2m(p, a, b, NULL);
1654
0
        if (group != NULL) {
1655
0
            field_bits = EC_GROUP_get_degree(group);
1656
0
            if (field_bits > OPENSSL_ECC_MAX_FIELD_BITS) {
1657
0
                ERR_raise(ERR_LIB_EC, EC_R_FIELD_TOO_LARGE);
1658
0
                goto err;
1659
0
            }
1660
0
        }
1661
0
#endif /* OPENSSL_NO_EC2M */
1662
0
    }
1663
1664
0
    if (group == NULL) {
1665
0
        ERR_raise(ERR_LIB_EC, ERR_R_EC_LIB);
1666
0
        goto err;
1667
0
    }
1668
1669
    /* Optional seed */
1670
0
    ptmp = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_SEED);
1671
0
    if (ptmp != NULL) {
1672
0
        if (ptmp->data_type != OSSL_PARAM_OCTET_STRING) {
1673
0
            ERR_raise(ERR_LIB_EC, EC_R_INVALID_SEED);
1674
0
            goto err;
1675
0
        }
1676
0
        if (!EC_GROUP_set_seed(group, ptmp->data, ptmp->data_size))
1677
0
            goto err;
1678
0
    }
1679
1680
    /* generator base point */
1681
0
    ptmp = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_GENERATOR);
1682
0
    if (ptmp == NULL
1683
0
        || ptmp->data_type != OSSL_PARAM_OCTET_STRING) {
1684
0
        ERR_raise(ERR_LIB_EC, EC_R_INVALID_GENERATOR);
1685
0
        goto err;
1686
0
    }
1687
0
    buf = (const unsigned char *)(ptmp->data);
1688
0
    if ((point = EC_POINT_new(group)) == NULL)
1689
0
        goto err;
1690
0
    EC_GROUP_set_point_conversion_form(group,
1691
0
        (point_conversion_form_t)buf[0] & ~0x01);
1692
0
    if (!EC_POINT_oct2point(group, point, buf, ptmp->data_size, bnctx)) {
1693
0
        ERR_raise(ERR_LIB_EC, EC_R_INVALID_GENERATOR);
1694
0
        goto err;
1695
0
    }
1696
1697
    /* order */
1698
0
    ptmp = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_ORDER);
1699
0
    if (!OSSL_PARAM_get_BN(ptmp, &order)
1700
0
        || (BN_is_negative(order) || BN_is_zero(order))
1701
0
        || (BN_num_bits(order) > (int)field_bits + 1)) { /* Hasse bound */
1702
0
        ERR_raise(ERR_LIB_EC, EC_R_INVALID_GROUP_ORDER);
1703
0
        goto err;
1704
0
    }
1705
1706
    /* Optional cofactor */
1707
0
    ptmp = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_COFACTOR);
1708
0
    if (ptmp != NULL) {
1709
0
        cofactor = BN_CTX_get(bnctx);
1710
0
        if (cofactor == NULL || !OSSL_PARAM_get_BN(ptmp, &cofactor)) {
1711
0
            ERR_raise(ERR_LIB_EC, EC_R_INVALID_COFACTOR);
1712
0
            goto err;
1713
0
        }
1714
0
    }
1715
1716
    /* set the generator, order and cofactor (if present) */
1717
0
    if (!EC_GROUP_set_generator(group, point, order, cofactor)) {
1718
0
        ERR_raise(ERR_LIB_EC, EC_R_INVALID_GENERATOR);
1719
0
        goto err;
1720
0
    }
1721
1722
0
    named_group = ec_group_explicit_to_named(group, libctx, propq, bnctx);
1723
0
    if (named_group == NULL) {
1724
0
        ERR_raise(ERR_LIB_EC, EC_R_INVALID_NAMED_GROUP_CONVERSION);
1725
0
        goto err;
1726
0
    }
1727
0
    if (named_group == group) {
1728
        /*
1729
         * If we did not find a named group then the encoding should be explicit
1730
         * if it was specified
1731
         */
1732
0
        ptmp = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_ENCODING);
1733
0
        if (ptmp != NULL
1734
0
            && !ossl_ec_encoding_param2id(ptmp, &encoding_flag)) {
1735
0
            ERR_raise(ERR_LIB_EC, EC_R_INVALID_ENCODING);
1736
0
            goto err;
1737
0
        }
1738
0
        if (encoding_flag == OPENSSL_EC_NAMED_CURVE) {
1739
0
            ERR_raise(ERR_LIB_EC, EC_R_INVALID_ENCODING);
1740
0
            goto err;
1741
0
        }
1742
0
        EC_GROUP_set_asn1_flag(group, OPENSSL_EC_EXPLICIT_CURVE);
1743
0
    } else {
1744
0
        EC_GROUP_free(group);
1745
0
        group = named_group;
1746
0
    }
1747
    /* We've imported the group from explicit parameters, set it so. */
1748
0
    group->decoded_from_explicit_params = 1;
1749
0
    ok = 1;
1750
0
err:
1751
0
    if (!ok) {
1752
0
        EC_GROUP_free(group);
1753
0
        group = NULL;
1754
0
    }
1755
0
    EC_POINT_free(point);
1756
0
    BN_CTX_end(bnctx);
1757
0
    BN_CTX_free(bnctx);
1758
1759
0
    return group;
1760
0
#endif /* FIPS_MODULE */
1761
0
}