1 /* $OpenBSD: ecp_oct.c,v 1.8 2017/01/29 17:49:23 beck Exp $ */
2 /* Includes code written by Lenka Fibikova <fibikova@exp-math.uni-essen.de>
3 * for the OpenSSL project.
4 * Includes code written by Bodo Moeller for the OpenSSL project.
6 /* ====================================================================
7 * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in
18 * the documentation and/or other materials provided with the
21 * 3. All advertising materials mentioning features or use of this
22 * software must display the following acknowledgment:
23 * "This product includes software developed by the OpenSSL Project
24 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
26 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
27 * endorse or promote products derived from this software without
28 * prior written permission. For written permission, please contact
29 * openssl-core@openssl.org.
31 * 5. Products derived from this software may not be called "OpenSSL"
32 * nor may "OpenSSL" appear in their names without prior written
33 * permission of the OpenSSL Project.
35 * 6. Redistributions of any form whatsoever must retain the following
37 * "This product includes software developed by the OpenSSL Project
38 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
40 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
41 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
43 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
44 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
46 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
47 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
50 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
51 * OF THE POSSIBILITY OF SUCH DAMAGE.
52 * ====================================================================
54 * This product includes cryptographic software written by Eric Young
55 * (eay@cryptsoft.com). This product includes software written by Tim
56 * Hudson (tjh@cryptsoft.com).
59 /* ====================================================================
60 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
61 * Portions of this software developed by SUN MICROSYSTEMS, INC.,
62 * and contributed to the OpenSSL project.
65 #include <openssl/err.h>
70 ec_GFp_simple_set_compressed_coordinates(const EC_GROUP
* group
,
71 EC_POINT
* point
, const BIGNUM
* x_
, int y_bit
, BN_CTX
* ctx
)
73 BN_CTX
*new_ctx
= NULL
;
74 BIGNUM
*tmp1
, *tmp2
, *x
, *y
;
77 /* clear error queue */
81 ctx
= new_ctx
= BN_CTX_new();
88 if ((tmp1
= BN_CTX_get(ctx
)) == NULL
)
90 if ((tmp2
= BN_CTX_get(ctx
)) == NULL
)
92 if ((x
= BN_CTX_get(ctx
)) == NULL
)
94 if ((y
= BN_CTX_get(ctx
)) == NULL
)
98 * Recover y. We have a Weierstrass equation y^2 = x^3 + a*x + b, so
99 * y is one of the square roots of x^3 + a*x + b.
103 if (!BN_nnmod(x
, x_
, &group
->field
, ctx
))
105 if (group
->meth
->field_decode
== 0) {
106 /* field_{sqr,mul} work on standard representation */
107 if (!group
->meth
->field_sqr(group
, tmp2
, x_
, ctx
))
109 if (!group
->meth
->field_mul(group
, tmp1
, tmp2
, x_
, ctx
))
112 if (!BN_mod_sqr(tmp2
, x_
, &group
->field
, ctx
))
114 if (!BN_mod_mul(tmp1
, tmp2
, x_
, &group
->field
, ctx
))
118 /* tmp1 := tmp1 + a*x */
119 if (group
->a_is_minus3
) {
120 if (!BN_mod_lshift1_quick(tmp2
, x
, &group
->field
))
122 if (!BN_mod_add_quick(tmp2
, tmp2
, x
, &group
->field
))
124 if (!BN_mod_sub_quick(tmp1
, tmp1
, tmp2
, &group
->field
))
127 if (group
->meth
->field_decode
) {
128 if (!group
->meth
->field_decode(group
, tmp2
, &group
->a
, ctx
))
130 if (!BN_mod_mul(tmp2
, tmp2
, x
, &group
->field
, ctx
))
133 /* field_mul works on standard representation */
134 if (!group
->meth
->field_mul(group
, tmp2
, &group
->a
, x
, ctx
))
138 if (!BN_mod_add_quick(tmp1
, tmp1
, tmp2
, &group
->field
))
142 /* tmp1 := tmp1 + b */
143 if (group
->meth
->field_decode
) {
144 if (!group
->meth
->field_decode(group
, tmp2
, &group
->b
, ctx
))
146 if (!BN_mod_add_quick(tmp1
, tmp1
, tmp2
, &group
->field
))
149 if (!BN_mod_add_quick(tmp1
, tmp1
, &group
->b
, &group
->field
))
153 if (!BN_mod_sqrt(y
, tmp1
, &group
->field
, ctx
)) {
154 unsigned long err
= ERR_peek_last_error();
156 if (ERR_GET_LIB(err
) == ERR_LIB_BN
&& ERR_GET_REASON(err
) == BN_R_NOT_A_SQUARE
) {
158 ECerror(EC_R_INVALID_COMPRESSED_POINT
);
160 ECerror(ERR_R_BN_LIB
);
163 if (y_bit
!= BN_is_odd(y
)) {
167 kron
= BN_kronecker(x
, &group
->field
, ctx
);
172 ECerror(EC_R_INVALID_COMPRESSION_BIT
);
175 * BN_mod_sqrt() should have cought this
176 * error (not a square)
178 ECerror(EC_R_INVALID_COMPRESSED_POINT
);
181 if (!BN_usub(y
, &group
->field
, y
))
184 if (y_bit
!= BN_is_odd(y
)) {
185 ECerror(ERR_R_INTERNAL_ERROR
);
188 if (!EC_POINT_set_affine_coordinates_GFp(group
, point
, x
, y
, ctx
))
195 BN_CTX_free(new_ctx
);
201 ec_GFp_simple_point2oct(const EC_GROUP
* group
, const EC_POINT
* point
, point_conversion_form_t form
,
202 unsigned char *buf
, size_t len
, BN_CTX
* ctx
)
205 BN_CTX
*new_ctx
= NULL
;
208 size_t field_len
, i
, skip
;
210 if ((form
!= POINT_CONVERSION_COMPRESSED
)
211 && (form
!= POINT_CONVERSION_UNCOMPRESSED
)
212 && (form
!= POINT_CONVERSION_HYBRID
)) {
213 ECerror(EC_R_INVALID_FORM
);
216 if (EC_POINT_is_at_infinity(group
, point
) > 0) {
217 /* encodes to a single 0 octet */
220 ECerror(EC_R_BUFFER_TOO_SMALL
);
227 /* ret := required output buffer length */
228 field_len
= BN_num_bytes(&group
->field
);
229 ret
= (form
== POINT_CONVERSION_COMPRESSED
) ? 1 + field_len
: 1 + 2 * field_len
;
231 /* if 'buf' is NULL, just return required length */
234 ECerror(EC_R_BUFFER_TOO_SMALL
);
238 ctx
= new_ctx
= BN_CTX_new();
244 if ((x
= BN_CTX_get(ctx
)) == NULL
)
246 if ((y
= BN_CTX_get(ctx
)) == NULL
)
249 if (!EC_POINT_get_affine_coordinates_GFp(group
, point
, x
, y
, ctx
))
252 if ((form
== POINT_CONVERSION_COMPRESSED
|| form
== POINT_CONVERSION_HYBRID
) && BN_is_odd(y
))
259 skip
= field_len
- BN_num_bytes(x
);
260 if (skip
> field_len
) {
261 ECerror(ERR_R_INTERNAL_ERROR
);
268 skip
= BN_bn2bin(x
, buf
+ i
);
270 if (i
!= 1 + field_len
) {
271 ECerror(ERR_R_INTERNAL_ERROR
);
274 if (form
== POINT_CONVERSION_UNCOMPRESSED
|| form
== POINT_CONVERSION_HYBRID
) {
275 skip
= field_len
- BN_num_bytes(y
);
276 if (skip
> field_len
) {
277 ECerror(ERR_R_INTERNAL_ERROR
);
284 skip
= BN_bn2bin(y
, buf
+ i
);
288 ECerror(ERR_R_INTERNAL_ERROR
);
294 BN_CTX_free(new_ctx
);
300 BN_CTX_free(new_ctx
);
306 ec_GFp_simple_oct2point(const EC_GROUP
* group
, EC_POINT
* point
,
307 const unsigned char *buf
, size_t len
, BN_CTX
* ctx
)
309 point_conversion_form_t form
;
311 BN_CTX
*new_ctx
= NULL
;
313 size_t field_len
, enc_len
;
317 ECerror(EC_R_BUFFER_TOO_SMALL
);
323 if ((form
!= 0) && (form
!= POINT_CONVERSION_COMPRESSED
)
324 && (form
!= POINT_CONVERSION_UNCOMPRESSED
)
325 && (form
!= POINT_CONVERSION_HYBRID
)) {
326 ECerror(EC_R_INVALID_ENCODING
);
329 if ((form
== 0 || form
== POINT_CONVERSION_UNCOMPRESSED
) && y_bit
) {
330 ECerror(EC_R_INVALID_ENCODING
);
335 ECerror(EC_R_INVALID_ENCODING
);
338 return EC_POINT_set_to_infinity(group
, point
);
340 field_len
= BN_num_bytes(&group
->field
);
341 enc_len
= (form
== POINT_CONVERSION_COMPRESSED
) ? 1 + field_len
: 1 + 2 * field_len
;
343 if (len
!= enc_len
) {
344 ECerror(EC_R_INVALID_ENCODING
);
348 ctx
= new_ctx
= BN_CTX_new();
353 if ((x
= BN_CTX_get(ctx
)) == NULL
)
355 if ((y
= BN_CTX_get(ctx
)) == NULL
)
358 if (!BN_bin2bn(buf
+ 1, field_len
, x
))
360 if (BN_ucmp(x
, &group
->field
) >= 0) {
361 ECerror(EC_R_INVALID_ENCODING
);
364 if (form
== POINT_CONVERSION_COMPRESSED
) {
365 if (!EC_POINT_set_compressed_coordinates_GFp(group
, point
, x
, y_bit
, ctx
))
368 if (!BN_bin2bn(buf
+ 1 + field_len
, field_len
, y
))
370 if (BN_ucmp(y
, &group
->field
) >= 0) {
371 ECerror(EC_R_INVALID_ENCODING
);
374 if (form
== POINT_CONVERSION_HYBRID
) {
375 if (y_bit
!= BN_is_odd(y
)) {
376 ECerror(EC_R_INVALID_ENCODING
);
380 if (!EC_POINT_set_affine_coordinates_GFp(group
, point
, x
, y
, ctx
))
384 /* test required by X9.62 */
385 if (EC_POINT_is_on_curve(group
, point
, ctx
) <= 0) {
386 ECerror(EC_R_POINT_IS_NOT_ON_CURVE
);
393 BN_CTX_free(new_ctx
);