Skip to content
Snippets Groups Projects
Commit 02cf36be authored by Niels Möller's avatar Niels Möller
Browse files

(struct md5_ctx): Renamed some fields, for consistency.

Rev: nettle/md5.h:1.2
parent f773cbd7
No related branches found
No related tags found
No related merge requests found
...@@ -45,8 +45,8 @@ extern "C" { ...@@ -45,8 +45,8 @@ extern "C" {
struct md5_ctx struct md5_ctx
{ {
uint32_t digest[_MD5_DIGEST_LENGTH]; uint32_t state[_MD5_DIGEST_LENGTH];
uint32_t count_l, count_h; /* Block count */ uint32_t count_low, count_high; /* Block count */
uint8_t block[MD5_DATA_SIZE]; /* Block buffer */ uint8_t block[MD5_DATA_SIZE]; /* Block buffer */
unsigned index; /* Into buffer */ unsigned index; /* Into buffer */
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment