aboutsummaryrefslogtreecommitdiffstats
path: root/util-src
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2022-06-24 16:49:03 +0200
committerKim Alvefur <zash@zash.se>2022-06-24 16:49:03 +0200
commit8f3d837cd253a226a30fd05529ff7b8bf0d535fa (patch)
treef89725a3dd72906e6036a9e561ea3ca4000efb6d /util-src
parent452f9e4e2b04982a5222312602f710e28e8f41fb (diff)
downloadprosody-8f3d837cd253a226a30fd05529ff7b8bf0d535fa.tar.gz
prosody-8f3d837cd253a226a30fd05529ff7b8bf0d535fa.zip
util.hashes: Remove unused constants
Diffstat (limited to 'util-src')
-rw-r--r--util-src/hashes.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/util-src/hashes.c b/util-src/hashes.c
index b302d8eb..4ad786ae 100644
--- a/util-src/hashes.c
+++ b/util-src/hashes.c
@@ -34,9 +34,6 @@ typedef unsigned __int32 uint32_t;
#define luaL_setfuncs(L, R, N) luaL_register(L, NULL, R)
#endif
-#define HMAC_IPAD 0x36363636
-#define HMAC_OPAD 0x5c5c5c5c
-
static const char *hex_tab = "0123456789abcdef";
static void toHex(const unsigned char *in, int length, unsigned char *out) {
int i;