ecdsatest.c 13.3 KB
Newer Older
B
Bodo Möller 已提交
1
/* crypto/ecdsa/ecdsatest.c */
2 3 4
/*
 * Written by Nils Larsch for the OpenSSL project.
 */
B
Bodo Möller 已提交
5
/* ====================================================================
N
Nils Larsch 已提交
6
 * Copyright (c) 2000-2005 The OpenSSL Project.  All rights reserved.
B
Bodo Möller 已提交
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer. 
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 *
 * 3. All advertising materials mentioning features or use of this
 *    software must display the following acknowledgment:
 *    "This product includes software developed by the OpenSSL Project
 *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
 *
 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
 *    endorse or promote products derived from this software without
 *    prior written permission. For written permission, please contact
 *    licensing@OpenSSL.org.
 *
 * 5. Products derived from this software may not be called "OpenSSL"
 *    nor may "OpenSSL" appear in their names without prior written
 *    permission of the OpenSSL Project.
 *
 * 6. Redistributions of any form whatsoever must retain the following
 *    acknowledgment:
 *    "This product includes software developed by the OpenSSL Project
 *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
 *
 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 * ====================================================================
 *
 * This product includes cryptographic software written by Eric Young
 * (eay@cryptsoft.com).  This product includes software written by Tim
 * Hudson (tjh@cryptsoft.com).
 *
 */
B
Bodo Möller 已提交
58 59 60 61 62 63 64 65 66 67 68 69 70 71
/* ====================================================================
 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
 *
 * Portions of the attached software ("Contribution") are developed by 
 * SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project.
 *
 * The Contribution is licensed pursuant to the OpenSSL open source
 * license provided above.
 *
 * The elliptic curve binary polynomial software is originally written by 
 * Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories.
 *
 */

B
Bodo Möller 已提交
72 73 74 75
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

76 77
#include <openssl/opensslconf.h> /* To see if OPENSSL_NO_ECDSA is defined */

B
Bodo Möller 已提交
78
#ifdef OPENSSL_NO_ECDSA
79 80 81 82 83
int main(int argc, char * argv[])
	{
	puts("Elliptic curves are disabled.");
	return 0;
	}
B
Bodo Möller 已提交
84 85
#else

86 87 88
#include <openssl/crypto.h>
#include <openssl/bio.h>
#include <openssl/evp.h>
N
make  
Nils Larsch 已提交
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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
static const char rnd_seed[] = "string to make the random number generator "
	"think it has entropy";

/* declaration of the test functions */
int x9_62_tests(BIO *);
int x9_62_test_internal(BIO *out, int nid, const char *r, const char *s);
int test_builtin(BIO *);

/* functions to change the RAND_METHOD */
int change_rand(void);
int restore_rand(void);
int fbytes(unsigned char *buf, int num);

RAND_METHOD	fake_rand;
const RAND_METHOD *old_rand;

int change_rand(void)
B
Bodo Möller 已提交
114
	{
115 116 117 118 119 120 121 122 123 124
	/* save old rand method */
	if ((old_rand = RAND_get_rand_method()) == NULL)
		return 0;

	fake_rand.seed    = old_rand->seed;
	fake_rand.cleanup = old_rand->cleanup;
	fake_rand.add     = old_rand->add;
	fake_rand.status  = old_rand->status;
	/* use own random function */
	fake_rand.bytes      = fbytes;
125
	fake_rand.pseudorand = old_rand->bytes;
126 127 128 129
	/* set new RAND_METHOD */
	if (!RAND_set_rand_method(&fake_rand))
		return 0;
	return 1;
B
Bodo Möller 已提交
130
	}
131 132

int restore_rand(void)
B
Bodo Möller 已提交
133
	{
134 135 136 137
	if (!RAND_set_rand_method(old_rand))
		return 0;
	else
		return 1;
B
Bodo Möller 已提交
138 139
	}

140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
static int fbytes_counter = 0;
static const char *numbers[8] = {
	"651056770906015076056810763456358567190100156695615665659",
	"6140507067065001063065065565667405560006161556565665656654",
	"8763001015071075675010661307616710783570106710677817767166"
	"71676178726717",
	"7000000175690566466555057817571571075705015757757057795755"
	"55657156756655",
	"1275552191113212300012030439187146164646146646466749494799",
	"1542725565216523985789236956265265265235675811949404040041",
	"1456427555219115346513212300075341203043918714616464614664"
	"64667494947990",
	"1712787255652165239672857892369562652652652356758119494040"
	"40041670216363"};

