]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_md5.cpp
Remove some debug (im on a crusade to make debug mode useful, but at the same time...
[user/henk/code/inspircd.git] / src / modules / m_md5.cpp
index a753ef5772b4b88346375187bf41d1750b078a61..4ed011acf853bb2a26af24344c61e41263db4cbb 100644 (file)
@@ -2,12 +2,9 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- *                       E-mail:
- *                <brain@chatspike.net>
- *               <Craig@chatspike.net>
- *     
- * Written by Craig Edwards, Craig McLure, and others.
+ *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
  *
@@ -17,8 +14,6 @@
 /* $ModDesc: Allows for MD5 encrypted oper passwords */
 /* $ModDep: m_hash.h */
 
-using namespace std;
-
 #include "inspircd_config.h"
 #ifdef HAS_STDINT
 #include <stdint.h>
@@ -278,10 +273,12 @@ class ModuleMD5 : public Module
        ModuleMD5(InspIRCd* Me)
                : Module::Module(Me), key(NULL), chars(NULL)
        {
+               ServerInstance->PublishInterface("HashRequest", this);
        }
        
        virtual ~ModuleMD5()
        {
+               ServerInstance->UnpublishInterface("HashRequest", this);
        }
 
        void Implements(char* List)
@@ -292,6 +289,7 @@ class ModuleMD5 : public Module
        virtual char* OnRequest(Request* request)
        {
                HashRequest* MD5 = (HashRequest*)request;
+
                if (strcmp("KEY", request->GetId()) == 0)
                {
                        this->key = (unsigned int*)MD5->GetKeyData();
@@ -306,6 +304,10 @@ class ModuleMD5 : public Module
                        GenHash((const char*)MD5->GetHashData(), data, chars ? chars : "0123456789abcdef", key);
                        return data;
                }
+               else if (strcmp("NAME", request->GetId()) == 0)
+               {
+                       return "md5";
+               }
                else if (strcmp("RESET", request->GetId()) == 0)
                {
                        this->chars = NULL;
@@ -316,7 +318,7 @@ class ModuleMD5 : public Module
 
        virtual Version GetVersion()
        {
-               return Version(1,1,0,1,VF_VENDOR,API_VERSION);
+               return Version(1,1,0,1,VF_VENDOR|VF_SERVICEPROVIDER,API_VERSION);
        }
 };