From: Niels Möller Date: Mon, 29 Aug 2011 18:32:04 +0000 (+0200) Subject: (struct md5_ctx): Renamed some fields, for consistency. X-Git-Tag: nettle_2.3_release_20110902~16 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=02cf36be8099f3837e33e089f1d3b61bd1700fd2;p=thirdparty%2Fnettle.git (struct md5_ctx): Renamed some fields, for consistency. Rev: nettle/md5.h:1.2 --- diff --git a/md5.h b/md5.h index c936cb26..269152db 100644 --- a/md5.h +++ b/md5.h @@ -45,8 +45,8 @@ extern "C" { struct md5_ctx { - uint32_t digest[_MD5_DIGEST_LENGTH]; - uint32_t count_l, count_h; /* Block count */ + uint32_t state[_MD5_DIGEST_LENGTH]; + uint32_t count_low, count_high; /* Block count */ uint8_t block[MD5_DATA_SIZE]; /* Block buffer */ unsigned index; /* Into buffer */ };