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
02cf36be
Commit
02cf36be
authored
13 years ago
by
Niels Möller
Browse files
Options
Downloads
Patches
Plain Diff
(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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
md5.h
+2
-2
2 additions, 2 deletions
md5.h
with
2 additions
and
2 deletions
md5.h
+
2
−
2
View file @
02cf36be
...
@@ -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_l
ow
,
count_h
igh
;
/* 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 */
};
};
...
...
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