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