summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/sha
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/sha')
-rw-r--r--src/lib/libcrypto/sha/sha.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/libcrypto/sha/sha.h b/src/lib/libcrypto/sha/sha.h
index 435352c208..c0c3c16c08 100644
--- a/src/lib/libcrypto/sha/sha.h
+++ b/src/lib/libcrypto/sha/sha.h
@@ -154,10 +154,7 @@ void SHA256_Transform(SHA256_CTX *c, const unsigned char *data);
154#define SHA512_CBLOCK (SHA_LBLOCK*8) /* SHA-512 treats input data as a 154#define SHA512_CBLOCK (SHA_LBLOCK*8) /* SHA-512 treats input data as a
155 * contiguous array of 64 bit 155 * contiguous array of 64 bit
156 * wide big-endian values. */ 156 * wide big-endian values. */
157#if (defined(_WIN32) || defined(_WIN64)) && !defined(__MINGW32__) 157#if defined(_LP64)
158#define SHA_LONG64 unsigned __int64
159#define U64(C) C##UI64
160#elif defined(__arch64__)
161#define SHA_LONG64 unsigned long 158#define SHA_LONG64 unsigned long
162#define U64(C) C##UL 159#define U64(C) C##UL
163#else 160#else