(oops) Apologies all, that last header-cleanup commit was from the wrong
[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 #include <openssl/err.h>
60
61 const char *ECDSA_version="ECDSA" OPENSSL_VERSION_PTEXT;
62
63 static void ecdsa_finish(EC_KEY *);
64
65 static const ECDSA_METHOD *default_ECDSA_method = NULL;
66
67 void ECDSA_set_default_method(const ECDSA_METHOD *meth)
68 {
69         default_ECDSA_method = meth;
70 }
71
72 const ECDSA_METHOD *ECDSA_get_default_method(void)
73 {
74         if(!default_ECDSA_method) 
75                 default_ECDSA_method = ECDSA_OpenSSL();
76         return default_ECDSA_method;
77 }
78
79 int ECDSA_set_method(EC_KEY *eckey, const ECDSA_METHOD *meth)
80 {
81         const ECDSA_METHOD *mtmp;
82         ECDSA_DATA *ecdsa;
83
84         ecdsa = ecdsa_check(eckey);
85
86         if (ecdsa == NULL)
87                 return 0;
88
89         mtmp = ecdsa->meth;
90 #if 0
91         if (mtmp->finish)
92                 mtmp->finish(eckey);
93 #endif
94         if (ecdsa->engine)
95         {
96                 ENGINE_finish(ecdsa->engine);
97                 ecdsa->engine = NULL;
98         }
99         ecdsa->meth = meth;
100 #if 0
101         if (meth->init) 
102                 meth->init(eckey);
103 #endif
104         return 1;
105 }
106
107 ECDSA_DATA *ECDSA_DATA_new(void)
108 {
109         return ECDSA_DATA_new_method(NULL);
110 }
111
112 ECDSA_DATA *ECDSA_DATA_new_method(ENGINE *engine)
113 {
114         ECDSA_DATA *ret;
115
116         ret=(ECDSA_DATA *)OPENSSL_malloc(sizeof(ECDSA_DATA));
117         if (ret == NULL)
118         {
119                 ECDSAerr(ECDSA_F_ECDSA_DATA_NEW, ERR_R_MALLOC_FAILURE);
120                 return(NULL);
121         }
122
123         ret->init = NULL;
124         ret->finish = ecdsa_finish;
125
126         ret->kinv = NULL;
127         ret->r    = NULL;
128
129         ret->meth = ECDSA_get_default_method();
130         ret->engine = engine;
131         if (!ret->engine)
132                 ret->engine = ENGINE_get_default_ECDSA();
133         if (ret->engine)
134         {
135                 ret->meth = ENGINE_get_ECDSA(ret->engine);
136                 if (!ret->meth)
137                 {
138                         ECDSAerr(ECDSA_F_ECDSA_DATA_NEW, ERR_R_ENGINE_LIB);
139                         ENGINE_finish(ret->engine);
140                         OPENSSL_free(ret);
141                         return NULL;
142                 }
143         }
144
145         ret->flags = ret->meth->flags;
146         CRYPTO_new_ex_data(CRYPTO_EX_INDEX_ECDSA, ret, &ret->ex_data);
147 #if 0
148         if ((ret->meth->init != NULL) && !ret->meth->init(ret))
149         {
150                 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_ECDSA, ret, &ret->ex_data);
151                 OPENSSL_free(ret);
152                 ret=NULL;
153         }
154 #endif  
155         return(ret);
156 }
157
158 void ECDSA_DATA_free(ECDSA_DATA *r)
159 {
160         if (r->kinv)
161                 BN_clear_free(r->kinv);
162         if (r->r)
163                 BN_clear_free(r->r);
164
165 #if 0
166         if (r->meth->finish)
167                 r->meth->finish(r);
168 #endif
169         if (r->engine)
170                 ENGINE_finish(r->engine);
171
172         CRYPTO_free_ex_data(CRYPTO_EX_INDEX_ECDSA, r, &r->ex_data);
173
174         OPENSSL_cleanse((void *)r, sizeof(ECDSA_DATA));
175
176         OPENSSL_free(r);
177 }
178
179 ECDSA_DATA *ecdsa_check(EC_KEY *key)
180 {
181         if (key->meth_data)
182         {
183                 if (key->meth_data->finish != ecdsa_finish)
184                 {
185                         key->meth_data->finish(key);
186                         key->meth_data = (EC_KEY_METH_DATA *)ECDSA_DATA_new();
187                 }
188         }
189         else
190                 key->meth_data = (EC_KEY_METH_DATA *)ECDSA_DATA_new();
191         return (ECDSA_DATA *)key->meth_data;
192 }
193
194 static void ecdsa_finish(EC_KEY *key)
195 {
196         if (key->meth_data && key->meth_data->finish == ecdsa_finish)
197                 ECDSA_DATA_free((ECDSA_DATA *)key->meth_data);
198 }
199
200 int ECDSA_size(const EC_KEY *r)
201 {
202         int ret,i;
203         ASN1_INTEGER bs;
204         BIGNUM  *order=NULL;
205         unsigned char buf[4];
206
207         if (r == NULL || r->group == NULL)
208                 return 0;
209         if ((order = BN_new()) == NULL) return 0;
210         if (!EC_GROUP_get_order(r->group,order,NULL))
211         {
212                 BN_clear_free(order);
213                 return 0;
214         } 
215         i=BN_num_bits(order);
216         bs.length=(i+7)/8;
217         bs.data=buf;
218         bs.type=V_ASN1_INTEGER;
219         /* If the top bit is set the asn1 encoding is 1 larger. */
220         buf[0]=0xff;    
221
222         i=i2d_ASN1_INTEGER(&bs,NULL);
223         i+=i; /* r and s */
224         ret=ASN1_object_size(1,i,V_ASN1_SEQUENCE);
225         BN_clear_free(order);
226         return(ret);
227 }
228
229
230 int ECDSA_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
231              CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func)
232 {
233         return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_ECDSA, argl, argp,
234                                 new_func, dup_func, free_func);
235 }
236
237 int ECDSA_set_ex_data(EC_KEY *d, int idx, void *arg)
238 {
239         ECDSA_DATA *ecdsa;
240         ecdsa = ecdsa_check(d);
241         if (ecdsa == NULL)
242                 return 0;
243         return(CRYPTO_set_ex_data(&ecdsa->ex_data,idx,arg));
244 }
245
246 void *ECDSA_get_ex_data(EC_KEY *d, int idx)
247 {
248         ECDSA_DATA *ecdsa;
249         ecdsa = ecdsa_check(d);
250         if (ecdsa == NULL)
251                 return NULL;
252         return(CRYPTO_get_ex_data(&ecdsa->ex_data,idx));
253 }