From 67732c42a3c5d98256674f827af1ac4a17015538 Mon Sep 17 00:00:00 2001 From: ame Date: Mon, 8 Apr 2024 10:31:23 -0500 Subject: sha256 & sha224 --- src/hash/blake.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/hash/blake.c') diff --git a/src/hash/blake.c b/src/hash/blake.c index 6fcdae9..e027b10 100644 --- a/src/hash/blake.c +++ b/src/hash/blake.c @@ -210,7 +210,7 @@ void blake512(char *out, char *in, uint64_t inlen, enum blake512_v v){ } for(int i = 0; i != (v==b512?8:6); i++){ - sprintf(out, "%s%016lx",out, (hash)[i]); + sprintf(out, "%s%016llx",out, (hash)[i]); } } -- cgit v1.2.3