bntest.c 24.6 KB
Newer Older
1
/* crypto/bn/bntest.c */
2
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
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
 * All rights reserved.
 *
 * This package is an SSL implementation written
 * by Eric Young (eay@cryptsoft.com).
 * The implementation was written so as to conform with Netscapes SSL.
 * 
 * This library is free for commercial and non-commercial use as long as
 * the following conditions are aheared to.  The following conditions
 * apply to all code found in this distribution, be it the RC4, RSA,
 * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
 * included with this distribution is covered by the same copyright terms
 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
 * 
 * Copyright remains Eric Young's, and as such any Copyright notices in
 * the code are not to be removed.
 * If this package is used in a product, Eric Young should be given attribution
 * as the author of the parts of the library used.
 * This can be in the form of a textual message at program startup or
 * in documentation (online or textual) provided with the package.
 * 
 * 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 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 acknowledgement:
 *    "This product includes cryptographic software written by
 *     Eric Young (eay@cryptsoft.com)"
 *    The word 'cryptographic' can be left out if the rouines from the library
 *    being used are not cryptographic related :-).
 * 4. If you include any Windows specific code (or a derivative thereof) from 
 *    the apps directory (application code) you must include an acknowledgement:
 *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
 * 
 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
 * ANY EXPRESS 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 AUTHOR OR 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.
 * 
 * The licence and distribution terms for any publically available version or
 * derivative of this code cannot be changed.  i.e. this code cannot simply be
 * copied and put under another distribution licence
 * [including the GNU Public Licence.]
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
62

63
#include "openssl/e_os.h"
64

65 66 67 68 69
#include <openssl/bio.h>
#include <openssl/bn.h>
#include <openssl/rand.h>
#include <openssl/x509.h>
#include <openssl/err.h>
70

71 72 73 74
#ifdef WINDOWS
#include "../bio/bss_file.c"
#endif

75 76 77
const int num0 = 100; /* number of tests */
const int num1 = 50;  /* additional tests for some functions */
const int num2 = 5;   /* number of tests for slow functions */
78

79 80 81
int test_add(BIO *bp);
int test_sub(BIO *bp);
int test_lshift1(BIO *bp);
B
Ben Laurie 已提交
82
int test_lshift(BIO *bp,BN_CTX *ctx,BIGNUM *a_);
83
int test_rshift1(BIO *bp);
B
Ben Laurie 已提交
84
int test_rshift(BIO *bp,BN_CTX *ctx);
85 86 87 88 89 90 91 92
int test_div(BIO *bp,BN_CTX *ctx);
int test_div_recp(BIO *bp,BN_CTX *ctx);
int test_mul(BIO *bp);
int test_sqr(BIO *bp,BN_CTX *ctx);
int test_mont(BIO *bp,BN_CTX *ctx);
int test_mod(BIO *bp,BN_CTX *ctx);
int test_mod_mul(BIO *bp,BN_CTX *ctx);
int test_mod_exp(BIO *bp,BN_CTX *ctx);
93
int test_exp(BIO *bp,BN_CTX *ctx);
94
int test_kron(BIO *bp,BN_CTX *ctx);
B
BN_sqrt  
Bodo Möller 已提交
95
int test_sqrt(BIO *bp,BN_CTX *ctx);
96 97 98
int rand_neg(void);
static int results=0;

99
#ifdef NO_STDIO
100
#define APPS_WIN16
101
#include "bss_file.c"
102 103
#endif

104
static unsigned char lst[]="\xC6\x4F\x43\x04\x2A\xEA\xCA\x6E\x58\x36\x80\x5B\xE8\xC9"
B
Ben Laurie 已提交
105 106
"\x9B\x04\x5D\x48\x36\xC2\xFD\x16\xC9\x64\xF0";

107 108
static const char rnd_seed[] = "string to make the random number generator think it has entropy";

109
static void message(BIO *out, char *m)
110 111
	{
	fprintf(stderr, "test %s\n", m);
U
Ulf Möller 已提交
112
#if defined(linux) || defined(__FreeBSD__) /* can we use GNU bc features? */
113 114 115 116 117 118
	BIO_puts(out, "print \"test ");
	BIO_puts(out, m);
	BIO_puts(out, "\\n\"\n");
#endif
	}

