ecdsatest.c 24.0 KB
Newer Older
B
Bodo Möller 已提交
1 2 3 4 5 6 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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
/* crypto/ecdsa/ecdsatest.c */
/* ====================================================================
 * Copyright (c) 2000-2002 The OpenSSL Project.  All rights reserved.
 *
 * 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).
 *
 */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>

#ifdef CLOCKS_PER_SEC
	/* "To determine the time in seconds, the value returned
	 * by the clock function should be divided by the value
	 * of the macro CLOCKS_PER_SEC."
	 *                                       -- ISO/IEC 9899 */
#	define UNIT "s"
#else
	/* "`CLOCKS_PER_SEC' undeclared (first use this function)"
	 *                            -- cc on NeXTstep/OpenStep */
#	define UNIT "units"
#	define CLOCKS_PER_SEC 1
#endif

#ifdef OPENSSL_NO_ECDSA
int main(int argc, char * argv[]) { puts("Elliptic curves are disabled."); return 0; }
#else

77 78 79 80 81 82 83 84
#include <openssl/crypto.h>
#include <openssl/bio.h>
#include <openssl/evp.h>
#include <openssl/x509.h>
#include <openssl/ecdsa.h>
#include <openssl/engine.h>
#include <openssl/err.h>

B
Bodo Möller 已提交
85 86 87 88 89 90 91
static BIO *bio_err=NULL;
static const char rnd_seed[] = "string to make the random number generator think it has entropy";

#define	ECDSA_NIST_TESTS	10
ECDSA_SIG*	signatures[ECDSA_NIST_TESTS];
unsigned char	digest[ECDSA_NIST_TESTS][20];

92
void clear_ecdsa(EC_KEY *ecdsa)
B
Bodo Möller 已提交
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
{
	if (!ecdsa)
		return;
	if (ecdsa->group)
	{
		EC_GROUP_free(ecdsa->group);
		ecdsa->group = NULL;
	}
	if (ecdsa->pub_key)
	{
		EC_POINT_free(ecdsa->pub_key);
		ecdsa->pub_key = NULL;
	}
	if (ecdsa->priv_key)
	{
		BN_free(ecdsa->priv_key);
		ecdsa->priv_key = NULL;
	}
}

113
int set_p192_param(EC_KEY *ecdsa)
B
Bodo Möller 已提交
114 115 116 117 118 119 120 121 122
{
	BN_CTX	 *ctx=NULL;
	int 	 ret=0;

	if (!ecdsa)
		return 0;
	if ((ctx = BN_CTX_new()) == NULL) goto err;
	clear_ecdsa(ecdsa);
	
123
	if ((ecdsa->group = EC_GROUP_new_by_name(EC_GROUP_X9_62_PRIME_192V1)) == NULL)
B
Bodo Möller 已提交
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
	{
		BIO_printf(bio_err,"ECDSA_SET_GROUP_P_192_V1() failed \n");
		goto err;
	}
	if ((ecdsa->pub_key = EC_POINT_new(ecdsa->group)) == NULL)
	{
		BIO_printf(bio_err,"EC_POINT_new failed \n");
		goto err;
	}

	if (!BN_dec2bn(&(ecdsa->priv_key), "651056770906015076056810763456358567190100156695615665659"))	goto err;
	if (!EC_POINT_mul(ecdsa->group,ecdsa->pub_key,ecdsa->priv_key,NULL,NULL,ctx))
	{
		BIO_printf(bio_err,"EC_POINT_mul() failed \n");
		goto err;
	}
	ret = 1;

err :	if (ctx)	BN_CTX_free(ctx);
	return ret;
}

146
int set_p239_param(EC_KEY *ecdsa)
B
Bodo Möller 已提交
147 148 149 150 151 152 153 154 155
{
	BN_CTX	 *ctx=NULL;
	int 	 ret=0;

	if (!ecdsa)
		return 0;
	if ((ctx = BN_CTX_new()) == NULL) goto err;
	clear_ecdsa(ecdsa);
	
156
	if ((ecdsa->group = EC_GROUP_new_by_name(EC_GROUP_X9_62_PRIME_239V1)) == NULL)
B
Bodo Möller 已提交
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
	{
		BIO_printf(bio_err,"ECDSA_SET_GROUP_P_239_V1() failed \n");
		goto err;
	}
	if ((ecdsa->pub_key = EC_POINT_new(ecdsa->group)) == NULL)
	{
		BIO_printf(bio_err,"EC_POINT_new failed \n");
		goto err;
	}

	if (!BN_dec2bn(&(ecdsa->priv_key), "876300101507107567501066130761671078357010671067781776716671676178726717"))	goto err;
	if (!EC_POINT_mul(ecdsa->group,ecdsa->pub_key,ecdsa->priv_key,NULL,NULL,ctx))
	{
		BIO_printf(bio_err,"EC_POINT_mul() failed \n");
		goto err;
	}
	ret = 1;

err :	if (ctx)	BN_CTX_free(ctx);
	return ret;
}

179
int test_sig_vrf(EC_KEY *ecdsa, const unsigned char* dgst)
B
Bodo Möller 已提交
180 181 182 183
{
        int       ret=0,type=0;
        unsigned char *buffer=NULL;
        unsigned int  buf_len;
184
        clock_t  tim;
B
Bodo Möller 已提交
185 186 187 188 189 190 191 192 193 194 195
 
        if (!ecdsa || !ecdsa->group || !ecdsa->pub_key || !ecdsa->priv_key)
                return 0;
        if ((buf_len = ECDSA_size(ecdsa)) == 0)
        {
                BIO_printf(bio_err, "ECDSA_size() == 0 \n");
                goto err;
        }
        if ((buffer = OPENSSL_malloc(buf_len)) == NULL)
                goto err;
 
196
        tim = clock();
B
Bodo Möller 已提交
197 198 199 200 201
        if (!ECDSA_sign(type, dgst , 20, buffer, &buf_len, ecdsa))
        {
                BIO_printf(bio_err, "ECDSA_sign() FAILED \n");
                goto err;
        }
202 203
        tim = clock() - tim;
        BIO_printf(bio_err, " [ ECDSA_sign() %.2f"UNIT, (double)tim/(CLOCKS_PER_SEC));
B
Bodo Möller 已提交
204
 
205
        tim = clock();
B
Bodo Möller 已提交
206 207 208 209 210 211
        ret = ECDSA_verify(type, dgst, 20, buffer, buf_len, ecdsa);
        if (ret != 1)
        {
                BIO_printf(bio_err, "ECDSA_verify() FAILED \n");
                goto err;
        }
212 213
        tim = clock() - tim;
        BIO_printf(bio_err, " and ECDSA_verify() %.2f"UNIT" ] ", (double)tim/(CLOCKS_PER_SEC));
B
Bodo Möller 已提交
214 215 216 217 218
 
err:    OPENSSL_free(buffer);
        return(ret == 1);
}

219
int test_x962_sig_vrf(EC_KEY *eckey, const unsigned char *dgst,
B
Bodo Möller 已提交
220 221 222 223 224 225 226 227
                           const char *k_in, const char *r_in, const char *s_in)
{
        int       ret=0;
        ECDSA_SIG *sig=NULL;
        EC_POINT  *point=NULL;
        BIGNUM    *r=NULL,*s=NULL,*k=NULL,*x=NULL,*y=NULL,*m=NULL,*ord=NULL;
        BN_CTX    *ctx=NULL;
        char      *tmp_char=NULL;
228 229 230 231
	ECDSA_DATA *ecdsa = ecdsa_check(eckey);;
	
        if (!eckey || !eckey->group || !eckey->pub_key || !eckey->priv_key
		|| !ecdsa)
B
Bodo Möller 已提交
232
                return 0;
233 234 235 236 237
        if ((point = EC_POINT_new(eckey->group)) == NULL) goto err;
        if ((r = BN_new()) == NULL || (s = BN_new()) == NULL 
		|| (k = BN_new()) == NULL || (x = BN_new()) == NULL || 
		(y = BN_new()) == NULL || (m = BN_new()) == NULL ||
		(ord = BN_new()) == NULL) goto err;
B
Bodo Möller 已提交
238 239 240
        if ((ctx = BN_CTX_new()) == NULL) goto err;
        if (!BN_bin2bn(dgst, 20, m)) goto err;
        if (!BN_dec2bn(&k, k_in)) goto err;
241 242 243 244
        if (!EC_POINT_mul(eckey->group, point, k, NULL, NULL, ctx)) goto err;
        if (!EC_POINT_get_affine_coordinates_GFp(eckey->group, point, x, y,
		ctx)) goto err;
        if (!EC_GROUP_get_order(eckey->group, ord, ctx)) goto err;
B
Bodo Möller 已提交
245
        if ((ecdsa->r = BN_dup(x)) == NULL) goto err;
246 247
        if ((ecdsa->kinv = BN_mod_inverse(NULL, k, ord, ctx)) == NULL)
		goto err;
B
Bodo Möller 已提交
248
 
249
        if ((sig = ECDSA_do_sign(dgst, 20, eckey)) == NULL)
B
Bodo Möller 已提交
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
        {
                BIO_printf(bio_err,"ECDSA_do_sign() failed \n");
                goto err;
        }
 
        if (!BN_dec2bn(&r, r_in)) goto err;
        if (!BN_dec2bn(&s, s_in)) goto err;
        if (BN_cmp(sig->r,r) != 0 || BN_cmp(sig->s,s) != 0)
        {
                tmp_char = OPENSSL_malloc(128);
                if (tmp_char == NULL) goto err;
                tmp_char = BN_bn2dec(sig->r);
                BIO_printf(bio_err,"unexpected signature \n");
                BIO_printf(bio_err,"sig->r = %s\n",tmp_char);
                tmp_char = BN_bn2dec(sig->s);
                BIO_printf(bio_err,"sig->s = %s\n",tmp_char);
                goto err;
        }
268
	        ret = ECDSA_do_verify(dgst, 20, sig, eckey);
B
Bodo Möller 已提交
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
        if (ret != 1)
        {
                BIO_printf(bio_err,"ECDSA_do_verify : signature verification failed \n");
                goto err;
        }
 
        ret = 1;
err :   if (r)    BN_free(r);
        if (s)    BN_free(s);
        if (k)    BN_free(k);
        if (x)    BN_free(x);
        if (y)    BN_free(y);
	if (m)	  BN_free(m);
        if (ord)  BN_free(ord);
        if (sig)  ECDSA_SIG_free(sig);
        if (ctx)  BN_CTX_free(ctx);
        if (point) EC_POINT_free(point);
        if (tmp_char) OPENSSL_free(tmp_char);
        return(ret == 1);
}

