Fix SHARK VariableKeyLength information (Issue 252)

pull/131/merge
Jeffrey Walton 2016-09-05 10:52:53 -04:00
parent ea02dc0b94
commit b472b446fb
2 changed files with 17 additions and 17 deletions

View File

@ -14,7 +14,7 @@ NAMESPACE_BEGIN(CryptoPP)
//! \class SHARK_Info //! \class SHARK_Info
//! \brief SHARK block cipher information //! \brief SHARK block cipher information
struct SHARK_Info : public FixedBlockSize<8>, public VariableKeyLength<16, 1, 16>, public VariableRounds<6, 2> struct SHARK_Info : public FixedBlockSize<8>, public FixedKeyLength<16>, public VariableRounds<6, 2>
{ {
static const char *StaticAlgorithmName() {return "SHARK-E";} static const char *StaticAlgorithmName() {return "SHARK-E";}
}; };