summaryrefslogtreecommitdiff
path: root/md5.h
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2011-08-29 20:32:04 +0200
committerNiels Möller <nisse@lysator.liu.se>2011-08-29 20:32:04 +0200
commit02cf36be8099f3837e33e089f1d3b61bd1700fd2 (patch)
treead4ba1ebe157e303d5f62df35e4ade5c6e5af732 /md5.h
parentf773cbd73f7e393a75aa80b7c2aa8899d55a4d44 (diff)
downloadnettle-02cf36be8099f3837e33e089f1d3b61bd1700fd2.tar.gz
(struct md5_ctx): Renamed some fields, for consistency.
Rev: nettle/md5.h:1.2
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 */
};