U
Ulf Möller 已提交
119
int main(int argc, char *argv[])
120 121 122 123 124
	{
	BN_CTX *ctx;
	BIO *out;
	char *outfile=NULL;

125 126
	results = 0;

127 128 129 130
	RAND_seed(rnd_seed, sizeof rnd_seed); /* or BN_rand may fail, and we don't
	                                       * even check its return value
	                                       * (which we should) */

131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
	argc--;
	argv++;
	while (argc >= 1)
		{
		if (strcmp(*argv,"-results") == 0)
			results=1;
		else if (strcmp(*argv,"-out") == 0)
			{
			if (--argc < 1) break;
			outfile= *(++argv);
			}
		argc--;
		argv++;
		}


	ctx=BN_CTX_new();
	if (ctx == NULL) exit(1);

	out=BIO_new(BIO_s_file());
	if (out == NULL) exit(1);
	if (outfile == NULL)
		{
		BIO_set_fp(out,stdout,BIO_NOCLOSE);
		}
	else
		{
		if (!BIO_write_filename(out,outfile))
			{
			perror(outfile);
			exit(1);
			}
		}

	if (!results)
		BIO_puts(out,"obase=16\nibase=16\n");

168
#if 0
169
	message(out,"BN_add");
170
	if (!test_add(out)) goto err;
171
	BIO_flush(out);
172

173
	message(out,"BN_sub");
174
	if (!test_sub(out)) goto err;
175
	BIO_flush(out);
176

177
	message(out,"BN_lshift1");
178
	if (!test_lshift1(out)) goto err;
179
	BIO_flush(out);
180

181
	message(out,"BN_lshift (fixed)");
182
	if (!test_lshift(out,ctx,BN_bin2bn(lst,sizeof(lst)-1,NULL)))
B
Ben Laurie 已提交
183
	    goto err;
184
	BIO_flush(out);
B
Ben Laurie 已提交
185

186
	message(out,"BN_lshift");
B
Ben Laurie 已提交
187
	if (!test_lshift(out,ctx,NULL)) goto err;
188
	BIO_flush(out);
189

190
	message(out,"BN_rshift1");
191
	if (!test_rshift1(out)) goto err;
192
	BIO_flush(out);
193

194
	message(out,"BN_rshift");
B
Ben Laurie 已提交
195
	if (!test_rshift(out,ctx)) goto err;
196
	BIO_flush(out);
197

198
	message(out,"BN_sqr");
199
	if (!test_sqr(out,ctx)) goto err;
200
	BIO_flush(out);
201

202
	message(out,"BN_mul");
203
	if (!test_mul(out)) goto err;
204
	BIO_flush(out);
205

206
	message(out,"BN_div");
207
	if (!test_div(out,ctx)) goto err;
208
	BIO_flush(out);
209

210
	message(out,"BN_div_recp");
211
	if (!test_div_recp(out,ctx)) goto err;
212
	BIO_flush(out);
213

214
	message(out,"BN_mod");
215
	if (!test_mod(out,ctx)) goto err;
216
	BIO_flush(out);
217

218
	message(out,"BN_mod_mul");
219
	if (!test_mod_mul(out,ctx)) goto err;
220
	BIO_flush(out);
221

222
	message(out,"BN_mont");
223
	if (!test_mont(out,ctx)) goto err;
224
	BIO_flush(out);
B
Bodo Möller 已提交
225

226
	message(out,"BN_mod_exp");
227
	if (!test_mod_exp(out,ctx)) goto err;
228
	BIO_flush(out);
229

230
	message(out,"BN_exp");
231
	if (!test_exp(out,ctx)) goto err;
232
	BIO_flush(out);
233
#endif
234

235 236 237 238
	message(out,"BN_kronecker");
	if (!test_kron(out,ctx)) goto err;
	BIO_flush(out);

B
BN_sqrt  
Bodo Möller 已提交
239 240 241 242
	message(out,"BN_mod_sqrt");
	if (!test_sqrt(out,ctx)) goto err;
	BIO_flush(out);

243 244 245
	BN_CTX_free(ctx);
	BIO_free(out);

246 247 248
/**/
	exit(0);
err:
B
Bodo Möller 已提交
249 250
	BIO_puts(out,"1\n"); /* make sure the Perl script fed by bc notices
	                      * the failure, see test_bn in test/Makefile.ssl*/
251
	BIO_flush(out);
252
	ERR_load_crypto_strings();
253
	ERR_print_errors_fp(stderr);
254 255 256 257
	exit(1);
	return(1);
	}

U
Ulf Möller 已提交
258
int test_add(BIO *bp)
259
	{
260
	BIGNUM a,b,c;
261 262 263
	int i;
	int j;

264 265 266
	BN_init(&a);
	BN_init(&b);
	BN_init(&c);
267

268
	BN_rand(&a,512,0,0);
269
	for (i=0; i<num0; i++)
270
		{
271 272 273
		BN_rand(&b,450+i,0,0);
		a.neg=rand_neg();
		b.neg=rand_neg();
274 275
		if (bp == NULL)
			for (j=0; j<10000; j++)
276 277
				BN_add(&c,&a,&b);
		BN_add(&c,&a,&b);
278 279 280 281
		if (bp != NULL)
			{
			if (!results)
				{
282
				BN_print(bp,&a);
283
				BIO_puts(bp," + ");
284
				BN_print(bp,&b);
285 286
				BIO_puts(bp," - ");
				}
287
			BN_print(bp,&c);
288 289
			BIO_puts(bp,"\n");
			}
B
Ben Laurie 已提交
290 291 292 293 294 295
		a.neg=!a.neg;
		b.neg=!b.neg;
		BN_add(&c,&c,&b);
		BN_add(&c,&c,&a);
		if(!BN_is_zero(&c))
		    {
296
		    fprintf(stderr,"Add test failed!\n");
B
Ben Laurie 已提交
297 298
		    return 0;
		    }
299
		}
300 301 302
	BN_free(&a);
	BN_free(&b);
	BN_free(&c);
303 304 305
	return(1);
	}

U
Ulf Möller 已提交
306
int test_sub(BIO *bp)
307
	{
308
	BIGNUM a,b,c;
309 310 311
	int i;
	int j;

312 313 314
	BN_init(&a);
	BN_init(&b);
	BN_init(&c);
315

316
	for (i=0; i<num0+num1; i++)
317
		{
318 319 320 321 322 323 324 325 326 327 328 329 330
		if (i < num1)
			{
			BN_rand(&a,512,0,0);
			BN_copy(&b,&a);
			if (BN_set_bit(&a,i)==0) return(0);
			BN_add_word(&b,i);
			}
		else
			{
			BN_rand(&b,400+i-num1,0,0);
			a.neg=rand_neg();
			b.neg=rand_neg();
			}
331 332
		if (bp == NULL)
			for (j=0; j<10000; j++)
333 334
				BN_sub(&c,&a,&b);
		BN_sub(&c,&a,&b);
335 336 337 338
		if (bp != NULL)
			{
			if (!results)
				{
339
				BN_print(bp,&a);
340
				BIO_puts(bp," - ");
341
				BN_print(bp,&b);
342 343
				BIO_puts(bp," - ");
				}
344
			BN_print(bp,&c);
345 346
			BIO_puts(bp,"\n");
			}
B
Ben Laurie 已提交
347 348 349 350
		BN_add(&c,&c,&b);
		BN_sub(&c,&c,&a);
		if(!BN_is_zero(&c))
		    {
351
		    fprintf(stderr,"Subtract test failed!\n");
B
Ben Laurie 已提交
352 353
		    return 0;
		    }
354
		}
355 356 357
	BN_free(&a);
	BN_free(&b);
	BN_free(&c);
358 359 360
	return(1);
	}

