aboutsummaryrefslogtreecommitdiffstats
path: root/cipher/sha512.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cipher/sha512.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cipher/sha512.c b/cipher/sha512.c
index 523579d25..4b4018941 100644
--- a/cipher/sha512.c
+++ b/cipher/sha512.c
@@ -171,7 +171,7 @@ transform( SHA512_CONTEXT *hd, byte *data )
g = hd->h6;
h = hd->h7;
-#ifdef BIG_ENDIAN_HOST
+#if BIG_ENDIAN_HOST
memcpy( w, data, 128 );
#else
{
@@ -332,7 +332,7 @@ sha512_final(SHA512_CONTEXT *hd)
burn_stack (768);
p = hd->buf;
-#ifdef BIG_ENDIAN_HOST
+#if BIG_ENDIAN_HOST
#define X(a) do { *(u64*)p = hd->h##a ; p += 8; } while(0)
#else /* little endian */
#define X(a) do { *p++ = hd->h##a >> 56; *p++ = hd->h##a >> 48; \