diff options
-rw-r--r-- | lib/sha512.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/lib/sha512.h b/lib/sha512.h index 3740de9c5..b90e71ad4 100644 --- a/lib/sha512.h +++ b/lib/sha512.h @@ -20,13 +20,7 @@ # define SHA512_H 1 # include <stdio.h> - -# if HAVE_INTTYPES_H -# include <inttypes.h> -# endif -# if HAVE_STDINT_H || _LIBC -# include <stdint.h> -# endif +# include <stdint.h> /* Structure to save state of computation between the single steps. */ struct sha512_ctx @@ -35,7 +29,7 @@ struct sha512_ctx uint64_t total[2]; uint64_t buflen; - char buffer[256]; + uint64_t buffer[32]; }; |