]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
(struct md5_ctx): Renamed some fields, for consistency.
authorNiels Möller <nisse@lysator.liu.se>
Mon, 29 Aug 2011 18:32:04 +0000 (20:32 +0200)
committerNiels Möller <nisse@lysator.liu.se>
Mon, 29 Aug 2011 18:32:04 +0000 (20:32 +0200)
Rev: nettle/md5.h:1.2

md5.h

diff --git a/md5.h b/md5.h
index c936cb269fcb828588a5a53ad4847bf2706fd6bd..269152db7ad252a89d5265d6c539de507ff96c2b 100644 (file)
--- 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 */
 };