0554c209e5799d060bcced5c88159b2b9fd373d9
[openssl.git] / crypto / ec / ec_ameth.c
1 /*
2  * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project
3  * 2006.
4  */
5 /* ====================================================================
6  * Copyright (c) 2006 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  *    licensing@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 #include <stdio.h>
60 #include "cryptlib.h"
61 #include <openssl/x509.h>
62 #include <openssl/ec.h>
63 #include <openssl/bn.h>
64 #ifndef OPENSSL_NO_CMS
65 # include <openssl/cms.h>
66 #endif
67 #include <openssl/asn1t.h>
68 #include "internal/asn1_int.h"
69
70 static int ecdh_cms_decrypt(CMS_RecipientInfo *ri);
71 static int ecdh_cms_encrypt(CMS_RecipientInfo *ri);
72
73 static int eckey_param2type(int *pptype, void **ppval, EC_KEY *ec_key)
74 {
75     const EC_GROUP *group;
76     int nid;
77     if (ec_key == NULL || (group = EC_KEY_get0_group(ec_key)) == NULL) {
78         ECerr(EC_F_ECKEY_PARAM2TYPE, EC_R_MISSING_PARAMETERS);
79         return 0;
80     }
81     if (EC_GROUP_get_asn1_flag(group)
82         && (nid = EC_GROUP_get_curve_name(group)))
83         /* we have a 'named curve' => just set the OID */
84     {
85         *ppval = OBJ_nid2obj(nid);
86         *pptype = V_ASN1_OBJECT;
87     } else {                    /* explicit parameters */
88
89         ASN1_STRING *pstr = NULL;
90         pstr = ASN1_STRING_new();
91         if (!pstr)
92             return 0;
93         pstr->length = i2d_ECParameters(ec_key, &pstr->data);
94         if (pstr->length <= 0) {
95             ASN1_STRING_free(pstr);
96             ECerr(EC_F_ECKEY_PARAM2TYPE, ERR_R_EC_LIB);
97             return 0;
98         }
99         *ppval = pstr;
100         *pptype = V_ASN1_SEQUENCE;
101     }
102     return 1;
103 }
104
105 static int eckey_pub_encode(X509_PUBKEY *pk, const EVP_PKEY *pkey)
106 {
107     EC_KEY *ec_key = pkey->pkey.ec;
108     void *pval = NULL;
109     int ptype;
110     unsigned char *penc = NULL, *p;
111     int penclen;
112
113     if (!eckey_param2type(&ptype, &pval, ec_key)) {
114         ECerr(EC_F_ECKEY_PUB_ENCODE, ERR_R_EC_LIB);
115         return 0;
116     }
117     penclen = i2o_ECPublicKey(ec_key, NULL);
118     if (penclen <= 0)
119         goto err;
120     penc = OPENSSL_malloc(penclen);
121     if (!penc)
122         goto err;
123     p = penc;
124     penclen = i2o_ECPublicKey(ec_key, &p);
125     if (penclen <= 0)
126         goto err;
127     if (X509_PUBKEY_set0_param(pk, OBJ_nid2obj(EVP_PKEY_EC),
128                                ptype, pval, penc, penclen))
129         return 1;
130  err:
131     if (ptype == V_ASN1_OBJECT)
132         ASN1_OBJECT_free(pval);
133     else
134         ASN1_STRING_free(pval);
135     if (penc)
136         OPENSSL_free(penc);
137     return 0;
138 }
139
140 static EC_KEY *eckey_type2param(int ptype, void *pval)
141 {
142     EC_KEY *eckey = NULL;
143     if (ptype == V_ASN1_SEQUENCE) {
144         ASN1_STRING *pstr = pval;
145         const unsigned char *pm = NULL;
146         int pmlen;
147         pm = pstr->data;
148         pmlen = pstr->length;
149         if (!(eckey = d2i_ECParameters(NULL, &pm, pmlen))) {
150             ECerr(EC_F_ECKEY_TYPE2PARAM, EC_R_DECODE_ERROR);
151             goto ecerr;
152         }
153     } else if (ptype == V_ASN1_OBJECT) {
154         ASN1_OBJECT *poid = pval;
155         EC_GROUP *group;
156
157         /*
158          * type == V_ASN1_OBJECT => the parameters are given by an asn1 OID
159          */
160         if ((eckey = EC_KEY_new()) == NULL) {
161             ECerr(EC_F_ECKEY_TYPE2PARAM, ERR_R_MALLOC_FAILURE);
162             goto ecerr;
163         }
164         group = EC_GROUP_new_by_curve_name(OBJ_obj2nid(poid));
165         if (group == NULL)
166             goto ecerr;
167         EC_GROUP_set_asn1_flag(group, OPENSSL_EC_NAMED_CURVE);
168         if (EC_KEY_set_group(eckey, group) == 0)
169             goto ecerr;
170         EC_GROUP_free(group);
171     } else {
172         ECerr(EC_F_ECKEY_TYPE2PARAM, EC_R_DECODE_ERROR);
173         goto ecerr;
174     }
175
176     return eckey;
177
178  ecerr:
179     EC_KEY_free(eckey);
180     return NULL;
181 }
182
183 static int eckey_pub_decode(EVP_PKEY *pkey, X509_PUBKEY *pubkey)
184 {
185     const unsigned char *p = NULL;
186     void *pval;
187     int ptype, pklen;
188     EC_KEY *eckey = NULL;
189     X509_ALGOR *palg;
190
191     if (!X509_PUBKEY_get0_param(NULL, &p, &pklen, &palg, pubkey))
192         return 0;
193     X509_ALGOR_get0(NULL, &ptype, &pval, palg);
194
195     eckey = eckey_type2param(ptype, pval);
196
197     if (!eckey) {
198         ECerr(EC_F_ECKEY_PUB_DECODE, ERR_R_EC_LIB);
199         return 0;
200     }
201
202     /* We have parameters now set public key */
203     if (!o2i_ECPublicKey(&eckey, &p, pklen)) {
204         ECerr(EC_F_ECKEY_PUB_DECODE, EC_R_DECODE_ERROR);
205         goto ecerr;
206     }
207
208     EVP_PKEY_assign_EC_KEY(pkey, eckey);
209     return 1;
210
211  ecerr:
212     EC_KEY_free(eckey);
213     return 0;
214 }
215
216 static int eckey_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
217 {
218     int r;
219     const EC_GROUP *group = EC_KEY_get0_group(b->pkey.ec);
220     const EC_POINT *pa = EC_KEY_get0_public_key(a->pkey.ec),
221         *pb = EC_KEY_get0_public_key(b->pkey.ec);
222     r = EC_POINT_cmp(group, pa, pb, NULL);
223     if (r == 0)
224         return 1;
225     if (r == 1)
226         return 0;
227     return -2;
228 }
229
230 static int eckey_priv_decode(EVP_PKEY *pkey, PKCS8_PRIV_KEY_INFO *p8)
231 {
232     const unsigned char *p = NULL;
233     void *pval;
234     int ptype, pklen;
235     EC_KEY *eckey = NULL;
236     X509_ALGOR *palg;
237
238     if (!PKCS8_pkey_get0(NULL, &p, &pklen, &palg, p8))
239         return 0;
240     X509_ALGOR_get0(NULL, &ptype, &pval, palg);
241
242     eckey = eckey_type2param(ptype, pval);
243
244     if (!eckey)
245         goto ecliberr;
246
247     /* We have parameters now set private key */
248     if (!d2i_ECPrivateKey(&eckey, &p, pklen)) {
249         ECerr(EC_F_ECKEY_PRIV_DECODE, EC_R_DECODE_ERROR);
250         goto ecerr;
251     }
252
253     /* calculate public key (if necessary) */
254     if (EC_KEY_get0_public_key(eckey) == NULL) {
255         const BIGNUM *priv_key;
256         const EC_GROUP *group;
257         EC_POINT *pub_key;
258         /*
259          * the public key was not included in the SEC1 private key =>
260          * calculate the public key
261          */
262         group = EC_KEY_get0_group(eckey);
263         pub_key = EC_POINT_new(group);
264         if (pub_key == NULL) {
265             ECerr(EC_F_ECKEY_PRIV_DECODE, ERR_R_EC_LIB);
266             goto ecliberr;
267         }
268         if (!EC_POINT_copy(pub_key, EC_GROUP_get0_generator(group))) {
269             EC_POINT_free(pub_key);
270             ECerr(EC_F_ECKEY_PRIV_DECODE, ERR_R_EC_LIB);
271             goto ecliberr;
272         }
273         priv_key = EC_KEY_get0_private_key(eckey);
274         if (!EC_POINT_mul(group, pub_key, priv_key, NULL, NULL, NULL)) {
275             EC_POINT_free(pub_key);
276             ECerr(EC_F_ECKEY_PRIV_DECODE, ERR_R_EC_LIB);
277             goto ecliberr;
278         }
279         if (EC_KEY_set_public_key(eckey, pub_key) == 0) {
280             EC_POINT_free(pub_key);
281             ECerr(EC_F_ECKEY_PRIV_DECODE, ERR_R_EC_LIB);
282             goto ecliberr;
283         }
284         EC_POINT_free(pub_key);
285     }
286
287     EVP_PKEY_assign_EC_KEY(pkey, eckey);
288     return 1;
289
290  ecliberr:
291     ECerr(EC_F_ECKEY_PRIV_DECODE, ERR_R_EC_LIB);
292  ecerr:
293     EC_KEY_free(eckey);
294     return 0;
295 }
296
297 static int eckey_priv_encode(PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pkey)
298 {
299     EC_KEY *ec_key;
300     unsigned char *ep, *p;
301     int eplen, ptype;
302     void *pval;
303     unsigned int tmp_flags, old_flags;
304
305     ec_key = pkey->pkey.ec;
306
307     if (!eckey_param2type(&ptype, &pval, ec_key)) {
308         ECerr(EC_F_ECKEY_PRIV_ENCODE, EC_R_DECODE_ERROR);
309         return 0;
310     }
311
312     /* set the private key */
313
314     /*
315      * do not include the parameters in the SEC1 private key see PKCS#11
316      * 12.11
317      */
318     old_flags = EC_KEY_get_enc_flags(ec_key);
319     tmp_flags = old_flags | EC_PKEY_NO_PARAMETERS;
320     EC_KEY_set_enc_flags(ec_key, tmp_flags);
321     eplen = i2d_ECPrivateKey(ec_key, NULL);
322     if (!eplen) {
323         EC_KEY_set_enc_flags(ec_key, old_flags);
324         ECerr(EC_F_ECKEY_PRIV_ENCODE, ERR_R_EC_LIB);
325         return 0;
326     }
327     ep = OPENSSL_malloc(eplen);
328     if (!ep) {
329         EC_KEY_set_enc_flags(ec_key, old_flags);
330         ECerr(EC_F_ECKEY_PRIV_ENCODE, ERR_R_MALLOC_FAILURE);
331         return 0;
332     }
333     p = ep;
334     if (!i2d_ECPrivateKey(ec_key, &p)) {
335         EC_KEY_set_enc_flags(ec_key, old_flags);
336         OPENSSL_free(ep);
337         ECerr(EC_F_ECKEY_PRIV_ENCODE, ERR_R_EC_LIB);
338         return 0;
339     }
340     /* restore old encoding flags */
341     EC_KEY_set_enc_flags(ec_key, old_flags);
342
343     if (!PKCS8_pkey_set0(p8, OBJ_nid2obj(NID_X9_62_id_ecPublicKey), 0,
344                          ptype, pval, ep, eplen))
345         return 0;
346
347     return 1;
348 }
349
350 static int int_ec_size(const EVP_PKEY *pkey)
351 {
352     return ECDSA_size(pkey->pkey.ec);
353 }
354
355 static int ec_bits(const EVP_PKEY *pkey)
356 {
357     BIGNUM *order = BN_new();
358     const EC_GROUP *group;
359     int ret;
360
361     if (!order) {
362         ERR_clear_error();
363         return 0;
364     }
365     group = EC_KEY_get0_group(pkey->pkey.ec);
366     if (!EC_GROUP_get_order(group, order, NULL)) {
367         ERR_clear_error();
368         return 0;
369     }
370
371     ret = BN_num_bits(order);
372     BN_free(order);
373     return ret;
374 }
375
376 static int ec_security_bits(const EVP_PKEY *pkey)
377 {
378     int ecbits = ec_bits(pkey);
379     if (ecbits >= 512)
380         return 256;
381     if (ecbits >= 384)
382         return 192;
383     if (ecbits >= 256)
384         return 128;
385     if (ecbits >= 224)
386         return 112;
387     if (ecbits >= 160)
388         return 80;
389     return ecbits / 2;
390 }
391
392 static int ec_missing_parameters(const EVP_PKEY *pkey)
393 {
394     if (EC_KEY_get0_group(pkey->pkey.ec) == NULL)
395         return 1;
396     return 0;
397 }
398
399 static int ec_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from)
400 {
401     EC_GROUP *group = EC_GROUP_dup(EC_KEY_get0_group(from->pkey.ec));
402     if (group == NULL)
403         return 0;
404     if (EC_KEY_set_group(to->pkey.ec, group) == 0)
405         return 0;
406     EC_GROUP_free(group);
407     return 1;
408 }
409
410 static int ec_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b)
411 {
412     const EC_GROUP *group_a = EC_KEY_get0_group(a->pkey.ec),
413         *group_b = EC_KEY_get0_group(b->pkey.ec);
414     if (EC_GROUP_cmp(group_a, group_b, NULL))
415         return 0;
416     else
417         return 1;
418 }
419
420 static void int_ec_free(EVP_PKEY *pkey)
421 {
422     EC_KEY_free(pkey->pkey.ec);
423 }
424
425 static int do_EC_KEY_print(BIO *bp, const EC_KEY *x, int off, int ktype)
426 {
427     unsigned char *buffer = NULL;
428     const char *ecstr;
429     size_t buf_len = 0, i;
430     int ret = 0, reason = ERR_R_BIO_LIB;
431     BIGNUM *pub_key = NULL, *order = NULL;
432     BN_CTX *ctx = NULL;
433     const EC_GROUP *group;
434     const EC_POINT *public_key;
435     const BIGNUM *priv_key;
436
437     if (x == NULL || (group = EC_KEY_get0_group(x)) == NULL) {
438         reason = ERR_R_PASSED_NULL_PARAMETER;
439         goto err;
440     }
441
442     ctx = BN_CTX_new();
443     if (ctx == NULL) {
444         reason = ERR_R_MALLOC_FAILURE;
445         goto err;
446     }
447
448     if (ktype > 0) {
449         public_key = EC_KEY_get0_public_key(x);
450         if (public_key != NULL) {
451             if ((pub_key = EC_POINT_point2bn(group, public_key,
452                                              EC_KEY_get_conv_form(x), NULL,
453                                              ctx)) == NULL) {
454                 reason = ERR_R_EC_LIB;
455                 goto err;
456             }
457             buf_len = (size_t)BN_num_bytes(pub_key);
458         }
459     }
460
461     if (ktype == 2) {
462         priv_key = EC_KEY_get0_private_key(x);
463         if (priv_key && (i = (size_t)BN_num_bytes(priv_key)) > buf_len)
464             buf_len = i;
465     } else
466         priv_key = NULL;
467
468     if (ktype > 0) {
469         buf_len += 10;
470         if ((buffer = OPENSSL_malloc(buf_len)) == NULL) {
471             reason = ERR_R_MALLOC_FAILURE;
472             goto err;
473         }
474     }
475     if (ktype == 2)
476         ecstr = "Private-Key";
477     else if (ktype == 1)
478         ecstr = "Public-Key";
479     else
480         ecstr = "ECDSA-Parameters";
481
482     if (!BIO_indent(bp, off, 128))
483         goto err;
484     if ((order = BN_new()) == NULL)
485         goto err;
486     if (!EC_GROUP_get_order(group, order, NULL))
487         goto err;
488     if (BIO_printf(bp, "%s: (%d bit)\n", ecstr, BN_num_bits(order)) <= 0)
489         goto err;
490
491     if ((priv_key != NULL) && !ASN1_bn_print(bp, "priv:", priv_key,
492                                              buffer, off))
493         goto err;
494     if ((pub_key != NULL) && !ASN1_bn_print(bp, "pub: ", pub_key,
495                                             buffer, off))
496         goto err;
497     if (!ECPKParameters_print(bp, group, off))
498         goto err;
499     ret = 1;
500  err:
501     if (!ret)
502         ECerr(EC_F_DO_EC_KEY_PRINT, reason);
503     BN_free(pub_key);
504     BN_free(order);
505     BN_CTX_free(ctx);
506     if (buffer != NULL)
507         OPENSSL_free(buffer);
508     return (ret);
509 }
510
511 static int eckey_param_decode(EVP_PKEY *pkey,
512                               const unsigned char **pder, int derlen)
513 {
514     EC_KEY *eckey;
515     if (!(eckey = d2i_ECParameters(NULL, pder, derlen))) {
516         ECerr(EC_F_ECKEY_PARAM_DECODE, ERR_R_EC_LIB);
517         return 0;
518     }
519     EVP_PKEY_assign_EC_KEY(pkey, eckey);
520     return 1;
521 }
522
523 static int eckey_param_encode(const EVP_PKEY *pkey, unsigned char **pder)
524 {
525     return i2d_ECParameters(pkey->pkey.ec, pder);
526 }
527
528 static int eckey_param_print(BIO *bp, const EVP_PKEY *pkey, int indent,
529                              ASN1_PCTX *ctx)
530 {
531     return do_EC_KEY_print(bp, pkey->pkey.ec, indent, 0);
532 }
533
534 static int eckey_pub_print(BIO *bp, const EVP_PKEY *pkey, int indent,
535                            ASN1_PCTX *ctx)
536 {
537     return do_EC_KEY_print(bp, pkey->pkey.ec, indent, 1);
538 }
539
540 static int eckey_priv_print(BIO *bp, const EVP_PKEY *pkey, int indent,
541                             ASN1_PCTX *ctx)
542 {
543     return do_EC_KEY_print(bp, pkey->pkey.ec, indent, 2);
544 }
545
546 static int old_ec_priv_decode(EVP_PKEY *pkey,
547                               const unsigned char **pder, int derlen)
548 {
549     EC_KEY *ec;
550     if (!(ec = d2i_ECPrivateKey(NULL, pder, derlen))) {
551         ECerr(EC_F_OLD_EC_PRIV_DECODE, EC_R_DECODE_ERROR);
552         return 0;
553     }
554     EVP_PKEY_assign_EC_KEY(pkey, ec);
555     return 1;
556 }
557
558 static int old_ec_priv_encode(const EVP_PKEY *pkey, unsigned char **pder)
559 {
560     return i2d_ECPrivateKey(pkey->pkey.ec, pder);
561 }
562
563 static int ec_pkey_ctrl(EVP_PKEY *pkey, int op, long arg1, void *arg2)
564 {
565     switch (op) {
566     case ASN1_PKEY_CTRL_PKCS7_SIGN:
567         if (arg1 == 0) {
568             int snid, hnid;
569             X509_ALGOR *alg1, *alg2;
570             PKCS7_SIGNER_INFO_get0_algs(arg2, NULL, &alg1, &alg2);
571             if (alg1 == NULL || alg1->algorithm == NULL)
572                 return -1;
573             hnid = OBJ_obj2nid(alg1->algorithm);
574             if (hnid == NID_undef)
575                 return -1;
576             if (!OBJ_find_sigid_by_algs(&snid, hnid, EVP_PKEY_id(pkey)))
577                 return -1;
578             X509_ALGOR_set0(alg2, OBJ_nid2obj(snid), V_ASN1_UNDEF, 0);
579         }
580         return 1;
581 #ifndef OPENSSL_NO_CMS
582     case ASN1_PKEY_CTRL_CMS_SIGN:
583         if (arg1 == 0) {
584             int snid, hnid;
585             X509_ALGOR *alg1, *alg2;
586             CMS_SignerInfo_get0_algs(arg2, NULL, NULL, &alg1, &alg2);
587             if (alg1 == NULL || alg1->algorithm == NULL)
588                 return -1;
589             hnid = OBJ_obj2nid(alg1->algorithm);
590             if (hnid == NID_undef)
591                 return -1;
592             if (!OBJ_find_sigid_by_algs(&snid, hnid, EVP_PKEY_id(pkey)))
593                 return -1;
594             X509_ALGOR_set0(alg2, OBJ_nid2obj(snid), V_ASN1_UNDEF, 0);
595         }
596         return 1;
597
598     case ASN1_PKEY_CTRL_CMS_ENVELOPE:
599         if (arg1 == 1)
600             return ecdh_cms_decrypt(arg2);
601         else if (arg1 == 0)
602             return ecdh_cms_encrypt(arg2);
603         return -2;
604
605     case ASN1_PKEY_CTRL_CMS_RI_TYPE:
606         *(int *)arg2 = CMS_RECIPINFO_AGREE;
607         return 1;
608 #endif
609
610     case ASN1_PKEY_CTRL_DEFAULT_MD_NID:
611         *(int *)arg2 = NID_sha256;
612         return 2;
613
614     default:
615         return -2;
616
617     }
618
619 }
620
621 const EVP_PKEY_ASN1_METHOD eckey_asn1_meth = {
622     EVP_PKEY_EC,
623     EVP_PKEY_EC,
624     0,
625     "EC",
626     "OpenSSL EC algorithm",
627
628     eckey_pub_decode,
629     eckey_pub_encode,
630     eckey_pub_cmp,
631     eckey_pub_print,
632
633     eckey_priv_decode,
634     eckey_priv_encode,
635     eckey_priv_print,
636
637     int_ec_size,
638     ec_bits,
639     ec_security_bits,
640
641     eckey_param_decode,
642     eckey_param_encode,
643     ec_missing_parameters,
644     ec_copy_parameters,
645     ec_cmp_parameters,
646     eckey_param_print,
647     0,
648
649     int_ec_free,
650     ec_pkey_ctrl,
651     old_ec_priv_decode,
652     old_ec_priv_encode
653 };
654
655 #ifndef OPENSSL_NO_CMS
656
657 static int ecdh_cms_set_peerkey(EVP_PKEY_CTX *pctx,
658                                 X509_ALGOR *alg, ASN1_BIT_STRING *pubkey)
659 {
660     ASN1_OBJECT *aoid;
661     int atype;
662     void *aval;
663     int rv = 0;
664     EVP_PKEY *pkpeer = NULL;
665     EC_KEY *ecpeer = NULL;
666     const unsigned char *p;
667     int plen;
668     X509_ALGOR_get0(&aoid, &atype, &aval, alg);
669     if (OBJ_obj2nid(aoid) != NID_X9_62_id_ecPublicKey)
670         goto err;
671     /* If absent parameters get group from main key */
672     if (atype == V_ASN1_UNDEF || atype == V_ASN1_NULL) {
673         const EC_GROUP *grp;
674         EVP_PKEY *pk;
675         pk = EVP_PKEY_CTX_get0_pkey(pctx);
676         if (!pk)
677             goto err;
678         grp = EC_KEY_get0_group(pk->pkey.ec);
679         ecpeer = EC_KEY_new();
680         if (!ecpeer)
681             goto err;
682         if (!EC_KEY_set_group(ecpeer, grp))
683             goto err;
684     } else {
685         ecpeer = eckey_type2param(atype, aval);
686         if (!ecpeer)
687             goto err;
688     }
689     /* We have parameters now set public key */
690     plen = ASN1_STRING_length(pubkey);
691     p = ASN1_STRING_data(pubkey);
692     if (!p || !plen)
693         goto err;
694     if (!o2i_ECPublicKey(&ecpeer, &p, plen))
695         goto err;
696     pkpeer = EVP_PKEY_new();
697     if (!pkpeer)
698         goto err;
699     EVP_PKEY_set1_EC_KEY(pkpeer, ecpeer);
700     if (EVP_PKEY_derive_set_peer(pctx, pkpeer) > 0)
701         rv = 1;
702  err:
703     EC_KEY_free(ecpeer);
704     EVP_PKEY_free(pkpeer);
705     return rv;
706 }
707
708 /* Set KDF parameters based on KDF NID */
709 static int ecdh_cms_set_kdf_param(EVP_PKEY_CTX *pctx, int eckdf_nid)
710 {
711     int kdf_nid, kdfmd_nid, cofactor;
712     const EVP_MD *kdf_md;
713     if (eckdf_nid == NID_undef)
714         return 0;
715
716     /* Lookup KDF type, cofactor mode and digest */
717     if (!OBJ_find_sigid_algs(eckdf_nid, &kdfmd_nid, &kdf_nid))
718         return 0;
719
720     if (kdf_nid == NID_dh_std_kdf)
721         cofactor = 0;
722     else if (kdf_nid == NID_dh_cofactor_kdf)
723         cofactor = 1;
724     else
725         return 0;
726
727     if (EVP_PKEY_CTX_set_ecdh_cofactor_mode(pctx, cofactor) <= 0)
728         return 0;
729
730     if (EVP_PKEY_CTX_set_ecdh_kdf_type(pctx, EVP_PKEY_ECDH_KDF_X9_62) <= 0)
731         return 0;
732
733     kdf_md = EVP_get_digestbynid(kdfmd_nid);
734     if (!kdf_md)
735         return 0;
736
737     if (EVP_PKEY_CTX_set_ecdh_kdf_md(pctx, kdf_md) <= 0)
738         return 0;
739     return 1;
740 }
741
742 static int ecdh_cms_set_shared_info(EVP_PKEY_CTX *pctx, CMS_RecipientInfo *ri)
743 {
744     int rv = 0;
745
746     X509_ALGOR *alg, *kekalg = NULL;
747     ASN1_OCTET_STRING *ukm;
748     const unsigned char *p;
749     unsigned char *der = NULL;
750     int plen, keylen;
751     const EVP_CIPHER *kekcipher;
752     EVP_CIPHER_CTX *kekctx;
753
754     if (!CMS_RecipientInfo_kari_get0_alg(ri, &alg, &ukm))
755         return 0;
756
757     if (!ecdh_cms_set_kdf_param(pctx, OBJ_obj2nid(alg->algorithm))) {
758         ECerr(EC_F_ECDH_CMS_SET_SHARED_INFO, EC_R_KDF_PARAMETER_ERROR);
759         return 0;
760     }
761
762     if (alg->parameter->type != V_ASN1_SEQUENCE)
763         return 0;
764
765     p = alg->parameter->value.sequence->data;
766     plen = alg->parameter->value.sequence->length;
767     kekalg = d2i_X509_ALGOR(NULL, &p, plen);
768     if (!kekalg)
769         goto err;
770     kekctx = CMS_RecipientInfo_kari_get0_ctx(ri);
771     if (!kekctx)
772         goto err;
773     kekcipher = EVP_get_cipherbyobj(kekalg->algorithm);
774     if (!kekcipher || EVP_CIPHER_mode(kekcipher) != EVP_CIPH_WRAP_MODE)
775         goto err;
776     if (!EVP_EncryptInit_ex(kekctx, kekcipher, NULL, NULL, NULL))
777         goto err;
778     if (EVP_CIPHER_asn1_to_param(kekctx, kekalg->parameter) <= 0)
779         goto err;
780
781     keylen = EVP_CIPHER_CTX_key_length(kekctx);
782     if (EVP_PKEY_CTX_set_ecdh_kdf_outlen(pctx, keylen) <= 0)
783         goto err;
784
785     plen = CMS_SharedInfo_encode(&der, kekalg, ukm, keylen);
786
787     if (!plen)
788         goto err;
789
790     if (EVP_PKEY_CTX_set0_ecdh_kdf_ukm(pctx, der, plen) <= 0)
791         goto err;
792     der = NULL;
793
794     rv = 1;
795  err:
796     X509_ALGOR_free(kekalg);
797     OPENSSL_free(der);
798     return rv;
799 }
800
801 static int ecdh_cms_decrypt(CMS_RecipientInfo *ri)
802 {
803     EVP_PKEY_CTX *pctx;
804     pctx = CMS_RecipientInfo_get0_pkey_ctx(ri);
805     if (!pctx)
806         return 0;
807     /* See if we need to set peer key */
808     if (!EVP_PKEY_CTX_get0_peerkey(pctx)) {
809         X509_ALGOR *alg;
810         ASN1_BIT_STRING *pubkey;
811         if (!CMS_RecipientInfo_kari_get0_orig_id(ri, &alg, &pubkey,
812                                                  NULL, NULL, NULL))
813             return 0;
814         if (!alg || !pubkey)
815             return 0;
816         if (!ecdh_cms_set_peerkey(pctx, alg, pubkey)) {
817             ECerr(EC_F_ECDH_CMS_DECRYPT, EC_R_PEER_KEY_ERROR);
818             return 0;
819         }
820     }
821     /* Set ECDH derivation parameters and initialise unwrap context */
822     if (!ecdh_cms_set_shared_info(pctx, ri)) {
823         ECerr(EC_F_ECDH_CMS_DECRYPT, EC_R_SHARED_INFO_ERROR);
824         return 0;
825     }
826     return 1;
827 }
828
829 static int ecdh_cms_encrypt(CMS_RecipientInfo *ri)
830 {
831     EVP_PKEY_CTX *pctx;
832     EVP_PKEY *pkey;
833     EVP_CIPHER_CTX *ctx;
834     int keylen;
835     X509_ALGOR *talg, *wrap_alg = NULL;
836     ASN1_OBJECT *aoid;
837     ASN1_BIT_STRING *pubkey;
838     ASN1_STRING *wrap_str;
839     ASN1_OCTET_STRING *ukm;
840     unsigned char *penc = NULL;
841     int penclen;
842     int rv = 0;
843     int ecdh_nid, kdf_type, kdf_nid, wrap_nid;
844     const EVP_MD *kdf_md;
845     pctx = CMS_RecipientInfo_get0_pkey_ctx(ri);
846     if (!pctx)
847         return 0;
848     /* Get ephemeral key */
849     pkey = EVP_PKEY_CTX_get0_pkey(pctx);
850     if (!CMS_RecipientInfo_kari_get0_orig_id(ri, &talg, &pubkey,
851                                              NULL, NULL, NULL))
852         goto err;
853     X509_ALGOR_get0(&aoid, NULL, NULL, talg);
854     /* Is everything uninitialised? */
855     if (aoid == OBJ_nid2obj(NID_undef)) {
856
857         EC_KEY *eckey = pkey->pkey.ec;
858         /* Set the key */
859         unsigned char *p;
860
861         penclen = i2o_ECPublicKey(eckey, NULL);
862         if (penclen <= 0)
863             goto err;
864         penc = OPENSSL_malloc(penclen);
865         if (!penc)
866             goto err;
867         p = penc;
868         penclen = i2o_ECPublicKey(eckey, &p);
869         if (penclen <= 0)
870             goto err;
871         ASN1_STRING_set0(pubkey, penc, penclen);
872         pubkey->flags &= ~(ASN1_STRING_FLAG_BITS_LEFT | 0x07);
873         pubkey->flags |= ASN1_STRING_FLAG_BITS_LEFT;
874
875         penc = NULL;
876         X509_ALGOR_set0(talg, OBJ_nid2obj(NID_X9_62_id_ecPublicKey),
877                         V_ASN1_UNDEF, NULL);
878     }
879
880     /* See if custom paraneters set */
881     kdf_type = EVP_PKEY_CTX_get_ecdh_kdf_type(pctx);
882     if (kdf_type <= 0)
883         goto err;
884     if (!EVP_PKEY_CTX_get_ecdh_kdf_md(pctx, &kdf_md))
885         goto err;
886     ecdh_nid = EVP_PKEY_CTX_get_ecdh_cofactor_mode(pctx);
887     if (ecdh_nid < 0)
888         goto err;
889     else if (ecdh_nid == 0)
890         ecdh_nid = NID_dh_std_kdf;
891     else if (ecdh_nid == 1)
892         ecdh_nid = NID_dh_cofactor_kdf;
893
894     if (kdf_type == EVP_PKEY_ECDH_KDF_NONE) {
895         kdf_type = EVP_PKEY_ECDH_KDF_X9_62;
896         if (EVP_PKEY_CTX_set_ecdh_kdf_type(pctx, kdf_type) <= 0)
897             goto err;
898     } else
899         /* Uknown KDF */
900         goto err;
901     if (kdf_md == NULL) {
902         /* Fixme later for better MD */
903         kdf_md = EVP_sha1();
904         if (EVP_PKEY_CTX_set_ecdh_kdf_md(pctx, kdf_md) <= 0)
905             goto err;
906     }
907
908     if (!CMS_RecipientInfo_kari_get0_alg(ri, &talg, &ukm))
909         goto err;
910
911     /* Lookup NID for KDF+cofactor+digest */
912
913     if (!OBJ_find_sigid_by_algs(&kdf_nid, EVP_MD_type(kdf_md), ecdh_nid))
914         goto err;
915     /* Get wrap NID */
916     ctx = CMS_RecipientInfo_kari_get0_ctx(ri);
917     wrap_nid = EVP_CIPHER_CTX_type(ctx);
918     keylen = EVP_CIPHER_CTX_key_length(ctx);
919
920     /* Package wrap algorithm in an AlgorithmIdentifier */
921
922     wrap_alg = X509_ALGOR_new();
923     if (!wrap_alg)
924         goto err;
925     wrap_alg->algorithm = OBJ_nid2obj(wrap_nid);
926     wrap_alg->parameter = ASN1_TYPE_new();
927     if (!wrap_alg->parameter)
928         goto err;
929     if (EVP_CIPHER_param_to_asn1(ctx, wrap_alg->parameter) <= 0)
930         goto err;
931     if (ASN1_TYPE_get(wrap_alg->parameter) == NID_undef) {
932         ASN1_TYPE_free(wrap_alg->parameter);
933         wrap_alg->parameter = NULL;
934     }
935
936     if (EVP_PKEY_CTX_set_ecdh_kdf_outlen(pctx, keylen) <= 0)
937         goto err;
938
939     penclen = CMS_SharedInfo_encode(&penc, wrap_alg, ukm, keylen);
940
941     if (!penclen)
942         goto err;
943
944     if (EVP_PKEY_CTX_set0_ecdh_kdf_ukm(pctx, penc, penclen) <= 0)
945         goto err;
946     penc = NULL;
947
948     /*
949      * Now need to wrap encoding of wrap AlgorithmIdentifier into parameter
950      * of another AlgorithmIdentifier.
951      */
952     penclen = i2d_X509_ALGOR(wrap_alg, &penc);
953     if (!penc || !penclen)
954         goto err;
955     wrap_str = ASN1_STRING_new();
956     if (!wrap_str)
957         goto err;
958     ASN1_STRING_set0(wrap_str, penc, penclen);
959     penc = NULL;
960     X509_ALGOR_set0(talg, OBJ_nid2obj(kdf_nid), V_ASN1_SEQUENCE, wrap_str);
961
962     rv = 1;
963
964  err:
965     OPENSSL_free(penc);
966     X509_ALGOR_free(wrap_alg);
967     return rv;
968 }
969
970 #endif