Use local SHA512 header Actually use the local private SHA512 header instead of relying on the OpenSSL one for no good reason. Add definition for expected macro SHA512_DIGEST_LENGTH.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
diff --git a/src/getentropy_aix.c b/src/getentropy_aix.c
index cbd4037..d4ccab7 100644
--- a/src/getentropy_aix.c
+++ b/src/getentropy_aix.c
@@ -39,7 +39,7 @@
#include <string.h>
#include <termios.h>
-#include <openssl/sha.h>
+#include "hash/sha512.h"
#include <libperfstat.h>
diff --git a/src/getentropy_hpux.c b/src/getentropy_hpux.c
index 45ac84b..294d83a 100644
--- a/src/getentropy_hpux.c
+++ b/src/getentropy_hpux.c
@@ -41,7 +41,8 @@
#include <errno.h>
#include <unistd.h>
#include <time.h>
-#include <openssl/sha.h>
+
+#include "hash/sha512.h"
#include <sys/vfs.h>
diff --git a/src/getentropy_linux.c b/src/getentropy_linux.c
index 0a5d6b8..d7a8ae5 100644
--- a/src/getentropy_linux.c
+++ b/src/getentropy_linux.c
@@ -47,7 +47,8 @@
#include <errno.h>
#include <unistd.h>
#include <time.h>
-#include <openssl/sha.h>
+
+#include "hash/sha512.h"
#include <linux/types.h>
#include <linux/random.h>
diff --git a/src/hash/sha512.h b/src/hash/sha512.h
index 43c5aaf..4f368a1 100644
--- a/src/hash/sha512.h
+++ b/src/hash/sha512.h
@@ -31,6 +31,8 @@
#include <sys/types.h>
+#define SHA512_DIGEST_LENGTH 64
+
typedef struct SHA512Context {
uint64_t state[8];
uint64_t count[2];