int fbytes(unsigned char *buf, int num)
	{
	int	ret;
	BIGNUM	*tmp = NULL;
B
Bodo Möller 已提交
159

160
	if (fbytes_counter >= 8)
B
Bodo Möller 已提交
161
		return 0;
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
	tmp = BN_new();
	if (!tmp)
		return 0;
	if (!BN_dec2bn(&tmp, numbers[fbytes_counter]))
		{
		BN_free(tmp);
		return 0;
		}
	fbytes_counter ++;
	ret = BN_bn2bin(tmp, buf);	
	if (ret == 0 || ret != num)
		ret = 0;
	else
		ret = 1;
	if (tmp)
		BN_free(tmp);
	return ret;
B
Bodo Möller 已提交
179
	}
180 181 182

/* some tests from the X9.62 draft */
int x9_62_test_internal(BIO *out, int nid, const char *r_in, const char *s_in)
B
Bodo Möller 已提交
183
	{
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
	int	ret = 0;
	const char message[] = "abc";
	unsigned char digest[20];
	unsigned int  dgst_len = 0;
	EVP_MD_CTX md_ctx;
	EC_KEY    *key = NULL;
	ECDSA_SIG *signature = NULL;
	BIGNUM    *r = NULL, *s = NULL;

	EVP_MD_CTX_init(&md_ctx);
	/* get the message digest */
	EVP_DigestInit(&md_ctx, EVP_ecdsa());
	EVP_DigestUpdate(&md_ctx, (const void*)message, 3);
	EVP_DigestFinal(&md_ctx, digest, &dgst_len);

	BIO_printf(out, "testing %s: ", OBJ_nid2sn(nid));
	/* create the key */
N
Nils Larsch 已提交
201
	if ((key = EC_KEY_new_by_curve_name(nid)) == NULL)
202 203 204 205
		goto x962_int_err;
	if (!EC_KEY_generate_key(key))
		goto x962_int_err;
	BIO_printf(out, ".");
D
Dr. Stephen Henson 已提交
206
	(void)BIO_flush(out);
207 208 209 210 211
	/* create the signature */
	signature = ECDSA_do_sign(digest, 20, key);
	if (signature == NULL)
		goto x962_int_err;
	BIO_printf(out, ".");
D
Dr. Stephen Henson 已提交
212
	(void)BIO_flush(out);
213 214 215 216 217 218 219 220 221
	/* compare the created signature with the expected signature */
	if ((r = BN_new()) == NULL || (s = BN_new()) == NULL)
		goto x962_int_err;
	if (!BN_dec2bn(&r, r_in) ||
	    !BN_dec2bn(&s, s_in))
		goto x962_int_err;
	if (BN_cmp(signature->r ,r) || BN_cmp(signature->s, s))
		goto x962_int_err;
	BIO_printf(out, ".");
D
Dr. Stephen Henson 已提交
222
	(void)BIO_flush(out);
223 224 225 226
	/* verify the signature */
	if (ECDSA_do_verify(digest, 20, signature, key) != 1)
		goto x962_int_err;
	BIO_printf(out, ".");
D
Dr. Stephen Henson 已提交
227
	(void)BIO_flush(out);
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243

	BIO_printf(out, " ok\n");
	ret = 1;
x962_int_err:
	if (!ret)
		BIO_printf(out, " failed\n");
	if (key)
		EC_KEY_free(key);
	if (signature)
		ECDSA_SIG_free(signature);
	if (r)
		BN_free(r);
	if (s)
		BN_free(s);
	EVP_MD_CTX_cleanup(&md_ctx);
	return ret;
B
Bodo Möller 已提交
244 245
	}

246
int x9_62_tests(BIO *out)
B
Bodo Möller 已提交
247
	{
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
	int ret = 0;

	BIO_printf(out, "some tests from X9.62:\n");

	/* set own rand method */
	if (!change_rand())
		goto x962_err;

	if (!x9_62_test_internal(out, NID_X9_62_prime192v1,
		"3342403536405981729393488334694600415596881826869351677613",
		"5735822328888155254683894997897571951568553642892029982342"))
		goto x962_err;
	if (!x9_62_test_internal(out, NID_X9_62_prime239v1,
		"3086361431751678114926225473006680188549593787585317781474"
		"62058306432176",
		"3238135532097973577080787768312505059318910517550078427819"
		"78505179448783"))
		goto x962_err;
	if (!x9_62_test_internal(out, NID_X9_62_c2tnb191v1,
		"87194383164871543355722284926904419997237591535066528048",
		"308992691965804947361541664549085895292153777025772063598"))
		goto x962_err;
	if (!x9_62_test_internal(out, NID_X9_62_c2tnb239v1,
		"2159633321041961198501834003903461262881815148684178964245"
		"5876922391552",
		"1970303740007316867383349976549972270528498040721988191026"
		"49413465737174"))
		goto x962_err;
B
Bodo Möller 已提交
276

277 278 279 280
	ret = 1;
x962_err:
	if (!restore_rand())
		ret = 0;
B
Bodo Möller 已提交
281
	return ret;
282 283 284 285 286 287 288
	}

