summaryrefslogtreecommitdiff
path: root/tools/md5.c
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2017-09-24 01:25:03 -0400
committerGitHub <noreply@github.com>2017-09-24 01:25:03 -0400
commit01caa369ec5f3d49d151c8323ac86bd7e1df040a (patch)
treeb3895b7fe5aff89acd0e01d3f89aa58a94c6f628 /tools/md5.c
parent17448c51a51bb3ddd20b0349ae274980638b0980 (diff)
parent94577d95532368a940bf0bb9334ba2c7eb858eb5 (diff)
Merge pull request #379 from yenatch/tools
Refactor scan_includes and add warnings for tools
Diffstat (limited to 'tools/md5.c')
-rw-r--r--tools/md5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/md5.c b/tools/md5.c
index e043e8537..45562330a 100644
--- a/tools/md5.c
+++ b/tools/md5.c
@@ -32,7 +32,7 @@ static const uint32_t K[64] = {
};
#define rotate_left_32(value, by) \
- ((((value) << (by)) & 0xffffffff) | ((value) >> 32 - (by)))
+ ((((value) << (by)) & 0xffffffff) | ((value) >> (32 - (by))))
void md5_wikipedia(uint8_t *data, int length, uint8_t *result) {