diff options
author | Kim Alvefur <zash@zash.se> | 2022-06-24 16:49:03 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2022-06-24 16:49:03 +0200 |
commit | 8f3d837cd253a226a30fd05529ff7b8bf0d535fa (patch) | |
tree | f89725a3dd72906e6036a9e561ea3ca4000efb6d | |
parent | 452f9e4e2b04982a5222312602f710e28e8f41fb (diff) | |
download | prosody-8f3d837cd253a226a30fd05529ff7b8bf0d535fa.tar.gz prosody-8f3d837cd253a226a30fd05529ff7b8bf0d535fa.zip |
util.hashes: Remove unused constants
-rw-r--r-- | util-src/hashes.c | 3 |
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; |