U
Ulf Möller 已提交
361
int test_div(BIO *bp, BN_CTX *ctx)
362
	{
B
Ben Laurie 已提交
363
	BIGNUM a,b,c,d,e;
364 365 366
	int i;
	int j;

367 368 369 370
	BN_init(&a);
	BN_init(&b);
	BN_init(&c);
	BN_init(&d);
B
Ben Laurie 已提交
371
	BN_init(&e);
372

373
	for (i=0; i<num0+num1; i++)
374
		{
375 376 377 378 379 380 381 382 383
		if (i < num1)
			{
			BN_rand(&a,400,0,0);
			BN_copy(&b,&a);
			BN_lshift(&a,&a,i);
			BN_add_word(&a,i);
			}
		else
			BN_rand(&b,50+3*(i-num1),0,0);
384 385
		a.neg=rand_neg();
		b.neg=rand_neg();
386 387
		if (bp == NULL)
			for (j=0; j<100; j++)
388 389
				BN_div(&d,&c,&a,&b,ctx);
		BN_div(&d,&c,&a,&b,ctx);
390 391 392 393
		if (bp != NULL)
			{
			if (!results)
				{
394
				BN_print(bp,&a);
395
				BIO_puts(bp," / ");
396
				BN_print(bp,&b);
397 398
				BIO_puts(bp," - ");
				}
399
			BN_print(bp,&d);
400 401 402 403
			BIO_puts(bp,"\n");

			if (!results)
				{
404
				BN_print(bp,&a);
405
				BIO_puts(bp," % ");
406
				BN_print(bp,&b);
407 408
				BIO_puts(bp," - ");
				}
409
			BN_print(bp,&c);
410 411
			BIO_puts(bp,"\n");
			}
B
Ben Laurie 已提交
412 413 414 415 416
		BN_mul(&e,&d,&b,ctx);
		BN_add(&d,&e,&c);
		BN_sub(&d,&d,&a);
		if(!BN_is_zero(&d))
		    {
417
		    fprintf(stderr,"Division test failed!\n");
B
Ben Laurie 已提交
418 419
		    return 0;
		    }
420
		}
421 422 423 424
	BN_free(&a);
	BN_free(&b);
	BN_free(&c);
	BN_free(&d);
B
Ben Laurie 已提交
425
	BN_free(&e);
426 427 428
	return(1);
	}

U
Ulf Möller 已提交
429
int test_div_recp(BIO *bp, BN_CTX *ctx)
430
	{
B
Ben Laurie 已提交
431
	BIGNUM a,b,c,d,e;
432 433 434 435 436 437 438 439 440
	BN_RECP_CTX recp;
	int i;
	int j;

	BN_RECP_CTX_init(&recp);
	BN_init(&a);
	BN_init(&b);
	BN_init(&c);
	BN_init(&d);
B
Ben Laurie 已提交
441
	BN_init(&e);
442

443
	for (i=0; i<num0+num1; i++)
444
		{
445 446 447 448 449 450 451 452 453
		if (i < num1)
			{
			BN_rand(&a,400,0,0);
			BN_copy(&b,&a);
			BN_lshift(&a,&a,i);
			BN_add_word(&a,i);
			}
		else
			BN_rand(&b,50+3*(i-num1),0,0);
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482
		a.neg=rand_neg();
		b.neg=rand_neg();
		BN_RECP_CTX_set(&recp,&b,ctx);
		if (bp == NULL)
			for (j=0; j<100; j++)
				BN_div_recp(&d,&c,&a,&recp,ctx);
		BN_div_recp(&d,&c,&a,&recp,ctx);
		if (bp != NULL)
			{
			if (!results)
				{
				BN_print(bp,&a);
				BIO_puts(bp," / ");
				BN_print(bp,&b);
				BIO_puts(bp," - ");
				}
			BN_print(bp,&d);
			BIO_puts(bp,"\n");

			if (!results)
				{
				BN_print(bp,&a);
				BIO_puts(bp," % ");
				BN_print(bp,&b);
				BIO_puts(bp," - ");
				}
			BN_print(bp,&c);
			BIO_puts(bp,"\n");
			}
B
Ben Laurie 已提交
483 484 485 486 487
		BN_mul(&e,&d,&b,ctx);
		BN_add(&d,&e,&c);
		BN_sub(&d,&d,&a);
		if(!BN_is_zero(&d))
		    {
488 489 490 491 492 493
		    fprintf(stderr,"Reciprocal division test failed!\n");
		    fprintf(stderr,"a=");
		    BN_print_fp(stderr,&a);
		    fprintf(stderr,"\nb=");
		    BN_print_fp(stderr,&b);
		    fprintf(stderr,"\n");
B
Ben Laurie 已提交
494 495
		    return 0;
		    }
496 497 498 499 500
		}
	BN_free(&a);
	BN_free(&b);
	BN_free(&c);
	BN_free(&d);
B
Ben Laurie 已提交
501
	BN_free(&e);
502
	BN_RECP_CTX_free(&recp);
503 504 505
	return(1);
	}

