Commit af57d843 authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Rename SSLeay_add_all_algorithms() et al to

OpenSSL_add_all_algorithms(). Move these into
separate files so they work properly.
parent 53002dc6
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -4,6 +4,15 @@

 Changes between 0.9.4 and 0.9.5  [xx XXX 2000]

  *) Change the SSLeay_add_all_*() functions to OpenSSL_add_all_*() and
     include a #define from the old name to the new. The original intent
     was that statically linked binaries could for example just call
     SSLeay_add_all_ciphers() to just add ciphers to the table and not
     link with digests. This never worked becayse SSLeay_add_all_digests()
     and SSLeay_add_all_ciphers() were in the same source file so calling
     one would link with the other. They are now in separate source files.
     [Steve Henson]

  *) Add a new -notext option to 'ca' and a -pubkey option to 'spkac'.
     [Steve Henson]

+1 −1
Original line number Diff line number Diff line
@@ -141,7 +141,7 @@ int MAIN(int argc, char **argv)
		goto end;
		}

	SSLeay_add_ssl_algorithms();
	OpenSSL_add_ssl_algorithms();

	ctx=SSL_CTX_new(meth);
	if (ctx == NULL) goto err;
+1 −1
Original line number Diff line number Diff line
@@ -87,7 +87,7 @@ int MAIN(int argc, char **argv)
	informat=FORMAT_PEM;
	outformat=FORMAT_PEM;
	ERR_load_crypto_strings();
	SSLeay_add_all_algorithms();
	OpenSSL_add_all_algorithms();
	args = argv + 1;
	while (!badarg && *args && *args[0] == '-') {
		if (!strcmp(*args,"-v2")) {
+1 −1
Original line number Diff line number Diff line
@@ -337,7 +337,7 @@ bad:
			}
		}

	SSLeay_add_ssl_algorithms();
	OpenSSL_add_ssl_algorithms();
	SSL_load_error_strings();
	ctx=SSL_CTX_new(meth);
	if (ctx == NULL)
+1 −1
Original line number Diff line number Diff line
@@ -605,7 +605,7 @@ bad:
		}

	SSL_load_error_strings();
	SSLeay_add_ssl_algorithms();
	OpenSSL_add_ssl_algorithms();

	ctx=SSL_CTX_new(meth);
	if (ctx == NULL)
Loading