aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2018-08-16 16:01:58 +0200
committerRichard Levitte <levitte@openssl.org>2018-08-16 22:39:27 +0200
commit2805ee1e095a78f596dc7adf778441e2edb9f15c (patch)
tree35d52391ded0d3d9a8359ccb71c6422a831fcd0f
parent96d7852cbd0c7861cce155e1dc8c621648c0ba70 (diff)
downloadopenssl-2805ee1e095a78f596dc7adf778441e2edb9f15c.zip
openssl-2805ee1e095a78f596dc7adf778441e2edb9f15c.tar.gz
openssl-2805ee1e095a78f596dc7adf778441e2edb9f15c.tar.bz2
Configure: warn when 'none' is the chosen seed source
Fixes #6980 Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> (Merged from https://github.com/openssl/openssl/pull/6981)
-rwxr-xr-xConfigure15
1 files changed, 12 insertions, 3 deletions
diff --git a/Configure b/Configure
index c9f6ea7..2eb8533 100755
--- a/Configure
+++ b/Configure
@@ -1010,9 +1010,18 @@ if (scalar(@seed_sources) == 0) {
print "Using os-specific seed configuration\n";
push @seed_sources, 'os';
}
-die "Cannot seed with none and anything else"
- if scalar(grep { $_ eq 'none' } @seed_sources) > 0
- && scalar(@seed_sources) > 1;
+if (scalar(grep { $_ eq 'none' } @seed_sources) > 0) {
+ die "Cannot seed with none and anything else" if scalar(@seed_sources) > 1;
+ warn <<_____ if scalar(@seed_sources) == 1;
+You have selected the --with-rand-seed=none option, which effectively disables
+automatic reseeding of the OpenSSL random generator. All operations depending
+on the random generator such as creating keys will not work unless the random
+generator is seeded manually by the application.
+
+Please read the 'Note on random number generation' section in the INSTALL
+instructions and the RAND_DRBG(7) manual page for more details.
+_____
+}
push @{$config{openssl_other_defines}},
map { (my $x = $_) =~ tr|[\-a-z]|[_A-Z]|; "OPENSSL_RAND_SEED_$x" }
@seed_sources;