U
Ulf Möller 已提交
506
int test_mul(BIO *bp)
507
	{
B
Ben Laurie 已提交
508
	BIGNUM a,b,c,d,e;
509 510
	int i;
	int j;
511
	BN_CTX ctx;
512

513 514 515 516
	BN_CTX_init(&ctx);
	BN_init(&a);
	BN_init(&b);
	BN_init(&c);
B
Ben Laurie 已提交
517 518
	BN_init(&d);
	BN_init(&e);
519

520
	for (i=0; i<num0+num1; i++)
521
		{
522
		if (i <= num1)
523 524 525 526 527 528
			{
			BN_rand(&a,100,0,0);
			BN_rand(&b,100,0,0);
			}
		else
			BN_rand(&b,i-num1,0,0);
529 530
		a.neg=rand_neg();
		b.neg=rand_neg();
531 532
		if (bp == NULL)
			for (j=0; j<100; j++)
533 534
				BN_mul(&c,&a,&b,&ctx);
		BN_mul(&c,&a,&b,&ctx);
535 536 537 538
		if (bp != NULL)
			{
			if (!results)
				{
539
				BN_print(bp,&a);
540
				BIO_puts(bp," * ");
541
				BN_print(bp,&b);
542 543
				BIO_puts(bp," - ");
				}
544
			BN_print(bp,&c);
545 546
			BIO_puts(bp,"\n");
			}
B
Ben Laurie 已提交
547 548 549 550
		BN_div(&d,&e,&c,&a,&ctx);
		BN_sub(&d,&d,&b);
		if(!BN_is_zero(&d) || !BN_is_zero(&e))
		    {
551
		    fprintf(stderr,"Multiplication test failed!\n");
B
Ben Laurie 已提交
552 553
		    return 0;
		    }
554
		}
555 556 557
	BN_free(&a);
	BN_free(&b);
	BN_free(&c);
B
Ben Laurie 已提交
558 559
	BN_free(&d);
	BN_free(&e);
560
	BN_CTX_free(&ctx);
561 562 563
	return(1);
	}

U
Ulf Möller 已提交
564
int test_sqr(BIO *bp, BN_CTX *ctx)
565
	{
B
Ben Laurie 已提交
566
	BIGNUM a,c,d,e;
567 568 569
	int i;
	int j;

570 571
	BN_init(&a);
	BN_init(&c);
B
Ben Laurie 已提交
572 573
	BN_init(&d);
	BN_init(&e);
574

575
	for (i=0; i<num0; i++)
576
		{
577 578
		BN_rand(&a,40+i*10,0,0);
		a.neg=rand_neg();
579 580
		if (bp == NULL)
			for (j=0; j<100; j++)
581 582
				BN_sqr(&c,&a,ctx);
		BN_sqr(&c,&a,ctx);
583 584 585 586
		if (bp != NULL)
			{
			if (!results)
				{
587
				BN_print(bp,&a);
588
				BIO_puts(bp," * ");
589
				BN_print(bp,&a);
590 591
				BIO_puts(bp," - ");
				}
592
			BN_print(bp,&c);
593 594
			BIO_puts(bp,"\n");
			}
B
Ben Laurie 已提交
595 596 597 598
		BN_div(&d,&e,&c,&a,ctx);
		BN_sub(&d,&d,&a);
		if(!BN_is_zero(&d) || !BN_is_zero(&e))
		    {
599
		    fprintf(stderr,"Square test failed!\n");
B
Ben Laurie 已提交
600 601
		    return 0;
		    }
602
		}
603 604
	BN_free(&a);
	BN_free(&c);
B
Ben Laurie 已提交
605 606
	BN_free(&d);
	BN_free(&e);
607 608 609
	return(1);
	}

U
Ulf Möller 已提交
610
int test_mont(BIO *bp, BN_CTX *ctx)
611
	{
B
Ben Laurie 已提交
612
	BIGNUM a,b,c,d,A,B;
613
	BIGNUM n;
614 615 616 617
	int i;
	int j;
	BN_MONT_CTX *mont;

618 619 620
	BN_init(&a);
	BN_init(&b);
	BN_init(&c);
B
Ben Laurie 已提交
621
	BN_init(&d);
622 623 624
	BN_init(&A);
	BN_init(&B);
	BN_init(&n);
625 626 627

	mont=BN_MONT_CTX_new();

628 629
	BN_rand(&a,100,0,0); /**/
	BN_rand(&b,100,0,0); /**/
630
	for (i=0; i<num2; i++)
631
		{
632
		int bits = (200*(i+1))/num2;
B
Bodo Möller 已提交
633 634 635 636

		if (bits == 0)
			continue;
		BN_rand(&n,bits,0,1);
637
		BN_MONT_CTX_set(mont,&n,ctx);
638

639 640 641
		BN_nnmod(&a,&a,&n,ctx);
		BN_nnmod(&b,&b,&n,ctx);

642 643
		BN_to_montgomery(&A,&a,mont,ctx);
		BN_to_montgomery(&B,&b,mont,ctx);
644 645 646

		if (bp == NULL)
			for (j=0; j<100; j++)
647 648 649
				BN_mod_mul_montgomery(&c,&A,&B,mont,ctx);/**/
		BN_mod_mul_montgomery(&c,&A,&B,mont,ctx);/**/
		BN_from_montgomery(&A,&c,mont,ctx);/**/
650 651 652 653 654 655
		if (bp != NULL)
			{
			if (!results)
				{
#ifdef undef
fprintf(stderr,"%d * %d %% %d\n",
656 657
BN_num_bits(&a),
BN_num_bits(&b),
658 659
BN_num_bits(mont->N));
#endif
660
				BN_print(bp,&a);
661
				BIO_puts(bp," * ");
662
				BN_print(bp,&b);
663
				BIO_puts(bp," % ");
664
				BN_print(bp,&(mont->N));
665 666
				BIO_puts(bp," - ");
				}
667
			BN_print(bp,&A);
668 669
			BIO_puts(bp,"\n");
			}
B
Ben Laurie 已提交
670 671 672 673
		BN_mod_mul(&d,&a,&b,&n,ctx);
		BN_sub(&d,&d,&A);
		if(!BN_is_zero(&d))
		    {
674
		    fprintf(stderr,"Montgomery multiplication test failed!\n");
B
Ben Laurie 已提交
675 676
		    return 0;
		    }
677 678
		}
	BN_MONT_CTX_free(mont);
679 680 681
	BN_free(&a);
	BN_free(&b);
	BN_free(&c);
B
Ben Laurie 已提交
682 683 684 685
	BN_free(&d);
	BN_free(&A);
	BN_free(&B);
	BN_free(&n);
686 687 688
	return(1);
	}

