summaryrefslogtreecommitdiff
path: root/skipjack.h
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2010-06-18 01:52:34 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2010-06-18 01:52:34 +0000
commit7cfef38e643e3371dd0e194526433665e8afe265 (patch)
tree4eed69d5867429e79628ab0c386092e5eb9ec1d7 /skipjack.h
parent32ca65cd301bf4ff0159b028d87b0caa51962690 (diff)
downloadcryptopp-7cfef38e643e3371dd0e194526433665e8afe265.tar.gz
avoid SecBlock of arrays
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@485 57ff6487-cd31-0410-9ec3-f628ee90f5f0
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 2cf10d2..6b12647 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