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 - -# if HAVE_INTTYPES_H -# include -# endif -# if HAVE_STDINT_H || _LIBC -# include -# endif +# include /* 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]; };