Fix MARS VariableKeyLength information (Issue 252)

pull/131/merge
Jeffrey Walton 2016-09-05 13:06:26 -04:00
parent 0d14a52790
commit 9767221125
2 changed files with 3 additions and 3 deletions

2
mars.h
View File

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