summaryrefslogtreecommitdiffstats
path: root/crypto/rand/rand_local.h
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/rand/rand_local.h')
-rw-r--r--crypto/rand/rand_local.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/crypto/rand/rand_local.h b/crypto/rand/rand_local.h
index e46248cf9b..73751d25e4 100644
--- a/crypto/rand/rand_local.h
+++ b/crypto/rand/rand_local.h
@@ -26,10 +26,11 @@
# define MAX_RESEED_TIME_INTERVAL (1 << 20) /* approx. 12 days */
/* Default reseed intervals */
-# define MASTER_RESEED_INTERVAL (1 << 8)
-# define SLAVE_RESEED_INTERVAL (1 << 16)
-# define MASTER_RESEED_TIME_INTERVAL (60 * 60) /* 1 hour */
-# define SLAVE_RESEED_TIME_INTERVAL (7 * 60) /* 7 minutes */
+# define PRIMARY_RESEED_INTERVAL (1 << 8)
+# define SECONDARY_RESEED_INTERVAL (1 << 16)
+# define PRIMARY_RESEED_TIME_INTERVAL (60 * 60) /* 1 hour */
+# define SECONDARY_RESEED_TIME_INTERVAL (7 * 60) /* 7 minutes */
+
/*
* The state of all types of DRBGs.
*/