os/ossrv/ssl/tsrc/crypto_test/src/dsatest.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* crypto/dsa/dsatest.c */
sl@0
     2
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
sl@0
     3
 * All rights reserved.
sl@0
     4
 *
sl@0
     5
 * This package is an SSL implementation written
sl@0
     6
 * by Eric Young (eay@cryptsoft.com).
sl@0
     7
 * The implementation was written so as to conform with Netscapes SSL.
sl@0
     8
 * 
sl@0
     9
 * This library is free for commercial and non-commercial use as long as
sl@0
    10
 * the following conditions are aheared to.  The following conditions
sl@0
    11
 * apply to all code found in this distribution, be it the RC4, RSA,
sl@0
    12
 * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
sl@0
    13
 * included with this distribution is covered by the same copyright terms
sl@0
    14
 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
sl@0
    15
 * 
sl@0
    16
 * Copyright remains Eric Young's, and as such any Copyright notices in
sl@0
    17
 * the code are not to be removed.
sl@0
    18
 * If this package is used in a product, Eric Young should be given attribution
sl@0
    19
 * as the author of the parts of the library used.
sl@0
    20
 * This can be in the form of a textual message at program startup or
sl@0
    21
 * in documentation (online or textual) provided with the package.
sl@0
    22
 * 
sl@0
    23
 * Redistribution and use in source and binary forms, with or without
sl@0
    24
 * modification, are permitted provided that the following conditions
sl@0
    25
 * are met:
sl@0
    26
 * 1. Redistributions of source code must retain the copyright
sl@0
    27
 *    notice, this list of conditions and the following disclaimer.
sl@0
    28
 * 2. Redistributions in binary form must reproduce the above copyright
sl@0
    29
 *    notice, this list of conditions and the following disclaimer in the
sl@0
    30
 *    documentation and/or other materials provided with the distribution.
sl@0
    31
 * 3. All advertising materials mentioning features or use of this software
sl@0
    32
 *    must display the following acknowledgement:
sl@0
    33
 *    "This product includes cryptographic software written by
sl@0
    34
 *     Eric Young (eay@cryptsoft.com)"
sl@0
    35
 *    The word 'cryptographic' can be left out if the rouines from the library
sl@0
    36
 *    being used are not cryptographic related :-).
sl@0
    37
 * 4. If you include any Windows specific code (or a derivative thereof) from 
sl@0
    38
 *    the apps directory (application code) you must include an acknowledgement:
sl@0
    39
 *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
sl@0
    40
 * 
sl@0
    41
 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
sl@0
    42
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
sl@0
    43
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
sl@0
    44
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
sl@0
    45
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
sl@0
    46
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
sl@0
    47
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
sl@0
    48
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
sl@0
    49
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
sl@0
    50
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
sl@0
    51
 * SUCH DAMAGE.
sl@0
    52
 * 
sl@0
    53
 * The licence and distribution terms for any publically available version or
sl@0
    54
 * derivative of this code cannot be changed.  i.e. this code cannot simply be
sl@0
    55
 * copied and put under another distribution licence
sl@0
    56
 * [including the GNU Public Licence.]
sl@0
    57
 */
sl@0
    58
/*
sl@0
    59
 © Portions copyright (c) 2006 Nokia Corporation.  All rights reserved.
sl@0
    60
 */
sl@0
    61
/* Until the key-gen callbacks are modified to use newer prototypes, we allow
sl@0
    62
 * deprecated functions for openssl-internal code */
sl@0
    63
#ifndef SYMBIAN
sl@0
    64
#ifdef OPENSSL_NO_DEPRECATED
sl@0
    65
#undef OPENSSL_NO_DEPRECATED
sl@0
    66
#endif
sl@0
    67
#endif
sl@0
    68
sl@0
    69
#include <stdio.h>
sl@0
    70
#include <stdlib.h>
sl@0
    71
#include <string.h>
sl@0
    72
#include <sys/types.h>
sl@0
    73
#include <sys/stat.h>
sl@0
    74
sl@0
    75
#ifndef SYMBIAN
sl@0
    76
#include "../e_os.h"
sl@0
    77
#else
sl@0
    78
#include "e_os.h"
sl@0
    79
#endif
sl@0
    80
sl@0
    81
#include <openssl/crypto.h>
sl@0
    82
#include <openssl/rand.h>
sl@0
    83
#include <openssl/bio.h>
sl@0
    84
#include <openssl/err.h>
sl@0
    85
#include <openssl/bn.h>
sl@0
    86
#ifdef SYMBIAN
sl@0
    87
#ifdef stdin
sl@0
    88
