ec_lib.c 27.0 KB
Newer Older
1
/*
R
Rich Salz 已提交
2
 * Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.
3
 * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
4
 *
R
Rich Salz 已提交
5 6 7 8
 * Licensed under the OpenSSL license (the "License").  You may not use
 * this file except in compliance with the License.  You can obtain a copy
 * in the file LICENSE in the source distribution or at
 * https://www.openssl.org/source/license.html
9
 */
R
Rich Salz 已提交
10

B
Bodo Möller 已提交
11 12
#include <string.h>

13
#include <openssl/err.h>
14
#include <openssl/opensslv.h>
15

16
#include "ec_lcl.h"
17 18 19 20

/* functions for EC_GROUP objects */

EC_GROUP *EC_GROUP_new(const EC_METHOD *meth)
21 22 23 24 25 26 27 28 29 30 31 32
{
    EC_GROUP *ret;

    if (meth == NULL) {
        ECerr(EC_F_EC_GROUP_NEW, EC_R_SLOT_FULL);
        return NULL;
    }
    if (meth->group_init == 0) {
        ECerr(EC_F_EC_GROUP_NEW, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return NULL;
    }

R
Rich Salz 已提交
33
    ret = OPENSSL_zalloc(sizeof(*ret));
34 35 36 37 38 39
    if (ret == NULL) {
        ECerr(EC_F_EC_GROUP_NEW, ERR_R_MALLOC_FAILURE);
        return NULL;
    }

    ret->meth = meth;
40 41 42 43 44 45 46 47
    if ((ret->meth->flags & EC_FLAGS_CUSTOM_CURVE) == 0) {
        ret->order = BN_new();
        if (ret->order == NULL)
            goto err;
        ret->cofactor = BN_new();
        if (ret->cofactor == NULL)
            goto err;
    }
48
    ret->asn1_flag = OPENSSL_EC_NAMED_CURVE;
49 50 51 52
    ret->asn1_form = POINT_CONVERSION_UNCOMPRESSED;
    if (!meth->group_init(ret))
        goto err;
    return ret;
R
Rich Salz 已提交
53

54
 err:
R
Rich Salz 已提交
55 56
    BN_free(ret->order);
    BN_free(ret->cofactor);
57 58 59
    OPENSSL_free(ret);
    return NULL;
}
60

61
void EC_pre_comp_free(EC_GROUP *group)
62 63
{
    switch (group->pre_comp_type) {
R
Rich Salz 已提交
64
    case PCT_none:
65
        break;
R
Rich Salz 已提交
66
    case PCT_nistz256:
R
Rich Salz 已提交
67
#ifdef ECP_NISTZ256_ASM
68
        EC_nistz256_pre_comp_free(group->pre_comp.nistz256);
69
#endif
R
Rich Salz 已提交
70
        break;
71
#ifndef OPENSSL_NO_EC_NISTP_64_GCC_128
R
Rich Salz 已提交
72
    case PCT_nistp224:
73 74
        EC_nistp224_pre_comp_free(group->pre_comp.nistp224);
        break;
R
Rich Salz 已提交
75
    case PCT_nistp256:
76 77
        EC_nistp256_pre_comp_free(group->pre_comp.nistp256);
        break;
R
Rich Salz 已提交
78
    case PCT_nistp521:
79 80
        EC_nistp521_pre_comp_free(group->pre_comp.nistp521);
        break;
R
Rich Salz 已提交
81 82 83 84 85
#else
    case PCT_nistp224:
    case PCT_nistp256:
    case PCT_nistp521:
        break;
86
#endif
R
Rich Salz 已提交
87
    case PCT_ec:
88 89 90 91 92 93
        EC_ec_pre_comp_free(group->pre_comp.ec);
        break;
    }
    group->pre_comp.ec = NULL;
}

94
void EC_GROUP_free(EC_GROUP *group)
95 96 97
{
    if (!group)
        return;
B
Bodo Möller 已提交
98

99 100
    if (group->meth->group_finish != 0)
        group->meth->group_finish(group);
B
Bodo Möller 已提交
101

102
    EC_pre_comp_free(group);
R
Rich Salz 已提交
103
    BN_MONT_CTX_free(group->mont_data);
R
Rich Salz 已提交
104
    EC_POINT_free(group->generator);
105 106
    BN_free(group->order);
    BN_free(group->cofactor);
R
Rich Salz 已提交
107
    OPENSSL_free(group->seed);
108 109
    OPENSSL_free(group);
}
110 111

void EC_GROUP_clear_free(EC_GROUP *group)
112 113 114
{
    if (!group)
        return;
B
Bodo Möller 已提交
115

116 117 118 119
    if (group->meth->group_clear_finish != 0)
        group->meth->group_clear_finish(group);
    else if (group->meth->group_finish != 0)
        group->meth->group_finish(group);
B
Bodo Möller 已提交
120

121
    EC_pre_comp_free(group);
R
Rich Salz 已提交
122
    BN_MONT_CTX_free(group->mont_data);
R
Rich Salz 已提交
123
    EC_POINT_clear_free(group->generator);
124 125
    BN_clear_free(group->order);
    BN_clear_free(group->cofactor);
R
Rich Salz 已提交
126
    OPENSSL_clear_free(group->seed, group->seed_len);
R
Rich Salz 已提交
127
    OPENSSL_clear_free(group, sizeof(*group));
128
}
129 130

int EC_GROUP_copy(EC_GROUP *dest, const EC_GROUP *src)
131 132 133 134 135 136 137 138 139 140 141 142
{
    if (dest->meth->group_copy == 0) {
        ECerr(EC_F_EC_GROUP_COPY, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
    if (dest->meth != src->meth) {
        ECerr(EC_F_EC_GROUP_COPY, EC_R_INCOMPATIBLE_OBJECTS);
        return 0;
    }
    if (dest == src)
        return 1;

143 144 145
    /* Copy precomputed */
    dest->pre_comp_type = src->pre_comp_type;
    switch (src->pre_comp_type) {
R
Rich Salz 已提交
146
    case PCT_none:
147 148
        dest->pre_comp.ec = NULL;
        break;
R
Rich Salz 已提交
149
    case PCT_nistz256:
R
Rich Salz 已提交
150
#ifdef ECP_NISTZ256_ASM
151
        dest->pre_comp.nistz256 = EC_nistz256_pre_comp_dup(src->pre_comp.nistz256);
152
#endif
R
Rich Salz 已提交
153
        break;
154
#ifndef OPENSSL_NO_EC_NISTP_64_GCC_128
R
Rich Salz 已提交
155
    case PCT_nistp224:
156 157
        dest->pre_comp.nistp224 = EC_nistp224_pre_comp_dup(src->pre_comp.nistp224);
        break;
R
Rich Salz 已提交
158
    case PCT_nistp256:
159 160
        dest->pre_comp.nistp256 = EC_nistp256_pre_comp_dup(src->pre_comp.nistp256);
        break;
R
Rich Salz 已提交
161
    case PCT_nistp521:
162 163
        dest->pre_comp.nistp521 = EC_nistp521_pre_comp_dup(src->pre_comp.nistp521);
        break;
R
Rich Salz 已提交
164 165 166 167 168
#else
    case PCT_nistp224:
    case PCT_nistp256:
    case PCT_nistp521:
        break;
169
#endif
R
Rich Salz 已提交
170
    case PCT_ec:
171 172
        dest->pre_comp.ec = EC_ec_pre_comp_dup(src->pre_comp.ec);
        break;
173 174 175 176 177 178 179 180 181 182 183 184
    }

    if (src->mont_data != NULL) {
        if (dest->mont_data == NULL) {
            dest->mont_data = BN_MONT_CTX_new();
            if (dest->mont_data == NULL)
                return 0;
        }
        if (!BN_MONT_CTX_copy(dest->mont_data, src->mont_data))
            return 0;
    } else {
        /* src->generator == NULL */
R
Rich Salz 已提交
185 186
        BN_MONT_CTX_free(dest->mont_data);
        dest->mont_data = NULL;
187
    }
188

189 190 191 192 193 194 195 196 197 198
    if (src->generator != NULL) {
        if (dest->generator == NULL) {
            dest->generator = EC_POINT_new(dest);
            if (dest->generator == NULL)
                return 0;
        }
        if (!EC_POINT_copy(dest->generator, src->generator))
            return 0;
    } else {
        /* src->generator == NULL */
R
Rich Salz 已提交
199 200
        EC_POINT_clear_free(dest->generator);
        dest->generator = NULL;
201 202
    }

203 204 205 206 207 208
    if ((src->meth->flags & EC_FLAGS_CUSTOM_CURVE) == 0) {
        if (!BN_copy(dest->order, src->order))
            return 0;
        if (!BN_copy(dest->cofactor, src->cofactor))
            return 0;
    }
209 210 211 212 213 214

    dest->curve_name = src->curve_name;
    dest->asn1_flag = src->asn1_flag;
    dest->asn1_form = src->asn1_form;

    if (src->seed) {
R
Rich Salz 已提交
215
        OPENSSL_free(dest->seed);
216 217 218 219 220 221 222
        dest->seed = OPENSSL_malloc(src->seed_len);
        if (dest->seed == NULL)
            return 0;
        if (!memcpy(dest->seed, src->seed, src->seed_len))
            return 0;
        dest->seed_len = src->seed_len;
    } else {
R
Rich Salz 已提交
223
        OPENSSL_free(dest->seed);
224 225 226 227 228 229
        dest->seed = NULL;
        dest->seed_len = 0;
    }

    return dest->meth->group_copy(dest, src);
}
230

231
EC_GROUP *EC_GROUP_dup(const EC_GROUP *a)
232 233 234
{
    EC_GROUP *t = NULL;
    int ok = 0;
235

236 237
    if (a == NULL)
        return NULL;
238

239
    if ((t = EC_GROUP_new(a->meth)) == NULL)
K
KaoruToda 已提交
240
        return NULL;
241 242
    if (!EC_GROUP_copy(t, a))
        goto err;
243

244
    ok = 1;
245

246 247
 err:
    if (!ok) {
R
Rich Salz 已提交
248
        EC_GROUP_free(t);
249
        return NULL;
R
Rich Salz 已提交
250
    }
251 252
        return t;
}
253

254
const EC_METHOD *EC_GROUP_method_of(const EC_GROUP *group)
255 256 257
{
    return group->meth;
}
258

259
int EC_METHOD_get_field_type(const EC_METHOD *meth)
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
{
    return meth->field_type;
}

int EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator,
                           const BIGNUM *order, const BIGNUM *cofactor)
{
    if (generator == NULL) {
        ECerr(EC_F_EC_GROUP_SET_GENERATOR, ERR_R_PASSED_NULL_PARAMETER);
        return 0;
    }

    if (group->generator == NULL) {
        group->generator = EC_POINT_new(group);
        if (group->generator == NULL)
            return 0;
    }
    if (!EC_POINT_copy(group->generator, generator))
        return 0;

    if (order != NULL) {
        if (!BN_copy(group->order, order))
            return 0;
    } else
        BN_zero(group->order);

    if (cofactor != NULL) {
        if (!BN_copy(group->cofactor, cofactor))
            return 0;
    } else
        BN_zero(group->cofactor);

    /*
293
     * Some groups have an order with
294 295 296
     * factors of two, which makes the Montgomery setup fail.
     * |group->mont_data| will be NULL in this case.
     */
297 298 299
    if (BN_is_odd(group->order)) {
        return ec_precompute_mont_data(group);
    }
300

301 302
    BN_MONT_CTX_free(group->mont_data);
    group->mont_data = NULL;
303 304
    return 1;
}
305

N
Nils Larsch 已提交
306
const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group)
307 308 309
{
    return group->generator;
}
310

311
BN_MONT_CTX *EC_GROUP_get_mont_data(const EC_GROUP *group)
312 313 314
{
    return group->mont_data;
}
315

316
int EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx)
317
{
318 319
    if (group->order == NULL)
        return 0;
320 321
    if (!BN_copy(order, group->order))
        return 0;
322

323 324
    return !BN_is_zero(order);
}
325

