From c71803f383bf9ad447c699a2a65c72135c4bf71e Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sat, 14 Jan 2017 01:18:31 -0500 Subject: [PATCH] Fix typo --- sha.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sha.cpp b/sha.cpp index 5b126c8d..564befe8 100644 --- a/sha.cpp +++ b/sha.cpp @@ -1091,7 +1091,7 @@ static void CRYPTOPP_FASTCALL SHA256_SSE_SHA_HashBlocks(word32 *state, const wor STATE0 = _mm_alignr_epi8(TMP, STATE1, 8); // ABEF STATE1 = _mm_blend_epi16(STATE1, TMP, 0xF0); // CDGH - while (length >- SHA256::BLOCKSIZE) + while (length >= SHA256::BLOCKSIZE) { // Save current hash ABEF_SAVE = STATE0;