aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_bcrypt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_bcrypt.cpp')
-rw-r--r--src/modules/m_bcrypt.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/modules/m_bcrypt.cpp b/src/modules/m_bcrypt.cpp
index 2bf09acfa..560a28927 100644
--- a/src/modules/m_bcrypt.cpp
+++ b/src/modules/m_bcrypt.cpp
@@ -80,10 +80,13 @@ class BCryptProvider : public HashProvider
class ModuleBCrypt : public Module
{
+ private:
BCryptProvider bcrypt;
public:
- ModuleBCrypt() : bcrypt(this)
+ ModuleBCrypt()
+ : Module(VF_VENDOR, "Implements bcrypt hashing")
+ , bcrypt(this)
{
}
@@ -92,11 +95,6 @@ class ModuleBCrypt : public Module
ConfigTag* conf = ServerInstance->Config->ConfValue("bcrypt");
bcrypt.rounds = conf->getUInt("rounds", 10, 1);
}
-
- Version GetVersion() override
- {
- return Version("Implements bcrypt hashing", VF_VENDOR);
- }
};
MODULE_INIT(ModuleBCrypt)