290
int ecdsa_cmp(const EC_KEY *a, const EC_KEY *b)
B
Bodo Möller 已提交
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323
{
	int 	ret=1;
	BN_CTX	*ctx=NULL;
	BIGNUM	*tmp_a1=NULL, *tmp_a2=NULL, *tmp_a3=NULL;
	BIGNUM	*tmp_b1=NULL, *tmp_b2=NULL, *tmp_b3=NULL;

	if ((ctx = BN_CTX_new()) == NULL) return 1;
	if ((tmp_a1 = BN_new()) == NULL || (tmp_a2 = BN_new()) == NULL || (tmp_a3 = BN_new()) == NULL) goto err;
	if ((tmp_b1 = BN_new()) == NULL || (tmp_b2 = BN_new()) == NULL || (tmp_b3 = BN_new()) == NULL) goto err;

	if (a->pub_key && b->pub_key)
		if (EC_POINT_cmp(a->group, a->pub_key, b->pub_key, ctx) != 0) goto err;
	if (a->priv_key && b->priv_key)
		if (BN_cmp(a->priv_key, b->priv_key) != 0) goto err;
	if (!EC_GROUP_get_curve_GFp(a->group, tmp_a1, tmp_a2, tmp_a3, ctx)) goto err;
	if (!EC_GROUP_get_curve_GFp(a->group, tmp_b1, tmp_b2, tmp_b3, ctx)) goto err;
	if (BN_cmp(tmp_a1, tmp_b1) != 0) goto err;
	if (BN_cmp(tmp_a2, tmp_b2) != 0) goto err;
	if (BN_cmp(tmp_a3, tmp_b3) != 0) goto err;

	ret = 0;
err:	if (tmp_a1) BN_free(tmp_a1);
	if (tmp_a2) BN_free(tmp_a2);
	if (tmp_a3) BN_free(tmp_a3);
	if (tmp_b1) BN_free(tmp_b1);
	if (tmp_b2) BN_free(tmp_b2);
	if (tmp_b3) BN_free(tmp_b3);
	if (ctx) BN_CTX_free(ctx);
	return(ret);
}

