diff options
author | Rich Salz <rsalz@openssl.org> | 2017-06-26 18:02:57 +0200 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2017-06-27 18:14:49 +0200 |
commit | f367ac2b2664df272aa1903c7650f0c64f539d28 (patch) | |
tree | 654388ca91eb1a89173546d83bc413322f706e8f /test/dhtest.c | |
parent | Fix return-value checks in OCSP_resp_get1_id() (diff) | |
download | openssl-f367ac2b2664df272aa1903c7650f0c64f539d28.tar.xz openssl-f367ac2b2664df272aa1903c7650f0c64f539d28.zip |
Use randomness not entropy
Reviewed-by: Ben Kaduk <kaduk@mit.edu>
(Merged from https://github.com/openssl/openssl/pull/3773)
Diffstat (limited to 'test/dhtest.c')
-rw-r--r-- | test/dhtest.c | 2 |
1 files changed, 1 insertions, 1 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) { |