#undef stdin
sl@0
    89
#endif
sl@0
    90
#ifdef stdout
sl@0
    91
#undef stdout
sl@0
    92
#endif
sl@0
    93
#ifdef stderr
sl@0
    94
#undef stderr
sl@0
    95
#endif
sl@0
    96
sl@0
    97
#define stdin fp_stdin
sl@0
    98
#define stdout fp_stdout
sl@0
    99
#define stderr fp_stderr
sl@0
   100
sl@0
   101
extern FILE *fp_stdout;
sl@0
   102
extern FILE *fp_stderr;
sl@0
   103
#endif
sl@0
   104
#ifdef OPENSSL_NO_DSA
sl@0
   105
int main(int argc, char *argv[])
sl@0
   106
{
sl@0
   107
    fprintf(stdout,"No DSA support\n");
sl@0
   108
    return(0);
sl@0
   109
}
sl@0
   110
#else
sl@0
   111
#include <openssl/dsa.h>
sl@0
   112
sl@0
   113
#ifdef OPENSSL_SYS_WIN16
sl@0
   114
#define MS_CALLBACK     _far _loadds
sl@0
   115
#else
sl@0
   116
#define MS_CALLBACK
sl@0
   117
#endif
sl@0
   118
sl@0
   119
static int MS_CALLBACK dsa_cb(int p, int n, BN_GENCB *arg);
sl@0
   120
sl@0
   121
/* seed, out_p, out_q, out_g are taken from the updated Appendix 5 to
sl@0
   122
 * FIPS PUB 186 and also appear in Appendix 5 to FIPS PIB 186-1 */
sl@0
   123
static unsigned char seed[20]={
sl@0
   124
	0xd5,0x01,0x4e,0x4b,0x60,0xef,0x2b,0xa8,0xb6,0x21,0x1b,0x40,
sl@0
   125
	0x62,0xba,0x32,0x24,0xe0,0x42,0x7d,0xd3,
sl@0
   126
	};
sl@0
   127
sl@0
   128
static unsigned char out_p[]={
sl@0
   129
	0x8d,0xf2,0xa4,0x94,0x49,0x22,0x76,0xaa,
sl@0
   130
	0x3d,0x25,0x75,0x9b,0xb0,0x68,0x69,0xcb,
sl@0
   131
	0xea,0xc0,0xd8,0x3a,0xfb,0x8d,0x0c,0xf7,
sl@0
   132
	0xcb,0xb8,0x32,0x4f,0x0d,0x78,0x82,0xe5,
sl@0
   133
	0xd0,0x76,0x2f,0xc5,0xb7,0x21,0x0e,0xaf,
sl@0
   134
	0xc2,0xe9,0xad,0xac,0x32,0xab,0x7a,0xac,
sl@0
   135
	0x49,0x69,0x3d,0xfb,0xf8,0x37,0x24,0xc2,
sl@0
   136
	0xec,0x07,0x36,0xee,0x31,0xc8,0x02,0x91,
sl@0
   137
	};
sl@0
   138
sl@0
   139
static unsigned char out_q[]={
sl@0
   140
	0xc7,0x73,0x21,0x8c,0x73,0x7e,0xc8,0xee,
sl@0
   141
	0x99,0x3b,0x4f,0x2d,0xed,0x30,0xf4,0x8e,
sl@0
   142
	0xda,0xce,0x91,0x5f,
sl@0
   143
	};
sl@0
   144
sl@0
   145
static unsigned char out_g[]={
sl@0
   146
	0x62,0x6d,0x02,0x78,0x39,0xea,0x0a,0x13,
sl@0
   147
	0x41,0x31,0x63,0xa5,0x5b,0x4c,0xb5,0x00,
sl@0
   148
	0x29,0x9d,0x55,0x22,0x95,0x6c,0xef,0xcb,
sl@0
   149
	0x3b,0xff,0x10,0xf3,0x99,0xce,0x2c,0x2e,
sl@0
   150
	0x71,0xcb,0x9d,0xe5,0xfa,0x24,0xba,0xbf,
sl@0
   151
	0x58,0xe5,0xb7,0x95,0x21,0x92,0x5c,0x9c,
sl@0
   152
	0xc4,0x2e,0x9f,0x6f,0x46,0x4b,0x08,0x8c,
sl@0
   153
	0xc5,0x72,0xaf,0x53,0xe6,0xd7,0x88,0x02,
sl@0
   154
	};
sl@0
   155
sl@0
   156
static const unsigned char str1[]="12345678901234567890";
sl@0
   157
sl@0
   158
