summaryrefslogtreecommitdiff
path: root/md5.h
diff options
context:
space:
mode:
Diffstat (limited to 'md5.h')
-rw-r--r--md5.h4
1 files 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 */
};