ec_lib.c 30.2 KB
Newer Older
1
/*
2
 * Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved.
3
 * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
4
 *
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
    dest->curve_name = src->curve_name;

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

    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 已提交
187 188
        BN_MONT_CTX_free(dest->mont_data);
        dest->mont_data = NULL;
189
    }
190

191 192 193 194 195 196 197 198 199 200
    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 已提交
201 202
        EC_POINT_clear_free(dest->generator);
        dest->generator = NULL;
203 204
    }

205 206 207 208 209 210
    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;
    }
211 212 213 214 215

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

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

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

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

238 239
    if (a == NULL)
        return NULL;
240

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

246
    ok = 1;
247

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

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

261
int EC_METHOD_get_field_type(const EC_METHOD *meth)
262 263 264 265
{
    return meth->field_type;
}

266 267
static int ec_precompute_mont_data(EC_GROUP *);

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 293 294 295 296
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);

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

305 306
    BN_MONT_CTX_free(group->mont_data);
    group->mont_data = NULL;
307 308
    return 1;
}
309

N
Nils Larsch 已提交
310
const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group)
311 312 313
{
    return group->generator;
}
314

315
BN_MONT_CTX *EC_GROUP_get_mont_data(const EC_GROUP *group)
316 317 318
{
    return group->mont_data;
}
319

320
int EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx)
321
{
322 323
    if (group->order == NULL)
        return 0;
324 325
    if (!BN_copy(order, group->order))
        return 0;
326

327 328
    return !BN_is_zero(order);
}
329

330 331 332 333 334 335 336
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 已提交
337
    return group->meth->group_order_bits(group);
338 339
}

340 341 342
int EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor,
                          BN_CTX *ctx)
{
343 344 345

    if (group->cofactor == NULL)
        return 0;
346 347
    if (!BN_copy(cofactor, group->cofactor))
        return 0;
348

349 350
    return !BN_is_zero(group->cofactor);
}
351

352 353 354 355 356
const BIGNUM *EC_GROUP_get0_cofactor(const EC_GROUP *group)
{
    return group->cofactor;
}

357
void EC_GROUP_set_curve_name(EC_GROUP *group, int nid)
358 359 360
{
    group->curve_name = nid;
}
361

362
int EC_GROUP_get_curve_name(const EC_GROUP *group)
363 364 365
{
    return group->curve_name;
}
366

367
void EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag)
368 369 370
{
    group->asn1_flag = flag;
}
371 372

int EC_GROUP_get_asn1_flag(const EC_GROUP *group)
373 374 375
{
    return group->asn1_flag;
}
376

377
void EC_GROUP_set_point_conversion_form(EC_GROUP *group,
B
Bodo Möller 已提交
378
                                        point_conversion_form_t form)
379 380 381
{
    group->asn1_form = form;
}
B
Bodo Möller 已提交
382

383 384 385 386 387
point_conversion_form_t EC_GROUP_get_point_conversion_form(const EC_GROUP
                                                           *group)
{
    return group->asn1_form;
}
B
Bodo Möller 已提交
388

389
size_t EC_GROUP_set_seed(EC_GROUP *group, const unsigned char *p, size_t len)
390
{
R
Rich Salz 已提交
391 392 393
    OPENSSL_free(group->seed);
    group->seed = NULL;
    group->seed_len = 0;
394

395 396
    if (!len || !p)
        return 1;
397

398 399
    if ((group->seed = OPENSSL_malloc(len)) == NULL) {
        ECerr(EC_F_EC_GROUP_SET_SEED, ERR_R_MALLOC_FAILURE);
400
        return 0;
401
    }
402 403
    memcpy(group->seed, p, len);
    group->seed_len = len;
404

405 406
    return len;
}
407 408

unsigned char *EC_GROUP_get0_seed(const EC_GROUP *group)
409 410 411
{
    return group->seed;
}
412 413

size_t EC_GROUP_get_seed_len(const EC_GROUP *group)
414 415 416 417
{
    return group->seed_len;
}

418 419
int EC_GROUP_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a,
                       const BIGNUM *b, BN_CTX *ctx)
420 421
{
    if (group->meth->group_set_curve == 0) {
422
        ECerr(EC_F_EC_GROUP_SET_CURVE, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
423 424 425 426 427
        return 0;
    }
    return group->meth->group_set_curve(group, p, a, b, ctx);
}

428 429
int EC_GROUP_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b,
                       BN_CTX *ctx)
430
{
431 432
    if (group->meth->group_get_curve == NULL) {
        ECerr(EC_F_EC_GROUP_GET_CURVE, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
433 434 435 436
        return 0;
    }
    return group->meth->group_get_curve(group, p, a, b, ctx);
}
437

438
#if OPENSSL_API_COMPAT < 0x10200000L
439 440 441 442 443 444 445 446 447 448 449 450
int EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a,
                           const BIGNUM *b, BN_CTX *ctx)
{
    return EC_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)
{
    return EC_GROUP_get_curve(group, p, a, b, ctx);
}

451
# ifndef OPENSSL_NO_EC2M
452 453 454
int EC_GROUP_set_curve_GF2m(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a,
                            const BIGNUM *b, BN_CTX *ctx)
{
455
    return EC_GROUP_set_curve(group, p, a, b, ctx);
456 457 458 459 460
}

int EC_GROUP_get_curve_GF2m(const EC_GROUP *group, BIGNUM *p, BIGNUM *a,
                            BIGNUM *b, BN_CTX *ctx)
{
461
    return EC_GROUP_get_curve(group, p, a, b, ctx);
462
}
463
# endif
464
#endif
465 466

int EC_GROUP_get_degree(const EC_GROUP *group)
467 468 469 470 471 472 473
{
    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);
}
474

475
int EC_GROUP_check_discriminant(const EC_GROUP *group, BN_CTX *ctx)
476 477 478 479 480 481 482 483
{
    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 已提交
484

485
int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx)
486 487 488 489 490 491 492 493 494 495 496 497 498
{
    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;
499 500
    if (a->meth->flags & EC_FLAGS_CUSTOM_CURVE)
        return 0;
501

502
    if (ctx == NULL)
503
        ctx_new = ctx = BN_CTX_new();
504
    if (ctx == NULL)
505 506 507 508 509 510 511 512 513
        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);
514
    if (b3 == NULL) {
515
        BN_CTX_end(ctx);
R
Rich Salz 已提交
516
        BN_CTX_free(ctx_new);
517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536
        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) {
537
        const BIGNUM *ao, *bo, *ac, *bc;
538
        /* compare the order and cofactor */
