summaryrefslogtreecommitdiff
path: root/src/sha.h
diff options
context:
space:
mode:
authorNiko Tyni <ntyni@debian.org>2006-06-01 18:29:01 +0000
committerNiko Tyni <ntyni@debian.org>2006-06-01 18:29:01 +0000
commit2c1162f8ccc49d0c994c81901f3de4474e93d68d (patch)
tree627d3c432339014119e07f976f8e50fa0a767c30 /src/sha.h
parent31c1416c9de4bf2e570d6c3f94f9c3c6f8249c18 (diff)
Load /tmp/tmp.wlpBVy3392/libdigest-sha-perl-5.39 into
packages/libdigest-sha-perl/branches/upstream/current.
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