summaryrefslogtreecommitdiff
path: root/sha.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-01-14 01:18:31 -0500
committerJeffrey Walton <noloader@gmail.com>2017-01-14 01:18:31 -0500
commitc71803f383bf9ad447c699a2a65c72135c4bf71e (patch)
tree7f4a5b9cc47d7e6dea84ee1feba96059aa527064 /sha.cpp
parent69f812a7af89158a31968cbc88e20e21cf762b4e (diff)
downloadcryptopp-git-c71803f383bf9ad447c699a2a65c72135c4bf71e.tar.gz
Fix typo
Diffstat (limited to 'sha.cpp')
-rw-r--r--sha.cpp2
1 files changed, 1 insertions, 1 deletions
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;