summaryrefslogtreecommitdiff
path: root/skipjack.h
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2010-06-18 01:52:34 +0000
committerweidai <weidai11@users.noreply.github.com>2010-06-18 01:52:34 +0000
commit03cfaa0e4614c6cc66ffd7c473a853597fd79919 (patch)
tree4eed69d5867429e79628ab0c386092e5eb9ec1d7 /skipjack.h
parent8af9520702f19e037458d3059ee0fafef2643875 (diff)
downloadcryptopp-git-03cfaa0e4614c6cc66ffd7c473a853597fd79919.tar.gz
avoid SecBlock of arrays
Diffstat (limited to 'skipjack.h')
-rw-r--r--skipjack.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/skipjack.h b/skipjack.h
index 2cf10d22..6b126473 100644
--- a/skipjack.h
+++ b/skipjack.h
@@ -27,7 +27,7 @@ class SKIPJACK : public SKIPJACK_Info, public BlockCipherDocumentation
protected:
static const byte fTable[256];
- FixedSizeSecBlock<byte[256], 10> tab;
+ FixedSizeSecBlock<byte, 10*256> tab;
};
class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE Enc : public Base