Commit f365611c authored by Richard Levitte's avatar Richard Levitte
Browse files

Undo the changes I just made. I'm not sure what I was thinking of.

The message to everyone is "Do not hack OpenSSL when stressed"...
parent 523c83ec
Loading
Loading
Loading
Loading
+0 −9
Original line number Diff line number Diff line
@@ -4,15 +4,6 @@

 Changes between 0.9.5a and 0.9.6  [xx XXX 2000]

  *) Add the possibility, through the -egd parameter, to tell the openssl
     applications that EGD should be used as seeding source, and where
     the EGD named socket is.
     [Richard Levitte]

  *) Add the possibility to tell RAND_egd() and RAND_egd_bytes() where
     the EGD named socket is through the environment variable RANDEGD.
     [Richard Levitte]

  *) Add BSD-style MD5-based passwords to 'openssl passwd' (option '-1').
     [Bodo Moeller]

+3 −14
Original line number Diff line number Diff line
@@ -121,7 +121,6 @@
#include <openssl/dh.h>
#include <openssl/x509.h>
#include <openssl/pem.h>
#include <openssl/rand.h>

#ifndef NO_DSA
#include <openssl/dsa.h>
@@ -157,7 +156,7 @@ int MAIN(int argc, char **argv)
	BIO *in=NULL,*out=NULL;
	int informat,outformat,check=0,noout=0,C=0,ret=1;
	char *infile,*outfile,*prog;
	char *inrand=NULL, *inegd=NULL;
	char *inrand=NULL;
	int num = 0, g = 0;

	apps_startup();
@@ -217,11 +216,6 @@ int MAIN(int argc, char **argv)
			if (--argc < 1) goto bad;
			inrand= *(++argv);
			}
		else if (strcmp(*argv,"-egd") == 0)
			{
			if (--argc < 1) goto bad;
			inegd= *(++argv);
			}
		else if (((sscanf(*argv,"%d",&num) == 0) || (num <= 0)))
			goto bad;
		argv++;
@@ -247,9 +241,8 @@ bad:
		BIO_printf(bio_err," -5            generate parameters using  5 as the generator value\n");
		BIO_printf(bio_err," numbits       number of bits in to generate (default 512)\n");
		BIO_printf(bio_err," -rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
		BIO_printf(bio_err,"               load the file (or the files in the directory) into\n");
		BIO_printf(bio_err,"               - load the file (or the files in the directory) into\n");
		BIO_printf(bio_err,"               the random number generator\n");
		BIO_printf(bio_err," -egd file     load random seed from EGD socket\n");
		BIO_printf(bio_err," -noout        no output\n");
		goto end;
		}
@@ -278,17 +271,13 @@ bad:

	if(num) {

		if (!app_RAND_load_file(NULL, bio_err, 1)
			&& inrand == NULL && inegd == NULL)
		if (!app_RAND_load_file(NULL, bio_err, 1) && inrand == NULL)
			{
			BIO_printf(bio_err,"warning, not much extra random data, consider using the -rand option\n");
			}
		if (inrand != NULL)
			BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
				app_RAND_load_files(inrand));
		if (inegd != NULL)
			BIO_printf(bio_err,"%ld egd bytes loaded\n",
				RAND_egd(inegd));

#ifndef NO_DSA
		if (dsaparam)
+3 −17
Original line number Diff line number Diff line
@@ -69,7 +69,6 @@
#include <openssl/dsa.h>
#include <openssl/x509.h>
#include <openssl/pem.h>
#include <openssl/rand.h>

#undef PROG
#define PROG	dsaparam_main
@@ -95,7 +94,7 @@ int MAIN(int argc, char **argv)
	int i,badops=0,text=0;
	BIO *in=NULL,*out=NULL;
	int informat,outformat,noout=0,C=0,ret=1;
	char *infile,*outfile,*prog,*inrand=NULL,*inegd=NULL;
	char *infile,*outfile,*prog,*inrand=NULL;
	int numbits= -1,num,genkey=0;
	int need_rand=0;

@@ -150,12 +149,6 @@ int MAIN(int argc, char **argv)
			inrand= *(++argv);
			need_rand=1;
			}
		else if (strcmp(*argv,"-egd") == 0)
			{
			if (--argc < 1) goto bad;
			inegd= *(++argv);
			need_rand=1;
			}
		else if (strcmp(*argv,"-noout") == 0)
			noout=1;
		else if (sscanf(*argv,"%d",&num) == 1)
@@ -186,10 +179,7 @@ bad:
		BIO_printf(bio_err," -text         print the key in text\n");
		BIO_printf(bio_err," -C            Output C code\n");
		BIO_printf(bio_err," -noout        no output\n");
		BIO_printf(bio_err," -rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
		BIO_printf(bio_err,"               load the file (or the files in the directory) into\n");
		BIO_printf(bio_err,"               the random number generator\n");
		BIO_printf(bio_err," -egd file     load random seed from EGD socket\n");
		BIO_printf(bio_err," -rand         files to use for random number input\n");
		BIO_printf(bio_err," number        number of bits to use for generating private key\n");
		goto end;
		}