326 327 328 329 330 331 332
const BIGNUM *EC_GROUP_get0_order(const EC_GROUP *group)
{
    return group->order;
}

int EC_GROUP_order_bits(const EC_GROUP *group)
{
D
Dr. Stephen Henson 已提交
333
    return group->meth->group_order_bits(group);
334 335
}

336 337 338
int EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor,
                          BN_CTX *ctx)
{
339 340 341

    if (group->cofactor == NULL)
        return 0;
342 343
    if (!BN_copy(cofactor, group->cofactor))
        return 0;
344

345 346
    return !BN_is_zero(group->cofactor);
}
347

348 349 350 351 352
const BIGNUM *EC_GROUP_get0_cofactor(const EC_GROUP *group)
{
    return group->cofactor;
}

353
void EC_GROUP_set_curve_name(EC_GROUP *group, int nid)
354 355 356
{
    group->curve_name = nid;
}
357

358
int EC_GROUP_get_curve_name(const EC_GROUP *group)
359 360 361
{
    return group->curve_name;
}
362

363
void EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag)
364 365 366
{
    group->asn1_flag = flag;
}
367 368

int EC_GROUP_get_asn1_flag(const EC_GROUP *group)
369 370 371
{
    return group->asn1_flag;
}
372

373
void EC_GROUP_set_point_conversion_form(EC_GROUP *group,
B
Bodo Möller 已提交
374
                                        point_conversion_form_t form)
