Check for selftest failure in various places.
[openssl.git] / crypto / ecdsa / ecdsatest.c
1 /* crypto/ecdsa/ecdsatest.c */
2 /*
3  * Written by Nils Larsch for the OpenSSL project.
4  */
5 /* ====================================================================
6  * Copyright (c) 2000-2005 The OpenSSL Project.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer. 
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in
17  *    the documentation and/or other materials provided with the
18  *    distribution.
19  *
20  * 3. All advertising materials mentioning features or use of this
21  *    software must display the following acknowledgment:
22  *    "This product includes software developed by the OpenSSL Project
23  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24  *
25  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26  *    endorse or promote products derived from this software without
27  *    prior written permission. For written permission, please contact
28  *    licensing@OpenSSL.org.
29  *
30  * 5. Products derived from this software may not be called "OpenSSL"
31  *    nor may "OpenSSL" appear in their names without prior written
32  *    permission of the OpenSSL Project.
33  *
34  * 6. Redistributions of any form whatsoever must retain the following
35  *    acknowledgment:
36  *    "This product includes software developed by the OpenSSL Project
37  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38  *
39  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
43  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50  * OF THE POSSIBILITY OF SUCH DAMAGE.
51  * ====================================================================
52  *
53  * This product includes cryptographic software written by Eric Young
54  * (eay@cryptsoft.com).  This product includes software written by Tim
55  * Hudson (tjh@cryptsoft.com).
56  *
57  */
58 /* ====================================================================
59  * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
60  *
61  * Portions of the attached software ("Contribution") are developed by 
62  * SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project.
63  *
64  * The Contribution is licensed pursuant to the OpenSSL open source
65  * license provided above.
66  *
67  * The elliptic curve binary polynomial software is originally written by 
68  * Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories.
69  *
70  */
71
72 #include <stdio.h>
73 #include <stdlib.h>
74 #include <string.h>
75
76 #include <openssl/opensslconf.h> /* To see if OPENSSL_NO_ECDSA is defined */
77
78 #ifdef OPENSSL_NO_ECDSA
79 int main(int argc, char * argv[])
80         {
81         puts("Elliptic curves are disabled.");
82         return 0;
83         }
84 #else
85
86 #include <openssl/crypto.h>
87 #include <openssl/bio.h>
88 #include <openssl/evp.h>
89 #include <openssl/bn.h>
90 #include <openssl/ecdsa.h>
91 #ifndef OPENSSL_NO_ENGINE
92 #include <openssl/engine.h>
93 #endif
94 #include <openssl/err.h>
95 #include <openssl/rand.h>
96
97 static const char rnd_seed[] = "string to make the random number generator "
98         "think it has entropy";
99
100 /* declaration of the test functions */
101 int x9_62_tests(BIO *);
102 int x9_62_test_internal(BIO *out, int nid, const char *r, const char *s);
103 int test_builtin(BIO *);
104
105 /* functions to change the RAND_METHOD */
106 int change_rand(void);
107 int restore_rand(void);
108 int fbytes(unsigned char *buf, int num);
109
110 RAND_METHOD     fake_rand;
111 const RAND_METHOD *old_rand;
112
113 int change_rand(void)
114         {
115         /* save old rand method */
116         if ((old_rand = RAND_get_rand_method()) == NULL)
117                 return 0;
118
119         fake_rand.seed    = old_rand->seed;
120         fake_rand.cleanup = old_rand->cleanup;
121         fake_rand.add     = old_rand->add;
122         fake_rand.status  = old_rand->status;
123         /* use own random function */
124         fake_rand.bytes      = fbytes;
125         fake_rand.pseudorand = old_rand->bytes;
126         /* set new RAND_METHOD */
127         if (!RAND_set_rand_method(&fake_rand))
128                 return 0;
129         return 1;
130         }
131
132 int restore_rand(void)
133         {
134         if (!RAND_set_rand_method(old_rand))
135                 return 0;
136         else
137                 return 1;
138         }
139
140 static int fbytes_counter = 0, use_fake = 0;
141 static const char *numbers[8] = {
142         "651056770906015076056810763456358567190100156695615665659",
143         "6140507067065001063065065565667405560006161556565665656654",
144         "8763001015071075675010661307616710783570106710677817767166"
145         "71676178726717",
146         "7000000175690566466555057817571571075705015757757057795755"
147         "55657156756655",
148         "1275552191113212300012030439187146164646146646466749494799",
149         "1542725565216523985789236956265265265235675811949404040041",
150         "1456427555219115346513212300075341203043918714616464614664"
151         "64667494947990",
152         "1712787255652165239672857892369562652652652356758119494040"
153         "40041670216363"};
154
155 int fbytes(unsigned char *buf, int num)
156         {
157         int     ret;
158         BIGNUM  *tmp = NULL;
159
160         if (use_fake == 0)
161                 return old_rand->bytes(buf, num);
162
163         use_fake = 0;
164
165         if (fbytes_counter >= 8)
166                 return 0;
167         tmp = BN_new();
168         if (!tmp)
169                 return 0;
170         if (!BN_dec2bn(&tmp, numbers[fbytes_counter]))
171                 {
172                 BN_free(tmp);
173                 return 0;
174                 }
175         fbytes_counter ++;
176         if (num != BN_num_bytes(tmp) || !BN_bn2bin(tmp, buf))
177                 ret = 0;
178         else 
179                 ret = 1;
180         if (tmp)
181                 BN_free(tmp);
182         return ret;
183         }
184
185 /* some tests from the X9.62 draft */
186 int x9_62_test_internal(BIO *out, int nid, const char *r_in, const char *s_in)
187         {
188         int     ret = 0;
189         const char message[] = "abc";
190         unsigned char digest[20];
191         unsigned int  dgst_len = 0;
192         EVP_MD_CTX md_ctx;
193         EC_KEY    *key = NULL;
194         ECDSA_SIG *signature = NULL;
195         BIGNUM    *r = NULL, *s = NULL;
196
197         EVP_MD_CTX_init(&md_ctx);
198         /* get the message digest */
199         EVP_DigestInit(&md_ctx, EVP_ecdsa());
200         EVP_DigestUpdate(&md_ctx, (const void*)message, 3);
201         EVP_DigestFinal(&md_ctx, digest, &dgst_len);
202
203         BIO_printf(out, "testing %s: ", OBJ_nid2sn(nid));
204         /* create the key */
205         if ((key = EC_KEY_new_by_curve_name(nid)) == NULL)
206                 goto x962_int_err;
207         use_fake = 1;
208         if (!EC_KEY_generate_key(key))
209                 goto x962_int_err;
210         BIO_printf(out, ".");
211         (void)BIO_flush(out);
212         /* create the signature */
213         use_fake = 1;
214         signature = ECDSA_do_sign(digest, 20, key);
215         if (signature == NULL)
216                 goto x962_int_err;
217         BIO_printf(out, ".");
218         (void)BIO_flush(out);
219         /* compare the created signature with the expected signature */
220         if ((r = BN_new()) == NULL || (s = BN_new()) == NULL)
221                 goto x962_int_err;
222         if (!BN_dec2bn(&r, r_in) ||
223             !BN_dec2bn(&s, s_in))
224                 goto x962_int_err;
225         if (BN_cmp(signature->r ,r) || BN_cmp(signature->s, s))
226                 goto x962_int_err;
227         BIO_printf(out, ".");
228         (void)BIO_flush(out);
229         /* verify the signature */
230         if (ECDSA_do_verify(digest, 20, signature, key) != 1)
231                 goto x962_int_err;
232         BIO_printf(out, ".");
233         (void)BIO_flush(out);
234
235         BIO_printf(out, " ok\n");
236         ret = 1;
237 x962_int_err:
238         if (!ret)
239                 BIO_printf(out, " failed\n");
240         if (key)
241                 EC_KEY_free(key);
242         if (signature)
243                 ECDSA_SIG_free(signature);
244         if (r)
245                 BN_free(r);
246         if (s)
247                 BN_free(s);
248         EVP_MD_CTX_cleanup(&md_ctx);
249         return ret;
250         }
251
252 int x9_62_tests(BIO *out)
253         {
254         int ret = 0;
255
256         BIO_printf(out, "some tests from X9.62:\n");
257
258         /* set own rand method */
259         if (!change_rand())
260                 goto x962_err;
261
262         if (!x9_62_test_internal(out, NID_X9_62_prime192v1,
263                 "3342403536405981729393488334694600415596881826869351677613",
264                 "5735822328888155254683894997897571951568553642892029982342"))
265                 goto x962_err;
266         if (!x9_62_test_internal(out, NID_X9_62_prime239v1,
267                 "3086361431751678114926225473006680188549593787585317781474"
268                 "62058306432176",
269                 "3238135532097973577080787768312505059318910517550078427819"
270                 "78505179448783"))
271                 goto x962_err;
272 #ifndef OPENSSL_NO_EC2M
273         if (!x9_62_test_internal(out, NID_X9_62_c2tnb191v1,
274                 "87194383164871543355722284926904419997237591535066528048",
275                 "308992691965804947361541664549085895292153777025772063598"))
276                 goto x962_err;
277         if (!x9_62_test_internal(out, NID_X9_62_c2tnb239v1,
278                 "2159633321041961198501834003903461262881815148684178964245"
279                 "5876922391552",
280                 "1970303740007316867383349976549972270528498040721988191026"
281                 "49413465737174"))
282                 goto x962_err;
283 #endif
284         ret = 1;
285 x962_err:
286         if (!restore_rand())
287                 ret = 0;
288         return ret;
289         }
290
291 int test_builtin(BIO *out)
292         {
293         EC_builtin_curve *curves = NULL;
294         size_t          crv_len = 0, n = 0;
295         EC_KEY          *eckey = NULL, *wrong_eckey = NULL;
296         EC_GROUP        *group;
297         unsigned char   digest[20], wrong_digest[20];
298         unsigned char   *signature = NULL; 
299         unsigned int    sig_len;
300         int             nid, ret =  0;
301         
302         /* fill digest values with some random data */
303         if (!RAND_pseudo_bytes(digest, 20) ||
304             !RAND_pseudo_bytes(wrong_digest, 20))
305                 {
306                 BIO_printf(out, "ERROR: unable to get random data\n");
307                 goto builtin_err;
308                 }
309
310         /* create and verify a ecdsa signature with every availble curve
311          * (with ) */
312         BIO_printf(out, "\ntesting ECDSA_sign() and ECDSA_verify() "
313                 "with some internal curves:\n");
314
315         /* get a list of all internal curves */
316         crv_len = EC_get_builtin_curves(NULL, 0);
317
318         curves = OPENSSL_malloc(sizeof(EC_builtin_curve) * crv_len);
319
320         if (curves == NULL)
321                 {
322                 BIO_printf(out, "malloc error\n");
323                 goto builtin_err;
324                 }
325         
326         if (!EC_get_builtin_curves(curves, crv_len))
327                 {
328                 BIO_printf(out, "unable to get internal curves\n");
329                 goto builtin_err;
330                 }
331
332         /* now create and verify a signature for every curve */
333         for (n = 0; n < crv_len; n++)
334                 {
335                 unsigned char dirt, offset;
336
337                 nid = curves[n].nid;
338                 if (nid == NID_ipsec4)
339                         continue;
340                 /* create new ecdsa key (== EC_KEY) */
341                 if ((eckey = EC_KEY_new()) == NULL)
342                         goto builtin_err;
343                 group = EC_GROUP_new_by_curve_name(nid);
344                 if (group == NULL)
345                         goto builtin_err;
346                 if (EC_KEY_set_group(eckey, group) == 0)
347                         goto builtin_err;
348                 EC_GROUP_free(group);
349                 if (EC_GROUP_get_degree(EC_KEY_get0_group(eckey)) < 160)
350                         /* drop the curve */ 
351                         {
352                         EC_KEY_free(eckey);
353                         eckey = NULL;
354                         continue;
355                         }
356                 BIO_printf(out, "%s: ", OBJ_nid2sn(nid));
357                 /* create key */
358                 if (!EC_KEY_generate_key(eckey))
359                         {
360                         BIO_printf(out, " failed\n");
361                         goto builtin_err;
362                         }
363                 /* create second key */
364                 if ((wrong_eckey = EC_KEY_new()) == NULL)
365                         goto builtin_err;
366                 group = EC_GROUP_new_by_curve_name(nid);
367                 if (group == NULL)
368                         goto builtin_err;
369                 if (EC_KEY_set_group(wrong_eckey, group) == 0)
370                         goto builtin_err;
371                 EC_GROUP_free(group);
372                 if (!EC_KEY_generate_key(wrong_eckey))
373                         {
374                         BIO_printf(out, " failed\n");
375                         goto builtin_err;
376                         }
377
378                 BIO_printf(out, ".");
379                 (void)BIO_flush(out);
380                 /* check key */
381                 if (!EC_KEY_check_key(eckey))
382                         {
383                         BIO_printf(out, " failed\n");
384                         goto builtin_err;
385                         }
386                 BIO_printf(out, ".");
387                 (void)BIO_flush(out);
388                 /* create signature */
389                 sig_len = ECDSA_size(eckey);
390                 if ((signature = OPENSSL_malloc(sig_len)) == NULL)
391                         goto builtin_err;
392                 if (!ECDSA_sign(0, digest, 20, signature, &sig_len, eckey))
393                         {
394                         BIO_printf(out, " failed\n");
395                         goto builtin_err;
396                         }
397                 BIO_printf(out, ".");
398                 (void)BIO_flush(out);
399                 /* verify signature */
400                 if (ECDSA_verify(0, digest, 20, signature, sig_len, eckey) != 1)
401                         {
402                         BIO_printf(out, " failed\n");
403                         goto builtin_err;
404                         }
405                 BIO_printf(out, ".");
406                 (void)BIO_flush(out);
407                 /* verify signature with the wrong key */
408                 if (ECDSA_verify(0, digest, 20, signature, sig_len, 
409                         wrong_eckey) == 1)
410                         {
411                         BIO_printf(out, " failed\n");
412                         goto builtin_err;
413                         }
414                 BIO_printf(out, ".");
415                 (void)BIO_flush(out);
416                 /* wrong digest */
417                 if (ECDSA_verify(0, wrong_digest, 20, signature, sig_len,
418                         eckey) == 1)
419                         {
420                         BIO_printf(out, " failed\n");
421                         goto builtin_err;
422                         }
423                 BIO_printf(out, ".");
424                 (void)BIO_flush(out);
425                 /* modify a single byte of the signature */
426                 offset = signature[10] % sig_len;
427                 dirt   = signature[11];
428                 signature[offset] ^= dirt ? dirt : 1; 
429                 if (ECDSA_verify(0, digest, 20, signature, sig_len, eckey) == 1)
430                         {
431                         BIO_printf(out, " failed\n");
432                         goto builtin_err;
433                         }
434                 BIO_printf(out, ".");
435                 (void)BIO_flush(out);
436                 
437                 BIO_printf(out, " ok\n");
438                 /* cleanup */
439                 OPENSSL_free(signature);
440                 signature = NULL;
441                 EC_KEY_free(eckey);
442                 eckey = NULL;
443                 EC_KEY_free(wrong_eckey);
444                 wrong_eckey = NULL;
445                 }
446
447         ret = 1;        
448 builtin_err:
449         if (eckey)
450                 EC_KEY_free(eckey);
451         if (wrong_eckey)
452                 EC_KEY_free(wrong_eckey);
453         if (signature)
454                 OPENSSL_free(signature);
455         if (curves)
456                 OPENSSL_free(curves);
457
458         return ret;
459         }
460
461 int main(void)
462         {
463         int     ret = 1;
464         BIO     *out;
465
466         out = BIO_new_fp(stdout, BIO_NOCLOSE);
467         
468         /* enable memory leak checking unless explicitly disabled */
469         if (!((getenv("OPENSSL_DEBUG_MEMORY") != NULL) && 
470                 (0 == strcmp(getenv("OPENSSL_DEBUG_MEMORY"), "off"))))
471                 {
472                 CRYPTO_malloc_debug_init();
473                 CRYPTO_set_mem_debug_options(V_CRYPTO_MDEBUG_ALL);
474                 }
475         else
476                 {
477                 /* OPENSSL_DEBUG_MEMORY=off */
478                 CRYPTO_set_mem_debug_functions(0, 0, 0, 0, 0);
479                 }
480         CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
481
482         ERR_load_crypto_strings();
483
484         /* initialize the prng */
485         RAND_seed(rnd_seed, sizeof(rnd_seed));
486
487         /* the tests */
488         if (!x9_62_tests(out))  goto err;
489         if (!test_builtin(out)) goto err;
490         
491         ret = 0;
492 err:    
493         if (ret)        
494                 BIO_printf(out, "\nECDSA test failed\n");
495         else 
496                 BIO_printf(out, "\nECDSA test passed\n");
497         if (ret)
498                 ERR_print_errors(out);
499         CRYPTO_cleanup_all_ex_data();
500         ERR_remove_thread_state(NULL);
501         ERR_free_strings();
502         CRYPTO_mem_leaks(out);
503         if (out != NULL)
504                 BIO_free(out);
505         return ret;
506         }       
507 #endif