@@ -227,14 +217,10 @@ bad:

	if (need_rand)
		{
		app_RAND_load_file(NULL, bio_err,
			(inrand != NULL || inegd != NULL));
		app_RAND_load_file(NULL, bio_err, (inrand != NULL));
		if (inrand != NULL)
			BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
				app_RAND_load_files(inrand));
		if (inegd != NULL)
			BIO_printf(bio_err,"%ld egd bytes loaded\n",
				RAND_egd(inegd));
		}

	if (numbits > 0)
+5 −14
Original line number Diff line number Diff line
@@ -85,7 +85,7 @@ int MAIN(int argc, char **argv)
	int ret=1,num=DEFBITS;
	int g=2;
	char *outfile=NULL;
	char *inrand=NULL,*inegd=NULL;
	char *inrand=NULL;
	BIO *out=NULL;

	apps_startup();
@@ -115,11 +115,6 @@ int MAIN(int argc, char **argv)
			if (--argc < 1) goto bad;
			inrand= *(++argv);
			}
		else if (strcmp(*argv,"-egd") == 0)
			{
			if (--argc < 1) goto bad;
			inegd= *(++argv);
			}
		else
			break;
		argv++;
@@ -130,13 +125,12 @@ int MAIN(int argc, char **argv)
bad:
		BIO_printf(bio_err,"usage: gendh [args] [numbits]\n");
		BIO_printf(bio_err," -out file - output the key to 'file\n");
		BIO_printf(bio_err," -2        - use 2 as the generator value\n");
	/*	BIO_printf(bio_err," -3        - use 3 as the generator value\n"); */
		BIO_printf(bio_err," -5        - use 5 as the generator value\n");
		BIO_printf(bio_err," -2    use 2 as the generator value\n");
	/*	BIO_printf(bio_err," -3    use 3 as the generator value\n"); */
		BIO_printf(bio_err," -5    use 5 as the generator value\n");
		BIO_printf(bio_err," -rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
		BIO_printf(bio_err,"           - load the file (or the files in the directory) into\n");
		BIO_printf(bio_err,"             the random number generator\n");
		BIO_printf(bio_err," -egd file - load random seed from EGD socket\n");
		goto end;
		}
		
@@ -158,16 +152,13 @@ bad:
			}
		}

	if (!app_RAND_load_file(NULL, bio_err, 1) && inrand == NULL && inegd == NULL)
	if (!app_RAND_load_file(NULL, bio_err, 1) && inrand == NULL)
		{
		BIO_printf(bio_err,"warning, not much extra random data, consider using the -rand option\n");
		}
	if (inrand != NULL)
		BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
			app_RAND_load_files(inrand));
	if (inegd != NULL)
		BIO_printf(bio_err,"%ld egd bytes loaded\n",
			RAND_egd(inegd));

	BIO_printf(bio_err,"Generating DH parameters, %d bit long safe prime, generator %d\n",num,g);
	BIO_printf(bio_err,"This is going to take a long time\n");
+2 −12
Original line number Diff line number Diff line
@@ -68,7 +68,6 @@
#include <openssl/dsa.h>
#include <openssl/x509.h>
#include <openssl/pem.h>
#include <openssl/rand.h>

#define DEFBITS	512
#undef PROG
@@ -81,7 +80,7 @@ int MAIN(int argc, char **argv)
	DSA *dsa=NULL;
	int ret=1;
	char *outfile=NULL;
	char *inrand=NULL,*inegd=NULL,*dsaparams=NULL;
	char *inrand=NULL,*dsaparams=NULL;
	char *passargout = NULL, *passout = NULL;
	BIO *out=NULL,*in=NULL;
	EVP_CIPHER *enc=NULL;
@@ -112,11 +111,6 @@ int MAIN(int argc, char **argv)
			if (--argc < 1) goto bad;
			inrand= *(++argv);
			}
		else if (strcmp(*argv,"-egd") == 0)
			{
			if (--argc < 1) goto bad;
			inegd= *(++argv);
			}
		else if (strcmp(*argv,"-") == 0)
			goto bad;
#ifndef NO_DES
@@ -154,7 +148,6 @@ bad:
		BIO_printf(bio_err," -rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
		BIO_printf(bio_err,"           - load the file (or the files in the directory) into\n");
		BIO_printf(bio_err,"             the random number generator\n");
		BIO_printf(bio_err," -egd file - load random seed from EGD socket\n");
		BIO_printf(bio_err," dsaparam-file\n");
		BIO_printf(bio_err,"           - a DSA parameter file as generated by the dsaparam command\n");
		goto end;
@@ -195,16 +188,13 @@ bad:
			}
		}

	if (!app_RAND_load_file(NULL, bio_err, 1) && inrand == NULL && inegd == NULL)
	if (!app_RAND_load_file(NULL, bio_err, 1) && inrand == NULL)
		{
		BIO_printf(bio_err,"warning, not much extra random data, consider using the -rand option\n");
		}
	if (inrand != NULL)
		BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
			app_RAND_load_files(inrand));
	if (inegd != NULL)
		BIO_printf(bio_err,"%ld egd bytes loaded\n",
			RAND_egd(inegd));

	BIO_printf(bio_err,"Generating DSA key, %d bits\n",
							BN_num_bits(dsa->p));
Loading