bntest.c 24.3 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
	message(out,"BN_add");
169
	if (!test_add(out)) goto err;
170
	BIO_flush(out);
171

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

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

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

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

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

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

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

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

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

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

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

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

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

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

229
	message(out,"BN_exp");
230
	if (!test_exp(out,ctx)) goto err;
231
	BIO_flush(out);
232

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

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

241 242 243
	BN_CTX_free(ctx);
	BIO_free(out);

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

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

262 263 264
	BN_init(&a);
	BN_init(&b);
	BN_init(&c);
265

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

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

310 311 312
	BN_init(&a);
	BN_init(&b);
	BN_init(&c);
313

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

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

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

371
	for (i=0; i<num0+num1; i++)
372
		{
373 374 375 376 377 378 379 380 381
		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);
382 383
		a.neg=rand_neg();
		b.neg=rand_neg();
384 385
		if (bp == NULL)
			for (j=0; j<100; j++)
386 387
				BN_div(&d,&c,&a,&b,ctx);
		BN_div(&d,&c,&a,&b,ctx);
388 389 390 391
		if (bp != NULL)
			{
			if (!results)
				{
392
				BN_print(bp,&a);
393
				BIO_puts(bp," / ");
394
				BN_print(bp,&b);
395 396
				BIO_puts(bp," - ");
				}
397
			BN_print(bp,&d);
398 399 400 401
			BIO_puts(bp,"\n");

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

U
Ulf Möller 已提交
427
int test_div_recp(BIO *bp, BN_CTX *ctx)
428
	{
B
Ben Laurie 已提交
429
	BIGNUM a,b,c,d,e;
430 431 432 433 434 435 436 437 438
	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 已提交
439
	BN_init(&e);
440

441
	for (i=0; i<num0+num1; i++)
442
		{
443 444 445 446 447 448 449 450 451
		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);
452 453 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
		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 已提交
481 482 483 484 485
		BN_mul(&e,&d,&b,ctx);
		BN_add(&d,&e,&c);
		BN_sub(&d,&d,&a);
		if(!BN_is_zero(&d))
		    {
486 487 488 489 490 491
		    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 已提交
492 493
		    return 0;
		    }
494 495 496 497 498
		}
	BN_free(&a);
	BN_free(&b);
	BN_free(&c);
	BN_free(&d);
B
Ben Laurie 已提交
499
	BN_free(&e);
500
	BN_RECP_CTX_free(&recp);
501 502 503
	return(1);
	}

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

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

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

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

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

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

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

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

	mont=BN_MONT_CTX_new();

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

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

637 638 639
		BN_nnmod(&a,&a,&n,ctx);
		BN_nnmod(&b,&b,&n,ctx);

640 641
		BN_to_montgomery(&A,&a,mont,ctx);
		BN_to_montgomery(&B,&b,mont,ctx);
642 643 644

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

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

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

	BN_rand(a,1024,0,0); /**/
700
	for (i=0; i<num0; i++)
701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720
		{
		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 已提交
721 722 723 724
		BN_div(d,e,a,b,ctx);
		BN_sub(e,e,c);
		if(!BN_is_zero(e))
		    {
725
		    fprintf(stderr,"Modulo test failed!\n");
B
Ben Laurie 已提交
726 727
		    return 0;
		    }
728 729 730 731
		}
	BN_free(a);
	BN_free(b);
	BN_free(c);
B
Ben Laurie 已提交
732 733
	BN_free(d);
	BN_free(e);
734 735 736
	return(1);
	}

U
Ulf Möller 已提交
737
int test_mod_mul(BIO *bp, BN_CTX *ctx)
738 739 740 741 742 743 744 745 746 747 748
	{
	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); /**/
749
	for (i=0; i<num0; i++)
750
		{
U
Ulf Möller 已提交
751 752
		BN_rand(a,475+i*10,0,0); /**/
		BN_rand(b,425+i*11,0,0); /**/
753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776
		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 已提交
777 778 779 780 781 782 783 784 785 786
				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);
					}
787 788 789 790 791
				BIO_puts(bp," - ");
				}
			BN_print(bp,e);
			BIO_puts(bp,"\n");
			}
B
Ben Laurie 已提交
792 793 794 795 796
		BN_mul(d,a,b,ctx);
		BN_sub(d,d,e);
		BN_div(a,b,d,c,ctx);
		if(!BN_is_zero(b))
		    {
797
		    fprintf(stderr,"Modulo multiply test failed!\n");
798
		    ERR_print_errors_fp(stderr);
B
Ben Laurie 已提交
799 800
		    return 0;
		    }
801 802 803 804 805 806 807 808 809
		}
	BN_free(a);
	BN_free(b);
	BN_free(c);
	BN_free(d);
	BN_free(e);
	return(1);
	}

U
Ulf Möller 已提交
810
int test_mod_exp(BIO *bp, BN_CTX *ctx)
811 812 813 814 815 816 817 818 819 820 821
	{
	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 */
822
	for (i=0; i<num2; i++)
823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843
		{
		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 已提交
844 845 846 847 848
		BN_exp(e,a,b,ctx);
		BN_sub(e,e,d);
		BN_div(a,b,e,c,ctx);
		if(!BN_is_zero(b))
		    {
849
		    fprintf(stderr,"Modulo exponentiation test failed!\n");
B
Ben Laurie 已提交
850 851
		    return 0;
		    }
852 853 854 855 856 857 858 859 860
		}
	BN_free(a);
	BN_free(b);
	BN_free(c);
	BN_free(d);
	BN_free(e);
	return(1);
	}

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

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

873
	for (i=0; i<num2; i++)
874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892
		{
		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 已提交
893 894 895 896 897 898
		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))
		    {
899
		    fprintf(stderr,"Exponentiation test failed!\n");
B
Ben Laurie 已提交
900 901
		    return 0;
		    }
902 903 904 905 906
		}
	BN_free(a);
	BN_free(b);
	BN_free(d);
	BN_free(e);
B
Ben Laurie 已提交
907
	BN_free(one);
908 909 910
	return(1);
	}

B
Bodo Möller 已提交
911 912 913 914 915 916 917 918 919 920 921 922 923 924
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;
	}

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

	a = BN_new();
	b = BN_new();
	r = BN_new();
935 936
	t = BN_new();
	if (a == NULL || b == NULL || r == NULL || t == NULL) goto err;
B
Bodo Möller 已提交
937
	
B
Bodo Möller 已提交
938 939 940 941 942 943 944 945 946
	/* 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.) */

B
Bodo Möller 已提交
947 948
	if (!BN_generate_prime(b, 512, 0, NULL, NULL, genprime_cb, NULL)) goto err;
	putc('\n', stderr);
B
Bodo Möller 已提交
949

B
Bodo Möller 已提交
950 951 952
	for (i = 0; i < num0; i++)
		{
		if (!BN_rand(a, 512, 0, 0)) goto err;
953 954
		a->neg = rand_neg();

955 956 957 958 959 960
		/* 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 */
		if (!BN_mod_exp(r, a, t, b, ctx)) goto err;
B
Bodo Möller 已提交
961 962 963

		if (BN_is_word(r, 1))
			legendre = 1;
964 965
		else if (BN_is_zero(r))
			legendre = 0;
B
Bodo Möller 已提交
966 967 968 969 970 971 972 973 974 975
		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;
			}
976
		
B
Bodo Möller 已提交
977 978 979 980 981 982 983
		kronecker = BN_kronecker(a, b, ctx);
		if (kronecker < -1) goto err;
		
		if (legendre != kronecker)
			{
			fprintf(stderr, "legendre != kronecker; a = ");
			BN_print_fp(stderr, a);
984
			fprintf(stderr, ", b = ");
B
Bodo Möller 已提交
985 986 987 988 989
			BN_print_fp(stderr, b);
			fprintf(stderr, "\n");
			goto err;
			}

990 991
		putc('.', stderr);
		fflush(stderr);
B
Bodo Möller 已提交
992 993
		}

994 995
	putc('\n', stderr);
	fflush(stderr);
B
Bodo Möller 已提交
996 997 998 999 1000
	ret = 1;
 err:
	if (a != NULL) BN_free(a);
	if (b != NULL) BN_free(b);
	if (r != NULL) BN_free(r);
1001
	if (t != NULL) BN_free(t);
B
Bodo Möller 已提交
1002
	return ret;
1003 1004
	}

B
BN_sqrt  
Bodo Möller 已提交
1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019
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)
			{
1020
			unsigned primes[8] = { 2, 3, 5, 7, 11, 13, 17, 19 };
B
BN_sqrt  
Bodo Möller 已提交
1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 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
			
			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 已提交
1077
int test_lshift(BIO *bp,BN_CTX *ctx,BIGNUM *a_)
1078
	{
B
Ben Laurie 已提交
1079
	BIGNUM *a,*b,*c,*d;
1080 1081 1082 1083
	int i;

	b=BN_new();
	c=BN_new();
B
Ben Laurie 已提交
1084
	d=BN_new();
1085 1086
	BN_one(c);

B
Ben Laurie 已提交
1087 1088 1089 1090 1091 1092 1093 1094
	if(a_)
	    a=a_;
	else
	    {
	    a=BN_new();
	    BN_rand(a,200,0,0); /**/
	    a->neg=rand_neg();
	    }
1095
	for (i=0; i<num0; i++)
1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110
		{
		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 已提交
1111 1112 1113 1114
		BN_mul(d,a,c,ctx);
		BN_sub(d,d,b);
		if(!BN_is_zero(d))
		    {
1115 1116 1117 1118 1119 1120 1121 1122 1123 1124
		    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 已提交
1125 1126
		    return 0;
		    }
1127 1128 1129 1130
		}
	BN_free(a);
	BN_free(b);
	BN_free(c);
B
Ben Laurie 已提交
1131
	BN_free(d);
1132 1133 1134
	return(1);
	}

U
Ulf Möller 已提交
1135
int test_lshift1(BIO *bp)
1136
	{
B
Ben Laurie 已提交
1137
	BIGNUM *a,*b,*c;
1138 1139 1140 1141
	int i;

	a=BN_new();
	b=BN_new();
B
Ben Laurie 已提交
1142
	c=BN_new();
1143 1144 1145

	BN_rand(a,200,0,0); /**/
	a->neg=rand_neg();
1146
	for (i=0; i<num0; i++)
1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159
		{
		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 已提交
1160 1161 1162 1163
		BN_add(c,a,a);
		BN_sub(a,b,c);
		if(!BN_is_zero(a))
		    {
1164
		    fprintf(stderr,"Left shift one test failed!\n");
B
Ben Laurie 已提交
1165 1166 1167
		    return 0;
		    }
		
1168 1169 1170 1171
		BN_copy(a,b);
		}
	BN_free(a);
	BN_free(b);
B
Ben Laurie 已提交
1172
	BN_free(c);
1173 1174 1175
	return(1);
	}

B
Ben Laurie 已提交
1176
int test_rshift(BIO *bp,BN_CTX *ctx)
1177
	{
B
Ben Laurie 已提交
1178
	BIGNUM *a,*b,*c,*d,*e;
1179 1180 1181 1182 1183
	int i;

	a=BN_new();
	b=BN_new();
	c=BN_new();
B
Ben Laurie 已提交
1184 1185
	d=BN_new();
	e=BN_new();
1186 1187 1188 1189
	BN_one(c);

	BN_rand(a,200,0,0); /**/
	a->neg=rand_neg();
1190
	for (i=0; i<num0; i++)
1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205
		{
		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 已提交
1206 1207 1208 1209
		BN_div(d,e,a,c,ctx);
		BN_sub(d,d,b);
		if(!BN_is_zero(d))
		    {
1210
		    fprintf(stderr,"Right shift test failed!\n");
B
Ben Laurie 已提交
1211 1212
		    return 0;
		    }
1213 1214 1215 1216
		}
	BN_free(a);
	BN_free(b);
	BN_free(c);
B
Ben Laurie 已提交
1217 1218
	BN_free(d);
	BN_free(e);
1219 1220 1221
	return(1);
	}

U
Ulf Möller 已提交
1222
int test_rshift1(BIO *bp)
1223
	{
B
Ben Laurie 已提交
1224
	BIGNUM *a,*b,*c;
1225 1226 1227 1228
	int i;

	a=BN_new();
	b=BN_new();
B
Ben Laurie 已提交
1229
	c=BN_new();
1230 1231 1232

	BN_rand(a,200,0,0); /**/
	a->neg=rand_neg();
1233
	for (i=0; i<num0; i++)
1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246
		{
		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 已提交
1247 1248 1249 1250
		BN_sub(c,a,b);
		BN_sub(c,c,b);
		if(!BN_is_zero(c) && !BN_is_one(c))
		    {
1251
		    fprintf(stderr,"Right shift one test failed!\n");
B
Ben Laurie 已提交
1252 1253
		    return 0;
		    }
1254 1255 1256 1257
		BN_copy(a,b);
		}
	BN_free(a);
	BN_free(b);
B
Ben Laurie 已提交
1258
	BN_free(c);
1259 1260 1261
	return(1);
	}

U
Ulf Möller 已提交
1262
int rand_neg(void)
1263 1264 1265 1266 1267 1268
	{
	static unsigned int neg=0;
	static int sign[8]={0,0,0,1,1,0,1,1};

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