Make CHAM_Info public

pull/676/head
Jeffrey Walton 2018-06-23 21:21:42 -04:00
parent 404e6cfae3
commit 32e2be647a
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 2 additions and 2 deletions

4
cham.h
View File

@ -23,7 +23,7 @@ NAMESPACE_BEGIN(CryptoPP)
/// \brief CHAM block cipher information
/// \since Crypto++ 7.1
struct CHAM64_Info : public FixedBlockSize<8>, FixedKeyLength<16>
struct CHAM64_Info : public FixedBlockSize<8>, public FixedKeyLength<16>
{
static const std::string StaticAlgorithmName()
{
@ -34,7 +34,7 @@ struct CHAM64_Info : public FixedBlockSize<8>, FixedKeyLength<16>
/// \brief CHAM block cipher information
/// \since Crypto++ 7.1
struct CHAM128_Info : public FixedBlockSize<16>, VariableKeyLength<16,16,32,16>
struct CHAM128_Info : public FixedBlockSize<16>, public VariableKeyLength<16,16,32,16>
{
static const std::string StaticAlgorithmName()
{