static const char rnd_seed[] = "string to make the random number generator think it has entropy";
sl@0
   159
sl@0
   160
static BIO *bio_err=NULL;
sl@0
   161
#ifndef SYMBIAN
sl@0
   162
int main(int argc, char **argv)
sl@0
   163
#else
sl@0
   164
int dsa_main(int argc, char **argv)
sl@0
   165
#endif
sl@0
   166
	{
sl@0
   167
	BN_GENCB cb;
sl@0
   168
	DSA *dsa=NULL;
sl@0
   169
	int counter,ret=0,i,j;
sl@0
   170
	unsigned char buf[256];
sl@0
   171
	unsigned long h;
sl@0
   172
	unsigned char sig[256];
sl@0
   173
	unsigned int siglen;
sl@0
   174
    
sl@0
   175
	if (bio_err == NULL)
sl@0
   176
		bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
sl@0
   177
  if(	bio_err == NULL&& errno==ENOMEM)
sl@0
   178
  {
sl@0
   179
	  return 1;
sl@0
   180
	}
sl@0
   181
	/*CRYPTO_malloc_debug_init();
sl@0
   182
	if(	bio_err == NULL&& errno==ENOMEM)
sl@0
   183
  {
sl@0
   184
	  return 1;
sl@0
   185
	}
sl@0
   186
	CRYPTO_dbg_set_options(V_CRYPTO_MDEBUG_ALL);
sl@0
   187
	if(	bio_err == NULL&& errno==ENOMEM)
sl@0
   188
  {
sl@0
   189
	  return 1;
sl@0
   190
	}
sl@0
   191
	CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
sl@0
   192
	if(	bio_err == NULL&& errno==ENOMEM)
sl@0
   193
  {
sl@0
   194
	  return 1;
sl@0
   195
	}
sl@0
   196
*/
sl@0
   197
	ERR_load_crypto_strings();
sl@0
   198
	RAND_seed(rnd_seed, sizeof rnd_seed);
sl@0
   199
	if(errno==ENOMEM)
sl@0
   200
  {
sl@0
   201
	  return 1;
sl@0
   202
	}
sl@0
   203
sl@0
   204
	BIO_printf(bio_err,"test generation of DSA parameters\n");
sl@0
   205
	if(errno==ENOMEM)
sl@0
   206
  {
sl@0
   207
	  return 1;
sl@0
   208
	}
sl@0
   209
sl@0
   210
	BN_GENCB_set(&cb, dsa_cb, bio_err);
sl@0
   211
	if(errno==ENOMEM)
sl@0
   212
  {
sl@0
   213
	  return 1;
sl@0
   214
	}
sl@0
   215
	if(((dsa = DSA_new()) == NULL))
sl@0
   216
  {				
sl@0
   217
	  if(errno==ENOMEM)
sl@0
   218
   	{
sl@0
   219
	    return 1;
sl@0
   220
	  }
sl@0
   221
		
sl@0
   222
  }
sl@0
   223
  if(!DSA_generate_parameters_ex(dsa, 512,
sl@0
   224
				seed, 20, &counter, &h, &cb))
sl@0
   225
	{			
sl@0
   226
    if(errno==ENOMEM)
sl@0
   227
   	{
sl@0
   228
   		if (dsa != NULL)
sl@0
   229
	   {
sl@0
   230
		 DSA_free(dsa);
sl@0
   231
		
sl@0
   232
	   }	 
sl@0
   233
	    return 1;
sl@0
   234
	  }
sl@0
   235
		goto end;
sl@0
   236
  } 
sl@0
   237
	BIO_printf(bio_err,"seed\n");
sl@0
   238
	if(errno==ENOMEM)
sl@0
   239
  {
sl@0
   240
	  return 1;
sl@0
   241
	}
sl@0
   242
	for (i=0; i<20; i+=4)
sl@0
   243
		{
sl@0
   244
		BIO_printf(bio_err,"%02X%02X%02X%02X ",
sl@0
   245
			seed[i],seed[i+1],seed[i+2],seed[i+3]);
sl@0
   246
    if(errno==ENOMEM)
sl@0
   247
    {
sl@0
   248
	    return 1;
sl@0
   249
	  }
sl@0
   250
			
sl@0
   251
		}
sl@0
   252
	BIO_printf(bio_err,"\ncounter=%d h=%ld\n",counter,h);
sl@0
   253
	if(errno==ENOMEM)
sl@0
   254
  {
sl@0
   255
	  return 1;
sl@0
   256
	}
sl@0
   257
sl@0
   258
		
sl@0
   259
	if (dsa == NULL) goto end;
sl@0
   260
	DSA_print(bio_err,dsa,0);
sl@0
   261
	if(errno==ENOMEM)
sl@0
   262
  {
sl@0
   263
	  return 1;
sl@0
   264
	}
sl@0
   265
sl@0
   266
	if (counter != 105) 
sl@0
   267
		{
sl@0
   268
		BIO_printf(bio_err,"counter should be 105\n");
sl@0
   269
		if(errno==ENOMEM)
sl@0
   270
    {
sl@0
   271
	  return 1;
sl@0
   272
	  }
sl@0
   273
		goto end;
sl@0
   274
		}
sl@0
   275
	if (h != 2)
sl@0
   276
		{
sl@0
   277
		BIO_printf(bio_err,"h should be 2\n");
sl@0
   278
		if(errno==ENOMEM)
sl@0
   279
    {
sl@0
   280
	  return 1;
sl@0
   281
	  }
sl@0
   282
  	goto end;
sl@0
   283
		}
sl@0
   284
sl@0
   285
	i=BN_bn2bin(dsa->q,buf);
sl@0
   286
	if(errno==ENOMEM)
sl@0
   287
  {
sl@0
   288
	  return 1;
sl@0
   289
	}
sl@0
   290
sl@0
   291
	j=sizeof(out_q);
sl@0
   292
	if ((i != j) || (memcmp(buf,out_q,i) != 0))
sl@0
   293
	{
sl@0
   294
  	if(errno==ENOMEM)
sl@0
   295
      {
sl@0
   296
	      return 1;
sl@0
   297
	    }
sl@0
   298
		BIO_printf(bio_err,"q value is wrong\n");
sl@0
   299
		if(errno==ENOMEM)
sl@0
   300
    {
sl@0
   301
	    return 1;
sl@0
   302
	  }
sl@0
   303
		goto end;
sl@0
   304
	}
sl@0
   305
sl@0
   306
	i=BN_bn2bin(dsa->p,buf);
sl@0
   307
	if(errno==ENOMEM)
sl@0
   308
  {
sl@0
   309
	  return 1;
sl@0
   310
	}
sl@0
   311
	j=sizeof(out_p);
sl@0
   312
	if ((i != j) || (memcmp(buf,out_p,i) != 0))
sl@0
   313
		{
sl@0
   314
		if(errno==ENOMEM)
sl@0
   315
    {
sl@0
   316
	    return 1;
sl@0
   317
	  }
sl@0
   318
		BIO_printf(bio_err,"p value is wrong\n");
sl@0
   319
		if(errno==ENOMEM)
sl@0
   320
    {
sl@0
   321
	   return 1;
sl@0
   322
	  }
sl@0
   323
		goto end;
sl@0
   324
		}
sl@0
   325
sl@0
   326
	i=BN_bn2bin(dsa->g,buf);
sl@0
   327
	if(errno==ENOMEM)
sl@0
   328
  {
sl@0
   329
	  return 1;
sl@0
   330
	}
sl@0
   331
sl@0
   332
	j=sizeof(out_g);
sl@0
   333
	if ((i != j) || (memcmp(buf,out_g,i) != 0))
sl@0
   334
		{
sl@0
   335
		if(errno==ENOMEM)
sl@0
   336
    {
sl@0
   337
	    return 1;
sl@0
   338
	  }
sl@0
   339
		BIO_printf(bio_err,"g value is wrong\n");
sl@0
   340
		if(errno==ENOMEM)
sl@0
   341
    {
sl@0
   342
	    return 1;
sl@0
   343
	  }
sl@0
   344
		goto end;
sl@0
   345
		}
sl@0
   346
sl@0
   347
	dsa->flags |= DSA_FLAG_NO_EXP_CONSTTIME;
sl@0
   348
	DSA_generate_key(dsa);
sl@0
   349
	if(errno==ENOMEM)
sl@0
   350
  {
sl@0
   351
	  return 1;
sl@0
   352
	}
sl@0
   353
	DSA_sign(0, str1, 20, sig, &siglen, dsa);
sl@0
   354
	if(errno==ENOMEM)
sl@0
   355
  {
sl@0
   356
	  return 1;
sl@0
   357
	}
sl@0
   358
	if (DSA_verify(0, str1, 20, sig, siglen, dsa) == 1)
sl@0
   359
		ret=1;
sl@0
   360
  if(errno==ENOMEM)
sl@0
   361
  {
sl@0
   362
	  return 1;
sl@0
   363
	}
sl@0
   364
sl@0
   365
	dsa->flags &= ~DSA_FLAG_NO_EXP_CONSTTIME;
sl@0
   366
	DSA_generate_key(dsa);
sl@0
   367
	if(errno==ENOMEM)
sl@0
   368
  {
sl@0
   369
	  return 1;
sl@0
   370
	}
sl@0
   371
sl@0
   372
	DSA_sign(0, str1, 20, sig, &siglen, dsa);
sl@0
   373
	if(errno==ENOMEM)
sl@0
   374
  {
sl@0
   375
	  return 1;
sl@0
   376
	}
sl@0
   377
sl@0
   378
	if (DSA_verify(0, str1, 20, sig, siglen, dsa) == 1)
sl@0
   379
		ret=1;
sl@0
   380
  if(errno==ENOMEM)
sl@0
   381
  {
sl@0
   382
	  return 1;
sl@0
   383
	}
sl@0
   384
sl@0
   385
end:
sl@0
   386
	if (!ret)
sl@0
   387
	{
sl@0
   388
		ERR_print_errors(bio_err);
sl@0
   389
		if(errno==ENOMEM)
sl@0
   390
    {
sl@0
   391
	    return 1;
sl@0
   392
	  }
sl@0
   393
sl@0
   394
	}	
sl@0
   395
	if (dsa != NULL)
sl@0
   396
	{
sl@0
   397
		 DSA_free(dsa);
sl@0
   398
		 if(errno==ENOMEM)
sl@0
   399
     {
sl@0
   400
	    return 1;
sl@0
   401
	   }
sl@0
   402
	}	 
sl@0
   403
	
sl@0
   404
	CRYPTO_mem_leaks(bio_err);
sl@0
   405
	if(errno==ENOMEM)
sl@0
   406
  {
sl@0
   407
	  return 1;
sl@0
   408
	}
sl@0
   409
	if (bio_err != NULL)
sl@0
   410
		{
sl@0
   411
		BIO_free(bio_err);
sl@0
   412
		bio_err = NULL;
sl@0
   413
		if(errno==ENOMEM)
sl@0
   414
    {
sl@0
   415
	   return 1;
sl@0
   416
	  }
sl@0
   417
   }
sl@0
   418
  	
sl@0
   419
#ifdef SYMBIAN	
sl@0
   420
	CRYPTO_cleanup_all_ex_data();
sl@0
   421
		if(errno==ENOMEM)
sl@0
   422
  {
sl@0
   423
	  return 1;
sl@0
   424
	}
sl@0
   425
sl@0
   426
#endif
sl@0
   427
		 
sl@0
   428
	ERR_remove_state(0);
sl@0
   429
	if(errno==ENOMEM)
sl@0
   430
  {
sl@0
   431
	  return 1;
sl@0
   432
	}
sl@0
   433
	ERR_free_strings();
sl@0
   434
	if(errno==ENOMEM)
sl@0
   435
  {
sl@0
   436
	  return 1;
sl@0
   437
	}
sl@0
   438
sl@0
   439
#ifdef OPENSSL_SYS_NETWARE
sl@0
   440
    if (!ret) fprintf(stdout,"ERROR\n");
sl@0
   441
#endif
sl@0
   442
  fprintf(stdout,"Test Case Passed!\n");
sl@0
   443
  fprintf(stderr,"Test Case Passed!\n");
sl@0
   444
	//EXIT(!ret);
sl@0
   445
	return(0);
sl@0
   446
	}
