summaryrefslogtreecommitdiffstats
path: root/ssl/s23_clnt.c
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-01-13 21:59:17 +0100
committerUlf Möller <ulf@openssl.org>2000-01-13 21:59:17 +0100
commiteb952088f0d5da59e569ae2aa33e9b96bc3b586d (patch)
tree1d722a423148a6b568a1e6d42f01943aed6cfb2a /ssl/s23_clnt.c
parentNote about CRYPTO_malloc_init (diff)
downloadopenssl-eb952088f0d5da59e569ae2aa33e9b96bc3b586d.tar.xz
openssl-eb952088f0d5da59e569ae2aa33e9b96bc3b586d.zip
Precautions against using the PRNG uninitialized: RAND_bytes() now
returns int (1 = ok, 0 = not seeded). New function RAND_add() is the same as RAND_seed() but takes an estimate of the entropy as an additional argument.
Diffstat (limited to 'ssl/s23_clnt.c')
-rw-r--r--ssl/s23_clnt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/s23_clnt.c b/ssl/s23_clnt.c
index 299d2ae5d2..6db98e92f5 100644
--- a/ssl/s23_clnt.c
+++ b/ssl/s23_clnt.c
@@ -102,7 +102,7 @@ int ssl23_connect(SSL *s)
int ret= -1;
int new_state,state;
- RAND_seed(&Time,sizeof(Time));
+ RAND_add(&Time,sizeof(Time),0);
ERR_clear_error();
clear_sys_error();