From 95ded6656783b66a11c8229d42137c97cabbaa30 Mon Sep 17 00:00:00 2001 From: weidai Date: Mon, 25 Aug 2003 21:41:09 +0000 Subject: minor changes git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@129 57ff6487-cd31-0410-9ec3-f628ee90f5f0 --- seckey.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'seckey.h') diff --git a/seckey.h b/seckey.h index e00fa89..05d3699 100644 --- a/seckey.h +++ b/seckey.h @@ -18,7 +18,7 @@ inline CipherDir ReverseCipherDir(CipherDir dir) //! . template -class CRYPTOPP_DLL FixedBlockSize +class FixedBlockSize { public: enum {BLOCKSIZE = N}; @@ -28,7 +28,7 @@ public: //! . template -class CRYPTOPP_DLL FixedRounds +class FixedRounds { public: enum {ROUNDS = R}; @@ -47,7 +47,7 @@ protected: //! . template // use INT_MAX here because enums are treated as signed ints -class CRYPTOPP_DLL VariableRounds +class VariableRounds { public: enum {DEFAULT_ROUNDS = D, MIN_ROUNDS = N, MAX_ROUNDS = M}; @@ -74,7 +74,7 @@ protected: //! . template -class CRYPTOPP_DLL FixedKeyLength +class FixedKeyLength { public: enum {KEYLENGTH=N, MIN_KEYLENGTH=N, MAX_KEYLENGTH=N, DEFAULT_KEYLENGTH=N}; @@ -84,7 +84,7 @@ public: /// support query of variable key length, template parameters are default, min, max, multiple (default multiple 1) template -class CRYPTOPP_DLL VariableKeyLength +class VariableKeyLength { // make these private to avoid Doxygen documenting them in all derived classes CRYPTOPP_COMPILE_ASSERT(Q > 0); @@ -112,7 +112,7 @@ public: /// support query of key length that's the same as another class template -class CRYPTOPP_DLL SameKeyLengthAs +class SameKeyLengthAs { public: enum {MIN_KEYLENGTH=T::MIN_KEYLENGTH, MAX_KEYLENGTH=T::MAX_KEYLENGTH, DEFAULT_KEYLENGTH=T::DEFAULT_KEYLENGTH}; -- cgit v1.2.1