diff options
Diffstat (limited to 'crypt/sha256.h')
-rw-r--r-- | crypt/sha256.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crypt/sha256.h b/crypt/sha256.h index fcf61485de..0457bfae40 100644 --- a/crypt/sha256.h +++ b/crypt/sha256.h @@ -24,6 +24,7 @@ #include <limits.h> #include <stdint.h> #include <stdio.h> +#include <endian.h> /* Structure to save state of computation between the single steps. */ @@ -34,6 +35,8 @@ struct sha256_ctx union { uint64_t total64; +#define TOTAL64_low (1 - (BYTE_ORDER == LITTLE_ENDIAN)) +#define TOTAL64_high (BYTE_ORDER == LITTLE_ENDIAN) uint32_t total[2]; }; uint32_t buflen; |