diff options
author | Daniel Vassdal <shutter@canternet.org> | 2014-07-02 23:45:36 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-08-04 13:36:18 +0200 |
commit | 4e0c477eb3333a7dab407f073313d21bb5027b02 (patch) | |
tree | 34f03a22a6f2e6991c61c30aea2007db4bcf2fb6 /docs | |
parent | 0fc6faa7a16d09dbfd4425fe48f95ae91bc3de15 (diff) |
m_pbkdf2: Added module
Bugfixes and minor changes are by @attilamolnar, original PR #767
Diffstat (limited to 'docs')
-rw-r--r-- | docs/conf/modules.conf.example | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/conf/modules.conf.example b/docs/conf/modules.conf.example index b2882e16a..ffe35c739 100644 --- a/docs/conf/modules.conf.example +++ b/docs/conf/modules.conf.example @@ -1343,6 +1343,20 @@ # Don't run it on a server you don't trust with your password. #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# +# PBKDF2 module: Allows other modules to generate PBKDF2 hashes, +# usually for cryptographic uses and security. +# This module relies on other hash providers (e.g. SHA256). +#<module name="m_pbkdf2.so"> +# +# iterations: Iterations the hashing function runs when generating new +# hashes. +# length: Length in bytes of the derived key. +#<pbkdf2 iterations="12288" length="32"> +# You can override these values with specific values +# for specific providers if you want to. Example given for SHA256. +#<pbkdf2prov hash="sha256" iterations="24576"> + +#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# # Permanent channels module: Channels with the permanent channel mode # will remain open even after everyone else has left the channel, and # therefore keep things like modes, ban lists and topic. Permanent |