Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
N
nettle
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Brian Smith
nettle
Commits
563a82e7
Commit
563a82e7
authored
13 years ago
by
Niels Möller
Browse files
Options
Downloads
Patches
Plain Diff
(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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
md4.h
+5
-4
5 additions, 4 deletions
md4.h
with
5 additions
and
4 deletions
md4.h
+
5
−
4
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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment