X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_sha1.cpp;h=2d8ce635ce32e055659f0a13818197851be2a17e;hb=dcafba95960685120b1f6d902de623ca10ed6135;hp=561a7b6cb7f1f548b3d875129d84a87871f470d7;hpb=91e0af0fc4889f20d2f63426f8fe379674fc0393;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_sha1.cpp b/src/modules/m_sha1.cpp index 561a7b6cb..2d8ce635c 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 @@ -166,7 +167,7 @@ class SHA1HashProvider : public HashProvider { public: SHA1HashProvider(Module* mod) - : HashProvider(mod, "hash/sha1", 20, 64) + : 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); } };