summaryrefslogtreecommitdiff
path: root/include/modules/encryption.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/modules/encryption.h')
-rw-r--r--include/modules/encryption.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/modules/encryption.h b/include/modules/encryption.h
index 3fe06cc2b..eb9ab8d62 100644
--- a/include/modules/encryption.h
+++ b/include/modules/encryption.h
@@ -27,7 +27,9 @@ namespace Encryption
class Provider : public Service
{
public:
- Provider(Module *creator, const Anope::string &sname) : Service(creator, "Encryption::Provider", sname) { }
+ static constexpr const char *NAME = "hash";
+
+ Provider(Module *creator, const Anope::string &sname) : Service(creator, NAME, sname) { }
virtual ~Provider() { }
virtual Context *CreateContext(IV * = NULL) anope_abstract;