aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2017-06-26 12:02:57 -0400
committerRich Salz <rsalz@openssl.org>2017-06-27 12:14:49 -0400
commitf367ac2b2664df272aa1903c7650f0c64f539d28 (patch)
tree654388ca91eb1a89173546d83bc413322f706e8f /test
parentc91ec013654e97ca1754db26bd2da62c8bbf7b47 (diff)
downloadopenssl-f367ac2b2664df272aa1903c7650f0c64f539d28.tar.gz
Use randomness not entropy
Reviewed-by: Ben Kaduk <kaduk@mit.edu> (Merged from https://github.com/openssl/openssl/pull/3773)
Diffstat (limited to 'test')
-rw-r--r--test/dhtest.c2
-rw-r--r--test/dsatest.c2
-rw-r--r--test/ecdsatest.c4
-rw-r--r--test/ectest.c2
-rw-r--r--test/recipes/25-test_req.t2
-rw-r--r--test/recipes/80-test_ssl_old.t2
-rw-r--r--test/ssltest_old.c2
7 files changed, 8 insertions, 8 deletions
diff --git a/test/dhtest.c b/test/dhtest.c
index 618b84e773..303f40fd53 100644
--- a/test/dhtest.c
+++ b/test/dhtest.c
@@ -31,7 +31,7 @@ int main(int argc, char *argv[])
static int cb(int p, int n, BN_GENCB *arg);
static const char rnd_seed[] =
- "string to make the random number generator think it has entropy";
+ "string to make the random number generator think it has randomness";
static int dh_test(void)
{
diff --git a/test/dsatest.c b/test/dsatest.c
index 579e57c382..9c5afa3c46 100644
--- a/test/dsatest.c
+++ b/test/dsatest.c
@@ -64,7 +64,7 @@ static unsigned char out_g[] = {
static const unsigned char str1[] = "12345678901234567890";
static const char rnd_seed[] =
- "string to make the random number generator think it has entropy";
+ "string to make the random number generator think it has randomness";
static int dsa_test(void)
{
diff --git a/test/ecdsatest.c b/test/ecdsatest.c
index 841934e51c..8a245b5d74 100644
--- a/test/ecdsatest.c
+++ b/test/ecdsatest.c
@@ -28,8 +28,8 @@
# include <openssl/rand.h>
# include "testutil.h"
-static const char rnd_seed[] = "string to make the random number generator "
- "think it has entropy";
+static const char rnd_seed[] =
+ "string to make the random number generator think it has randomness";
/* functions to change the RAND_METHOD */
diff --git a/test/ectest.c b/test/ectest.c
index 84e0997169..351fefd994 100644
--- a/test/ectest.c
+++ b/test/ectest.c
@@ -1427,7 +1427,7 @@ static int parameter_test(void)
}
static const char rnd_seed[] =
- "string to make the random number generator think it has entropy";
+ "string to make the random number generator think it has randomness";
#endif
int test_main(int argc, char *argv[])
diff --git a/test/recipes/25-test_req.t b/test/recipes/25-test_req.t
index bcc10257d4..82b9bf8aec 100644
--- a/test/recipes/25-test_req.t
+++ b/test/recipes/25-test_req.t
@@ -20,7 +20,7 @@ plan tests => 4;
require_ok(srctop_file('test','recipes','tconversion.pl'));
open RND, ">>", ".rnd";
-print RND "string to make the random number generator think it has entropy";
+print RND "string to make the random number generator think it has randomness";
close RND;
subtest "generating certificate requests" => sub {
my @req_new;
diff --git a/test/recipes/80-test_ssl_old.t b/test/recipes/80-test_ssl_old.t
index 501009384a..ea7623125c 100644
--- a/test/recipes/80-test_ssl_old.t
+++ b/test/recipes/80-test_ssl_old.t
@@ -101,7 +101,7 @@ testssl("keyU.ss", $Ucert, $CAcert);
# subtest functions
sub testss {
open RND, ">>", ".rnd";
- print RND "string to make the random number generator think it has entropy";
+ print RND "string to make the random number generator think it has randomness";
close RND;
my @req_dsa = ("-newkey",
diff --git a/test/ssltest_old.c b/test/ssltest_old.c
index 01cf4f1134..acadb669d2 100644
--- a/test/ssltest_old.c
+++ b/test/ssltest_old.c
@@ -614,7 +614,7 @@ static char *cipher = NULL;
static int verbose = 0;
static int debug = 0;
static const char rnd_seed[] =
- "string to make the random number generator think it has entropy";
+ "string to make the random number generator think it has randomness";
int doit_localhost(SSL *s_ssl, SSL *c_ssl, int family,
long bytes, clock_t *s_time, clock_t *c_time);