int test_builtin(BIO *out)
	{
	EC_builtin_curve *curves = NULL;
	size_t		crv_len = 0, n = 0;
	EC_KEY		*eckey = NULL, *wrong_eckey = NULL;
N
Nils Larsch 已提交
289
	EC_GROUP	*group;
290
	unsigned char	digest[20], wrong_digest[20];
291
	unsigned char	*signature = NULL; 
292 293 294 295 296 297 298 299 300 301
	unsigned int	sig_len;
	int		nid, ret =  0;
	
	/* fill digest values with some random data */
	if (!RAND_pseudo_bytes(digest, 20) ||
	    !RAND_pseudo_bytes(wrong_digest, 20))
		{
		BIO_printf(out, "ERROR: unable to get random data\n");
		goto builtin_err;
		}
B
Bodo Möller 已提交
302

303 304 305 306
	/* create and verify a ecdsa signature with every availble curve
	 * (with ) */
	BIO_printf(out, "\ntesting ECDSA_sign() and ECDSA_verify() "
		"with some internal curves:\n");
B
Bodo Möller 已提交
307

308 309 310 311 312 313 314 315 316 317
	/* get a list of all internal curves */
	crv_len = EC_get_builtin_curves(NULL, 0);

	curves = OPENSSL_malloc(sizeof(EC_builtin_curve) * crv_len);

	if (curves == NULL)
		{
		BIO_printf(out, "malloc error\n");
		goto builtin_err;
		}
B
Bodo Möller 已提交
318
	
319 320 321 322 323
	if (!EC_get_builtin_curves(curves, crv_len))
		{
		BIO_printf(out, "unable to get internal curves\n");
		goto builtin_err;
		}
B
Bodo Möller 已提交
324

325 326 327
	/* now create and verify a signature for every curve */
	for (n = 0; n < crv_len; n++)
		{
328 329
		unsigned char dirt, offset;

330
		nid = curves[n].nid;
331 332
		if (nid == NID_ipsec4)
			continue;
333 334 335
		/* create new ecdsa key (== EC_KEY) */
		if ((eckey = EC_KEY_new()) == NULL)
			goto builtin_err;
N
Nils Larsch 已提交
336 337 338 339
		group = EC_GROUP_new_by_curve_name(nid);
		if (group == NULL)
			goto builtin_err;
		if (EC_KEY_set_group(eckey, group) == 0)
340
			goto builtin_err;
N
Nils Larsch 已提交
341 342
		EC_GROUP_free(group);
		if (EC_GROUP_get_degree(EC_KEY_get0_group(eckey)) < 160)
343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
			/* drop the curve */ 
			{
			EC_KEY_free(eckey);
			eckey = NULL;
			continue;
			}
		BIO_printf(out, "%s: ", OBJ_nid2sn(nid));
		/* create key */
		if (!EC_KEY_generate_key(eckey))
			{
			BIO_printf(out, " failed\n");
			goto builtin_err;
			}
		/* create second key */
		if ((wrong_eckey = EC_KEY_new()) == NULL)
			goto builtin_err;
N
Nils Larsch 已提交
359 360 361 362
		group = EC_GROUP_new_by_curve_name(nid);
		if (group == NULL)
			goto builtin_err;
		if (EC_KEY_set_group(wrong_eckey, group) == 0)
363
			goto builtin_err;
N
Nils Larsch 已提交
364
		EC_GROUP_free(group);
365 366 367 368 369 370 371
		if (!EC_KEY_generate_key(wrong_eckey))
			{
			BIO_printf(out, " failed\n");
			goto builtin_err;
			}

		BIO_printf(out, ".");
D
Dr. Stephen Henson 已提交
372
		(void)BIO_flush(out);
373 374 375 376 377 378 379
		/* check key */
		if (!EC_KEY_check_key(eckey))
			{
			BIO_printf(out, " failed\n");
			goto builtin_err;
			}
		BIO_printf(out, ".");
D
Dr. Stephen Henson 已提交
380
		(void)BIO_flush(out);
381 382 383 384 385 386 387 388 389 390
		/* create signature */
		sig_len = ECDSA_size(eckey);
		if ((signature = OPENSSL_malloc(sig_len)) == NULL)
			goto builtin_err;
                if (!ECDSA_sign(0, digest, 20, signature, &sig_len, eckey))
			{
			BIO_printf(out, " failed\n");
			goto builtin_err;
			}
		BIO_printf(out, ".");
D
Dr. Stephen Henson 已提交
391
		(void)BIO_flush(out);
392 393 394 395 396 397 398
		/* verify signature */
		if (ECDSA_verify(0, digest, 20, signature, sig_len, eckey) != 1)
			{
			BIO_printf(out, " failed\n");
			goto builtin_err;
			}
		BIO_printf(out, ".");
D
Dr. Stephen Henson 已提交
399
		(void)BIO_flush(out);
400 401 402 403 404 405 406 407
		/* verify signature with the wrong key */
		if (ECDSA_verify(0, digest, 20, signature, sig_len, 
			wrong_eckey) == 1)
			{
			BIO_printf(out, " failed\n");
			goto builtin_err;
			}
		BIO_printf(out, ".");
D
Dr. Stephen Henson 已提交
408
		(void)BIO_flush(out);
409 410 411 412 413 414 415 416
		/* wrong digest */
		if (ECDSA_verify(0, wrong_digest, 20, signature, sig_len,
			eckey) == 1)
			{
			BIO_printf(out, " failed\n");
			goto builtin_err;
			}
		BIO_printf(out, ".");
D
Dr. Stephen Henson 已提交
417
		(void)BIO_flush(out);
418 419 420 421
		/* modify a single byte of the signature */
		offset = signature[10] % sig_len;
		dirt   = signature[11];
		signature[offset] ^= dirt ? dirt : 1; 
422 423 424 425 426 427
		if (ECDSA_verify(0, digest, 20, signature, sig_len, eckey) == 1)
			{
			BIO_printf(out, " failed\n");
			goto builtin_err;
			}
		BIO_printf(out, ".");
D
Dr. Stephen Henson 已提交
428
		(void)BIO_flush(out);
429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445
		
		BIO_printf(out, " ok\n");
		/* cleanup */
		OPENSSL_free(signature);
		signature = NULL;
		EC_KEY_free(eckey);
		eckey = NULL;
		EC_KEY_free(wrong_eckey);
		wrong_eckey = NULL;
		}

	ret = 1;	
builtin_err:
	if (eckey)
		EC_KEY_free(eckey);
	if (wrong_eckey)
		EC_KEY_free(wrong_eckey);
N
Nils Larsch 已提交
446
	if (signature)
447 448 449
		OPENSSL_free(signature);
	if (curves)
		OPENSSL_free(curves);
B
Bodo Möller 已提交
450 451

	return ret;
452
	}