U
Ulf Möller 已提交
689
int test_mod(BIO *bp, BN_CTX *ctx)
690
	{
B
Ben Laurie 已提交
691
	BIGNUM *a,*b,*c,*d,*e;
692 693 694 695 696 697
	int i;
	int j;

	a=BN_new();
	b=BN_new();
	c=BN_new();
B
Ben Laurie 已提交
698 699
	d=BN_new();
	e=BN_new();
700 701

	BN_rand(a,1024,0,0); /**/
702
	for (i=0; i<num0; i++)
703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722
		{
		BN_rand(b,450+i*10,0,0); /**/
		a->neg=rand_neg();
		b->neg=rand_neg();
		if (bp == NULL)
			for (j=0; j<100; j++)
				BN_mod(c,a,b,ctx);/**/
		BN_mod(c,a,b,ctx);/**/
		if (bp != NULL)
			{
			if (!results)
				{
				BN_print(bp,a);
				BIO_puts(bp," % ");
				BN_print(bp,b);
				BIO_puts(bp," - ");
				}
			BN_print(bp,c);
			BIO_puts(bp,"\n");
			}
B
Ben Laurie 已提交
723 724 725 726
		BN_div(d,e,a,b,ctx);
		BN_sub(e,e,c);
		if(!BN_is_zero(e))
		    {
727
		    fprintf(stderr,"Modulo test failed!\n");
B
Ben Laurie 已提交
728 729
		    return 0;
		    }
730 731 732 733
		}
	BN_free(a);
	BN_free(b);
	BN_free(c);
B
Ben Laurie 已提交
734 735
	BN_free(d);
	BN_free(e);
736 737 738
	return(1);
	}

U
Ulf Möller 已提交
739
int test_mod_mul(BIO *bp, BN_CTX *ctx)
740 741 742 743 744 745 746 747 748 749 750
	{
	BIGNUM *a,*b,*c,*d,*e;
	int i;

	a=BN_new();
	b=BN_new();
	c=BN_new();
	d=BN_new();
	e=BN_new();

	BN_rand(c,1024,0,0); /**/
751
	for (i=0; i<num0; i++)
752
		{
U
Ulf Möller 已提交
753 754
		BN_rand(a,475+i*10,0,0); /**/
		BN_rand(b,425+i*11,0,0); /**/
755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778
		a->neg=rand_neg();
		b->neg=rand_neg();
	/*	if (bp == NULL)
			for (j=0; j<100; j++)
				BN_mod_mul(d,a,b,c,ctx);*/ /**/

		if (!BN_mod_mul(e,a,b,c,ctx))
			{
			unsigned long l;

			while ((l=ERR_get_error()))
				fprintf(stderr,"ERROR:%s\n",
					ERR_error_string(l,NULL));
			exit(1);
			}
		if (bp != NULL)
			{
			if (!results)
				{
				BN_print(bp,a);
				BIO_puts(bp," * ");
				BN_print(bp,b);
				BIO_puts(bp," % ");
				BN_print(bp,c);
B
Bodo Möller 已提交
779 780 781 782 783 784 785 786 787 788
				if ((a->neg ^ b->neg) && !BN_is_zero(e))
					{
					/* If  (a*b) % c  is negative,  c  must be added
					 * in order to obtain the normalized remainder
					 * (new with OpenSSL 0.9.7, previous versions of
					 * BN_mod_mul could generate negative results)
					 */
					BIO_puts(bp," + ");
					BN_print(bp,c);
					}
789 790 791 792 793
				BIO_puts(bp," - ");
				}
			BN_print(bp,e);
			BIO_puts(bp,"\n");
			}
B
Ben Laurie 已提交
794 795 796 797 798
		BN_mul(d,a,b,ctx);
		BN_sub(d,d,e);
		BN_div(a,b,d,c,ctx);
		if(!BN_is_zero(b))
		    {
799
		    fprintf(stderr,"Modulo multiply test failed!\n");
800
		    ERR_print_errors_fp(stderr);
B
Ben Laurie 已提交
801 802
		    return 0;
		    }
803 804 805 806 807 808 809 810 811
		}
	BN_free(a);
	BN_free(b);
	BN_free(c);
	BN_free(d);
	BN_free(e);
	return(1);
	}

