summaryrefslogtreecommitdiff
path: root/keccak.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-02-13 11:31:18 -0500
committerJeffrey Walton <noloader@gmail.com>2019-02-13 11:31:18 -0500
commit00f9c1f0eb1573366bb16f0bfed4fbbc6906afd1 (patch)
treec2b73a5f2976c514d743148db752d2d68b9694cb /keccak.h
parent2e440959b1e8a9d215d73631eb479a39d0d1a3f0 (diff)
downloadcryptopp-git-00f9c1f0eb1573366bb16f0bfed4fbbc6906afd1.tar.gz
Enable extended output in SHAKE-128 and SHAKE-256 (GH #805, PR #806)
Diffstat (limited to 'keccak.h')
-rw-r--r--keccak.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/keccak.h b/keccak.h
index 38e0b680..bbc357b0 100644
--- a/keccak.h
+++ b/keccak.h
@@ -93,7 +93,7 @@ private:
// ensure there was no underflow in the math
CRYPTOPP_COMPILE_ASSERT(BLOCKSIZE < 200);
// this is a general expectation by HMAC
- CRYPTOPP_COMPILE_ASSERT(BLOCKSIZE > (int)T_DigestSize);
+ CRYPTOPP_COMPILE_ASSERT((int)BLOCKSIZE > (int)DIGESTSIZE);
#endif
};