aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_md5.cpp
diff options
context:
space:
mode:
authorGravatar attilamolnar2013-04-01 00:54:58 +0200
committerGravatar attilamolnar2013-04-01 00:54:58 +0200
commit56cae0f3a484cbcb20569b68917f1810a0c2f4a4 (patch)
tree9840c493ac9f05687a28aff540e9c3ca4025cb67 /src/modules/m_md5.cpp
parentMark as version 2.2 (diff)
Remove legacy code, mostly related to 1.2 compatibility
Diffstat (limited to 'src/modules/m_md5.cpp')
-rw-r--r--src/modules/m_md5.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/modules/m_md5.cpp b/src/modules/m_md5.cpp
index 14ccf16a8..c42507ea1 100644
--- a/src/modules/m_md5.cpp
+++ b/src/modules/m_md5.cpp
@@ -275,13 +275,6 @@ class MD5Provider : public HashProvider
return std::string(res, 16);
}
- std::string sumIV(unsigned int* IV, const char* HexMap, const std::string &sdata)
- {
- char res[33];
- GenHash(sdata.data(), res, HexMap, IV, sdata.length());
- return res;
- }
-
MD5Provider(Module* parent) : HashProvider(parent, "hash/md5", 16, 64) {}
};