util.hashes: Remove unused constants
authorKim Alvefur <zash@zash.se>
Fri, 24 Jun 2022 16:49:03 +0200
changeset 12571 96871ee6e26c
parent 12570 91e5cb295ba3
child 12572 fc6213104d78
util.hashes: Remove unused constants
util-src/hashes.c
--- a/util-src/hashes.c	Fri Jun 24 16:12:11 2022 +0200
+++ b/util-src/hashes.c	Fri Jun 24 16:49:03 2022 +0200
@@ -34,9 +34,6 @@
 #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;