U
Ulf Möller 已提交
812
int test_mod_exp(BIO *bp, BN_CTX *ctx)
813 814 815 816 817 818 819 820 821 822 823
	{
	BIGNUM *a,*b,*c,*d,*e;
	int i;

	a=BN_new();
	b=BN_new();
	c=BN_new();
	d=BN_new();
	e=BN_new();

	BN_rand(c,30,0,1); /* must be odd for montgomery */
824
	for (i=0; i<num2; i++)
825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845
		{
		BN_rand(a,20+i*5,0,0); /**/
		BN_rand(b,2+i,0,0); /**/

		if (!BN_mod_exp(d,a,b,c,ctx))
			return(00);

		if (bp != NULL)
			{
			if (!results)
				{
				BN_print(bp,a);
				BIO_puts(bp," ^ ");
				BN_print(bp,b);
				BIO_puts(bp," % ");
				BN_print(bp,c);
				BIO_puts(bp," - ");
				}
			BN_print(bp,d);
			BIO_puts(bp,"\n");
			}
B
Ben Laurie 已提交
846 847 848 849 850
		BN_exp(e,a,b,ctx);
		BN_sub(e,e,d);
		BN_div(a,b,e,c,ctx);
		if(!BN_is_zero(b))
		    {
851
		    fprintf(stderr,"Modulo exponentiation test failed!\n");
B
Ben Laurie 已提交
852 853
		    return 0;
		    }
854 855 856 857 858 859 860 861 862
		}
	BN_free(a);
	BN_free(b);
	BN_free(c);
	BN_free(d);
	BN_free(e);
	return(1);
	}

U
Ulf Möller 已提交
863
int test_exp(BIO *bp, BN_CTX *ctx)
864
	{
B
Ben Laurie 已提交
865
	BIGNUM *a,*b,*d,*e,*one;
866 867 868 869 870 871
	int i;

	a=BN_new();
	b=BN_new();
	d=BN_new();
	e=BN_new();
B
Ben Laurie 已提交
872 873
	one=BN_new();
	BN_one(one);
874

875
	for (i=0; i<num2; i++)
876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894
		{
		BN_rand(a,20+i*5,0,0); /**/
		BN_rand(b,2+i,0,0); /**/

		if (!BN_exp(d,a,b,ctx))
			return(00);

		if (bp != NULL)
			{
			if (!results)
				{
				BN_print(bp,a);
				BIO_puts(bp," ^ ");
				BN_print(bp,b);
				BIO_puts(bp," - ");
				}
			BN_print(bp,d);
			BIO_puts(bp,"\n");
			}
B
Ben Laurie 已提交
895 896 897 898 899 900
		BN_one(e);
		for( ; !BN_is_zero(b) ; BN_sub(b,b,one))
		    BN_mul(e,e,a,ctx);
		BN_sub(e,e,d);
		if(!BN_is_zero(e))
		    {
901
		    fprintf(stderr,"Exponentiation test failed!\n");
B
Ben Laurie 已提交
902 903
		    return 0;
		    }
904 905 906 907 908
		}
	BN_free(a);
	BN_free(b);
	BN_free(d);
	BN_free(e);
B
Ben Laurie 已提交
909
	BN_free(one);
910 911 912
	return(1);
	}

B
Bodo Möller 已提交
913 914 915 916 917 918 919 920 921 922 923 924 925 926
static void genprime_cb(int p, int n, void *arg)
	{
	char c='*';

	if (p == 0) c='.';
	if (p == 1) c='+';
	if (p == 2) c='*';
	if (p == 3) c='\n';
	putc(c, stderr);
	fflush(stderr);
	(void)n;
	(void)arg;
	}

927 928
int test_kron(BIO *bp, BN_CTX *ctx)
	{
929
	BIGNUM *a,*b,*r,*t;
B
Bodo Möller 已提交
930 931 932 933 934 935 936
	int i;
	int legendre, kronecker;
	int ret = 0;

	a = BN_new();
	b = BN_new();
	r = BN_new();
937 938
	t = BN_new();
	if (a == NULL || b == NULL || r == NULL || t == NULL) goto err;
B
Bodo Möller 已提交
939
	
B
Bodo Möller 已提交
940 941 942 943 944 945 946 947 948
	/* We test BN_kronecker(a, b, ctx) just for  b  odd (Jacobi symbol).
	 * In this case we know that if  b  is prime, then BN_kronecker(a, b, ctx)
	 * is congruent to $a^{(b-1)/2}$, modulo $b$ (Legendre symbol).
	 * So we generate a random prime  b  and compare these values
	 * for a number of random  a's.  (That is, we run the Solovay-Strassen
	 * primality test to confirm that  b  is prime, except that we
	 * don't want to test whether  b  is prime but whether BN_kronecker
	 * works.) */

949
#if 0
B
Bodo Möller 已提交
950
	if (!BN_generate_prime(b, 512, 0, NULL, NULL, genprime_cb, NULL)) goto err;
951
#else
952
	if (!BN_set_word(b,65537)) goto err;
953
#endif
B
Bodo Möller 已提交
954
	putc('\n', stderr);
B
Bodo Möller 已提交
955

B
Bodo Möller 已提交
956 957
	for (i = 0; i < num0; i++)
		{
958
#if 0
B
Bodo Möller 已提交
959
		if (!BN_rand(a, 512, 0, 0)) goto err;
960
		a->neg = rand_neg();
961 962 963
#else
		if (!BN_bin2bn("\x01\xff\xff\xff\xff", 5, a)) goto err;
#endif
964

965 966 967 968 969
		/* t := (b-1)/2  (note that b is odd) */
		if (!BN_copy(t, b)) goto err;
		if (!BN_sub_word(t, 1)) goto err;
		if (!BN_rshift1(t, t)) goto err;
		/* r := a^t mod b */
970
#if 0
971
		if (!BN_mod_exp(r, a, t, b, ctx)) goto err;
B
Bodo Möller 已提交
972
#elif 0
973
		if (!BN_mod_exp_recp(r, a, t, b, ctx)) goto err;
B
Bodo Möller 已提交
974
#else
975
		if (!BN_mod_exp_simple(r, a, t, b, ctx)) goto err;
B
Bodo Möller 已提交
976
#endif
B
Bodo Möller 已提交
977 978 979

		if (BN_is_word(r, 1))
			legendre = 1;
980 981
		else if (BN_is_zero(r))
			legendre = 0;
B
Bodo Möller 已提交
982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005
		else
			{
			if (!BN_add_word(r, 1)) goto err;
			if (0 != BN_cmp(r, b))
				{
				fprintf(stderr, "Legendre symbol computation failed\n");
				goto err;
				}
			legendre = -1;
			}

		kronecker = BN_kronecker(a, b, ctx);
		if (kronecker < -1) goto err;
		
		if (legendre != kronecker)
			{
			fprintf(stderr, "legendre != kronecker; a = ");
			BN_print_fp(stderr, a);
			fprintf(stderr, ", a = ");
			BN_print_fp(stderr, b);
			fprintf(stderr, "\n");
			goto err;
			}

1006 1007
		putc('.', stderr);
		fflush(stderr);
B
Bodo Möller 已提交
1008 1009
		}

1010 1011
	putc('\n', stderr);
	fflush(stderr);
B
Bodo Möller 已提交
1012 1013 1014 1015 1016
	ret = 1;
 err:
	if (a != NULL) BN_free(a);
	if (b != NULL) BN_free(b);
	if (r != NULL) BN_free(r);
1017
	if (t != NULL) BN_free(t);
B
Bodo Möller 已提交
1018
	return ret;
1019 1020
	}

