EC_KEY_METHOD copy support
[openssl.git] / crypto / ec / ec_key.c
1 /* crypto/ec/ec_key.c */
2 /*
3  * Written by Nils Larsch for the OpenSSL project.
4  */
5 /* ====================================================================
6  * Copyright (c) 1998-2005 The OpenSSL Project.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in
17  *    the documentation and/or other materials provided with the
18  *    distribution.
19  *
20  * 3. All advertising materials mentioning features or use of this
21  *    software must display the following acknowledgment:
22  *    "This product includes software developed by the OpenSSL Project
23  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
24  *
25  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26  *    endorse or promote products derived from this software without
27  *    prior written permission. For written permission, please contact
28  *    openssl-core@openssl.org.
29  *
30  * 5. Products derived from this software may not be called "OpenSSL"
31  *    nor may "OpenSSL" appear in their names without prior written
32  *    permission of the OpenSSL Project.
33  *
34  * 6. Redistributions of any form whatsoever must retain the following
35  *    acknowledgment:
36  *    "This product includes software developed by the OpenSSL Project
37  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
38  *
39  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
43  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50  * OF THE POSSIBILITY OF SUCH DAMAGE.
51  * ====================================================================
52  *
53  * This product includes cryptographic software written by Eric Young
54  * (eay@cryptsoft.com).  This product includes software written by Tim
55  * Hudson (tjh@cryptsoft.com).
56  *
57  */
58 /* ====================================================================
59  * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
60  * Portions originally developed by SUN MICROSYSTEMS, INC., and
61  * contributed to the OpenSSL project.
62  */
63
64 #include <internal/cryptlib.h>
65 #include <string.h>
66 #include "ec_lcl.h"
67 #include <openssl/err.h>
68 #ifndef OPENSSSL_NO_ENGINE
69 # include <openssl/engine.h>
70 #endif
71
72 EC_KEY *EC_KEY_new(void)
73 {
74     return EC_KEY_new_method(NULL);
75 }
76
77 EC_KEY *EC_KEY_new_by_curve_name(int nid)
78 {
79     EC_KEY *ret = EC_KEY_new();
80     if (ret == NULL)
81         return NULL;
82     ret->group = EC_GROUP_new_by_curve_name(nid);
83     if (ret->group == NULL) {
84         EC_KEY_free(ret);
85         return NULL;
86     }
87     return ret;
88 }
89
90 void EC_KEY_free(EC_KEY *r)
91 {
92     int i;
93
94     if (r == NULL)
95         return;
96
97     i = CRYPTO_add(&r->references, -1, CRYPTO_LOCK_EC);
98 #ifdef REF_PRINT
99     REF_PRINT("EC_KEY", r);
100 #endif
101     if (i > 0)
102         return;
103 #ifdef REF_CHECK
104     if (i < 0) {
105         fprintf(stderr, "EC_KEY_free, bad reference count\n");
106         abort();
107     }
108 #endif
109
110     if (r->meth->finish)
111         r->meth->finish(r);
112
113 #ifndef OPENSSL_NO_ENGINE
114     if (r->engine)
115         ENGINE_finish(r->engine);
116 #endif
117
118     EC_GROUP_free(r->group);
119     EC_POINT_free(r->pub_key);
120     BN_clear_free(r->priv_key);
121
122     EC_EX_DATA_free_all_data(&r->method_data);
123
124     OPENSSL_clear_free((void *)r, sizeof(EC_KEY));
125 }
126
127 EC_KEY *EC_KEY_copy(EC_KEY *dest, const EC_KEY *src)
128 {
129     EC_EXTRA_DATA *d;
130
131     if (dest == NULL || src == NULL) {
132         ECerr(EC_F_EC_KEY_COPY, ERR_R_PASSED_NULL_PARAMETER);
133         return NULL;
134     }
135     if (src->meth != dest->meth) {
136         if (dest->meth->finish)
137             dest->meth->finish(dest);
138 #ifndef OPENSSL_NO_ENGINE
139         if (dest->engine && ENGINE_finish(dest->engine) == 0)
140             return 0;
141         dest->engine = NULL;
142 #endif
143     }
144     /* copy the parameters */
145     if (src->group) {
146         const EC_METHOD *meth = EC_GROUP_method_of(src->group);
147         /* clear the old group */
148         EC_GROUP_free(dest->group);
149         dest->group = EC_GROUP_new(meth);
150         if (dest->group == NULL)
151             return NULL;
152         if (!EC_GROUP_copy(dest->group, src->group))
153             return NULL;
154     }
155     /*  copy the public key */
156     if (src->pub_key && src->group) {
157         EC_POINT_free(dest->pub_key);
158         dest->pub_key = EC_POINT_new(src->group);
159         if (dest->pub_key == NULL)
160             return NULL;
161         if (!EC_POINT_copy(dest->pub_key, src->pub_key))
162             return NULL;
163     }
164     /* copy the private key */
165     if (src->priv_key) {
166         if (dest->priv_key == NULL) {
167             dest->priv_key = BN_new();
168             if (dest->priv_key == NULL)
169                 return NULL;
170         }
171         if (!BN_copy(dest->priv_key, src->priv_key))
172             return NULL;
173     }
174     /* copy method/extra data */
175     EC_EX_DATA_free_all_data(&dest->method_data);
176
177     for (d = src->method_data; d != NULL; d = d->next) {
178         void *t = d->dup_func(d->data);
179
180         if (t == NULL)
181             return 0;
182         if (!EC_EX_DATA_set_data
183             (&dest->method_data, t, d->dup_func, d->free_func,
184              d->clear_free_func))
185             return 0;
186     }
187
188     /* copy the rest */
189     dest->enc_flag = src->enc_flag;
190     dest->conv_form = src->conv_form;
191     dest->version = src->version;
192     dest->flags = src->flags;
193
194     if (src->meth != dest->meth) {
195 #ifndef OPENSSL_NO_ENGINE
196         if (src->engine && ENGINE_init(src->engine) == 0)
197             return 0;
198         dest->engine = src->engine;
199 #endif
200         dest->meth = src->meth;
201     }
202
203     if (src->meth->copy && src->meth->copy(dest, src) == 0)
204         return 0;
205
206     return dest;
207 }
208
209 EC_KEY *EC_KEY_dup(const EC_KEY *ec_key)
210 {
211     EC_KEY *ret = EC_KEY_new_method(ec_key->engine);
212     if (ret == NULL)
213         return NULL;
214     if (EC_KEY_copy(ret, ec_key) == NULL) {
215         EC_KEY_free(ret);
216         return NULL;
217     }
218     return ret;
219 }
220
221 int EC_KEY_up_ref(EC_KEY *r)
222 {
223     int i = CRYPTO_add(&r->references, 1, CRYPTO_LOCK_EC);
224 #ifdef REF_PRINT
225     REF_PRINT("EC_KEY", r);
226 #endif
227 #ifdef REF_CHECK
228     if (i < 2) {
229         fprintf(stderr, "EC_KEY_up, bad reference count\n");
230         abort();
231     }
232 #endif
233     return ((i > 1) ? 1 : 0);
234 }
235
236 int EC_KEY_generate_key(EC_KEY *eckey)
237 {
238     if (!eckey || !eckey->group) {
239         ECerr(EC_F_EC_KEY_GENERATE_KEY, ERR_R_PASSED_NULL_PARAMETER);
240         return 0;
241     }
242     if (eckey->meth->keygen)
243         return eckey->meth->keygen(eckey);
244     ECerr(EC_F_EC_KEY_GENERATE_KEY, EC_R_OPERATION_NOT_SUPPORTED);
245     return 0;
246 }
247
248 int ossl_ec_key_gen(EC_KEY *eckey)
249 {
250     int ok = 0;
251     BN_CTX *ctx = NULL;
252     BIGNUM *priv_key = NULL, *order = NULL;
253     EC_POINT *pub_key = NULL;
254
255     if ((order = BN_new()) == NULL)
256         goto err;
257     if ((ctx = BN_CTX_new()) == NULL)
258         goto err;
259
260     if (eckey->priv_key == NULL) {
261         priv_key = BN_new();
262         if (priv_key == NULL)
263             goto err;
264     } else
265         priv_key = eckey->priv_key;
266
267     if (!EC_GROUP_get_order(eckey->group, order, ctx))
268         goto err;
269
270     do
271         if (!BN_rand_range(priv_key, order))
272             goto err;
273     while (BN_is_zero(priv_key)) ;
274
275     if (eckey->pub_key == NULL) {
276         pub_key = EC_POINT_new(eckey->group);
277         if (pub_key == NULL)
278             goto err;
279     } else
280         pub_key = eckey->pub_key;
281
282     if (!EC_POINT_mul(eckey->group, pub_key, priv_key, NULL, NULL, ctx))
283         goto err;
284
285     eckey->priv_key = priv_key;
286     eckey->pub_key = pub_key;
287
288     ok = 1;
289
290  err:
291     BN_free(order);
292     if (eckey->pub_key == NULL)
293         EC_POINT_free(pub_key);
294     if (eckey->priv_key != priv_key)
295         BN_free(priv_key);
296     BN_CTX_free(ctx);
297     return (ok);
298 }
299
300 int EC_KEY_check_key(const EC_KEY *eckey)
301 {
302     int ok = 0;
303     BN_CTX *ctx = NULL;
304     const BIGNUM *order = NULL;
305     EC_POINT *point = NULL;
306
307     if (!eckey || !eckey->group || !eckey->pub_key) {
308         ECerr(EC_F_EC_KEY_CHECK_KEY, ERR_R_PASSED_NULL_PARAMETER);
309         return 0;
310     }
311
312     if (EC_POINT_is_at_infinity(eckey->group, eckey->pub_key)) {
313         ECerr(EC_F_EC_KEY_CHECK_KEY, EC_R_POINT_AT_INFINITY);
314         goto err;
315     }
316
317     if ((ctx = BN_CTX_new()) == NULL)
318         goto err;
319     if ((point = EC_POINT_new(eckey->group)) == NULL)
320         goto err;
321
322     /* testing whether the pub_key is on the elliptic curve */
323     if (EC_POINT_is_on_curve(eckey->group, eckey->pub_key, ctx) <= 0) {
324         ECerr(EC_F_EC_KEY_CHECK_KEY, EC_R_POINT_IS_NOT_ON_CURVE);
325         goto err;
326     }
327     /* testing whether pub_key * order is the point at infinity */
328     order = eckey->group->order;
329     if (BN_is_zero(order)) {
330         ECerr(EC_F_EC_KEY_CHECK_KEY, EC_R_INVALID_GROUP_ORDER);
331         goto err;
332     }
333     if (!EC_POINT_mul(eckey->group, point, NULL, eckey->pub_key, order, ctx)) {
334         ECerr(EC_F_EC_KEY_CHECK_KEY, ERR_R_EC_LIB);
335         goto err;
336     }
337     if (!EC_POINT_is_at_infinity(eckey->group, point)) {
338         ECerr(EC_F_EC_KEY_CHECK_KEY, EC_R_WRONG_ORDER);
339         goto err;
340     }
341     /*
342      * in case the priv_key is present : check if generator * priv_key ==
343      * pub_key
344      */
345     if (eckey->priv_key) {
346         if (BN_cmp(eckey->priv_key, order) >= 0) {
347             ECerr(EC_F_EC_KEY_CHECK_KEY, EC_R_WRONG_ORDER);
348             goto err;
349         }
350         if (!EC_POINT_mul(eckey->group, point, eckey->priv_key,
351                           NULL, NULL, ctx)) {
352             ECerr(EC_F_EC_KEY_CHECK_KEY, ERR_R_EC_LIB);
353             goto err;
354         }
355         if (EC_POINT_cmp(eckey->group, point, eckey->pub_key, ctx) != 0) {
356             ECerr(EC_F_EC_KEY_CHECK_KEY, EC_R_INVALID_PRIVATE_KEY);
357             goto err;
358         }
359     }
360     ok = 1;
361  err:
362     BN_CTX_free(ctx);
363     EC_POINT_free(point);
364     return (ok);
365 }
366
367 int EC_KEY_set_public_key_affine_coordinates(EC_KEY *key, BIGNUM *x,
368                                              BIGNUM *y)
369 {
370     BN_CTX *ctx = NULL;
371     BIGNUM *tx, *ty;
372     EC_POINT *point = NULL;
373     int ok = 0;
374 #ifndef OPENSSL_NO_EC2M
375     int tmp_nid, is_char_two = 0;
376 #endif
377
378     if (!key || !key->group || !x || !y) {
379         ECerr(EC_F_EC_KEY_SET_PUBLIC_KEY_AFFINE_COORDINATES,
380               ERR_R_PASSED_NULL_PARAMETER);
381         return 0;
382     }
383     ctx = BN_CTX_new();
384     if (ctx == NULL)
385         goto err;
386
387     point = EC_POINT_new(key->group);
388
389     if (point == NULL)
390         goto err;
391
392     tx = BN_CTX_get(ctx);
393     ty = BN_CTX_get(ctx);
394
395 #ifndef OPENSSL_NO_EC2M
396     tmp_nid = EC_METHOD_get_field_type(EC_GROUP_method_of(key->group));
397
398     if (tmp_nid == NID_X9_62_characteristic_two_field)
399         is_char_two = 1;
400
401     if (is_char_two) {
402         if (!EC_POINT_set_affine_coordinates_GF2m(key->group, point,
403                                                   x, y, ctx))
404             goto err;
405         if (!EC_POINT_get_affine_coordinates_GF2m(key->group, point,
406                                                   tx, ty, ctx))
407             goto err;
408     } else
409 #endif
410     {
411         if (!EC_POINT_set_affine_coordinates_GFp(key->group, point,
412                                                  x, y, ctx))
413             goto err;
414         if (!EC_POINT_get_affine_coordinates_GFp(key->group, point,
415                                                  tx, ty, ctx))
416             goto err;
417     }
418     /*
419      * Check if retrieved coordinates match originals and are less than field
420      * order: if not values are out of range.
421      */
422     if (BN_cmp(x, tx) || BN_cmp(y, ty)
423         || (BN_cmp(x, key->group->field) >= 0)
424         || (BN_cmp(y, key->group->field) >= 0)) {
425         ECerr(EC_F_EC_KEY_SET_PUBLIC_KEY_AFFINE_COORDINATES,
426               EC_R_COORDINATES_OUT_OF_RANGE);
427         goto err;
428     }
429
430     if (!EC_KEY_set_public_key(key, point))
431         goto err;
432
433     if (EC_KEY_check_key(key) == 0)
434         goto err;
435
436     ok = 1;
437
438  err:
439     BN_CTX_free(ctx);
440     EC_POINT_free(point);
441     return ok;
442
443 }
444
445 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key)
446 {
447     return key->group;
448 }
449
450 int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group)
451 {
452     EC_GROUP_free(key->group);
453     key->group = EC_GROUP_dup(group);
454     return (key->group == NULL) ? 0 : 1;
455 }
456
457 const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *key)
458 {
459     return key->priv_key;
460 }
461
462 int EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *priv_key)
463 {
464     BN_clear_free(key->priv_key);
465     key->priv_key = BN_dup(priv_key);
466     return (key->priv_key == NULL) ? 0 : 1;
467 }
468
469 const EC_POINT *EC_KEY_get0_public_key(const EC_KEY *key)
470 {
471     return key->pub_key;
472 }
473
474 int EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub_key)
475 {
476     EC_POINT_free(key->pub_key);
477     key->pub_key = EC_POINT_dup(pub_key, key->group);
478     return (key->pub_key == NULL) ? 0 : 1;
479 }
480
481 unsigned int EC_KEY_get_enc_flags(const EC_KEY *key)
482 {
483     return key->enc_flag;
484 }
485
486 void EC_KEY_set_enc_flags(EC_KEY *key, unsigned int flags)
487 {
488     key->enc_flag = flags;
489 }
490
491 point_conversion_form_t EC_KEY_get_conv_form(const EC_KEY *key)
492 {
493     return key->conv_form;
494 }
495
496 void EC_KEY_set_conv_form(EC_KEY *key, point_conversion_form_t cform)
497 {
498     key->conv_form = cform;
499     if (key->group != NULL)
500         EC_GROUP_set_point_conversion_form(key->group, cform);
501 }
502
503 void *EC_KEY_get_key_method_data(EC_KEY *key,
504                                  void *(*dup_func) (void *),
505                                  void (*free_func) (void *),
506                                  void (*clear_free_func) (void *))
507 {
508     void *ret;
509
510     CRYPTO_r_lock(CRYPTO_LOCK_EC);
511     ret =
512         EC_EX_DATA_get_data(key->method_data, dup_func, free_func,
513                             clear_free_func);
514     CRYPTO_r_unlock(CRYPTO_LOCK_EC);
515
516     return ret;
517 }
518
519 void *EC_KEY_insert_key_method_data(EC_KEY *key, void *data,
520                                     void *(*dup_func) (void *),
521                                     void (*free_func) (void *),
522                                     void (*clear_free_func) (void *))
523 {
524     EC_EXTRA_DATA *ex_data;
525
526     CRYPTO_w_lock(CRYPTO_LOCK_EC);
527     ex_data =
528         EC_EX_DATA_get_data(key->method_data, dup_func, free_func,
529                             clear_free_func);
530     if (ex_data == NULL)
531         EC_EX_DATA_set_data(&key->method_data, data, dup_func, free_func,
532                             clear_free_func);
533     CRYPTO_w_unlock(CRYPTO_LOCK_EC);
534
535     return ex_data;
536 }
537
538 void EC_KEY_set_asn1_flag(EC_KEY *key, int flag)
539 {
540     if (key->group != NULL)
541         EC_GROUP_set_asn1_flag(key->group, flag);
542 }
543
544 int EC_KEY_precompute_mult(EC_KEY *key, BN_CTX *ctx)
545 {
546     if (key->group == NULL)
547         return 0;
548     return EC_GROUP_precompute_mult(key->group, ctx);
549 }
550
551 int EC_KEY_get_flags(const EC_KEY *key)
552 {
553     return key->flags;
554 }
555
556 void EC_KEY_set_flags(EC_KEY *key, int flags)
557 {
558     key->flags |= flags;
559 }
560
561 void EC_KEY_clear_flags(EC_KEY *key, int flags)
562 {
563     key->flags &= ~flags;
564 }