disable Sun divison algorithm by default
[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 "ecdsa.h"
57 #include <openssl/engine.h>
58
59 const char *ECDSA_version="ECDSA" OPENSSL_VERSION_PTEXT;
60
61 static const ECDSA_METHOD *default_ECDSA_method = NULL;
62
63 void ECDSA_set_default_method(const ECDSA_METHOD *meth)
64 {
65         default_ECDSA_method = meth;
66 }
67
68 const ECDSA_METHOD *ECDSA_get_default_method(void)
69 {
70         if(!default_ECDSA_method) 
71                 default_ECDSA_method = ECDSA_OpenSSL();
72         return default_ECDSA_method;
73 }
74
75 ECDSA *ECDSA_new(void)
76 {
77         return ECDSA_new_method(NULL);
78 }
79
80 int ECDSA_set_method(ECDSA *ecdsa, const ECDSA_METHOD *meth)
81 {
82         const ECDSA_METHOD *mtmp;
83         mtmp = ecdsa->meth;
84         if (mtmp->finish) mtmp->finish(ecdsa);
85         if (ecdsa->engine)
86         {
87                 ENGINE_finish(ecdsa->engine);
88                 ecdsa->engine = NULL;
89         }
90         ecdsa->meth = meth;
91         if (meth->init) meth->init(ecdsa);
92         return 1;
93 }
94
95 ECDSA *ECDSA_new_method(ENGINE *engine)
96 {
97         ECDSA *ret;
98
99         ret=(ECDSA *)OPENSSL_malloc(sizeof(ECDSA));
100         if (ret == NULL)
101         {
102                 ECDSAerr(ECDSA_F_ECDSA_NEW,ERR_R_MALLOC_FAILURE);
103                 return(NULL);
104         }
105
106         ret->meth = ECDSA_get_default_method();
107         ret->engine = engine;
108         if (!ret->engine)
109                 ret->engine = ENGINE_get_default_ECDSA();
110         if (ret->engine)
111         {
112                 ret->meth = ENGINE_get_ECDSA(ret->engine);
113                 if (!ret->meth)
114                 {
115                         ECDSAerr(ECDSA_R_ECDSA_F_ECDSA_NEW, ERR_R_ENGINE_LIB);
116                         ENGINE_finish(ret->engine);
117                         OPENSSL_free(ret);
118                         return NULL;
119                 }
120         }
121
122         ret->version = 1;
123         ret->conversion_form = ECDSA_get_default_conversion_form();
124         ret->group = NULL;
125
126         ret->pub_key = NULL;
127         ret->priv_key = NULL;
128
129         ret->kinv = NULL;
130         ret->r = NULL;
131
132         ret->enc_flag = 0;
133
134         ret->references = 1;
135         ret->flags = ret->meth->flags;
136         CRYPTO_new_ex_data(CRYPTO_EX_INDEX_ECDSA, ret, &ret->ex_data);
137         if ((ret->meth->init != NULL) && !ret->meth->init(ret))
138         {
139                 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_ECDSA, ret, &ret->ex_data);
140                 OPENSSL_free(ret);
141                 ret=NULL;
142         }
143         
144         return(ret);
145 }
146
147 void ECDSA_free(ECDSA *r)
148 {
149         int i;
150
151         if (r == NULL) return;
152
153         i=CRYPTO_add(&r->references,-1,CRYPTO_LOCK_ECDSA);
154 #ifdef REF_PRINT
155         REF_PRINT("ECDSA",r);
156 #endif
157         if (i > 0) return;
158 #ifdef REF_CHECK
159         if (i < 0)
160         {
161                 fprintf(stderr,"ECDSA_free, bad reference count\n");
162                 abort();
163         }
164 #endif
165
166         if (r->meth->finish)
167                 r->meth->finish(r);
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         if (r->group    != NULL) EC_GROUP_free(r->group);
174         if (r->pub_key  != NULL) EC_POINT_free(r->pub_key);
175         if (r->priv_key != NULL) BN_clear_free(r->priv_key);
176         if (r->kinv != NULL) BN_clear_free(r->kinv);
177         if (r->r    != NULL) BN_clear_free(r->r);
178         OPENSSL_free(r);
179 }
180
181 int ECDSA_size(const ECDSA *r)
182 {
183         int ret,i;
184         ASN1_INTEGER bs;
185         BIGNUM  *order=NULL;
186         unsigned char buf[4];
187
188         if (r == NULL || r->group == NULL)
189                 return 0;
190         if ((order = BN_new()) == NULL) return 0;
191         if (!EC_GROUP_get_order(r->group,order,NULL))
192         {
193                 BN_clear_free(order);
194                 return 0;
195         } 
196         i=BN_num_bits(order);
197         bs.length=(i+7)/8;
198         bs.data=buf;
199         bs.type=V_ASN1_INTEGER;
200         /* If the top bit is set the asn1 encoding is 1 larger. */
201         buf[0]=0xff;    
202
203         i=i2d_ASN1_INTEGER(&bs,NULL);
204         i+=i; /* r and s */
205         ret=ASN1_object_size(1,i,V_ASN1_SEQUENCE);
206         BN_clear_free(order);
207         return(ret);
208 }
209
210 int ECDSA_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
211              CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func)
212 {
213         return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_ECDSA, argl, argp,
214                                 new_func, dup_func, free_func);
215 }
216
217 int ECDSA_set_ex_data(ECDSA *d, int idx, void *arg)
218 {
219         return(CRYPTO_set_ex_data(&d->ex_data,idx,arg));
220 }
221
222 void *ECDSA_get_ex_data(ECDSA *d, int idx)
223 {
224         return(CRYPTO_get_ex_data(&d->ex_data,idx));
225 }
226
227 int ECDSA_up_ref(ECDSA *ecdsa)
228 {
229         int i = CRYPTO_add(&ecdsa->references, 1, CRYPTO_LOCK_ECDSA);
230 #ifdef REF_PRINT
231         REF_PRINT("ECDSA",r);
232 #endif  
233 #ifdef REF_CHECK
234         if (i < 2)
235         {
236                 fprintf(stderr, "ECDSA_up_ref, bad reference count\n");
237                 abort();
238         }
239 #endif
240         return ((i > 1) ? 1 : 0);
241 }
242         
243 void    ECDSA_set_conversion_form(ECDSA *ecdsa, const point_conversion_form_t form)
244 {
245         if (ecdsa) ecdsa->conversion_form = form;
246 }
247
248 point_conversion_form_t ECDSA_get_conversion_form(const ECDSA *ecdsa)
249 {
250         return ecdsa ? ecdsa->conversion_form : 0;
251 }
252
253 static point_conversion_form_t default_conversion_form = POINT_CONVERSION_UNCOMPRESSED;
254
255 void    ECDSA_set_default_conversion_form(const point_conversion_form_t form)
256 {
257         default_conversion_form = form;
258 }
259
260 point_conversion_form_t ECDSA_get_default_conversion_form(void)
261 {
262         return default_conversion_form;
263 }
264
265 unsigned int ECDSA_get_enc_flag(const ECDSA *ecdsa)
266 {
267         return ecdsa->enc_flag;
268 }
269
270 void ECDSA_set_enc_flag(ECDSA *ecdsa, unsigned int flag)
271 {
272         ecdsa->enc_flag = flag;
273 }