B
BN_sqrt  
Bodo Möller 已提交
1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035
int test_sqrt(BIO *bp, BN_CTX *ctx)
	{
	BIGNUM *a,*p,*r;
	int i, j;
	int ret = 0;

	a = BN_new();
	p = BN_new();
	r = BN_new();
	if (a == NULL || p == NULL || r == NULL) goto err;
	
	for (i = 0; i < 16; i++)
		{
		if (i < 8)
			{
1036
			unsigned primes[8] = { 2, 3, 5, 7, 11, 13, 17, 19 };
B
BN_sqrt  
Bodo Möller 已提交
1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092
			
			if (!BN_set_word(p, primes[i])) goto err;
			}
		else
			{
			if (!BN_set_word(a, 32)) goto err;
			if (!BN_set_word(r, 2*i + 1)) goto err;
		
			if (!BN_generate_prime(p, 256, 0, a, r, genprime_cb, NULL)) goto err;
			putc('\n', stderr);
			}

		for (j = 0; j < num2; j++)
			{
			/* construct 'a' such that it is a square modulo p,
			 * but in general not a proper square and not reduced modulo p */
			if (!BN_rand(r, 256, 0, 3)) goto err;
			if (!BN_nnmod(r, r, p, ctx)) goto err;
			if (!BN_mod_sqr(r, r, p, ctx)) goto err;
			if (!BN_rand(a, 256, 0, 3)) goto err;
			if (!BN_nnmod(a, a, p, ctx)) goto err;
			if (!BN_mod_sqr(a, a, p, ctx)) goto err;
			if (!BN_mul(a, a, r, ctx)) goto err;

			if (!BN_mod_sqrt(r, a, p, ctx)) goto err;
			if (!BN_mod_sqr(r, r, p, ctx)) goto err;

			if (!BN_nnmod(a, a, p, ctx)) goto err;

			if (BN_cmp(a, r) != 0)
				{
				fprintf(stderr, "BN_mod_sqrt failed: a = ");
				BN_print_fp(stderr, a);
				fprintf(stderr, ", r = ");
				BN_print_fp(stderr, r);
				fprintf(stderr, ", p = ");
				BN_print_fp(stderr, p);
				fprintf(stderr, "\n");
				goto err;
				}

			putc('.', stderr);
			fflush(stderr);
			}
		
		putc('\n', stderr);
		fflush(stderr);
		}
	ret = 1;
 err:
	if (a != NULL) BN_free(a);
	if (p != NULL) BN_free(p);
	if (r != NULL) BN_free(r);
	return ret;
	}

B
Ben Laurie 已提交
1093
int test_lshift(BIO *bp,BN_CTX *ctx,BIGNUM *a_)
1094
	{
B
Ben Laurie 已提交
1095
	BIGNUM *a,*b,*c,*d;
1096 1097 1098 1099
	int i;

	b=BN_new();
	c=BN_new();
B
Ben Laurie 已提交
1100
	d=BN_new();
1101 1102
	BN_one(c);

B
Ben Laurie 已提交
1103 1104 1105 1106 1107 1108 1109 1110
	if(a_)
	    a=a_;
	else
	    {
	    a=BN_new();
	    BN_rand(a,200,0,0); /**/
	    a->neg=rand_neg();
	    }
1111
	for (i=0; i<num0; i++)
1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126
		{
		BN_lshift(b,a,i+1);
		BN_add(c,c,c);
		if (bp != NULL)
			{
			if (!results)
				{
				BN_print(bp,a);
				BIO_puts(bp," * ");
				BN_print(bp,c);
				BIO_puts(bp," - ");
				}
			BN_print(bp,b);
			BIO_puts(bp,"\n");
			}
B
Ben Laurie 已提交
1127 1128 1129 1130
		BN_mul(d,a,c,ctx);
		BN_sub(d,d,b);
		if(!BN_is_zero(d))
		    {
1131 1132 1133 1134 1135 1136 1137 1138 1139 1140
		    fprintf(stderr,"Left shift test failed!\n");
		    fprintf(stderr,"a=");
		    BN_print_fp(stderr,a);
		    fprintf(stderr,"\nb=");
		    BN_print_fp(stderr,b);
		    fprintf(stderr,"\nc=");
		    BN_print_fp(stderr,c);
		    fprintf(stderr,"\nd=");
		    BN_print_fp(stderr,d);
		    fprintf(stderr,"\n");
B
Ben Laurie 已提交
1141 1142
		    return 0;
		    }
1143 1144 1145 1146
		}
	BN_free(a);
	BN_free(b);
	BN_free(c);
B
Ben Laurie 已提交
1147
	BN_free(d);
1148 1149 1150
	return(1);
	}

