summaryrefslogtreecommitdiff
path: root/cham.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-06-23 21:21:42 -0400
committerJeffrey Walton <noloader@gmail.com>2018-06-23 21:21:42 -0400
commit32e2be647a92bba97bb70d0c79bcfc2ff9de20fe (patch)
treea8d5ab2dc19754501af1dd1fb5b3023aa5429c0b /cham.h
parent404e6cfae33c8185ef8752c7d62ce111583d4829 (diff)
downloadcryptopp-git-32e2be647a92bba97bb70d0c79bcfc2ff9de20fe.tar.gz
Make CHAM_Info public
Diffstat (limited to 'cham.h')
-rw-r--r--cham.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cham.h b/cham.h
index 0d0da501..b32c6cb8 100644
--- a/cham.h
+++ b/cham.h
@@ -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()
{