summaryrefslogtreecommitdiff
path: root/src/sha.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sha.h')
-rw-r--r--src/sha.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sha.h b/src/sha.h
index aff4ad3..23861ee 100644
--- a/src/sha.h
+++ b/src/sha.h
@@ -5,8 +5,8 @@
*
* Copyright (C) 2003-2006 Mark Shelor, All Rights Reserved
*
- * Version: 5.34
- * Thu Feb 2 18:55:40 MST 2006
+ * Version: 5.39
+ * Sun May 28 03:22:24 MST 2006
*
*/
@@ -16,7 +16,6 @@
#include <limits.h>
#define SHA32_MAX 4294967295U
-#define SHA64_MAX 18446744073709551615U
#define SHA32_SHR(x, n) ((x) >> (n))
#define SHA32_SHL(x, n) ((x) << (n))
@@ -61,6 +60,7 @@
#elif defined(SHA_ULL_EXISTS)
#undef SHA64_ALIGNED
#undef SHA64_SHR
+ #define SHA64_MAX 18446744073709551615ULL
#define SHA64_SHR(x, n) (((x) & SHA64_MAX) >> (n))
#define SHA64 unsigned long long
#define SHA64_CONST(c) c ## ULL