ext-cryptopp/panama.h

170 lines
5.1 KiB
C
Raw Normal View History

// panama.h - originally written and placed in the public domain by Wei Dai
2015-11-23 00:17:15 +00:00
/// \file panama.h
/// \brief Classes for Panama hash and stream cipher
2015-11-23 00:17:15 +00:00
2015-11-05 06:59:46 +00:00
#ifndef CRYPTOPP_PANAMA_H
#define CRYPTOPP_PANAMA_H
#include "strciphr.h"
#include "iterhash.h"
#include "secblock.h"
// Clang 3.3 integrated assembler crash on Linux. Clang 3.4 due to compiler error with .intel_syntax
2018-12-06 23:28:56 +00:00
//#if CRYPTOPP_BOOL_X32 || defined(CRYPTOPP_DISABLE_MIXED_ASM)
//# define CRYPTOPP_DISABLE_PANAMA_ASM
//#endif
// https://github.com/weidai11/cryptopp/issues/758
#define CRYPTOPP_DISABLE_PANAMA_ASM 1
2015-11-05 06:59:46 +00:00
NAMESPACE_BEGIN(CryptoPP)
// Base class, do not use directly
2015-11-05 06:59:46 +00:00
template <class B>
class CRYPTOPP_NO_VTABLE Panama
{
public:
2018-12-07 06:46:49 +00:00
virtual ~Panama() {}
2018-08-18 18:31:00 +00:00
std::string AlgorithmProvider() const;
2015-11-05 06:59:46 +00:00
void Reset();
2017-03-01 11:10:06 +00:00
void Iterate(size_t count, const word32 *p=NULLPTR, byte *output=NULLPTR, const byte *input=NULLPTR, KeystreamOperation operation=WRITE_KEYSTREAM);
2015-11-05 06:59:46 +00:00
protected:
typedef word32 Stage[8];
CRYPTOPP_CONSTANT(STAGES = 32);
2015-11-05 06:59:46 +00:00
FixedSizeAlignedSecBlock<word32, 20 + 8*32> m_state;
};
namespace Weak {
/// \brief Panama hash
/// \sa <a href="http://www.weidai.com/scan-mirror/md.html#Panama">Panama Hash</a>
2015-11-05 06:59:46 +00:00
template <class B = LittleEndian>
class PanamaHash : protected Panama<B>, public AlgorithmImpl<IteratedHash<word32, NativeByteOrder, 32>, PanamaHash<B> >
{
public:
CRYPTOPP_CONSTANT(DIGESTSIZE = 32);
2018-12-07 06:46:49 +00:00
virtual ~PanamaHash() {}
2015-11-05 06:59:46 +00:00
PanamaHash() {Panama<B>::Reset();}
unsigned int DigestSize() const {return DIGESTSIZE;}
void TruncatedFinal(byte *hash, size_t size);
CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return B::ToEnum() == BIG_ENDIAN_ORDER ? "Panama-BE" : "Panama-LE";}
std::string AlgorithmProvider() const {return Panama<B>::AlgorithmProvider();} // Fix https://github.com/weidai11/cryptopp/issues/801
2015-11-05 06:59:46 +00:00
protected:
void Init() {Panama<B>::Reset();}
void HashEndianCorrectedBlock(const word32 *data) {this->Iterate(1, data);} // push
size_t HashMultipleBlocks(const word32 *input, size_t length);
2017-03-01 11:10:06 +00:00
word32* StateBuf() {return NULLPTR;}
2018-12-07 06:46:49 +00:00
FixedSizeSecBlock<word32, 8> m_buf;
2015-11-05 06:59:46 +00:00
};
}
/// \brief MAC construction using a hermetic hash function
2015-11-05 06:59:46 +00:00
template <class T_Hash, class T_Info = T_Hash>
class HermeticHashFunctionMAC : public AlgorithmImpl<SimpleKeyingInterfaceImpl<TwoBases<MessageAuthenticationCode, VariableKeyLength<32, 0, INT_MAX> > >, T_Info>
{
public:
void UncheckedSetKey(const byte *key, unsigned int length, const NameValuePairs &params)
{
CRYPTOPP_UNUSED(params);
m_key.Assign(key, length);
Restart();
}
void Restart()
{
m_hash.Restart();
m_keyed = false;
}
void Update(const byte *input, size_t length)
{
if (!m_keyed)
KeyHash();
m_hash.Update(input, length);
}
void TruncatedFinal(byte *digest, size_t digestSize)
{
if (!m_keyed)
KeyHash();
m_hash.TruncatedFinal(digest, digestSize);
m_keyed = false;
}
unsigned int DigestSize() const
{return m_hash.DigestSize();}
unsigned int BlockSize() const
{return m_hash.BlockSize();}
unsigned int OptimalBlockSize() const
{return m_hash.OptimalBlockSize();}
unsigned int OptimalDataAlignment() const
{return m_hash.OptimalDataAlignment();}
protected:
void KeyHash()
{
m_hash.Update(m_key, m_key.size());
m_keyed = true;
}
T_Hash m_hash;
bool m_keyed;
SecByteBlock m_key;
};
namespace Weak {
/// \brief Panama message authentication code
2015-11-05 06:59:46 +00:00
template <class B = LittleEndian>
class PanamaMAC : public HermeticHashFunctionMAC<PanamaHash<B> >
{
public:
PanamaMAC() {}
PanamaMAC(const byte *key, unsigned int length)
{this->SetKey(key, length);}
};
}
/// \brief Panama stream cipher information
2015-11-05 06:59:46 +00:00
template <class B>
struct PanamaCipherInfo : public FixedKeyLength<32, SimpleKeyingInterface::UNIQUE_IV, 32>
{
CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return B::ToEnum() == BIG_ENDIAN_ORDER ? "Panama-BE" : "Panama-LE";}
2015-11-05 06:59:46 +00:00
};
/// \brief Panama stream cipher operation
2015-11-05 06:59:46 +00:00
template <class B>
2016-07-06 18:39:18 +00:00
class PanamaCipherPolicy : public AdditiveCipherConcretePolicy<word32, 8>,
2015-11-05 06:59:46 +00:00
public PanamaCipherInfo<B>,
protected Panama<B>
{
protected:
2018-12-07 06:46:49 +00:00
virtual ~PanamaCipherPolicy() {}
2018-08-18 18:31:00 +00:00
std::string AlgorithmProvider() const;
2015-11-05 06:59:46 +00:00
void CipherSetKey(const NameValuePairs &params, const byte *key, size_t length);
void OperateKeystream(KeystreamOperation operation, byte *output, const byte *input, size_t iterationCount);
bool CipherIsRandomAccess() const {return false;}
void CipherResynchronize(byte *keystreamBuffer, const byte *iv, size_t length);
unsigned int GetAlignment() const;
FixedSizeSecBlock<word32, 8> m_key;
2018-12-07 06:46:49 +00:00
FixedSizeSecBlock<word32, 8> m_buf;
2015-11-05 06:59:46 +00:00
};
/// \brief Panama stream cipher
/// \sa <a href="http://www.cryptolounge.org/wiki/PANAMA">Panama Stream Cipher</a>
2015-11-05 06:59:46 +00:00
template <class B = LittleEndian>
struct PanamaCipher : public PanamaCipherInfo<B>, public SymmetricCipherDocumentation
{
typedef SymmetricCipherFinal<ConcretePolicyHolder<PanamaCipherPolicy<B>, AdditiveCipherTemplate<> >, PanamaCipherInfo<B> > Encryption;
typedef Encryption Decryption;
};
NAMESPACE_END
#endif