diff options
author | Peter Powell <petpow@saberuk.com> | 2018-09-06 11:29:45 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2018-09-06 13:31:53 +0100 |
commit | 8512726adf455358d2e467dcc79fc9913ccbcf6b (patch) | |
tree | 7319790cd6acfa63b8bb69b834c98851acdacbc8 /docs/conf/inspircd.conf.example | |
parent | 33180223e318c304892b3fa8640f90f1ddf6f4b4 (diff) |
Remove the ripemd160 module.
The library code used by this module is licensed under a non-free
license which is incompatible with the GPLv2. Combined with the
fact that it has been superceded by better algorithms like bcrypt
I have decided to remove it.
An alternate implementation of this algorithm is provided by the
m_hash_gnutls module if people *really* need to use it.
Diffstat (limited to 'docs/conf/inspircd.conf.example')
-rw-r--r-- | docs/conf/inspircd.conf.example | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/conf/inspircd.conf.example b/docs/conf/inspircd.conf.example index 12fc613aa..9f4581fb3 100644 --- a/docs/conf/inspircd.conf.example +++ b/docs/conf/inspircd.conf.example @@ -250,9 +250,9 @@ allow="203.0.113.*" # hash: the hash function this password is hashed with. Requires the - # module for the selected function (bcrypt, md5, sha1, sha256, or - # ripemd160) and the password hashing module (password_hash) to be - # loaded. + # module for the selected function (bcrypt, md5, sha1, or sha256) and + # the password hashing module (password_hash) to be loaded. + # # You may also use any of the above other than bcrypt prefixed with # either "hmac-" or "pbkdf2-hmac-" (requires the pbkdf2 module). # Create hashed passwords with: /mkpasswd <hash> <password> |