2017-01-27 12:05:45 +00:00
|
|
|
// cmac.h - originally written and placed in the public domain by Wei Dai
|
2015-11-18 20:32:28 +00:00
|
|
|
|
2017-11-29 15:54:33 +00:00
|
|
|
/// \file cmac.h
|
|
|
|
/// \brief Classes for CMAC message authentication code
|
|
|
|
/// \since Crypto++ 5.6.0
|
2015-11-18 20:32:28 +00:00
|
|
|
|
2009-03-12 11:24:12 +00:00
|
|
|
#ifndef CRYPTOPP_CMAC_H
|
|
|
|
#define CRYPTOPP_CMAC_H
|
|
|
|
|
|
|
|
#include "seckey.h"
|
|
|
|
#include "secblock.h"
|
|
|
|
|
2019-10-12 11:14:38 +00:00
|
|
|
/// \brief Enable CMAC and wide block ciphers
|
|
|
|
/// \details CMAC is only defined for AES. The library can support wide
|
|
|
|
/// block ciphers like Kaylna and Threefish since we know the polynomials.
|
|
|
|
#ifndef CRYPTOPP_CMAC_WIDE_BLOCK_CIPHERS
|
|
|
|
# define CRYPTOPP_CMAC_WIDE_BLOCK_CIPHERS 1
|
|
|
|
#endif // CRYPTOPP_CMAC_WIDE_BLOCK_CIPHERS
|
|
|
|
|
2009-03-12 11:24:12 +00:00
|
|
|
NAMESPACE_BEGIN(CryptoPP)
|
|
|
|
|
2017-11-29 15:54:33 +00:00
|
|
|
/// \brief CMAC base implementation
|
|
|
|
/// \since Crypto++ 5.6.0
|
2009-03-12 11:24:12 +00:00
|
|
|
class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE CMAC_Base : public MessageAuthenticationCode
|
|
|
|
{
|
|
|
|
public:
|
2018-07-06 13:23:37 +00:00
|
|
|
|
|
|
|
virtual ~CMAC_Base() {}
|
2015-11-18 20:32:28 +00:00
|
|
|
CMAC_Base() : m_counter(0) {}
|
2009-03-12 11:24:12 +00:00
|
|
|
|
|
|
|
void UncheckedSetKey(const byte *key, unsigned int length, const NameValuePairs ¶ms);
|
|
|
|
void Update(const byte *input, size_t length);
|
|
|
|
void TruncatedFinal(byte *mac, size_t size);
|
|
|
|
unsigned int DigestSize() const {return GetCipher().BlockSize();}
|
|
|
|
unsigned int OptimalBlockSize() const {return GetCipher().BlockSize();}
|
|
|
|
unsigned int OptimalDataAlignment() const {return GetCipher().OptimalDataAlignment();}
|
2018-07-06 13:23:37 +00:00
|
|
|
std::string AlgorithmProvider() const {return GetCipher().AlgorithmProvider();}
|
2009-03-12 11:24:12 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
friend class EAX_Base;
|
|
|
|
|
|
|
|
const BlockCipher & GetCipher() const {return const_cast<CMAC_Base*>(this)->AccessCipher();}
|
|
|
|
virtual BlockCipher & AccessCipher() =0;
|
|
|
|
|
|
|
|
void ProcessBuf();
|
2017-09-05 20:28:00 +00:00
|
|
|
SecByteBlock m_reg;
|
2009-03-12 11:24:12 +00:00
|
|
|
unsigned int m_counter;
|
|
|
|
};
|
|
|
|
|
2017-11-29 15:54:33 +00:00
|
|
|
/// \brief CMAC message authentication code
|
|
|
|
/// \tparam T block cipher
|
|
|
|
/// \details Template parameter T should be a class derived from BlockCipherDocumentation, for example AES, with a block size of 8, 16, or 32.
|
|
|
|
/// \sa <a href="http://www.cryptolounge.org/wiki/CMAC">CMAC</a>
|
|
|
|
/// \since Crypto++ 5.6.0
|
2009-03-12 11:24:12 +00:00
|
|
|
template <class T>
|
|
|
|
class CMAC : public MessageAuthenticationCodeImpl<CMAC_Base, CMAC<T> >, public SameKeyLengthAs<T>
|
|
|
|
{
|
|
|
|
public:
|
2017-11-29 15:54:33 +00:00
|
|
|
/// \brief Construct a CMAC
|
2009-03-12 11:24:12 +00:00
|
|
|
CMAC() {}
|
2017-11-29 15:54:33 +00:00
|
|
|
/// \brief Construct a CMAC
|
|
|
|
/// \param key the MAC key
|
|
|
|
/// \param length the key size, in bytes
|
2009-03-12 11:24:12 +00:00
|
|
|
CMAC(const byte *key, size_t length=SameKeyLengthAs<T>::DEFAULT_KEYLENGTH)
|
|
|
|
{this->SetKey(key, length);}
|
|
|
|
|
|
|
|
static std::string StaticAlgorithmName() {return std::string("CMAC(") + T::StaticAlgorithmName() + ")";}
|
|
|
|
|
|
|
|
private:
|
|
|
|
BlockCipher & AccessCipher() {return m_cipher;}
|
|
|
|
typename T::Encryption m_cipher;
|
|
|
|
};
|
|
|
|
|
|
|
|
NAMESPACE_END
|
|
|
|
|
|
|
|
#endif
|