Coverage Report

Created: 2026-04-01 06:39

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl34/crypto/ec/ec2_oct.c
Line
Count
Source
1
/*
2
 * Copyright 2011-2022 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
 * ECDSA low level APIs are deprecated for public use, but still ok for
13
 * internal use.
14
 */
15
#include "internal/deprecated.h"
16
17
#include <openssl/err.h>
18
19
#include "ec_local.h"
20
21
#ifndef OPENSSL_NO_EC2M
22
23
/*-
24
 * Calculates and sets the affine coordinates of an EC_POINT from the given
25
 * compressed coordinates.  Uses algorithm 2.3.4 of SEC 1.
26
 * Note that the simple implementation only uses affine coordinates.
27
 *
28
 * The method is from the following publication:
29
 *
30
 *     Harper, Menezes, Vanstone:
31
 *     "Public-Key Cryptosystems with Very Small Key Lengths",
32
 *     EUROCRYPT '92, Springer-Verlag LNCS 658,
33
 *     published February 1993
34
 *
35
 * US Patents 6,141,420 and 6,618,483 (Vanstone, Mullin, Agnew) describe
36
 * the same method, but claim no priority date earlier than July 29, 1994
37
 * (and additionally fail to cite the EUROCRYPT '92 publication as prior art).
38
 */
39
int ossl_ec_GF2m_simple_set_compressed_coordinates(const EC_GROUP *group,
40
    EC_POINT *point,
41
    const BIGNUM *x_, int y_bit,
42
    BN_CTX *ctx)
43
196k
{
44
196k
    BIGNUM *tmp, *x, *y, *z;
45
196k
    int ret = 0, z0;
46
196k
#ifndef FIPS_MODULE
47
196k
    BN_CTX *new_ctx = NULL;
48
49
196k
    if (ctx == NULL) {
50
0
        ctx = new_ctx = BN_CTX_new();
51
0
        if (ctx == NULL)
52
0
            return 0;
53
0
    }
54
196k
#endif
55
56
196k
    y_bit = (y_bit != 0) ? 1 : 0;
57
58
196k
    BN_CTX_start(ctx);
59
196k
    tmp = BN_CTX_get(ctx);
60
196k
    x = BN_CTX_get(ctx);
61
196k
    y = BN_CTX_get(ctx);
62
196k
    z = BN_CTX_get(ctx);
63
196k
    if (z == NULL)
64
0
        goto err;
65
66
196k
    if (!BN_GF2m_mod_arr(x, x_, group->poly))
67
0
        goto err;
68
196k
    if (BN_is_zero(x)) {
69
30.4k
        if (!BN_GF2m_mod_sqrt_arr(y, group->b, group->poly, ctx))
70
0
            goto err;
71
165k
    } else {
72
165k
        if (!group->meth->field_sqr(group, tmp, x, ctx))
73
0
            goto err;
74
165k
        if (!group->meth->field_div(group, tmp, group->b, tmp, ctx))
75
0
            goto err;
76
165k
        if (!BN_GF2m_add(tmp, group->a, tmp))
77
0
            goto err;
78
165k
        if (!BN_GF2m_add(tmp, x, tmp))
79
0
            goto err;
80
165k
        ERR_set_mark();
81
165k
        if (!BN_GF2m_mod_solve_quad_arr(z, tmp, group->poly, ctx)) {
82
64.4k
#ifndef FIPS_MODULE
83
64.4k
            unsigned long err = ERR_peek_last_error();
84
85
64.4k
            if (ERR_GET_LIB(err) == ERR_LIB_BN
86
64.4k
                && ERR_GET_REASON(err) == BN_R_NO_SOLUTION) {
87
60.3k
                ERR_pop_to_mark();
88
60.3k
                ERR_raise(ERR_LIB_EC, EC_R_INVALID_COMPRESSED_POINT);
89
60.3k
            } else
90
4.04k
#endif
91
4.04k
            {
92
4.04k
                ERR_clear_last_mark();
93
4.04k
                ERR_raise(ERR_LIB_EC, ERR_R_BN_LIB);
94
4.04k
            }
95
64.4k
            goto err;
96
64.4k
        }
97
101k
        ERR_clear_last_mark();
98
101k
        z0 = (BN_is_odd(z)) ? 1 : 0;
99
101k
        if (!group->meth->field_mul(group, y, x, z, ctx))
100
0
            goto err;
101
101k
        if (z0 != y_bit) {
102
50.0k
            if (!BN_GF2m_add(y, y, x))
103
0
                goto err;
104
50.0k
        }
105
101k
    }
106
107
131k
    if (!EC_POINT_set_affine_coordinates(group, point, x, y, ctx))
108
0
        goto err;
109
110
131k
    ret = 1;
111
112
196k
err:
113
196k
    BN_CTX_end(ctx);
114
196k
#ifndef FIPS_MODULE
115
196k
    BN_CTX_free(new_ctx);
116
196k
#endif
117
196k
    return ret;
118
131k
}
119
120
/*
121
 * Converts an EC_POINT to an octet string. If buf is NULL, the encoded
122
 * length will be returned. If the length len of buf is smaller than required
123
 * an error will be returned.
124
 */
