Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nettle
nettle
Commits
563a82e7
Commit
563a82e7
authored
Aug 29, 2011
by
Niels Möller
Browse files
(struct md4_ctx): Renamed some fields, for consistency.
Rev: nettle/md4.h:1.2
parent
6025c53e
Changes
1
Hide whitespace changes
Inline
Side-by-side
md4.h
View file @
563a82e7
...
...
@@ -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_l
ow
,
count_h
igh
;
/* Block count */
uint8_t
block
[
MD4_DATA_SIZE
];
/* Block buffer */
unsigned
index
;
/* Into buffer */
};
void
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment