summaryrefslogtreecommitdiffstats
path: root/crypto/include
diff options
context:
space:
mode:
authorKurt Roeckx <kurt@roeckx.be>2017-08-27 17:46:33 +0200
committerKurt Roeckx <kurt@roeckx.be>2017-08-28 23:15:52 +0200
commit0b14a5b7ccd1618fe47d74a51c4873144c57ac83 (patch)
treeded12ac2db33ca847dc4d22ccb93a138e2c18120 /crypto/include
parentb23171744b01e473ebbfd6edad70c1c3825ffbcd (diff)
Don't auto-instantiate a DRBG when trying to use it and it's not
The one creating the DRBG should instantiate it, it's there that we know which parameters we should use to instantiate it. This splits the rand init in two parts to avoid a deadlock because when the global drbg is created it wands to call rand_add on the global rand method. Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Paul Dale <paul.dale@oracle.com> GH: #4268
Diffstat (limited to 'crypto/include')
-rw-r--r--crypto/include/internal/rand_int.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/include/internal/rand_int.h b/crypto/include/internal/rand_int.h
index 90b00946a8..d0999f28ad 100644
--- a/crypto/include/internal/rand_int.h
+++ b/crypto/include/internal/rand_int.h
@@ -18,4 +18,5 @@
#include <openssl/rand.h>
void rand_cleanup_int(void);
+void rand_cleanup_drbg_int(void);
void rand_fork(void);