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
Xiph.Org
Icecast-Server
Commits
fa8ceacb
Commit
fa8ceacb
authored
Mar 02, 2004
by
Michael Smith
Browse files
Oops. Hack up the macro some more so it compiles properly.
svn path=/trunk/icecast/; revision=5878
parent
398dfff5
Changes
1
Show whitespace changes
Inline
Side-by-side
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
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