8eb1c30865af157001427124e2ca04be24e3cd05
[openssl.git] / crypto / ecdsa / ecs_lib.c
1 /* crypto/ecdsa/ecs_lib.c */
2 /* ====================================================================
3  * Copyright (c) 1998-2002 The OpenSSL Project.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer. 
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in
14  *    the documentation and/or other materials provided with the
15  *    distribution.
16  *
17  * 3. All advertising materials mentioning features or use of this
18  *    software must display the following acknowledgment:
19  *    "This product includes software developed by the OpenSSL Project
20  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
21  *
22  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
23  *    endorse or promote products derived from this software without
24  *    prior written permission. For written permission, please contact
25  *    openssl-core@OpenSSL.org.
26  *
27  * 5. Products derived from this software may not be called "OpenSSL"
28  *    nor may "OpenSSL" appear in their names without prior written
29  *    permission of the OpenSSL Project.
30  *
31  * 6. Redistributions of any form whatsoever must retain the following
32  *    acknowledgment:
33  *    "This product includes software developed by the OpenSSL Project
34  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
35  *
36  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
37  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
38  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
39  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
40  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
41  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
42  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
43  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
44  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
45  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
46  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
47  * OF THE POSSIBILITY OF SUCH DAMAGE.
48  * ====================================================================
49  *
50  * This product includes cryptographic software written by Eric Young
51  * (eay@cryptsoft.com).  This product includes software written by Tim
52  * Hudson (tjh@cryptsoft.com).
53  *
54  */
55
56 #include <string.h>
57 #include "ecdsa.h"
58 #include <openssl/engine.h>
59
60 const char *ECDSA_version="ECDSA" OPENSSL_VERSION_PTEXT;
61
62 static void ecdsa_finish(EC_KEY *);
63
64 static const ECDSA_METHOD *default_ECDSA_method = NULL;
65
66 void ECDSA_set_default_method(const ECDSA_METHOD *meth)
67 {
68         default_ECDSA_method = meth;
69 }
70
71 const ECDSA_METHOD *ECDSA_get_default_method(void)
72 {
73         if(!default_ECDSA_method) 
74                 default_ECDSA_method = ECDSA_OpenSSL();
75         return default_ECDSA_method;
76 }
77
78 int ECDSA_set_method(EC_KEY *eckey, const ECDSA_METHOD *meth)
79 {
80         const ECDSA_METHOD *mtmp;
81         ECDSA_DATA *ecdsa;
82
83         ecdsa = ecdsa_check(eckey);
84
85         if (ecdsa == NULL)
86                 return 0;
87
88         mtmp = ecdsa->meth;
89 #if 0
90         if (mtmp->finish)
91                 mtmp->finish(eckey);
92 #endif
93         if (ecdsa->engine)
94         {
95                 ENGINE_finish(ecdsa->engine);
96                 ecdsa->engine = NULL;
97         }
98         ecdsa->meth = meth;
99 #if 0
100         if (meth->init) 
101                 meth->init(eckey);
102 #endif
103         return 1;
104 }
105
106 ECDSA_DATA *ECDSA_DATA_new(void)
107 {
108         return ECDSA_DATA_new_method(NULL);
109 }
110
111 ECDSA_DATA *ECDSA_DATA_new_method(ENGINE *engine)
112 {
113         ECDSA_DATA *ret;
114
115         ret=(ECDSA_DATA *)OPENSSL_malloc(sizeof(ECDSA_DATA));
116         if (ret == NULL)
117         {
118                 ECDSAerr(ECDSA_F_ECDSA_DATA_NEW, ERR_R_MALLOC_FAILURE);
119                 return(NULL);
120         }
121
122         ret->init = NULL;
123         ret->finish = ecdsa_finish;
124
125         ret->kinv = NULL;
126         ret->r    = NULL;
127
128         ret->meth = ECDSA_get_default_method();
129         ret->engine = engine;
130         if (!ret->engine)
131                 ret->engine = ENGINE_get_default_ECDSA();
132         if (ret->engine)
133         {
134                 ret->meth = ENGINE_get_ECDSA(ret->engine);
135                 if (!ret->meth)
136                 {
137                         ECDSAerr(ECDSA_F_ECDSA_DATA_NEW, ERR_R_ENGINE_LIB);
138                         ENGINE_finish(ret->engine);
139                         OPENSSL_free(ret);
140                         return NULL;
141                 }
142         }
143
144         ret->flags = ret->meth->flags;
145         CRYPTO_new_ex_data(CRYPTO_EX_INDEX_ECDSA, ret, &ret->ex_data);
146 #if 0
147         if ((ret->meth->init != NULL) && !ret->meth->init(ret))
148         {
149                 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_ECDSA, ret, &ret->ex_data);
150                 OPENSSL_free(ret);
151                 ret=NULL;
152         }
153 #endif  
154         return(ret);
155 }
156
157 void ECDSA_DATA_free(ECDSA_DATA *r)
158 {
159         if (r->kinv)
160                 BN_clear_free(r->kinv);
161         if (r->r)
162                 BN_clear_free(r->r);
163
164 #if 0
165         if (r->meth->finish)
166                 r->meth->finish(r);
167 #endif
168         if (r->engine)
169                 ENGINE_finish(r->engine);
170
171         CRYPTO_free_ex_data(CRYPTO_EX_INDEX_ECDSA, r, &r->ex_data);
172
173         memset((void *)r, 0x0, sizeof(ECDSA_DATA));
174
175         OPENSSL_free(r);
176 }
177
178 ECDSA_DATA *ecdsa_check(EC_KEY *key)
179 {
180         if (key->meth_data)
181         {
182                 if (key->meth_data->finish != ecdsa_finish)
183                 {
184                         key->meth_data->finish(key);
185                         key->meth_data = (EC_KEY_METH_DATA *)ECDSA_DATA_new();
186                 }
187         }
188         else
189                 key->meth_data = (EC_KEY_METH_DATA *)ECDSA_DATA_new();
190         return (ECDSA_DATA *)key->meth_data;
191 }
192
193 static void ecdsa_finish(EC_KEY *key)
194 {
195         if (key->meth_data && key->meth_data->finish == ecdsa_finish)
196                 ECDSA_DATA_free((ECDSA_DATA *)key->meth_data);
197 }
198
199 int ECDSA_size(const EC_KEY *r)
200 {
201         int ret,i;
202         ASN1_INTEGER bs;
203         BIGNUM  *order=NULL;
204         unsigned char buf[4];
205
206         if (r == NULL || r->group == NULL)
207                 return 0;
208         if ((order = BN_new()) == NULL) return 0;
209         if (!EC_GROUP_get_order(r->group,order,NULL))
210         {
211                 BN_clear_free(order);
212                 return 0;
213         } 
214         i=BN_num_bits(order);
215         bs.length=(i+7)/8;
216         bs.data=buf;
217         bs.type=V_ASN1_INTEGER;
218         /* If the top bit is set the asn1 encoding is 1 larger. */
219         buf[0]=0xff;    
220
221         i=i2d_ASN1_INTEGER(&bs,NULL);
222         i+=i; /* r and s */
223         ret=ASN1_object_size(1,i,V_ASN1_SEQUENCE);
224         BN_clear_free(order);
225         return(ret);
226 }
227
228
229 int ECDSA_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
230              CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func)
231 {
232         return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_ECDSA, argl, argp,
233                                 new_func, dup_func, free_func);
234 }
235
236 int ECDSA_set_ex_data(EC_KEY *d, int idx, void *arg)
237 {
238         ECDSA_DATA *ecdsa;
239         ecdsa = ecdsa_check(d);
240         if (ecdsa == NULL)
241                 return 0;
242         return(CRYPTO_set_ex_data(&ecdsa->ex_data,idx,arg));
243 }
244
245 void *ECDSA_get_ex_data(EC_KEY *d, int idx)
246 {
247         ECDSA_DATA *ecdsa;
248         ecdsa = ecdsa_check(d);
249         if (ecdsa == NULL)
250                 return NULL;
251         return(CRYPTO_get_ex_data(&ecdsa->ex_data,idx));
252 }