125
size_t ossl_ec_GF2m_simple_point2oct(const EC_GROUP *group,
126
    const EC_POINT *point,
127
    point_conversion_form_t form,
128
    unsigned char *buf, size_t len, BN_CTX *ctx)
129
10.3k
{
130
10.3k
    size_t ret;
131
10.3k
    int used_ctx = 0;
132
10.3k
    BIGNUM *x, *y, *yxi;
133
10.3k
    size_t field_len, i, skip;
134
10.3k
#ifndef FIPS_MODULE
135
10.3k
    BN_CTX *new_ctx = NULL;
136
10.3k
#endif
137
138
10.3k
    if ((form != POINT_CONVERSION_COMPRESSED)
139
8.03k
        && (form != POINT_CONVERSION_UNCOMPRESSED)
140
300
        && (form != POINT_CONVERSION_HYBRID)) {
141
264
        ERR_raise(ERR_LIB_EC, EC_R_INVALID_FORM);
142
264
        goto err;
143
264
    }
144
145
10.0k
    if (EC_POINT_is_at_infinity(group, point)) {
146
        /* encodes to a single 0 octet */
147
1.07k
        if (buf != NULL) {
148
536
            if (len < 1) {
149
0
                ERR_raise(ERR_LIB_EC, EC_R_BUFFER_TOO_SMALL);
150
0
                return 0;
151
0
            }
152
536
            buf[0] = 0;
153
536
        }
154
1.07k
        return 1;
155
1.07k
    }
156
157
    /* ret := required output buffer length */
158
8.99k
    field_len = (EC_GROUP_get_degree(group) + 7) / 8;
159
8.99k
    ret = (form == POINT_CONVERSION_COMPRESSED) ? 1 + field_len : 1 + 2 * field_len;
160
161
    /* if 'buf' is NULL, just return required length */
162
8.99k
    if (buf != NULL) {
163
4.49k
        if (len < ret) {
164
0
            ERR_raise(ERR_LIB_EC, EC_R_BUFFER_TOO_SMALL);
165
0
            goto err;
166
0
        }
167
168
4.49k
#ifndef FIPS_MODULE
169
4.49k
        if (ctx == NULL) {
170
4.49k
            ctx = new_ctx = BN_CTX_new();
171
4.49k
            if (ctx == NULL)
172
0
                return 0;
173
4.49k
        }
174
4.49k
#endif
175
176
4.49k
        BN_CTX_start(ctx);
177
4.49k
        used_ctx = 1;
178
4.49k
        x = BN_CTX_get(ctx);
179
4.49k
        y = BN_CTX_get(ctx);
180
4.49k
        yxi = BN_CTX_get(ctx);
181
4.49k
        if (yxi == NULL)
182
0
            goto err;
183
184
4.49k
        if (!EC_POINT_get_affine_coordinates(group, point, x, y, ctx))
185
0
            goto err;
186
187
4.49k
        buf[0] = form;
188
4.49k
        if ((form != POINT_CONVERSION_UNCOMPRESSED) && !BN_is_zero(x)) {
189
1.07k
            if (!group->meth->field_div(group, yxi, y, x, ctx))
190
0
                goto err;
191
1.07k
            if (BN_is_odd(yxi))
192
572
                buf[0]++;
193
1.07k
        }
194
195
4.49k
        i = 1;
196
197
4.49k
        skip = field_len - BN_num_bytes(x);
198
4.49k
        if (skip > field_len) {
199
0
            ERR_raise(ERR_LIB_EC, ERR_R_INTERNAL_ERROR);
200
0
            goto err;
201
0
        }
202
14.3k
        while (skip > 0) {
203
9.87k
            buf[i++] = 0;
204
9.87k
            skip--;
205
9.87k
        }
206
4.49k
        skip = BN_bn2bin(x, buf + i);
207
4.49k
        i += skip;
208
4.49k
        if (i != 1 + field_len) {
209
0
            ERR_raise(ERR_LIB_EC, ERR_R_INTERNAL_ERROR);
210
0
            goto err;
211
0
        }
212
213
4.49k
        if (form == POINT_CONVERSION_UNCOMPRESSED
214
3.34k
            || form == POINT_CONVERSION_HYBRID) {
215
3.34k
            skip = field_len - BN_num_bytes(y);
216
3.34k
            if (skip > field_len) {
217
0
                ERR_raise(ERR_LIB_EC, ERR_R_INTERNAL_ERROR);
218
0
                goto err;
219
0
            }
220
5.16k
            while (skip > 0) {
221
1.82k
                buf[i++] = 0;
222
1.82k
                skip--;
223
1.82k
            }
224
3.34k
            skip = BN_bn2bin(y, buf + i);
225
3.34k
            i += skip;
226
3.34k
        }
227
228
4.49k
        if (i != ret) {
229
0
            ERR_raise(ERR_LIB_EC, ERR_R_INTERNAL_ERROR);
230
0
            goto err;
231
0
        }
232
4.49k
    }
233
234
8.99k
    if (used_ctx)
235
4.49k
        BN_CTX_end(ctx);
236
8.99k
#ifndef FIPS_MODULE
237
8.99k
    BN_CTX_free(new_ctx);
238
8.99k
#endif
239
8.99k
    return ret;
240
241
264
err:
242
264
    if (used_ctx)
243
0
        BN_CTX_end(ctx);
244
264
#ifndef FIPS_MODULE
245
264
    BN_CTX_free(new_ctx);
246
264
#endif
247
264
    return 0;
248
8.99k
}
249
250
/*
251
 * Converts an octet string representation to an EC_POINT. Note that the
252
 * simple implementation only uses affine coordinates.
253
 */
