Fix Twofish VariableKeyLength information (Issue 252)

pull/131/merge
Jeffrey Walton 2016-09-05 09:35:19 -04:00
parent 5057991a31
commit 0bc85ca42f
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ NAMESPACE_BEGIN(CryptoPP)
//! \class Twofish_Info
//! \brief Twofish block cipher information
struct Twofish_Info : public FixedBlockSize<16>, public VariableKeyLength<16, 0, 32>, FixedRounds<16>
struct Twofish_Info : public FixedBlockSize<16>, public VariableKeyLength<16, 16, 32, 8>, FixedRounds<16>
{
static const char *StaticAlgorithmName() {return "Twofish";}
};