From 02cf36be8099f3837e33e089f1d3b61bd1700fd2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Niels=20M=C3=B6ller?= <nisse@lysator.liu.se>
Date: Mon, 29 Aug 2011 20:32:04 +0200
Subject: [PATCH] (struct md5_ctx): Renamed some fields, for consistency.

Rev: nettle/md5.h:1.2
---
 md5.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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 */
 };
-- 
GitLab