539 540 541 542 543
        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) {
544
            BN_CTX_end(ctx);
R
Rich Salz 已提交
545
            BN_CTX_free(ctx_new);
546 547
            return -1;
        }
548
        if (BN_cmp(ao, bo) || BN_cmp(ac, bc))
549 550 551 552
            r = 1;
    }

    BN_CTX_end(ctx);
R
Rich Salz 已提交
553
    BN_CTX_free(ctx_new);
554

555 556
    return r;
}
557

558 559 560
/* functions for EC_POINT objects */

EC_POINT *EC_POINT_new(const EC_GROUP *group)
561 562 563 564 565 566 567
{
    EC_POINT *ret;

    if (group == NULL) {
        ECerr(EC_F_EC_POINT_NEW, ERR_R_PASSED_NULL_PARAMETER);
        return NULL;
    }
568
    if (group->meth->point_init == NULL) {
569 570 571 572
        ECerr(EC_F_EC_POINT_NEW, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return NULL;
    }

D
Dr. Stephen Henson 已提交
573
    ret = OPENSSL_zalloc(sizeof(*ret));
574 575 576 577 578 579
    if (ret == NULL) {
        ECerr(EC_F_EC_POINT_NEW, ERR_R_MALLOC_FAILURE);
        return NULL;
    }

    ret->meth = group->meth;
580
    ret->curve_name = group->curve_name;
581 582 583 584 585 586 587 588

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

    return ret;
}
589 590

void EC_POINT_free(EC_POINT *point)
591 592 593
{
    if (!point)
        return;
B
Bodo Möller 已提交
594

595 596 597 598
    if (point->meth->point_finish != 0)
        point->meth->point_finish(point);
    OPENSSL_free(point);
}
599 600

void EC_POINT_clear_free(EC_POINT *point)
601 602 603 604 605 606 607 608
{
    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 已提交
609
    OPENSSL_clear_free(point, sizeof(*point));
610
}
611 612

int EC_POINT_copy(EC_POINT *dest, const EC_POINT *src)
613 614 615 616 617
{
    if (dest->meth->point_copy == 0) {
        ECerr(EC_F_EC_POINT_COPY, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
618 619 620 621
    if (dest->meth != src->meth
            || (dest->curve_name != src->curve_name
                && dest->curve_name != 0
                && src->curve_name != 0)) {
622 623 624 625 626 627 628
        ECerr(EC_F_EC_POINT_COPY, EC_R_INCOMPATIBLE_OBJECTS);
        return 0;
    }
    if (dest == src)
        return 1;
    return dest->meth->point_copy(dest, src);
}
629

630
EC_POINT *EC_POINT_dup(const EC_POINT *a, const EC_GROUP *group)
631 632 633 634 635 636 637 638 639
{
    EC_POINT *t;
    int r;

    if (a == NULL)
        return NULL;

    t = EC_POINT_new(group);
    if (t == NULL)
K
KaoruToda 已提交
640
        return NULL;
641 642 643 644
    r = EC_POINT_copy(t, a);
    if (!r) {
        EC_POINT_free(t);
        return NULL;
R
Rich Salz 已提交
645 646
    }
    return t;
647
}
648

649
const EC_METHOD *EC_POINT_method_of(const EC_POINT *point)
650 651 652
{
    return point->meth;
}
653

654
int EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point)
655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677
{
    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;
    }
678
    if (!ec_point_is_compat(point, group)) {
679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696
        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;
    }
697
    if (!ec_point_is_compat(point, group)) {
698 699 700 701 702 703 704 705
        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);
}

706 707 708
int EC_POINT_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point,
                                    const BIGNUM *x, const BIGNUM *y,
                                    BN_CTX *ctx)