U
Ulf Möller 已提交
1151
int test_lshift1(BIO *bp)
1152
	{
B
Ben Laurie 已提交
1153
	BIGNUM *a,*b,*c;
1154 1155 1156 1157
	int i;

	a=BN_new();
	b=BN_new();
B
Ben Laurie 已提交
1158
	c=BN_new();
1159 1160 1161

	BN_rand(a,200,0,0); /**/
	a->neg=rand_neg();
1162
	for (i=0; i<num0; i++)
1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175
		{
		BN_lshift1(b,a);
		if (bp != NULL)
			{
			if (!results)
				{
				BN_print(bp,a);
				BIO_puts(bp," * 2");
				BIO_puts(bp," - ");
				}
			BN_print(bp,b);
			BIO_puts(bp,"\n");
			}
B
Ben Laurie 已提交
1176 1177 1178 1179
		BN_add(c,a,a);
		BN_sub(a,b,c);
		if(!BN_is_zero(a))
		    {
1180
		    fprintf(stderr,"Left shift one test failed!\n");
B
Ben Laurie 已提交
1181 1182 1183
		    return 0;
		    }
		
1184 1185 1186 1187
		BN_copy(a,b);
		}
	BN_free(a);
	BN_free(b);
B
Ben Laurie 已提交
1188
	BN_free(c);
1189 1190 1191
	return(1);
	}

B
Ben Laurie 已提交
1192
int test_rshift(BIO *bp,BN_CTX *ctx)
1193
	{
B
Ben Laurie 已提交
1194
	BIGNUM *a,*b,*c,*d,*e;
1195 1196 1197 1198 1199
	int i;

	a=BN_new();
	b=BN_new();
	c=BN_new();
B
Ben Laurie 已提交
1200 1201
	d=BN_new();
	e=BN_new();
1202 1203 1204 1205
	BN_one(c);

	BN_rand(a,200,0,0); /**/
	a->neg=rand_neg();
1206
	for (i=0; i<num0; i++)
1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221
		{
		BN_rshift(b,a,i+1);
		BN_add(c,c,c);
		if (bp != NULL)
			{
			if (!results)
				{
				BN_print(bp,a);
				BIO_puts(bp," / ");
				BN_print(bp,c);
				BIO_puts(bp," - ");
				}
			BN_print(bp,b);
			BIO_puts(bp,"\n");
			}
B
Ben Laurie 已提交
1222 1223 1224 1225
		BN_div(d,e,a,c,ctx);
		BN_sub(d,d,b);
		if(!BN_is_zero(d))
		    {
1226
		    fprintf(stderr,"Right shift test failed!\n");
B
Ben Laurie 已提交
1227 1228
		    return 0;
		    }
1229 1230 1231 1232
		}
	BN_free(a);
	BN_free(b);
	BN_free(c);
B
Ben Laurie 已提交
1233 1234
	BN_free(d);
	BN_free(e);
1235 1236 1237
	return(1);
	}

U
Ulf Möller 已提交
1238
int test_rshift1(BIO *bp)
1239
	{
B
Ben Laurie 已提交
1240
	BIGNUM *a,*b,*c;
1241 1242 1243 1244
	int i;

	a=BN_new();
	b=BN_new();
B
Ben Laurie 已提交
1245
	c=BN_new();
1246 1247 1248

	BN_rand(a,200,0,0); /**/
	a->neg=rand_neg();
1249
	for (i=0; i<num0; i++)
1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262
		{
		BN_rshift1(b,a);
		if (bp != NULL)
			{
			if (!results)
				{
				BN_print(bp,a);
				BIO_puts(bp," / 2");
				BIO_puts(bp," - ");
				}
			BN_print(bp,b);
			BIO_puts(bp,"\n");
			}
B
Ben Laurie 已提交
1263 1264 1265 1266
		BN_sub(c,a,b);
		BN_sub(c,c,b);
		if(!BN_is_zero(c) && !BN_is_one(c))
		    {
1267
		    fprintf(stderr,"Right shift one test failed!\n");
B
Ben Laurie 已提交
1268 1269
		    return 0;
		    }
1270 1271 1272 1273
		BN_copy(a,b);
		}
	BN_free(a);
	BN_free(b);
B
Ben Laurie 已提交
1274
	BN_free(c);
1275 1276 1277
	return(1);
	}

U
Ulf Möller 已提交
1278
int rand_neg(void)
1279 1280 1281 1282 1283 1284
	{
	static unsigned int neg=0;
	static int sign[8]={0,0,0,1,1,0,1,1};

	return(sign[(neg++)%8]);
	}