From: Guillem Jover Date: Tue, 1 Dec 2015 02:39:10 +0000 (+0100) Subject: Use local SHA512 header X-Git-Tag: 0.8.1~12 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=8493c7f27da2dcd2de71e9c7782c3d020d89c2a2;p=thirdparty%2Flibbsd.git 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. --- 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 #include -#include +#include "hash/sha512.h" #include 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 #include #include -#include + +#include "hash/sha512.h" #include 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 #include #include -#include + +#include "hash/sha512.h" #include #include 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 +#define SHA512_DIGEST_LENGTH 64 + typedef struct SHA512Context { uint64_t state[8]; uint64_t count[2];