709
{
710 711
    if (group->meth->point_set_affine_coordinates == NULL) {
        ECerr(EC_F_EC_POINT_SET_AFFINE_COORDINATES,
712 713 714
              ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
715
    if (!ec_point_is_compat(point, group)) {
716
        ECerr(EC_F_EC_POINT_SET_AFFINE_COORDINATES, EC_R_INCOMPATIBLE_OBJECTS);
717 718
        return 0;
    }
719 720 721 722
    if (!group->meth->point_set_affine_coordinates(group, point, x, y, ctx))
        return 0;

    if (EC_POINT_is_on_curve(group, point, ctx) <= 0) {
723
        ECerr(EC_F_EC_POINT_SET_AFFINE_COORDINATES, EC_R_POINT_IS_NOT_ON_CURVE);
724 725 726
        return 0;
    }
    return 1;
727
}
728

729
#if OPENSSL_API_COMPAT < 0x10200000L
730 731 732 733 734 735 736
int EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group,
                                        EC_POINT *point, const BIGNUM *x,
                                        const BIGNUM *y, BN_CTX *ctx)
{
    return EC_POINT_set_affine_coordinates(group, point, x, y, ctx);
}

737
# ifndef OPENSSL_NO_EC2M
738 739 740 741
int EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group,
                                         EC_POINT *point, const BIGNUM *x,
                                         const BIGNUM *y, BN_CTX *ctx)
{
742 743
    return EC_POINT_set_affine_coordinates(group, point, x, y, ctx);
}
744
# endif
745 746 747 748 749 750 751 752
#endif

int EC_POINT_get_affine_coordinates(const EC_GROUP *group,
                                    const EC_POINT *point, BIGNUM *x, BIGNUM *y,
                                    BN_CTX *ctx)
{
    if (group->meth->point_get_affine_coordinates == NULL) {
        ECerr(EC_F_EC_POINT_GET_AFFINE_COORDINATES,
753 754 755
              ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
756
    if (!ec_point_is_compat(point, group)) {
757
        ECerr(EC_F_EC_POINT_GET_AFFINE_COORDINATES, EC_R_INCOMPATIBLE_OBJECTS);
758 759
        return 0;
    }
760
    return group->meth->point_get_affine_coordinates(group, point, x, y, ctx);
761
}
762

763
#if OPENSSL_API_COMPAT < 0x10200000L
764 765 766 767
int EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group,
                                        const EC_POINT *point, BIGNUM *x,
                                        BIGNUM *y, BN_CTX *ctx)
{
768
    return EC_POINT_get_affine_coordinates(group, point, x, y, ctx);
769
}
770

771
# ifndef OPENSSL_NO_EC2M
772 773 774 775
int EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group,
                                         const EC_POINT *point, BIGNUM *x,
                                         BIGNUM *y, BN_CTX *ctx)
{
776
    return EC_POINT_get_affine_coordinates(group, point, x, y, ctx);
777
}
778
# endif
779
#endif
780

