diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-12-05 20:48:54 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-12-05 20:48:54 +0000 |
commit | 060887d2828b9153351e74362604548af08e9d79 (patch) | |
tree | 43a28b71642cc2952a40833fa44ca0406a260911 /src/modules/m_sha256.cpp | |
parent | c3a7fb47d62c2f701782809a987747edd7bc7818 (diff) |
Allow for querying the hash modules for the hashing algorithm name
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5868 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_sha256.cpp')
-rw-r--r-- | src/modules/m_sha256.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/modules/m_sha256.cpp b/src/modules/m_sha256.cpp index c5df2aad3..68b7ad3d9 100644 --- a/src/modules/m_sha256.cpp +++ b/src/modules/m_sha256.cpp @@ -279,6 +279,10 @@ class ModuleSHA256 : public Module SHA256((const char*)SHA->GetHashData(), data, strlen(SHA->GetHashData()), chars ? chars : "0123456789abcdef", key); return data; } + else if (strcmp("SUM", request->GetId()) == 0) + { + return "SHA256"; + } else if (strcmp("RESET", request->GetId()) == 0) { this->chars = NULL; |