diff options
-rw-r--r-- | libbb/hash_md5_sha.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/hash_md5_sha.c b/libbb/hash_md5_sha.c index 5e4078ae6..e427f6080 100644 --- a/libbb/hash_md5_sha.c +++ b/libbb/hash_md5_sha.c | |||
@@ -539,7 +539,7 @@ static void FAST_FUNC sha1_process_block64(sha1_ctx_t *ctx) | |||
539 | W[cnt] = W[cnt+16] = rotl32(W[cnt+13] ^ W[cnt+8] ^ W[cnt+2] ^ W[cnt], 1); | 539 | W[cnt] = W[cnt+16] = rotl32(W[cnt+13] ^ W[cnt+8] ^ W[cnt+2] ^ W[cnt], 1); |
540 | work += W[cnt]; | 540 | work += W[cnt]; |
541 | } | 541 | } |
542 | work = e + work + rotl32(a, 5) + rconsts[i]; | 542 | work += e + rotl32(a, 5) + rconsts[i]; |
543 | 543 | ||
544 | /* Rotate by one for next time */ | 544 | /* Rotate by one for next time */ |
545 | e = d; | 545 | e = d; |