B
Bodo Möller 已提交
453 454

int main(void)
455
	{
456
	int 	ret = 1;
457 458 459
	BIO	*out;

	out = BIO_new_fp(stdout, BIO_NOCLOSE);
B
Bodo Möller 已提交
460
	
461
	/* enable memory leak checking unless explicitly disabled */
462 463
	if (!((getenv("OPENSSL_DEBUG_MEMORY") != NULL) && 
		(0 == strcmp(getenv("OPENSSL_DEBUG_MEMORY"), "off"))))
464 465 466 467 468 469 470 471 472 473
		{
		CRYPTO_malloc_debug_init();
		CRYPTO_set_mem_debug_options(V_CRYPTO_MDEBUG_ALL);
		}
	else
		{
		/* OPENSSL_DEBUG_MEMORY=off */
		CRYPTO_set_mem_debug_functions(0, 0, 0, 0, 0);
		}
	CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
B
Bodo Möller 已提交
474

475
	ERR_load_crypto_strings();
B
Bodo Möller 已提交
476

477
	/* initialize the prng */
478
	RAND_seed(rnd_seed, sizeof(rnd_seed));
B
Bodo Möller 已提交
479

480 481 482
	/* the tests */
	if (!x9_62_tests(out))  goto err;
	if (!test_builtin(out)) goto err;
B
Bodo Möller 已提交
483
	
484
	ret = 0;
485
err:	
486
	if (ret) 	
487
		BIO_printf(out, "\nECDSA test failed\n");
B
Bodo Möller 已提交
488
	else 
489
		BIO_printf(out, "\nECDSA test passed\n");
G
Geoff Thorpe 已提交
490
	if (ret)
491
		ERR_print_errors(out);
B
Bodo Möller 已提交
492
	CRYPTO_cleanup_all_ex_data();
493
	ERR_remove_thread_state(NULL);
B
Bodo Möller 已提交
494
	ERR_free_strings();
495 496 497
	CRYPTO_mem_leaks(out);
	if (out != NULL)
		BIO_free(out);
498
	return ret;
499
	}	
B
Bodo Möller 已提交
500
#endif