summaryrefslogtreecommitdiffstats
path: root/include/openssl/rand.h
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2017-07-26 14:27:30 -0400
committerRich Salz <rsalz@openssl.org>2017-07-26 19:27:54 -0400
commit9f08a1c63efa2205aca4361a830ac04407325597 (patch)
treea3ab9a036edf961cb6b09e5ed7f82919e6b456d5 /include/openssl/rand.h
parent43405889f47648ee70c1b412b8b71570e8aaa24a (diff)
Install custom RAND_METHOD for fuzzing
Instead of setting a "magic" global variable to force RAND to keep consistent state and always generate the same bytestream, have the fuzzing code install its own RAND_METHOD that does this. For BN_RAND_DEBUG, we just don't do it; that debugging was about mucking with BN's internal representation, not requiring predictable rand bytes. Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/4025)
Diffstat (limited to 'include/openssl/rand.h')
-rw-r--r--include/openssl/rand.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/openssl/rand.h b/include/openssl/rand.h
index b6b33cf37a..17bd70daca 100644
--- a/include/openssl/rand.h
+++ b/include/openssl/rand.h
@@ -28,10 +28,6 @@ struct rand_meth_st {
int (*status) (void);
};
-# ifdef BN_DEBUG
-extern int rand_predictable;
-# endif
-
int RAND_set_rand_method(const RAND_METHOD *meth);
const RAND_METHOD *RAND_get_rand_method(void);
# ifndef OPENSSL_NO_ENGINE