X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_sha1.cpp;h=69af2eba611ddf2f210fec1d93305ef1ae0f6ea2;hb=b4a174ee9c32d62ea6bf010e837e8c5b1c3d36a3;hp=561a7b6cb7f1f548b3d875129d84a87871f470d7;hpb=35b70631f0532a5828b04a8e0c02092a285f331a;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_sha1.cpp b/src/modules/m_sha1.cpp index 561a7b6cb..69af2eba6 100644 --- a/src/modules/m_sha1.cpp +++ b/src/modules/m_sha1.cpp @@ -1,6 +1,7 @@ /* * InspIRCd -- Internet Relay Chat Daemon * + * Copyright (C) 2017, 2020 Sadie Powell * Copyright (C) 2016 Attila Molnar * * This file is part of InspIRCd. InspIRCd is free software: you can @@ -165,8 +166,8 @@ class SHA1Context class SHA1HashProvider : public HashProvider { public: - SHA1HashProvider(Module* mod) - : HashProvider(mod, "hash/sha1", 20, 64) + SHA1HashProvider(Module* mod) + : HashProvider(mod, "sha1", 20, 64) { } @@ -192,7 +193,7 @@ class ModuleSHA1 : public Module Version GetVersion() CXX11_OVERRIDE { - return Version("Implements SHA-1 hashing", VF_VENDOR); + return Version("Allows other modules to generate SHA-1 hashes.", VF_VENDOR); } };