From 3040025c5f9a7bf394823e88876e86443b98dbed Mon Sep 17 00:00:00 2001 From: citb0in <119492930+citb0in@users.noreply.github.com> Date: Thu, 19 Dec 2024 12:19:28 +0100 Subject: [PATCH 1/4] added #include --- hash/sha256.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hash/sha256.h b/hash/sha256.h index 7f106b7..a4476d1 100644 --- a/hash/sha256.h +++ b/hash/sha256.h @@ -18,6 +18,7 @@ #ifndef SHA256_H #define SHA256_H #include +#include void sha256(uint8_t *input,int length, uint8_t *digest); void sha256_33(uint8_t *input, uint8_t *digest); @@ -32,4 +33,4 @@ void sha256sse_checksum(uint32_t *i0, uint32_t *i1, uint32_t *i2, uint32_t *i3, std::string sha256_hex(unsigned char *digest); void sha256sse_test(); -#endif \ No newline at end of file +#endif From 5d43a618219aa172b6de885c175d6cc8d1587b2c Mon Sep 17 00:00:00 2001 From: citb0in <119492930+citb0in@users.noreply.github.com> Date: Thu, 19 Dec 2024 12:19:55 +0100 Subject: [PATCH 2/4] added #include --- hash/sha256.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/hash/sha256.cpp b/hash/sha256.cpp index 30cde56..fa92dc5 100644 --- a/hash/sha256.cpp +++ b/hash/sha256.cpp @@ -16,6 +16,7 @@ */ #include +#include #include "sha256.h" #define BSWAP From 43501dd99b67acb3986e2ea3c447043cd9d9e444 Mon Sep 17 00:00:00 2001 From: citb0in <119492930+citb0in@users.noreply.github.com> Date: Thu, 19 Dec 2024 12:20:28 +0100 Subject: [PATCH 3/4] added #include --- hash/sha512.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/hash/sha512.cpp b/hash/sha512.cpp index 2ab9bae..240e438 100644 --- a/hash/sha512.cpp +++ b/hash/sha512.cpp @@ -16,6 +16,7 @@ */ #include +#include #include "sha512.h" #define BSWAP From 5a391244a695839a157ab643a99e5780ac49f631 Mon Sep 17 00:00:00 2001 From: citb0in <119492930+citb0in@users.noreply.github.com> Date: Thu, 19 Dec 2024 12:21:01 +0100 Subject: [PATCH 4/4] added #include --- Timer.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Timer.h b/Timer.h index b649bf0..0407c79 100644 --- a/Timer.h +++ b/Timer.h @@ -20,6 +20,7 @@ #include #include +#include #ifdef WIN64 #include #endif