X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_ripemd160.cpp;h=3e7d00049170879f95179b255b54c8b91bbe52a0;hb=551d687ec6d7ce44be35fae0dd7345fe73c4f63a;hp=3e94efb0ac2509b304d6ad097b8744a3219bfcba;hpb=7e843c22e16c81054bad18073d24fe1a07026431;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_ripemd160.cpp b/src/modules/m_ripemd160.cpp index 3e94efb0a..3e7d00049 100644 --- a/src/modules/m_ripemd160.cpp +++ b/src/modules/m_ripemd160.cpp @@ -1,16 +1,25 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ +/* + * InspIRCd -- Internet Relay Chat Daemon + * + * Copyright (C) 2009 Daniel De Graaf + * Copyright (C) 2008 Pippijn van Steenhoven + * Copyright (C) 2008 Craig Edwards + * Copyright (C) 2008 Robin Burchell * - * InspIRCd: (C) 2002-2009 InspIRCd Development Team - * See: http://wiki.inspircd.org/Credits + * This file is part of InspIRCd. InspIRCd is free software: you can + * redistribute it and/or modify it under the terms of the GNU General Public + * License as published by the Free Software Foundation, version 2. * - * This program is free but copyrighted software; see - * the file COPYING for details. + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. * - * --------------------------------------------------- + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . */ + /* * * AUTHOR: Antoon Bosselaers, ESAT-COSIC @@ -48,7 +57,6 @@ /* $ModDesc: Allows for RIPEMD-160 encrypted oper passwords */ -/* $ModDep: m_hash.h */ /* macro definitions */ @@ -56,7 +64,7 @@ #ifdef HAS_STDINT #include #endif -#include "m_hash.h" +#include "modules/hash.h" #define RMDsize 160 @@ -149,16 +157,14 @@ typedef uint32_t dword; } -const char* const chars = "0123456789abcdef"; - -class ModuleRIPEMD160 : public Module +class RIProv : public HashProvider { void MDinit(dword *MDbuf, unsigned int* key) { if (key) { - ServerInstance->Logs->Log("m_ripemd160.so", DEBUG, "initialize with custom mdbuf"); + ServerInstance->Logs->Log("m_ripemd160.so", LOG_DEBUG, "initialize with custom mdbuf"); MDbuf[0] = key[0]; MDbuf[1] = key[1]; MDbuf[2] = key[2]; @@ -167,7 +173,7 @@ class ModuleRIPEMD160 : public Module } else { - ServerInstance->Logs->Log("m_ripemd160.so", DEBUG, "initialize with default mdbuf"); + ServerInstance->Logs->Log("m_ripemd160.so", LOG_DEBUG, "initialize with default mdbuf"); MDbuf[0] = 0x67452301UL; MDbuf[1] = 0xefcdab89UL; MDbuf[2] = 0x98badcfeUL; @@ -408,7 +414,7 @@ class ModuleRIPEMD160 : public Module byte *RMD(byte *message, dword length, unsigned int* key) { - ServerInstance->Logs->Log("m_ripemd160", DEBUG, "RMD: '%s' length=%u", (const char*)message, length); + ServerInstance->Logs->Log("m_ripemd160", LOG_DEBUG, "RMD: '%s' length=%u", (const char*)message, length); dword MDbuf[RMDsize/32]; /* contains (A, B, C, D(E)) */ static byte hashcode[RMDsize/8]; /* for final hash-value */ dword X[16]; /* current 16-word chunk */ @@ -438,47 +444,29 @@ class ModuleRIPEMD160 : public Module return (byte *)hashcode; } - - public: - - ModuleRIPEMD160() +public: + std::string sum(const std::string& data) { - ServerInstance->Modules->PublishInterface("HashRequest", this); + char* rv = (char*)RMD((byte*)data.data(), data.length(), NULL); + return std::string(rv, RMDsize / 8); } - virtual ~ModuleRIPEMD160() - { - ServerInstance->Modules->UnpublishInterface("HashRequest", this); - } + RIProv(Module* m) : HashProvider(m, "hash/ripemd160", 20, 64) {} +}; - void OnRequest(Request& request) +class ModuleRIPEMD160 : public Module +{ + public: + RIProv mr; + ModuleRIPEMD160() : mr(this) { - if (strcmp("HASH", request.id) == 0) - { - char res[41]; - HashRequest& req = static_cast(request); - unsigned char* data = (unsigned char*)RMD((byte*)req.data.data(), req.data.length(), NULL); - int j = 0; - for (int i = 0; i < RMDsize / 8; i++) - { - res[j++] = chars[data[i] / 16]; - res[j++] = chars[data[i] % 16]; - } - res[j] = '\0'; - req.result = res; - } - else if (strcmp("NAME", request.id) == 0) - { - static_cast(request).response = "ripemd160"; - } + ServerInstance->Modules->AddService(mr); } - virtual Version GetVersion() + Version GetVersion() { - return Version("Allows for RIPEMD-160 encrypted oper passwords", VF_VENDOR|VF_SERVICEPROVIDER, API_VERSION); + return Version("Provides RIPEMD-160 hashing", VF_VENDOR); } - }; MODULE_INIT(ModuleRIPEMD160) -