781 782 783 784 785 786 787
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;
    }
788 789
    if (!ec_point_is_compat(r, group) || !ec_point_is_compat(a, group)
        || !ec_point_is_compat(b, group)) {
790 791 792 793 794 795 796 797 798 799 800 801 802
        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;
    }
803
    if (!ec_point_is_compat(r, group) || !ec_point_is_compat(a, group)) {
804 805 806 807 808
        ECerr(EC_F_EC_POINT_DBL, EC_R_INCOMPATIBLE_OBJECTS);
        return 0;
    }
    return group->meth->dbl(group, r, a, ctx);
}
809

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

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

837 838 839 840 841 842 843
/*
 * 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
 */
844 845 846 847 848 849 850
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;
    }
851
    if (!ec_point_is_compat(point, group)) {
852 853 854 855 856 857 858 859 860 861 862 863 864
        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;
    }
865
    if (!ec_point_is_compat(a, group) || !ec_point_is_compat(b, group)) {
866 867 868 869 870
        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 已提交
871

B
Bodo Möller 已提交
872
int EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx)
873 874 875 876 877
{
    if (group->meth->make_affine == 0) {
        ECerr(EC_F_EC_POINT_MAKE_AFFINE, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
        return 0;
    }
878
    if (!ec_point_is_compat(point, group)) {
879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894
        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++) {
895
        if (!ec_point_is_compat(points[i], group)) {
896 897 898 899 900 901 902 903 904 905 906
            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.
907 908 909
 */

int EC_POINTs_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
910 911 912
                  size_t num, const EC_POINT *points[],
                  const BIGNUM *scalars[], BN_CTX *ctx)
{
913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939
    int ret = 0;
    size_t i = 0;
    BN_CTX *new_ctx = NULL;

    if ((scalar == NULL) && (num == 0)) {
        return EC_POINT_set_to_infinity(group, r);
    }

    if (!ec_point_is_compat(r, group)) {
        ECerr(EC_F_EC_POINTS_MUL, EC_R_INCOMPATIBLE_OBJECTS);
        return 0;
    }
    for (i = 0; i < num; i++) {
        if (!ec_point_is_compat(points[i], group)) {
            ECerr(EC_F_EC_POINTS_MUL, EC_R_INCOMPATIBLE_OBJECTS);
            return 0;
        }
    }

    if (ctx == NULL && (ctx = new_ctx = BN_CTX_secure_new()) == NULL) {
        ECerr(EC_F_EC_POINTS_MUL, ERR_R_INTERNAL_ERROR);
        return 0;
    }

    if (group->meth->mul != NULL)
        ret = group->meth->mul(group, r, scalar, num, points, scalars, ctx);
    else
940
        /* use default */
941
        ret = ec_wNAF_mul(group, r, scalar, num, points, scalars, ctx);
942

943 944
    BN_CTX_free(new_ctx);
    return ret;
945
}
946 947

int EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *g_scalar,
948 949 950
                 const EC_POINT *point, const BIGNUM *p_scalar, BN_CTX *ctx)
{
    /* just a convenient interface to EC_POINTs_mul() */
951

952 953
    const EC_POINT *points[1];
    const BIGNUM *scalars[1];
954

955 956
    points[0] = point;
    scalars[0] = p_scalar;
957

958 959 960 961
    return EC_POINTs_mul(group, r, g_scalar,
                         (point != NULL
                          && p_scalar != NULL), points, scalars, ctx);
}
962 963

int EC_GROUP_precompute_mult(EC_GROUP *group, BN_CTX *ctx)
964 965 966 967
{
    if (group->meth->mul == 0)
        /* use default */
        return ec_wNAF_precompute_mult(group, ctx);
968

969 970 971 972 973
    if (group->meth->precompute_mult != 0)
        return group->meth->precompute_mult(group, ctx);
    else
        return 1;               /* nothing to do, so report success */
}
974 975

int EC_GROUP_have_precompute_mult(const EC_GROUP *group)
976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991
{
    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.
 */
992
static int ec_precompute_mont_data(EC_GROUP *group)
993 994 995 996
{
    BN_CTX *ctx = BN_CTX_new();
    int ret = 0;

R
Rich Salz 已提交
997 998
    BN_MONT_CTX_free(group->mont_data);
    group->mont_data = NULL;
999 1000 1001 1002 1003

    if (ctx == NULL)
        goto err;

    group->mont_data = BN_MONT_CTX_new();
1004
    if (group->mont_data == NULL)
1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016
        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 已提交
1017
    BN_CTX_free(ctx);
1018 1019
    return ret;
}
1020 1021 1022 1023 1024 1025 1026 1027 1028 1029

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 已提交
1030 1031 1032 1033 1034 1035 1036

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

1038
static int ec_field_inverse_mod_ord(const EC_GROUP *group, BIGNUM *r,
1039
                                    const BIGNUM *x, BN_CTX *ctx)
1040
{
1041
    BIGNUM *e = NULL;
1042 1043 1044
    BN_CTX *new_ctx = NULL;
    int ret = 0;

1045 1046 1047
    if (group->mont_data == NULL)
        return 0;

1048 1049 1050 1051
    if (ctx == NULL && (ctx = new_ctx = BN_CTX_secure_new()) == NULL)
        return 0;

    BN_CTX_start(ctx);
1052
    if ((e = BN_CTX_get(ctx)) == NULL)
1053 1054
        goto err;

1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068
    /*-
     * We want inverse in constant time, therefore we utilize the fact
     * order must be prime and use Fermats Little Theorem instead.
     */
    if (!BN_set_word(e, 2))
        goto err;
    if (!BN_sub(e, group->order, e))
        goto err;
    /*-
     * Exponent e is public.
     * No need for scatter-gather or BN_FLG_CONSTTIME.
     */
    if (!BN_mod_exp_mont(r, x, e, group->order, ctx, group->mont_data))
        goto err;
1069

1070
    ret = 1;
1071 1072

 err:
1073 1074
    if (ctx != NULL)
        BN_CTX_end(ctx);
1075 1076 1077 1078
    BN_CTX_free(new_ctx);
    return ret;
}

1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093
/*-
 * Default behavior, if group->meth->field_inverse_mod_ord is NULL:
 * - When group->order is even, this function returns an error.
 * - When group->order is otherwise composite, the correctness
 *   of the output is not guaranteed.
 * - When x is outside the range [1, group->order), the correctness
 *   of the output is not guaranteed.
 * - Otherwise, this function returns the multiplicative inverse in the
 *   range [1, group->order).
 *
 * EC_METHODs must implement their own field_inverse_mod_ord for
 * other functionality.
 */
int ec_group_do_inverse_ord(const EC_GROUP *group, BIGNUM *res,
                            const BIGNUM *x, BN_CTX *ctx)
1094 1095 1096 1097
{
    if (group->meth->field_inverse_mod_ord != NULL)
        return group->meth->field_inverse_mod_ord(group, res, x, ctx);
    else
1098
        return ec_field_inverse_mod_ord(group, res, x, ctx);
1099
}
1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117

/*-
 * Coordinate blinding for EC_POINT.
 *
 * The underlying EC_METHOD can optionally implement this function:
 * underlying implementations should return 0 on errors, or 1 on
 * success.
 *
 * This wrapper returns 1 in case the underlying EC_METHOD does not
 * support coordinate blinding.
 */
int ec_point_blind_coordinates(const EC_GROUP *group, EC_POINT *p, BN_CTX *ctx)
{
    if (group->meth->blind_coordinates == NULL)
        return 1; /* ignore if not implemented */

    return group->meth->blind_coordinates(group, p, ctx);
}