From: Andy Polyakov Date: Fri, 22 Dec 2006 15:42:06 +0000 (+0000) Subject: Make sha.h more "portable." X-Git-Tag: OpenSSL_0_9_8k^2~1021 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f946dd7198f66d48ae178023f107bf99c399b78d;p=oweals%2Fopenssl.git Make sha.h more "portable." --- 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;