From: Niels Möller Date: Mon, 29 Aug 2011 18:29:19 +0000 (+0200) Subject: (struct md4_ctx): Renamed some fields, for consistency. X-Git-Tag: nettle_2.3_release_20110902~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=563a82e704a6075c79e5e30aa9e370e4af9b013c;p=thirdparty%2Fnettle.git (struct md4_ctx): Renamed some fields, for consistency. Rev: nettle/md4.h:1.2 --- diff --git a/md4.h b/md4.h index e9a32b9e..c0627e97 100644 --- a/md4.h +++ b/md4.h @@ -43,12 +43,13 @@ extern "C" { /* Digest is kept internally as 4 32-bit words. */ #define _MD4_DIGEST_LENGTH 4 +/* FIXME: Identical to md5_ctx */ struct md4_ctx { - uint32_t digest[_MD4_DIGEST_LENGTH]; - uint32_t count_l, count_h; /* Block count */ - uint8_t block[MD4_DATA_SIZE]; /* Block buffer */ - unsigned index; /* Into buffer */ + uint32_t state[_MD4_DIGEST_LENGTH]; + uint32_t count_low, count_high; /* Block count */ + uint8_t block[MD4_DATA_SIZE]; /* Block buffer */ + unsigned index; /* Into buffer */ }; void