mirror of
https://github.com/curl/curl.git
synced 2026-04-14 22:41:40 +03:00
parent
cbb5544c45
commit
ccba492024
36 changed files with 114 additions and 118 deletions
|
|
@ -203,7 +203,7 @@ typedef struct md4_ctx MD4_CTX;
|
|||
* The MD4 transformation for all three rounds.
|
||||
*/
|
||||
#define MD4_STEP(f, a, b, c, d, x, s) \
|
||||
(a) += f((b), (c), (d)) + (x); \
|
||||
(a) += f(b, c, d) + (x); \
|
||||
(a) = (((a) << (s)) | (((a) & 0xffffffff) >> (32 - (s))));
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue