From: Richard Levitte Date: Tue, 15 Jun 2004 12:52:26 +0000 (+0000) Subject: Making some values explicitely unsigned was derived from ongoing work X-Git-Tag: BEN_FIPS_TEST_6~14^2~202 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f7fc4ca1dd98153e8e21ecbd1fb4fd45c8a14011;p=oweals%2Fopenssl.git Making some values explicitely unsigned was derived from ongoing work that isn't yet committed. It wasn't meant to be committed already, so I'm removing it for now. --- diff --git a/crypto/sha/sha.h b/crypto/sha/sha.h index 47536d9c4b..f25512e5e6 100644 --- a/crypto/sha/sha.h +++ b/crypto/sha/sha.h @@ -89,12 +89,12 @@ extern "C" { #define SHA_LONG unsigned int #endif -#define SHA_LBLOCK 16U +#define SHA_LBLOCK 16 #define SHA_CBLOCK (SHA_LBLOCK*4) /* SHA treats input data as a * contiguous array of 32 bit * wide big-endian values. */ #define SHA_LAST_BLOCK (SHA_CBLOCK-8) -#define SHA_DIGEST_LENGTH 20U +#define SHA_DIGEST_LENGTH 20 typedef struct SHAstate_st {