X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_opermd5.cpp;h=4116ccb37810693bf0ecbe167aae89c1116078cb;hb=2330fc9ddd48c939e894e7e37e9bb2e62eafc38d;hp=9dd2960ffd25bd744b4d324b5b12d50074511ffc;hpb=e2e581f0d3d5d844dc4b5210f566e5a5571a0570;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_opermd5.cpp b/src/modules/m_opermd5.cpp index 9dd2960ff..4116ccb37 100644 --- a/src/modules/m_opermd5.cpp +++ b/src/modules/m_opermd5.cpp @@ -19,12 +19,15 @@ using namespace std; #include +#include "inspircd_config.h" +#ifdef HAS_STDINT +#include +#endif #include "users.h" #include "channels.h" #include "modules.h" #include "helperfuncs.h" - /* The four core functions - F1 is optimized somewhat */ #define F1(x, y, z) (z ^ (x & (y ^ z))) #define F2(x, y, z) F1(z, x, y) @@ -35,10 +38,16 @@ using namespace std; #define MD5STEP(f,w,x,y,z,in,s) \ (w += f(x,y,z) + in, w = (w<>(32-s)) + x) -typedef unsigned long word32; +#ifndef HAS_STDINT +typedef unsigned int uint32_t; +#endif + +typedef uint32_t word32; /* NOT unsigned long. We don't support 16 bit platforms, anyway. */ typedef unsigned char byte; -struct MD5Context { +class MD5Context : public classbase +{ + public: word32 buf[4]; word32 bytes[2]; word32 in[16]; @@ -267,7 +276,7 @@ class cmd_mkpasswd : public command_t this->source = "m_opermd5.so"; } - void Handle (char **parameters, int pcnt, userrec *user) + void Handle (const char** parameters, int pcnt, userrec *user) { char buffer[MAXBUF]; GenHash(parameters[0],buffer); @@ -298,7 +307,7 @@ class ModuleOperMD5 : public Module List[I_OnOperCompare] = 1; } - virtual int OnOperCompare(std::string data, std::string input) + virtual int OnOperCompare(const std::string &data, const std::string &input) { char buffer[MAXBUF]; if (data.length() == 32) // if its 32 chars long, try it as an md5