add sign/verify methods
[openssl.git] / crypto / ecdsa / ecs_lib.c
1 /* crypto/ecdsa/ecs_lib.c */
2 /* ====================================================================
3  * Copyright (c) 1998-2005 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 "ecs_locl.h"
58 #ifndef OPENSSL_NO_ENGINE
59 # include <openssl/engine.h>
60 #endif
61 #include <openssl/err.h>
62 #include <openssl/bn.h>
63
64 static const ECDSA_METHOD *default_ECDSA_method = NULL;
65
66 static void *ecdsa_data_new(void);
67 static void *ecdsa_data_dup(void *);
68 static void ecdsa_data_free(void *);
69
70 void ECDSA_set_default_method(const ECDSA_METHOD *meth)
71 {
72     default_ECDSA_method = meth;
73 }
74
75 const ECDSA_METHOD *ECDSA_get_default_method(void)
76 {
77     return default_ECDSA_method;
78 }
79
80 int ECDSA_set_method(EC_KEY *eckey, const ECDSA_METHOD *meth)
81 {
82     ECDSA_DATA *ecdsa;
83
84     ecdsa = ecdsa_check(eckey);
85
86     if (ecdsa == NULL)
87         return 0;
88
89 #ifndef OPENSSL_NO_ENGINE
90     if (ecdsa->engine) {
91         ENGINE_finish(ecdsa->engine);
92         ecdsa->engine = NULL;
93     }
94 #endif
95     ecdsa->meth = meth;
96
97     return 1;
98 }
99
100 static ECDSA_DATA *ECDSA_DATA_new_method(ENGINE *engine)
101 {
102     ECDSA_DATA *ret;
103
104     ret = OPENSSL_malloc(sizeof(*ret));
105     if (ret == NULL) {
106         ECDSAerr(ECDSA_F_ECDSA_DATA_NEW_METHOD, ERR_R_MALLOC_FAILURE);
107         return (NULL);
108     }
109
110     ret->init = NULL;
111
112     ret->meth = ECDSA_get_default_method();
113     ret->engine = engine;
114 #ifndef OPENSSL_NO_ENGINE
115     if (!ret->engine)
116         ret->engine = ENGINE_get_default_ECDSA();
117     if (ret->engine) {
118         ret->meth = ENGINE_get_ECDSA(ret->engine);
119         if (!ret->meth) {
120             ECDSAerr(ECDSA_F_ECDSA_DATA_NEW_METHOD, ERR_R_ENGINE_LIB);
121             ENGINE_finish(ret->engine);
122             OPENSSL_free(ret);
123             return NULL;
124         }
125     }
126 #endif
127
128     ret->flags = ret->meth->flags;
129     CRYPTO_new_ex_data(CRYPTO_EX_INDEX_ECDSA, ret, &ret->ex_data);
130     return (ret);
131 }
132
133 static void *ecdsa_data_new(void)
134 {
135     return (void *)ECDSA_DATA_new_method(NULL);
136 }
137
138 static void *ecdsa_data_dup(void *data)
139 {
140     ECDSA_DATA *r = (ECDSA_DATA *)data;
141
142     /* XXX: dummy operation */
143     if (r == NULL)
144         return NULL;
145
146     return ecdsa_data_new();
147 }
148
149 static void ecdsa_data_free(void *data)
150 {
151     ECDSA_DATA *r = (ECDSA_DATA *)data;
152
153 #ifndef OPENSSL_NO_ENGINE
154     if (r->engine)
155         ENGINE_finish(r->engine);
156 #endif
157     CRYPTO_free_ex_data(CRYPTO_EX_INDEX_ECDSA, r, &r->ex_data);
158
159     OPENSSL_clear_free((void *)r, sizeof(ECDSA_DATA));
160 }
161
162 ECDSA_DATA *ecdsa_check(EC_KEY *key)
163 {
164     ECDSA_DATA *ecdsa_data;
165
166     void *data = EC_KEY_get_key_method_data(key, ecdsa_data_dup,
167                                             ecdsa_data_free, ecdsa_data_free);
168     if (data == NULL) {
169         ecdsa_data = (ECDSA_DATA *)ecdsa_data_new();
170         if (ecdsa_data == NULL)
171             return NULL;
172         data = EC_KEY_insert_key_method_data(key, (void *)ecdsa_data,
173                                              ecdsa_data_dup, ecdsa_data_free,
174                                              ecdsa_data_free);
175         if (data != NULL) {
176             /*
177              * Another thread raced us to install the key_method data and
178              * won.
179              */
180             ecdsa_data_free(ecdsa_data);
181             ecdsa_data = (ECDSA_DATA *)data;
182         }
183     } else
184         ecdsa_data = (ECDSA_DATA *)data;
185
186     return ecdsa_data;
187 }
188
189 int ECDSA_size(const EC_KEY *r)
190 {
191     int ret, i;
192     ASN1_INTEGER bs;
193     BIGNUM *order = NULL;
194     unsigned char buf[4];
195     const EC_GROUP *group;
196
197     if (r == NULL)
198         return 0;
199     group = EC_KEY_get0_group(r);
200     if (group == NULL)
201         return 0;
202
203     if ((order = BN_new()) == NULL)
204         return 0;
205     if (!EC_GROUP_get_order(group, order, NULL)) {
206         BN_clear_free(order);
207         return 0;
208     }
209     i = BN_num_bits(order);
210     bs.length = (i + 7) / 8;
211     bs.data = buf;
212     bs.type = V_ASN1_INTEGER;
213     /* If the top bit is set the asn1 encoding is 1 larger. */
214     buf[0] = 0xff;
215
216     i = i2d_ASN1_INTEGER(&bs, NULL);
217     i += i;                     /* r and s */
218     ret = ASN1_object_size(1, i, V_ASN1_SEQUENCE);
219     BN_clear_free(order);
220     return (ret);
221 }
222
223 int ECDSA_set_ex_data(EC_KEY *d, int idx, void *arg)
224 {
225     ECDSA_DATA *ecdsa;
226     ecdsa = ecdsa_check(d);
227     if (ecdsa == NULL)
228         return 0;
229     return (CRYPTO_set_ex_data(&ecdsa->ex_data, idx, arg));
230 }
231
232 void *ECDSA_get_ex_data(EC_KEY *d, int idx)
233 {
234     ECDSA_DATA *ecdsa;
235     ecdsa = ecdsa_check(d);
236     if (ecdsa == NULL)
237         return NULL;
238     return (CRYPTO_get_ex_data(&ecdsa->ex_data, idx));
239 }
240
241 ECDSA_METHOD *ECDSA_METHOD_new(const ECDSA_METHOD *ecdsa_meth)
242 {
243     ECDSA_METHOD *ret;
244
245     ret = OPENSSL_zalloc(sizeof(*ret));
246     if (ret == NULL) {
247         ECDSAerr(ECDSA_F_ECDSA_METHOD_NEW, ERR_R_MALLOC_FAILURE);
248         return NULL;
249     }
250
251     if (ecdsa_meth)
252         *ret = *ecdsa_meth;
253     ret->flags |= ECDSA_METHOD_FLAG_ALLOCATED;
254     return ret;
255 }
256
257 void ECDSA_METHOD_set_sign(ECDSA_METHOD *ecdsa_method,
258                            ECDSA_SIG *(*ecdsa_do_sign) (const unsigned char
259                                                         *dgst, int dgst_len,
260                                                         const BIGNUM *inv,
261                                                         const BIGNUM *rp,
262                                                         EC_KEY *eckey))
263 {
264     ecdsa_method->ecdsa_do_sign = ecdsa_do_sign;
265 }
266
267 void ECDSA_METHOD_set_sign_setup(ECDSA_METHOD *ecdsa_method,
268                                  int (*ecdsa_sign_setup) (EC_KEY *eckey,
269                                                           BN_CTX *ctx,
270                                                           BIGNUM **kinv,
271                                                           BIGNUM **r))
272 {
273     ecdsa_method->ecdsa_sign_setup = ecdsa_sign_setup;
274 }
275
276 void ECDSA_METHOD_set_verify(ECDSA_METHOD *ecdsa_method,
277                              int (*ecdsa_do_verify) (const unsigned char
278                                                      *dgst, int dgst_len,
279                                                      const ECDSA_SIG *sig,
280                                                      EC_KEY *eckey))
281 {
282     ecdsa_method->ecdsa_do_verify = ecdsa_do_verify;
283 }
284
285 void ECDSA_METHOD_set_flags(ECDSA_METHOD *ecdsa_method, int flags)
286 {
287     ecdsa_method->flags = flags | ECDSA_METHOD_FLAG_ALLOCATED;
288 }
289
290 void ECDSA_METHOD_set_name(ECDSA_METHOD *ecdsa_method, char *name)
291 {
292     ecdsa_method->name = name;
293 }
294
295 void ECDSA_METHOD_free(ECDSA_METHOD *ecdsa_method)
296 {
297     if (!ecdsa_method)
298         return;
299     if (ecdsa_method->flags & ECDSA_METHOD_FLAG_ALLOCATED)
300         OPENSSL_free(ecdsa_method);
301 }
302
303 void ECDSA_METHOD_set_app_data(ECDSA_METHOD *ecdsa_method, void *app)
304 {
305     ecdsa_method->app_data = app;
306 }
307
308 void *ECDSA_METHOD_get_app_data(ECDSA_METHOD *ecdsa_method)
309 {
310     return ecdsa_method->app_data;
311 }