375 376 377
{
    group->asn1_form = form;
}
B
Bodo Möller 已提交
378

379 380 381 382 383
point_conversion_form_t EC_GROUP_get_point_conversion_form(const EC_GROUP
                                                           *group)
{
    return group->asn1_form;
}
B
Bodo Möller 已提交
384

385
size_t EC_GROUP_set_seed(EC_GROUP *group, const unsigned char *p, size_t len)
386
{
R
Rich Salz 已提交
387 388 389
    OPENSSL_free(group->seed);
    group->seed = NULL;
    group->seed_len = 0;
390

391 392
    if (!len || !p)
        return 1;
393

394 395 396 397
    if ((group->seed = OPENSSL_malloc(len)) == NULL)
        return 0;
    memcpy(group->seed, p, len);
    group->seed_len = len;
398

399 400
    return len;
}
401 402

unsigned char *EC_GROUP_get0_seed(const EC_GROUP *group)
403 404 405
{
    return group->seed;
}
406 407

size_t EC_GROUP_get_seed_len(const EC_GROUP *group)
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
{
    return group->seed_len;
}

int EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a,
                           const BIGNUM *b, BN_CTX *ctx)
{
    if (group->meth->group_set_curve == 0) {
        ECerr(EC_F_EC_GROUP_SET_CURVE_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
    return group->meth->group_set_curve(group, p, a, b, ctx);
}

int EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a,
                           BIGNUM *b, BN_CTX *ctx)
{
    if (group->meth->group_get_curve == 0) {
        ECerr(EC_F_EC_GROUP_GET_CURVE_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
    return group->meth->group_get_curve(group, p, a, b, ctx);
}
431

432
#ifndef OPENSSL_NO_EC2M
433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
int EC_GROUP_set_curve_GF2m(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a,
                            const BIGNUM *b, BN_CTX *ctx)
{
    if (group->meth->group_set_curve == 0) {
        ECerr(EC_F_EC_GROUP_SET_CURVE_GF2M,
              ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
    return group->meth->group_set_curve(group, p, a, b, ctx);
}

int EC_GROUP_get_curve_GF2m(const EC_GROUP *group, BIGNUM *p, BIGNUM *a,
                            BIGNUM *b, BN_CTX *ctx)
{
    if (group->meth->group_get_curve == 0) {
        ECerr(EC_F_EC_GROUP_GET_CURVE_GF2M,
              ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
    return group->meth->group_get_curve(group, p, a, b, ctx);
}
454
#endif
455 456

int EC_GROUP_get_degree(const EC_GROUP *group)
457 458 459 460 461 462 463
{
    if (group->meth->group_get_degree == 0) {
        ECerr(EC_F_EC_GROUP_GET_DEGREE, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
    return group->meth->group_get_degree(group);
}
464

465
int EC_GROUP_check_discriminant(const EC_GROUP *group, BN_CTX *ctx)
466 467 468 469 470 471 472 473
{
    if (group->meth->group_check_discriminant == 0) {
        ECerr(EC_F_EC_GROUP_CHECK_DISCRIMINANT,
              ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
    return group->meth->group_check_discriminant(group, ctx);
}
B
Bodo Möller 已提交
474

475
int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx)
476 477 478 479 480 481 482 483 484 485 486 487 488
{
    int r = 0;
    BIGNUM *a1, *a2, *a3, *b1, *b2, *b3;
    BN_CTX *ctx_new = NULL;

    /* compare the field types */
    if (EC_METHOD_get_field_type(EC_GROUP_method_of(a)) !=
        EC_METHOD_get_field_type(EC_GROUP_method_of(b)))
        return 1;
    /* compare the curve name (if present in both) */
    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))
        return 1;
489 490
    if (a->meth->flags & EC_FLAGS_CUSTOM_CURVE)
        return 0;
491

492
    if (ctx == NULL)
493
        ctx_new = ctx = BN_CTX_new();
494
    if (ctx == NULL)
495 496 497 498 499 500 501 502 503
        return -1;

    BN_CTX_start(ctx);
    a1 = BN_CTX_get(ctx);
    a2 = BN_CTX_get(ctx);
    a3 = BN_CTX_get(ctx);
    b1 = BN_CTX_get(ctx);
    b2 = BN_CTX_get(ctx);
    b3 = BN_CTX_get(ctx);
504
    if (b3 == NULL) {
505
        BN_CTX_end(ctx);
R
Rich Salz 已提交
506
        BN_CTX_free(ctx_new);
507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
        return -1;
    }

    /*
     * XXX This approach assumes that the external representation of curves
     * over the same field type is the same.
     */
    if (!a->meth->group_get_curve(a, a1, a2, a3, ctx) ||
        !b->meth->group_get_curve(b, b1, b2, b3, ctx))
        r = 1;

    if (r || BN_cmp(a1, b1) || BN_cmp(a2, b2) || BN_cmp(a3, b3))
        r = 1;

    /* XXX EC_POINT_cmp() assumes that the methods are equal */
    if (r || EC_POINT_cmp(a, EC_GROUP_get0_generator(a),
                          EC_GROUP_get0_generator(b), ctx))
        r = 1;

    if (!r) {
527
        const BIGNUM *ao, *bo, *ac, *bc;
528
        /* compare the order and cofactor */
529 530 531 532 533
        ao = EC_GROUP_get0_order(a);
        bo = EC_GROUP_get0_order(b);
        ac = EC_GROUP_get0_cofactor(a);
        bc = EC_GROUP_get0_cofactor(b);
        if (ao == NULL || bo == NULL) {
534
            BN_CTX_end(ctx);
R
Rich Salz 已提交
535
            BN_CTX_free(ctx_new);
536 537
            return -1;
        }
538
        if (BN_cmp(ao, bo) || BN_cmp(ac, bc))
539 540 541 542
            r = 1;
    }

    BN_CTX_end(ctx);
R
Rich Salz 已提交
543
    BN_CTX_free(ctx_new);
544

545 546
    return r;
}
547

548 549 550
/* functions for EC_POINT objects */

EC_POINT *EC_POINT_new(const EC_GROUP *group)
551 552 553 554 555 556 557 558 559 560 561 562
{
    EC_POINT *ret;

    if (group == NULL) {
        ECerr(EC_F_EC_POINT_NEW, ERR_R_PASSED_NULL_PARAMETER);
        return NULL;
    }
    if (group->meth->point_init == 0) {
        ECerr(EC_F_EC_POINT_NEW, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return NULL;
    }

D
Dr. Stephen Henson 已提交
563
    ret = OPENSSL_zalloc(sizeof(*ret));
564 565 566 567 568 569 570 571 572 573 574 575 576 577
    if (ret == NULL) {
        ECerr(EC_F_EC_POINT_NEW, ERR_R_MALLOC_FAILURE);
        return NULL;
    }

    ret->meth = group->meth;

    if (!ret->meth->point_init(ret)) {
        OPENSSL_free(ret);
        return NULL;
    }

    return ret;
}
578 579

void EC_POINT_free(EC_POINT *point)
580 581 582
{
    if (!point)
        return;
B
Bodo Möller 已提交
583

584 585 586 587
    if (point->meth->point_finish != 0)
        point->meth->point_finish(point);
    OPENSSL_free(point);
}
588 589

void EC_POINT_clear_free(EC_POINT *point)
590 591 592 593 594 595 596 597
{
    if (!point)
        return;

    if (point->meth->point_clear_finish != 0)
        point->meth->point_clear_finish(point);
    else if (point->meth->point_finish != 0)
        point->meth->point_finish(point);
R
Rich Salz 已提交
598
    OPENSSL_clear_free(point, sizeof(*point));
599
}
600 601

int EC_POINT_copy(EC_POINT *dest, const EC_POINT *src)
602 603 604 605 606 607 608 609 610 611 612 613 614
{
    if (dest->meth->point_copy == 0) {
        ECerr(EC_F_EC_POINT_COPY, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
    if (dest->meth != src->meth) {
        ECerr(EC_F_EC_POINT_COPY, EC_R_INCOMPATIBLE_OBJECTS);
        return 0;
    }
    if (dest == src)
        return 1;
    return dest->meth->point_copy(dest, src);
}
615

616
EC_POINT *EC_POINT_dup(const EC_POINT *a, const EC_GROUP *group)
617 618 619 620 621 622 623 624 625
{
    EC_POINT *t;
    int r;

    if (a == NULL)
        return NULL;

    t = EC_POINT_new(group);
    if (t == NULL)
K
KaoruToda 已提交
626
        return NULL;
627 628 629 630
    r = EC_POINT_copy(t, a);
    if (!r) {
        EC_POINT_free(t);
        return NULL;
R
Rich Salz 已提交
631 632
    }
    return t;
633
}
634

635
const EC_METHOD *EC_POINT_method_of(const EC_POINT *point)
636 637 638
{
    return point->meth;
}
639

640
int EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point)
641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705
{
    if (group->meth->point_set_to_infinity == 0) {
        ECerr(EC_F_EC_POINT_SET_TO_INFINITY,
              ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
    if (group->meth != point->meth) {
        ECerr(EC_F_EC_POINT_SET_TO_INFINITY, EC_R_INCOMPATIBLE_OBJECTS);
        return 0;
    }
    return group->meth->point_set_to_infinity(group, point);
}

int EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group,
                                             EC_POINT *point, const BIGNUM *x,
                                             const BIGNUM *y, const BIGNUM *z,
                                             BN_CTX *ctx)
{
    if (group->meth->point_set_Jprojective_coordinates_GFp == 0) {
        ECerr(EC_F_EC_POINT_SET_JPROJECTIVE_COORDINATES_GFP,
              ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
    if (group->meth != point->meth) {
        ECerr(EC_F_EC_POINT_SET_JPROJECTIVE_COORDINATES_GFP,
              EC_R_INCOMPATIBLE_OBJECTS);
        return 0;
    }
    return group->meth->point_set_Jprojective_coordinates_GFp(group, point, x,
                                                              y, z, ctx);
}

int EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group,
                                             const EC_POINT *point, BIGNUM *x,
                                             BIGNUM *y, BIGNUM *z,
                                             BN_CTX *ctx)
{
    if (group->meth->point_get_Jprojective_coordinates_GFp == 0) {
        ECerr(EC_F_EC_POINT_GET_JPROJECTIVE_COORDINATES_GFP,
              ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
    if (group->meth != point->meth) {
        ECerr(EC_F_EC_POINT_GET_JPROJECTIVE_COORDINATES_GFP,
              EC_R_INCOMPATIBLE_OBJECTS);
        return 0;
    }
    return group->meth->point_get_Jprojective_coordinates_GFp(group, point, x,
                                                              y, z, ctx);
}

int EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group,
                                        EC_POINT *point, const BIGNUM *x,
                                        const BIGNUM *y, BN_CTX *ctx)
{
    if (group->meth->point_set_affine_coordinates == 0) {
        ECerr(EC_F_EC_POINT_SET_AFFINE_COORDINATES_GFP,
              ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
    if (group->meth != point->meth) {
        ECerr(EC_F_EC_POINT_SET_AFFINE_COORDINATES_GFP,
              EC_R_INCOMPATIBLE_OBJECTS);
        return 0;
    }
706 707 708 709 710 711 712 713 714
    if (!group->meth->point_set_affine_coordinates(group, point, x, y, ctx))
        return 0;

    if (EC_POINT_is_on_curve(group, point, ctx) <= 0) {
        ECerr(EC_F_EC_POINT_SET_AFFINE_COORDINATES_GFP,
              EC_R_POINT_IS_NOT_ON_CURVE);
        return 0;
    }
    return 1;
715
}
716

717
#ifndef OPENSSL_NO_EC2M
718 719 720 721 722 723 724 725 726 727 728 729 730 731
int EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group,
                                         EC_POINT *point, const BIGNUM *x,
                                         const BIGNUM *y, BN_CTX *ctx)
{
    if (group->meth->point_set_affine_coordinates == 0) {
        ECerr(EC_F_EC_POINT_SET_AFFINE_COORDINATES_GF2M,
              ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
    if (group->meth != point->meth) {
        ECerr(EC_F_EC_POINT_SET_AFFINE_COORDINATES_GF2M,
              EC_R_INCOMPATIBLE_OBJECTS);
        return 0;
    }
732 733 734 735 736 737 738 739 740
    if (!group->meth->point_set_affine_coordinates(group, point, x, y, ctx))
        return 0;

    if (EC_POINT_is_on_curve(group, point, ctx) <= 0) {
        ECerr(EC_F_EC_POINT_SET_AFFINE_COORDINATES_GF2M,
              EC_R_POINT_IS_NOT_ON_CURVE);
        return 0;
    }
    return 1;
741
}
742
#endif
743

744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759
int EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group,
                                        const EC_POINT *point, BIGNUM *x,
                                        BIGNUM *y, BN_CTX *ctx)
{
    if (group->meth->point_get_affine_coordinates == 0) {
        ECerr(EC_F_EC_POINT_GET_AFFINE_COORDINATES_GFP,
              ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
    if (group->meth != point->meth) {
        ECerr(EC_F_EC_POINT_GET_AFFINE_COORDINATES_GFP,
              EC_R_INCOMPATIBLE_OBJECTS);
        return 0;
    }
    return group->meth->point_get_affine_coordinates(group, point, x, y, ctx);
}
760

761
#ifndef OPENSSL_NO_EC2M
762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777
int EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group,
                                         const EC_POINT *point, BIGNUM *x,
                                         BIGNUM *y, BN_CTX *ctx)
{
    if (group->meth->point_get_affine_coordinates == 0) {
        ECerr(EC_F_EC_POINT_GET_AFFINE_COORDINATES_GF2M,
              ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
    if (group->meth != point->meth) {
        ECerr(EC_F_EC_POINT_GET_AFFINE_COORDINATES_GF2M,
              EC_R_INCOMPATIBLE_OBJECTS);
        return 0;
    }
    return group->meth->point_get_affine_coordinates(group, point, x, y, ctx);
}
778
#endif
779

780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807
int EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a,
                 const EC_POINT *b, BN_CTX *ctx)
{
    if (group->meth->add == 0) {
        ECerr(EC_F_EC_POINT_ADD, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
    if ((group->meth != r->meth) || (r->meth != a->meth)
        || (a->meth != b->meth)) {
        ECerr(EC_F_EC_POINT_ADD, EC_R_INCOMPATIBLE_OBJECTS);
        return 0;
    }
    return group->meth->add(group, r, a, b, ctx);
}

int EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a,
                 BN_CTX *ctx)
{
    if (group->meth->dbl == 0) {
        ECerr(EC_F_EC_POINT_DBL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
    if ((group->meth != r->meth) || (r->meth != a->meth)) {
        ECerr(EC_F_EC_POINT_DBL, EC_R_INCOMPATIBLE_OBJECTS);
        return 0;
    }
    return group->meth->dbl(group, r, a, ctx);
}
808

B
Bodo Möller 已提交
809
int EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx)
810 811 812 813 814 815 816 817 818 819 820
{
    if (group->meth->invert == 0) {
        ECerr(EC_F_EC_POINT_INVERT, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
    if (group->meth != a->meth) {
        ECerr(EC_F_EC_POINT_INVERT, EC_R_INCOMPATIBLE_OBJECTS);
        return 0;
    }
    return group->meth->invert(group, a, ctx);
}
B
Bodo Möller 已提交
821

822
int EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point)
823 824 825 826 827 828 829 830 831 832 833 834 835
{
    if (group->meth->is_at_infinity == 0) {
        ECerr(EC_F_EC_POINT_IS_AT_INFINITY,
              ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
    if (group->meth != point->meth) {
        ECerr(EC_F_EC_POINT_IS_AT_INFINITY, EC_R_INCOMPATIBLE_OBJECTS);
        return 0;
    }
    return group->meth->is_at_infinity(group, point);
}

836 837 838 839 840 841 842
/*
 * Check whether an EC_POINT is on the curve or not. Note that the return
 * value for this function should NOT be treated as a boolean. Return values:
 *  1: The point is on the curve
 *  0: The point is not on the curve
 * -1: An error occurred
 */
843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869
int EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point,
                         BN_CTX *ctx)
{
    if (group->meth->is_on_curve == 0) {
        ECerr(EC_F_EC_POINT_IS_ON_CURVE, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
    if (group->meth != point->meth) {
        ECerr(EC_F_EC_POINT_IS_ON_CURVE, EC_R_INCOMPATIBLE_OBJECTS);
        return 0;
    }
    return group->meth->is_on_curve(group, point, ctx);
}

int EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b,
                 BN_CTX *ctx)
{
    if (group->meth->point_cmp == 0) {
        ECerr(EC_F_EC_POINT_CMP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return -1;
    }
    if ((group->meth != a->meth) || (a->meth != b->meth)) {
        ECerr(EC_F_EC_POINT_CMP, EC_R_INCOMPATIBLE_OBJECTS);
        return -1;
    }
    return group->meth->point_cmp(group, a, b, ctx);
}
B
Bodo Möller 已提交
870

B
Bodo Möller 已提交
871
int EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx)
872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905
{
    if (group->meth->make_affine == 0) {
        ECerr(EC_F_EC_POINT_MAKE_AFFINE, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
    if (group->meth != point->meth) {
        ECerr(EC_F_EC_POINT_MAKE_AFFINE, EC_R_INCOMPATIBLE_OBJECTS);
        return 0;
    }
    return group->meth->make_affine(group, point, ctx);
}

int EC_POINTs_make_affine(const EC_GROUP *group, size_t num,
                          EC_POINT *points[], BN_CTX *ctx)
{
    size_t i;

    if (group->meth->points_make_affine == 0) {
        ECerr(EC_F_EC_POINTS_MAKE_AFFINE, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
    for (i = 0; i < num; i++) {
        if (group->meth != points[i]->meth) {
            ECerr(EC_F_EC_POINTS_MAKE_AFFINE, EC_R_INCOMPATIBLE_OBJECTS);
            return 0;
        }
    }
    return group->meth->points_make_affine(group, num, points, ctx);
}

/*
 * Functions for point multiplication. If group->meth->mul is 0, we use the
 * wNAF-based implementations in ec_mult.c; otherwise we dispatch through
 * methods.
906 907 908
 */

int EC_POINTs_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
909 910 911 912 913 914
                  size_t num, const EC_POINT *points[],
                  const BIGNUM *scalars[], BN_CTX *ctx)
{
    if (group->meth->mul == 0)
        /* use default */
        return ec_wNAF_mul(group, r, scalar, num, points, scalars, ctx);
915

916 917
    return group->meth->mul(group, r, scalar, num, points, scalars, ctx);
}
918 919

int EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *g_scalar,
920 921 922
                 const EC_POINT *point, const BIGNUM *p_scalar, BN_CTX *ctx)
{
    /* just a convenient interface to EC_POINTs_mul() */
923

924 925
    const EC_POINT *points[1];
    const BIGNUM *scalars[1];
926

927 928
    points[0] = point;
    scalars[0] = p_scalar;
929

930 931 932 933
    return EC_POINTs_mul(group, r, g_scalar,
                         (point != NULL
                          && p_scalar != NULL), points, scalars, ctx);
}
934 935

int EC_GROUP_precompute_mult(EC_GROUP *group, BN_CTX *ctx)
936 937 938 939
{
    if (group->meth->mul == 0)
        /* use default */
        return ec_wNAF_precompute_mult(group, ctx);
940

941 942 943 944 945
    if (group->meth->precompute_mult != 0)
        return group->meth->precompute_mult(group, ctx);
    else
        return 1;               /* nothing to do, so report success */
}
946 947

int EC_GROUP_have_precompute_mult(const EC_GROUP *group)
948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963
{
    if (group->meth->mul == 0)
        /* use default */
        return ec_wNAF_have_precompute_mult(group);

    if (group->meth->have_precompute_mult != 0)
        return group->meth->have_precompute_mult(group);
    else
        return 0;               /* cannot tell whether precomputation has
                                 * been performed */
}

/*
 * ec_precompute_mont_data sets |group->mont_data| from |group->order| and
 * returns one on success. On error it returns zero.
 */
964
int ec_precompute_mont_data(EC_GROUP *group)
965 966 967 968
{
    BN_CTX *ctx = BN_CTX_new();
    int ret = 0;

R
Rich Salz 已提交
969 970
    BN_MONT_CTX_free(group->mont_data);
    group->mont_data = NULL;
971 972 973 974 975

    if (ctx == NULL)
        goto err;

    group->mont_data = BN_MONT_CTX_new();
976
    if (group->mont_data == NULL)
977 978 979 980 981 982 983 984 985 986 987 988
        goto err;

    if (!BN_MONT_CTX_set(group->mont_data, group->order, ctx)) {
        BN_MONT_CTX_free(group->mont_data);
        group->mont_data = NULL;
        goto err;
    }

    ret = 1;

 err:

R
Rich Salz 已提交
989
    BN_CTX_free(ctx);
990 991
    return ret;
}
992 993 994 995 996 997 998 999 1000 1001

int EC_KEY_set_ex_data(EC_KEY *key, int idx, void *arg)
{
    return CRYPTO_set_ex_data(&key->ex_data, idx, arg);
}

void *EC_KEY_get_ex_data(const EC_KEY *key, int idx)
{
    return CRYPTO_get_ex_data(&key->ex_data, idx);
}
D
Dr. Stephen Henson 已提交
1002 1003 1004 1005 1006 1007 1008

int ec_group_simple_order_bits(const EC_GROUP *group)
{
    if (group->order == NULL)
        return 0;
    return BN_num_bits(group->order);
}