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

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

Rev: nettle/md4.h:1.2
parent 6025c53e
No related branches found
No related tags found
No related merge requests found
......@@ -43,12 +43,13 @@ extern "C" {
/* Digest is kept internally as 4 32-bit words. */
#define _MD4_DIGEST_LENGTH 4
/* FIXME: Identical to md5_ctx */
struct md4_ctx
{
uint32_t digest[_MD4_DIGEST_LENGTH];
uint32_t count_l, count_h; /* Block count */
uint8_t block[MD4_DATA_SIZE]; /* Block buffer */
unsigned index; /* Into buffer */
uint32_t state[_MD4_DIGEST_LENGTH];
uint32_t count_low, count_high; /* Block count */
uint8_t block[MD4_DATA_SIZE]; /* Block buffer */
unsigned index; /* Into buffer */
};
void
......
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