From f946dd7198f66d48ae178023f107bf99c399b78d Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Fri, 22 Dec 2006 15:42:06 +0000 Subject: [PATCH] Make sha.h more "portable." --- crypto/sha/sha.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crypto/sha/sha.h b/crypto/sha/sha.h index b7773d6c21..5a023d52b9 100644 --- a/crypto/sha/sha.h +++ b/crypto/sha/sha.h @@ -60,6 +60,7 @@ #define HEADER_SHA_H #include +#include #ifdef __cplusplus extern "C" { @@ -98,7 +99,7 @@ extern "C" { typedef struct SHAstate_st { - SHA_LONG h0,h1,h2,h3,h4; + SHA_LONG h[5]; SHA_LONG Nl,Nh; SHA_LONG data[SHA_LBLOCK]; unsigned int num; -- 2.25.1