diff options
| author | 2025-04-06 00:40:09 +0100 | |
|---|---|---|
| committer | 2025-04-06 00:45:31 +0100 | |
| commit | f945fd31e4e7114433e23e663a106e652af08e45 (patch) | |
| tree | d18bd2740850b79c84938e61b67c545228a5c825 /modules | |
| parent | Delete the old hashing interface and modules. (diff) | |
Rename newhash to hash now its the only option.
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/cloak_custom.cpp | 2 | ||||
| -rw-r--r-- | modules/cloak_sha256.cpp | 2 | ||||
| -rw-r--r-- | modules/core/core_user/core_user.cpp | 2 | ||||
| -rw-r--r-- | modules/customtitle.cpp | 2 | ||||
| -rw-r--r-- | modules/extra/hash_argon2.cpp | 2 | ||||
| -rw-r--r-- | modules/gateway.cpp | 2 | ||||
| -rw-r--r-- | modules/hash_bcrypt.cpp | 2 | ||||
| -rw-r--r-- | modules/hash_pbkdf2.cpp | 2 | ||||
| -rw-r--r-- | modules/hash_sha1.cpp | 2 | ||||
| -rw-r--r-- | modules/hash_sha2.cpp | 2 | ||||
| -rw-r--r-- | modules/mkpasswd.cpp | 2 | ||||
| -rw-r--r-- | modules/spanningtree/hmac.cpp | 2 | ||||
| -rw-r--r-- | modules/sqlauth.cpp | 2 | ||||
| -rw-r--r-- | modules/websocket.cpp | 2 |
14 files changed, 14 insertions, 14 deletions
diff --git a/modules/cloak_custom.cpp b/modules/cloak_custom.cpp index 81710bc8b..3adf529fd 100644 --- a/modules/cloak_custom.cpp +++ b/modules/cloak_custom.cpp @@ -20,7 +20,7 @@ #include "inspircd.h" #include "extension.h" #include "modules/cloak.h" -#include "modules/newhash.h" +#include "modules/hash.h" #include "modules/ircv3_replies.h" class CustomCloakExtItem final diff --git a/modules/cloak_sha256.cpp b/modules/cloak_sha256.cpp index 43faea7a0..b66e0ee69 100644 --- a/modules/cloak_sha256.cpp +++ b/modules/cloak_sha256.cpp @@ -42,7 +42,7 @@ typedef void psl_ctx_t; #include "inspircd.h" #include "modules/cloak.h" -#include "modules/newhash.h" +#include "modules/hash.h" #include "utility/string.h" class SHA256Method final diff --git a/modules/core/core_user/core_user.cpp b/modules/core/core_user/core_user.cpp index 52d4ead55..7caca8c96 100644 --- a/modules/core/core_user/core_user.cpp +++ b/modules/core/core_user/core_user.cpp @@ -20,7 +20,7 @@ #include "inspircd.h" #include "clientprotocolmsg.h" -#include "modules/newhash.h" +#include "modules/hash.h" #include "utility/string.h" #include "core_user.h" diff --git a/modules/customtitle.cpp b/modules/customtitle.cpp index e93757a4a..b0905b4ee 100644 --- a/modules/customtitle.cpp +++ b/modules/customtitle.cpp @@ -24,7 +24,7 @@ #include "inspircd.h" #include "extension.h" -#include "modules/newhash.h" +#include "modules/hash.h" #include "modules/whois.h" struct CustomTitle final diff --git a/modules/extra/hash_argon2.cpp b/modules/extra/hash_argon2.cpp index ecfa4aa6f..d3f5ca486 100644 --- a/modules/extra/hash_argon2.cpp +++ b/modules/extra/hash_argon2.cpp @@ -27,7 +27,7 @@ #include <argon2.h> #include "inspircd.h" -#include "modules/newhash.h" +#include "modules/hash.h" struct Argon2Config final { diff --git a/modules/gateway.cpp b/modules/gateway.cpp index 5988db58a..a71f60560 100644 --- a/modules/gateway.cpp +++ b/modules/gateway.cpp @@ -29,7 +29,7 @@ #include "inspircd.h" #include "extension.h" #include "modules/extban.h" -#include "modules/newhash.h" +#include "modules/hash.h" #include "modules/ssl.h" #include "modules/webirc.h" #include "modules/whois.h" diff --git a/modules/hash_bcrypt.cpp b/modules/hash_bcrypt.cpp index b90c8c203..0dc2c8764 100644 --- a/modules/hash_bcrypt.cpp +++ b/modules/hash_bcrypt.cpp @@ -18,7 +18,7 @@ #include "inspircd.h" -#include "modules/newhash.h" +#include "modules/hash.h" #include <bcrypt/crypt_blowfish.c> diff --git a/modules/hash_pbkdf2.cpp b/modules/hash_pbkdf2.cpp index 930300c9e..11b55aa4b 100644 --- a/modules/hash_pbkdf2.cpp +++ b/modules/hash_pbkdf2.cpp @@ -18,7 +18,7 @@ #include "inspircd.h" -#include "modules/newhash.h" +#include "modules/hash.h" namespace { diff --git a/modules/hash_sha1.cpp b/modules/hash_sha1.cpp index 211003f31..7a8bb8378 100644 --- a/modules/hash_sha1.cpp +++ b/modules/hash_sha1.cpp @@ -20,7 +20,7 @@ #include <sha1/sha1.c> #include "inspircd.h" -#include "modules/newhash.h" +#include "modules/hash.h" #define SHA1_BLOCK_SIZE 64 #define SHA1_DIGEST_SIZE 20 diff --git a/modules/hash_sha2.cpp b/modules/hash_sha2.cpp index 29e4c37b1..b6ebc4d6f 100644 --- a/modules/hash_sha2.cpp +++ b/modules/hash_sha2.cpp @@ -30,7 +30,7 @@ #endif #include "inspircd.h" -#include "modules/newhash.h" +#include "modules/hash.h" template <typename SHAContext, void (* SHAInit)(SHAContext *), diff --git a/modules/mkpasswd.cpp b/modules/mkpasswd.cpp index afc183dfd..12b036f98 100644 --- a/modules/mkpasswd.cpp +++ b/modules/mkpasswd.cpp @@ -18,7 +18,7 @@ #include "inspircd.h" -#include "modules/newhash.h" +#include "modules/hash.h" #include "modules/ircv3_replies.h" class CommandMakePassword final diff --git a/modules/spanningtree/hmac.cpp b/modules/spanningtree/hmac.cpp index 144a2b1c7..6e2de3aba 100644 --- a/modules/spanningtree/hmac.cpp +++ b/modules/spanningtree/hmac.cpp @@ -23,7 +23,7 @@ #include "inspircd.h" -#include "modules/newhash.h" +#include "modules/hash.h" #include "modules/ssl.h" #include "main.h" diff --git a/modules/sqlauth.cpp b/modules/sqlauth.cpp index 28daf0f38..5b55281ab 100644 --- a/modules/sqlauth.cpp +++ b/modules/sqlauth.cpp @@ -27,7 +27,7 @@ #include "inspircd.h" #include "extension.h" #include "modules/sql.h" -#include "modules/newhash.h" +#include "modules/hash.h" #include "modules/ssl.h" enum AuthState { diff --git a/modules/websocket.cpp b/modules/websocket.cpp index c3ce269fb..4212b9611 100644 --- a/modules/websocket.cpp +++ b/modules/websocket.cpp @@ -23,7 +23,7 @@ #include "inspircd.h" #include "extension.h" #include "iohook.h" -#include "modules/newhash.h" +#include "modules/hash.h" #include "modules/isupport.h" #include "modules/whois.h" #include "utility/string.h" |
