aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2014-06-08 20:33:29 +0100
committerSteve Holme <steve_holme@hotmail.com>2014-06-11 21:13:40 +0100
commit51bb067a4289f5e4717391eb62f91465706b4ebc (patch)
tree1404473d751c03be60d84f8c21770ef5955292ea /lib
parentbde0d89c3d4a1fa284ad67299f43e5f2f7acad59 (diff)
Curl_rand: Use a fake entropy for debug builds when CURL_ENTROPY set
Diffstat (limited to 'lib')
-rw-r--r--lib/vtls/vtls.c19
1 files changed, 18 insertions, 1 deletions
diff --git a/lib/vtls/vtls.c b/lib/vtls/vtls.c
index ab7274ace..58295a4de 100644
--- a/lib/vtls/vtls.c
+++ b/lib/vtls/vtls.c
@@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -197,6 +197,23 @@ unsigned int Curl_rand(struct SessionHandle *data)
static unsigned int randseed;
static bool seeded = FALSE;
+#ifdef CURLDEBUG
+ char *force_entropy = getenv("CURL_ENTROPY");
+ if(force_entropy) {
+ if(!seeded) {
+ size_t elen = strlen(force_entropy);
+ size_t clen = sizeof(randseed);
+ size_t min = elen < clen ? elen : clen;
+ memcpy((char *)&randseed, force_entropy, min);
+ seeded = TRUE;
+ }
+ else
+ randseed++;
+
+ return randseed;
+ }
+#endif
+
#ifndef have_curlssl_random
(void)data;
#else