254
int ossl_ec_GF2m_simple_oct2point(const EC_GROUP *group, EC_POINT *point,
255
    const unsigned char *buf, size_t len,
256
    BN_CTX *ctx)
257
316k
{
258
316k
    point_conversion_form_t form;
259
316k
    int y_bit, m;
260
316k
    BIGNUM *x, *y, *yxi;
261
316k
    size_t field_len, enc_len;
262
316k
    int ret = 0;
263
316k
#ifndef FIPS_MODULE
264
316k
    BN_CTX *new_ctx = NULL;
265
316k
#endif
266
267
316k
    if (len == 0) {
268
4.92k
        ERR_raise(ERR_LIB_EC, EC_R_BUFFER_TOO_SMALL);
269
4.92k
        return 0;
270
4.92k
    }
271
272
    /*
273
     * The first octet is the point conversion octet PC, see X9.62, page 4
274
     * and section 4.4.2.  It must be:
275
     *     0x00          for the point at infinity
276
     *     0x02 or 0x03  for compressed form
277
     *     0x04          for uncompressed form
278
     *     0x06 or 0x07  for hybrid form.
279
     * For compressed or hybrid forms, we store the last bit of buf[0] as
280
     * y_bit and clear it from buf[0] so as to obtain a POINT_CONVERSION_*.
281
     * We error if buf[0] contains any but the above values.
282
     */
283
312k
    y_bit = buf[0] & 1;
284
312k
    form = buf[0] & ~1U;
285
286
312k
    if ((form != 0) && (form != POINT_CONVERSION_COMPRESSED)
287
52.6k
        && (form != POINT_CONVERSION_UNCOMPRESSED)
288
50.4k
        && (form != POINT_CONVERSION_HYBRID)) {
289
7.74k
        ERR_raise(ERR_LIB_EC, EC_R_INVALID_ENCODING);
290
7.74k
        return 0;
291
7.74k
    }
292
304k
    if ((form == 0 || form == POINT_CONVERSION_UNCOMPRESSED) && y_bit) {
293
2.33k
        ERR_raise(ERR_LIB_EC, EC_R_INVALID_ENCODING);
294
2.33k
        return 0;
295
2.33k
    }
296
297
    /* The point at infinity is represented by a single zero octet. */
298
301k
    if (form == 0) {
299
36.6k
        if (len != 1) {
300
3.78k
            ERR_raise(ERR_LIB_EC, EC_R_INVALID_ENCODING);
301
3.78k
            return 0;
302
3.78k
        }
303
304
32.8k
        return EC_POINT_set_to_infinity(group, point);
305
36.6k
    }
306
307
265k
    m = EC_GROUP_get_degree(group);
308
265k
    field_len = (m + 7) / 8;
309
265k
    enc_len = (form == POINT_CONVERSION_COMPRESSED) ? 1 + field_len : 1 + 2 * field_len;
310
311
265k
    if (len != enc_len) {
312
19.8k
        ERR_raise(ERR_LIB_EC, EC_R_INVALID_ENCODING);
313
19.8k
        return 0;
314
19.8k
    }
315
316
245k
#ifndef FIPS_MODULE
317
245k
    if (ctx == NULL) {
318
245k
        ctx = new_ctx = BN_CTX_new();
319
245k
        if (ctx == NULL)
320
0
            return 0;
321
245k
    }
322
245k
#endif
323
324
245k
    BN_CTX_start(ctx);
325
245k
    x = BN_CTX_get(ctx);
326
245k
    y = BN_CTX_get(ctx);
327
245k
    yxi = BN_CTX_get(ctx);
328
245k
    if (yxi == NULL)
329
0
        goto err;
330
331
245k
    if (!BN_bin2bn(buf + 1, field_len, x))
332
0
        goto err;
333
245k
    if (BN_num_bits(x) > m) {
334
15.5k
        ERR_raise(ERR_LIB_EC, EC_R_INVALID_ENCODING);
335
15.5k
        goto err;
336
15.5k
    }
337
338
229k
    if (form == POINT_CONVERSION_COMPRESSED) {
339
196k
        if (!EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx))
340
64.4k
            goto err;
341
196k
    } else {
342
33.6k
        if (!BN_bin2bn(buf + 1 + field_len, field_len, y))
343
0
            goto err;
344
33.6k
        if (BN_num_bits(y) > m) {
345
1.07k
            ERR_raise(ERR_LIB_EC, EC_R_INVALID_ENCODING);
346
1.07k
            goto err;
347
1.07k
        }
348
32.5k
        if (form == POINT_CONVERSION_HYBRID) {
349
            /*
350
             * Check that the form in the encoding was set correctly
351
             * according to X9.62 4.4.2.a, 4(c), see also first paragraph
352
             * of X9.62, 4.4.1.b.
353
             */
354
31.9k
            if (BN_is_zero(x)) {
355
1.10k
                if (y_bit != 0) {
356
257
                    ERR_raise(ERR_LIB_EC, EC_R_INVALID_ENCODING);
357
257
                    goto err;
358
257
                }
359
30.8k
            } else {
360
30.8k
                if (!group->meth->field_div(group, yxi, y, x, ctx))
361
0
                    goto err;
362
30.8k
                if (y_bit != BN_is_odd(yxi)) {
363
14.5k
                    ERR_raise(ERR_LIB_EC, EC_R_INVALID_ENCODING);
364
14.5k
                    goto err;
365
14.5k
                }
366
30.8k
            }
367
31.9k
        }
368
369
        /*
370
         * EC_POINT_set_affine_coordinates is responsible for checking that
371
         * the point is on the curve.
372
         */
373
17.7k
        if (!EC_POINT_set_affine_coordinates(group, point, x, y, ctx))
374
17.7k
            goto err;
375
17.7k
    }
376
377
131k
    ret = 1;
378
379
245k
err:
380
245k
    BN_CTX_end(ctx);
381
245k
#ifndef FIPS_MODULE
382
245k
    BN_CTX_free(new_ctx);
383
245k
#endif
384
245k
    return ret;
385
131k
}
386
#endif