diff options
author | Sadie Powell <sadie@witchery.services> | 2024-03-07 21:56:58 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-03-07 22:52:41 +0000 |
commit | 464e6b8010c11708bcbed7cf6b2d972977f0e286 (patch) | |
tree | 0adee0c876aee23acb1e16e2195df90500ff6e65 /data | |
parent | 3272c1bbc65eaa29ba63e176ec76702c5b21d367 (diff) |
Use the C++11 random number generator instead of rand().
This is safer, faster, and doesn't require seeding.
Diffstat (limited to 'data')
-rw-r--r-- | data/anope.example.conf | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/data/anope.example.conf b/data/anope.example.conf index f7a55121f..227cdd4bf 100644 --- a/data/anope.example.conf +++ b/data/anope.example.conf @@ -396,19 +396,6 @@ options casemap = "ascii" /* - * This key is used to initiate the random number generator. This number - * MUST be random as you want your passcodes to be random. Don't give this - * key to anyone! Keep it private! - * - * NOTE: If you don't uncomment this or keep the default values, any talented - * programmer would be able to easily "guess" random strings used to mask - * information. Be safe, and come up with a 7-digit number. - * - * This directive is optional, but highly recommended. - */ - #seed = 9866235 - - /* * Sets the number of invalid password tries before services removes a user * from the network. If a user enters a number of invalid passwords equal to * the given amount for any services function or combination of functions |