Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
Icecast-Server
Commits
fa8ceacb
Commit
fa8ceacb
authored
Mar 02, 2004
by
Michael Smith
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Oops. Hack up the macro some more so it compiles properly.
svn path=/trunk/icecast/; revision=5878
parent
398dfff5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/md5.c
src/md5.c
+1
-1
No files found.
src/md5.c
View file @
fa8ceacb
...
...
@@ -185,7 +185,7 @@ void MD5Final(unsigned char digest[HASH_LEN], struct MD5Context *ctx)
# define F4(x, y, z) (y ^ (x | ~z))
/* This is the central step in the MD5 algorithm. */
# define MD5STEP(f, w, x, y, z, data, s)
(
w += f(x, y, z) + data; w = (w<<s) | (w>>(32-s)); w += x
)
# define MD5STEP(f, w, x, y, z, data, s) w += f(x, y, z) + data; w = (w<<s) | (w>>(32-s)); w += x
/*
* The core of the MD5 algorithm, this alters an existing MD5 hash to
...
...
Write
Preview
Markdown
is supported
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