sl@0
   447
sl@0
   448
static int MS_CALLBACK dsa_cb(int p, int n, BN_GENCB *arg)
sl@0
   449
	{
sl@0
   450
	char c='*';
sl@0
   451
	static int ok=0,num=0;
sl@0
   452
sl@0
   453
	if (p == 0) { c='.'; num++; };
sl@0
   454
	if (p == 1) c='+';
sl@0
   455
	if (p == 2) { c='*'; ok++; }
sl@0
   456
	if (p == 3) c='\n';
sl@0
   457
	BIO_write(arg->arg,&c,1);
sl@0
   458
	if(errno==ENOMEM)
sl@0
   459
  {
sl@0
   460
	    return 0;
sl@0
   461
	}  
sl@0
   462
	(void)BIO_flush(arg->arg);
sl@0
   463
  if(errno==ENOMEM)
sl@0
   464
  {
sl@0
   465
	    return 0;
sl@0
   466
	}  
sl@0
   467
	if (!ok && (p == 0) && (num > 1))
sl@0
   468
		{
sl@0
   469
		BIO_printf((BIO *)arg,"error in dsatest\n");
sl@0
   470
		return 0;
sl@0
   471
		}
sl@0
   472
	return 1;
sl@0
   473
	}
sl@0
   474
#endif