Make CHAM_Info public
parent
404e6cfae3
commit
32e2be647a
4
cham.h
4
cham.h
|
|
@ -23,7 +23,7 @@ NAMESPACE_BEGIN(CryptoPP)
|
||||||
|
|
||||||
/// \brief CHAM block cipher information
|
/// \brief CHAM block cipher information
|
||||||
/// \since Crypto++ 7.1
|
/// \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()
|
static const std::string StaticAlgorithmName()
|
||||||
{
|
{
|
||||||
|
|
@ -34,7 +34,7 @@ struct CHAM64_Info : public FixedBlockSize<8>, FixedKeyLength<16>
|
||||||
|
|
||||||
/// \brief CHAM block cipher information
|
/// \brief CHAM block cipher information
|
||||||
/// \since Crypto++ 7.1
|
/// \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()
|
static const std::string StaticAlgorithmName()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue