From a039778b4e979a391bb468a20f2d2177211c056c Mon Sep 17 00:00:00 2001 From: Tim Segers Date: Sun, 7 Dec 2025 19:36:36 +0100 Subject: Make bin2hex lowercase --- ext/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/util.c') diff --git a/ext/util.c b/ext/util.c index 42fe8ac..7e59abc 100644 --- a/ext/util.c +++ b/ext/util.c @@ -9,7 +9,7 @@ int bin2hex(char *hex, size_t hexsize, const uint8_t *bin, size_t binlen) { - static const char hex_chars[] = "0123456789ABCDEF"; + static const char hex_chars[] = "0123456789abcdef"; if (hex == NULL || bin == NULL || hexsize == 0) return -1; -- cgit v1.2.3-70-g09d2