int main(void)
{
324
	EC_KEY	 	*ecdsa=NULL, *ret_ecdsa=NULL;
B
Bodo Möller 已提交
325 326 327 328 329 330 331
	BIGNUM	 	*d=NULL;
	X509_PUBKEY 	*x509_pubkey=NULL;
	PKCS8_PRIV_KEY_INFO *pkcs8=NULL;
	EVP_PKEY 	*pkey=NULL, *ret_pkey=NULL;
	int 	 	dgst_len=0;
	unsigned char 	*dgst=NULL;
	int 	 	ret = 0, i=0;
332
	clock_t		tim;
B
Bodo Möller 已提交
333 334 335
	unsigned char 	*buffer=NULL;
	unsigned char   *pp;
	long		buf_len=0;
336
	double		tim_d;
B
Bodo Möller 已提交
337 338
	EVP_MD_CTX	*md_ctx=NULL;
	
339 340 341 342 343 344 345 346 347 348 349 350
	/* enable memory leak checking unless explicitly disabled */
	if (!((getenv("OPENSSL_DEBUG_MEMORY") != NULL) && (0 == strcmp(getenv("OPENSSL_DEBUG_MEMORY"), "off"))))
		{
		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 已提交
351

352
	ERR_load_crypto_strings();
B
Bodo Möller 已提交
353 354 355 356

	if (bio_err == NULL)
		bio_err=BIO_new_fp(stderr, BIO_NOCLOSE);

357
	RAND_seed(rnd_seed, sizeof(rnd_seed));
B
Bodo Möller 已提交
358

359
	if ((ecdsa = EC_KEY_new()) == NULL)   goto err;
B
Bodo Möller 已提交
360 361

	set_p192_param(ecdsa);
362
	EC_KEY_print(bio_err, ecdsa, 0);
B
Bodo Möller 已提交
363 364 365

	/* en- decode tests */

366
	/* i2d_ - d2i_ECParameters() */
B
Bodo Möller 已提交
367
	BIO_printf(bio_err, "\nTesting i2d_ - d2i_ECDSAParameters \n");
368
	buf_len = i2d_ECParameters(ecdsa, NULL);
B
Bodo Möller 已提交
369 370
	if (!buf_len || (buffer = OPENSSL_malloc(buf_len)) == NULL) goto err;
	pp = buffer;
371
	if (!i2d_ECParameters(ecdsa, &pp)) goto err;
B
Bodo Möller 已提交
372
	pp = buffer;
373
	if ((ret_ecdsa = d2i_ECParameters(&ret_ecdsa, (const unsigned char **)&pp, 
B
Bodo Möller 已提交
374
			buf_len)) == NULL) goto err;
375
	ECParameters_print(bio_err, ret_ecdsa);
B
Bodo Möller 已提交
376 377 378
	if (ecdsa_cmp(ecdsa, ret_ecdsa)) goto err;
	OPENSSL_free(buffer);
	buffer = NULL;
379
	EC_KEY_free(ret_ecdsa);
B
Bodo Möller 已提交
380 381
	ret_ecdsa = NULL;

382
	/* i2d_ - d2i_ECPrivateKey() */
B
Bodo Möller 已提交
383
	BIO_printf(bio_err, "\nTesting i2d_ - d2i_ECDSAPrivateKey \n");
384
	buf_len = i2d_ECPrivateKey(ecdsa, NULL);
B
Bodo Möller 已提交
385 386
	if (!buf_len || (buffer = OPENSSL_malloc(buf_len)) == NULL) goto err;
	pp = buffer;
387
	if (!i2d_ECPrivateKey(ecdsa, &pp)) goto err;
B
Bodo Möller 已提交
388
	pp = buffer;
389
	if ((ret_ecdsa = d2i_ECPrivateKey(&ret_ecdsa, (const unsigned char**)&pp, 
B
Bodo Möller 已提交
390
			buf_len)) == NULL) goto err;
391
	EC_KEY_print(bio_err, ret_ecdsa, 0);
B
Bodo Möller 已提交
392
	if (ecdsa_cmp(ecdsa, ret_ecdsa)) goto err;
393
	EC_KEY_free(ret_ecdsa);
B
Bodo Möller 已提交
394 395 396 397 398 399 400 401
	ret_ecdsa = NULL;
	OPENSSL_free(buffer);
	buffer = NULL;

	/* X509_PUBKEY_set() &  X509_PUBKEY_get() */	

	BIO_printf(bio_err, "\nTesting X509_PUBKEY_{get,set}            : ");
	if ((pkey = EVP_PKEY_new()) == NULL) goto err;
402
	EVP_PKEY_assign_EC_KEY(pkey, ecdsa);
B
Bodo Möller 已提交
403 404 405 406
	if ((x509_pubkey = X509_PUBKEY_new()) == NULL) goto err;
	if (!X509_PUBKEY_set(&x509_pubkey, pkey)) goto err;

	if ((ret_pkey = X509_PUBKEY_get(x509_pubkey)) == NULL) goto err;
407
	ret_ecdsa = EVP_PKEY_get1_EC_KEY(ret_pkey);
B
Bodo Möller 已提交
408 409 410 411 412 413 414 415 416 417 418
	EVP_PKEY_free(ret_pkey);
	ret_pkey = NULL;

	if (ecdsa_cmp(ecdsa, ret_ecdsa)) 
	{
		BIO_printf(bio_err, "TEST FAILED \n");
		goto err;
	}
	else BIO_printf(bio_err, "TEST OK \n");
	X509_PUBKEY_free(x509_pubkey);
	x509_pubkey = NULL;
419
	EC_KEY_free(ret_ecdsa);
B
Bodo Möller 已提交
420 421 422 423 424 425 426
	ret_ecdsa = NULL;

	/* Testing PKCS8_PRIV_KEY_INFO <-> EVP_PKEY */
	BIO_printf(bio_err, "Testing PKCS8_PRIV_KEY_INFO <-> EVP_PKEY : \n");
	BIO_printf(bio_err, "PKCS8_OK              : ");
	if ((pkcs8 = EVP_PKEY2PKCS8_broken(pkey, PKCS8_OK)) == NULL) goto err;
	if ((ret_pkey = EVP_PKCS82PKEY(pkcs8)) == NULL) goto err;
427
	ret_ecdsa = EVP_PKEY_get1_EC_KEY(ret_pkey);
B
Bodo Möller 已提交
428 429 430 431 432 433 434 435
	if (ecdsa_cmp(ecdsa, ret_ecdsa))
	{
		BIO_printf(bio_err, "TEST FAILED \n");
		goto err;
	}
	else BIO_printf(bio_err, "TEST OK \n");
	EVP_PKEY_free(ret_pkey);
	ret_pkey = NULL;
436
	EC_KEY_free(ret_ecdsa);
B
Bodo Möller 已提交
437 438 439 440 441
	ret_ecdsa = NULL;
	PKCS8_PRIV_KEY_INFO_free(pkcs8);
	BIO_printf(bio_err, "PKCS8_NO_OCTET        : ");
        if ((pkcs8 = EVP_PKEY2PKCS8_broken(pkey, PKCS8_NO_OCTET)) == NULL) goto err;
        if ((ret_pkey = EVP_PKCS82PKEY(pkcs8)) == NULL) goto err;
442
        ret_ecdsa = EVP_PKEY_get1_EC_KEY(ret_pkey);
B
Bodo Möller 已提交
443 444 445 446 447 448 449 450
        if (ecdsa_cmp(ecdsa, ret_ecdsa))
        {
                BIO_printf(bio_err, "TEST FAILED \n");
                goto err;
        }
        else BIO_printf(bio_err, "TEST OK \n");
        EVP_PKEY_free(ret_pkey);
        ret_pkey = NULL;
451
        EC_KEY_free(ret_ecdsa);
B
Bodo Möller 已提交
452 453 454 455 456
        ret_ecdsa = NULL;
	PKCS8_PRIV_KEY_INFO_free(pkcs8);
	BIO_printf(bio_err, "PKCS8_EMBEDDED_PARAM  : ");
        if ((pkcs8 = EVP_PKEY2PKCS8_broken(pkey, PKCS8_EMBEDDED_PARAM)) == NULL) goto err;
        if ((ret_pkey = EVP_PKCS82PKEY(pkcs8)) == NULL) goto err;
457
        ret_ecdsa = EVP_PKEY_get1_EC_KEY(ret_pkey);
B
Bodo Möller 已提交
458 459 460 461 462 463 464 465
        if (ecdsa_cmp(ecdsa, ret_ecdsa))
        {
                BIO_printf(bio_err, "TEST FAILED \n");
                goto err;
        }
        else BIO_printf(bio_err, "TEST OK \n");
        EVP_PKEY_free(ret_pkey);
        ret_pkey = NULL;
466
        EC_KEY_free(ret_ecdsa);
B
Bodo Möller 已提交
467 468 469 470 471
        ret_ecdsa = NULL;
	PKCS8_PRIV_KEY_INFO_free(pkcs8);
        BIO_printf(bio_err, "PKCS8_NS_DB           : ");
        if ((pkcs8 = EVP_PKEY2PKCS8_broken(pkey, PKCS8_NS_DB)) == NULL) goto err;
        if ((ret_pkey = EVP_PKCS82PKEY(pkcs8)) == NULL) goto err;
472
        ret_ecdsa = EVP_PKEY_get1_EC_KEY(ret_pkey);
B
Bodo Möller 已提交
473 474 475 476 477 478 479 480
        if (ecdsa_cmp(ecdsa, ret_ecdsa))
        {
                BIO_printf(bio_err, "TEST FAILED \n");
                goto err;
        }
        else BIO_printf(bio_err, "TEST OK \n");
        EVP_PKEY_free(ret_pkey);
        ret_pkey = NULL;
481
        EC_KEY_free(ret_ecdsa);
B
Bodo Möller 已提交
482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499
        ret_ecdsa = NULL;
	EVP_PKEY_free(pkey);
	pkey  = NULL;
	ecdsa = NULL;
	PKCS8_PRIV_KEY_INFO_free(pkcs8);
	pkcs8 = NULL;

	/* sign and verify tests */
	if ((d = BN_new()) == NULL) goto err;
 
        if (!BN_dec2bn(&d, "968236873715988614170569073515315707566766479517")) goto err;
        dgst_len = BN_num_bytes(d);
	if ((dgst = OPENSSL_malloc(dgst_len)) == NULL) goto err;
        if (!BN_bn2bin(d, dgst)) goto err;

        BIO_printf(bio_err, "Performing tests based on examples H.3.1 and H.3.2 of X9.62 \n");
 
        BIO_printf(bio_err, "PRIME_192_V1 : ");
500
	if ((ecdsa = EC_KEY_new()) == NULL) goto err;
B
Bodo Möller 已提交
501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517
        if (!set_p192_param(ecdsa)) goto err;
        if (!test_x962_sig_vrf(ecdsa, dgst, "6140507067065001063065065565667405560006161556565665656654",
                               "3342403536405981729393488334694600415596881826869351677613",
                               "5735822328888155254683894997897571951568553642892029982342"))
                goto err;
        else
                BIO_printf(bio_err, "OK\n");
        BIO_printf(bio_err, "PRIME_239_V1 : ");
        if (!set_p239_param(ecdsa))
                goto err;
        if (!test_x962_sig_vrf(ecdsa, dgst, "700000017569056646655505781757157107570501575775705779575555657156756655",
                               "308636143175167811492622547300668018854959378758531778147462058306432176",
                               "323813553209797357708078776831250505931891051755007842781978505179448783"))
                goto err;
        else
                BIO_printf(bio_err, "OK\n");

518
	EC_KEY_free(ecdsa);
B
Bodo Möller 已提交
519 520 521 522 523 524 525 526 527 528 529
	ecdsa = NULL;
	OPENSSL_free(dgst);
	dgst = NULL;


	/* NIST PRIME CURVES TESTS */
	/* EC_GROUP_NIST_PRIME_192 */
	for (i=0; i<ECDSA_NIST_TESTS; i++)
		if (!RAND_bytes(digest[i], 20)) goto err;	

 	BIO_printf(bio_err, "\nTesting sign & verify with NIST Prime-Curve P-192 : \n");
530 531 532 533 534
	EC_KEY_free(ecdsa);
	if ((ecdsa = EC_KEY_new()) == NULL) goto err;
	if ((ecdsa->group = EC_GROUP_new_by_name(EC_GROUP_NIST_PRIME_192)) 
		== NULL) goto err;
	if (!EC_KEY_generate_key(ecdsa)) goto err;
535
        tim = clock();
B
Bodo Möller 已提交
536 537
        for (i=0; i<ECDSA_NIST_TESTS; i++)
                if ((signatures[i] = ECDSA_do_sign(digest[i], 20, ecdsa)) == NULL) goto err;
538 539
        tim = clock() - tim;
	tim_d = (double)tim / CLOCKS_PER_SEC;
B
Bodo Möller 已提交
540
        BIO_printf(bio_err, "%d x ECDSA_do_sign()   in %.2f"UNIT" => average time for ECDSA_do_sign()   %.4f"UNIT"\n"
541 542
		, ECDSA_NIST_TESTS, tim_d, tim_d / ECDSA_NIST_TESTS);
	tim = clock();
B
Bodo Möller 已提交
543 544
	for (i=0; i<ECDSA_NIST_TESTS; i++)
		if (!ECDSA_do_verify(digest[i], 20, signatures[i], ecdsa)) goto err;
545 546
	tim = clock() - tim;
	tim_d = (double)tim / CLOCKS_PER_SEC;
B
Bodo Möller 已提交
547
	BIO_printf(bio_err, "%d x ECDSA_do_verify() in %.2f"UNIT" => average time for ECDSA_do_verify() %.4f"UNIT"\n"
548
                , ECDSA_NIST_TESTS, tim_d, tim_d/ECDSA_NIST_TESTS);
B
Bodo Möller 已提交
549 550 551 552 553 554 555 556
	for (i=0; i<ECDSA_NIST_TESTS; i++)
	{
		ECDSA_SIG_free(signatures[i]);
		signatures[i] = NULL;
	}

	/* EC_GROUP_NIST_PRIME_224 */
	BIO_printf(bio_err, "Testing sign & verify with NIST Prime-Curve P-224 : \n");
557 558
        EC_KEY_free(ecdsa);
        if ((ecdsa = EC_KEY_new()) == NULL) goto err;
559
        if ((ecdsa->group = EC_GROUP_new_by_name(EC_GROUP_NIST_PRIME_224)) == NULL) goto err;
560
        if (!EC_KEY_generate_key(ecdsa)) goto err;
561
        tim = clock();
B
Bodo Möller 已提交
562 563
        for (i=0; i<ECDSA_NIST_TESTS; i++)
                if ((signatures[i] = ECDSA_do_sign(digest[i], 20, ecdsa)) == NULL) goto err;
564 565
        tim = clock() - tim;
        tim_d = (double)tim / CLOCKS_PER_SEC;
B
Bodo Möller 已提交
566
        BIO_printf(bio_err, "%d x ECDSA_do_sign()   in %.2f"UNIT" => average time for ECDSA_do_sign()   %.4f"UNIT"\n"
567 568
                , ECDSA_NIST_TESTS, tim_d, tim_d / ECDSA_NIST_TESTS);
        tim = clock();
B
Bodo Möller 已提交
569 570
        for (i=0; i<ECDSA_NIST_TESTS; i++)
                if (!ECDSA_do_verify(digest[i], 20, signatures[i], ecdsa)) goto err;
571 572
        tim = clock() - tim;
        tim_d = (double)tim / CLOCKS_PER_SEC;
B
Bodo Möller 已提交
573
        BIO_printf(bio_err, "%d x ECDSA_do_verify() in %.2f"UNIT" => average time for ECDSA_do_verify() %.4f"UNIT"\n"
574
                , ECDSA_NIST_TESTS, tim_d, tim_d/ECDSA_NIST_TESTS);
B
Bodo Möller 已提交
575 576 577 578 579 580 581 582
	for (i=0; i<ECDSA_NIST_TESTS; i++)
	{
		ECDSA_SIG_free(signatures[i]);
		signatures[i] = NULL;
	}

	/* EC_GROUP_NIST_PRIME_256 */
        BIO_printf(bio_err, "Testing sign & verify with NIST Prime-Curve P-256 : \n");
583 584
        EC_KEY_free(ecdsa);
        if ((ecdsa = EC_KEY_new()) == NULL) goto err;
585
        if ((ecdsa->group = EC_GROUP_new_by_name(EC_GROUP_NIST_PRIME_256)) == NULL) goto err;
586
        if (!EC_KEY_generate_key(ecdsa)) goto err;
587
        tim = clock();
B
Bodo Möller 已提交
588 589
        for (i=0; i<ECDSA_NIST_TESTS; i++)
                if ((signatures[i] = ECDSA_do_sign(digest[i], 20, ecdsa)) == NULL) goto err;
590 591
        tim = clock() - tim;
        tim_d = (double)tim / CLOCKS_PER_SEC;
B
Bodo Möller 已提交
592
        BIO_printf(bio_err, "%d x ECDSA_do_sign()   in %.2f"UNIT" => average time for ECDSA_do_sign()   %.4f"UNIT"\n"
593 594
                , ECDSA_NIST_TESTS, tim_d, tim_d / ECDSA_NIST_TESTS);
        tim = clock();
B
Bodo Möller 已提交
595 596
        for (i=0; i<ECDSA_NIST_TESTS; i++)
                if (!ECDSA_do_verify(digest[i], 20, signatures[i], ecdsa)) goto err;
597 598
        tim = clock() - tim;
        tim_d = (double)tim / CLOCKS_PER_SEC;
B
Bodo Möller 已提交
599
        BIO_printf(bio_err, "%d x ECDSA_do_verify() in %.2f"UNIT" => average time for ECDSA_do_verify() %.4f"UNIT"\n"
600
                , ECDSA_NIST_TESTS, tim_d, tim_d/ECDSA_NIST_TESTS);
B
Bodo Möller 已提交
601 602 603 604 605 606 607 608
	for (i=0; i<ECDSA_NIST_TESTS; i++)
	{
		ECDSA_SIG_free(signatures[i]);
		signatures[i] = NULL;
	}

	/* EC_GROUP_NIST_PRIME_384 */
        BIO_printf(bio_err, "Testing sign & verify with NIST Prime-Curve P-384 : \n");
609 610
        EC_KEY_free(ecdsa);
        if ((ecdsa = EC_KEY_new()) == NULL) goto err;
611
        if ((ecdsa->group = EC_GROUP_new_by_name(EC_GROUP_NIST_PRIME_384)) == NULL) goto err;
612
        if (!EC_KEY_generate_key(ecdsa)) goto err;
613
        tim = clock();
B
Bodo Möller 已提交
614 615
        for (i=0; i<ECDSA_NIST_TESTS; i++)
                if ((signatures[i] = ECDSA_do_sign(digest[i], 20, ecdsa)) == NULL) goto err;
616 617
        tim = clock() - tim;
        tim_d = (double)tim / CLOCKS_PER_SEC;
B
Bodo Möller 已提交
618
        BIO_printf(bio_err, "%d x ECDSA_do_sign()   in %.2f"UNIT" => average time for ECDSA_do_sign()   %.4f"UNIT"\n"
619 620
                , ECDSA_NIST_TESTS, tim_d, tim_d / ECDSA_NIST_TESTS);
        tim = clock();
B
Bodo Möller 已提交
621 622
        for (i=0; i<ECDSA_NIST_TESTS; i++)
                if (!ECDSA_do_verify(digest[i], 20, signatures[i], ecdsa)) goto err;
623 624
        tim = clock() - tim;
        tim_d = (double)tim / CLOCKS_PER_SEC;
B
Bodo Möller 已提交
625
        BIO_printf(bio_err, "%d x ECDSA_do_verify() in %.2f"UNIT" => average time for ECDSA_do_verify() %.4f"UNIT"\n"
626
                , ECDSA_NIST_TESTS, tim_d, tim_d/ECDSA_NIST_TESTS);
B
Bodo Möller 已提交
627 628 629 630 631 632 633 634
	for (i=0; i<ECDSA_NIST_TESTS; i++)
	{
		ECDSA_SIG_free(signatures[i]);
		signatures[i] = NULL;
	}

	/* EC_GROUP_NIST_PRIME_521 */
        BIO_printf(bio_err, "Testing sign & verify with NIST Prime-Curve P-521 : \n");
635 636
        EC_KEY_free(ecdsa);
        if ((ecdsa = EC_KEY_new()) == NULL) goto err;
637
        if ((ecdsa->group = EC_GROUP_new_by_name(EC_GROUP_NIST_PRIME_521)) == NULL) goto err;
638
        if (!EC_KEY_generate_key(ecdsa)) goto err;
639
        tim = clock();
B
Bodo Möller 已提交
640 641
        for (i=0; i<ECDSA_NIST_TESTS; i++)
                if ((signatures[i] = ECDSA_do_sign(digest[i], 20, ecdsa)) == NULL) goto err;
642 643
        tim = clock() - tim;
        tim_d = (double)tim / CLOCKS_PER_SEC;
B
Bodo Möller 已提交
644
        BIO_printf(bio_err, "%d x ECDSA_do_sign()   in %.2f"UNIT" => average time for ECDSA_do_sign()   %.4f"UNIT"\n"
645 646
                , ECDSA_NIST_TESTS, tim_d, tim_d / ECDSA_NIST_TESTS);
        tim = clock();
B
Bodo Möller 已提交
647 648
        for (i=0; i<ECDSA_NIST_TESTS; i++)
                if (!ECDSA_do_verify(digest[i], 20, signatures[i], ecdsa)) goto err;
649 650
        tim = clock() - tim;
        tim_d = (double)tim / CLOCKS_PER_SEC;
B
Bodo Möller 已提交
651
        BIO_printf(bio_err, "%d x ECDSA_do_verify() in %.2f"UNIT" => average time for ECDSA_do_verify() %.4f"UNIT"\n"
652
                , ECDSA_NIST_TESTS, tim_d, tim_d/ECDSA_NIST_TESTS);
653
	EC_KEY_free(ecdsa);
B
Bodo Möller 已提交
654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673
	ecdsa = NULL;
	for (i=0; i<ECDSA_NIST_TESTS; i++)
	{
		ECDSA_SIG_free(signatures[i]);
		signatures[i] = NULL;
	}

	OPENSSL_free(buffer);
	buffer = NULL;
	EVP_PKEY_free(pkey);
	pkey = NULL;
	ecdsa = NULL;
	
	ret = 1;
err:	if (!ret) 	
		BIO_printf(bio_err, "TEST FAILED \n");
	else 
		BIO_printf(bio_err, "TEST PASSED \n");
	if (!ret)
		ERR_print_errors(bio_err);
674
	if (ecdsa)	EC_KEY_free(ecdsa);
B
Bodo Möller 已提交
675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690
	if (d)		BN_free(d);
	if (dgst)	OPENSSL_free(dgst);
	if (md_ctx)	EVP_MD_CTX_destroy(md_ctx);
	CRYPTO_cleanup_all_ex_data();
	ERR_remove_state(0);
	ERR_free_strings();
	CRYPTO_mem_leaks(bio_err);
	if (bio_err != NULL)
	{
		BIO_free(bio_err);
		bio_err = NULL;
	}
	return(0);
}	

#endif