2017-01-27 12:05:45 +00:00
|
|
|
// square.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 square.h
|
|
|
|
/// \brief Classes for the Square block cipher
|
2015-11-18 20:32:28 +00:00
|
|
|
|
2015-11-05 06:59:46 +00:00
|
|
|
#ifndef CRYPTOPP_SQUARE_H
|
|
|
|
#define CRYPTOPP_SQUARE_H
|
|
|
|
|
|
|
|
#include "seckey.h"
|
|
|
|
#include "secblock.h"
|
|
|
|
|
|
|
|
NAMESPACE_BEGIN(CryptoPP)
|
|
|
|
|
2017-11-29 15:54:33 +00:00
|
|
|
/// \brief Square block cipher information
|
2018-01-23 01:13:18 +00:00
|
|
|
/// \since Crypto++ 2.2
|
2015-11-05 06:59:46 +00:00
|
|
|
struct Square_Info : public FixedBlockSize<16>, public FixedKeyLength<16>, FixedRounds<8>
|
|
|
|
{
|
2016-12-01 14:37:04 +00:00
|
|
|
CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "Square";}
|
2015-11-05 06:59:46 +00:00
|
|
|
};
|
|
|
|
|
2017-11-29 15:54:33 +00:00
|
|
|
/// \brief Square block cipher
|
|
|
|
/// \sa <a href="http://www.cryptopp.com/wiki/Square">Square</a>
|
2018-01-23 01:13:18 +00:00
|
|
|
/// \since Crypto++ 2.2
|
2015-11-05 06:59:46 +00:00
|
|
|
class Square : public Square_Info, public BlockCipherDocumentation
|
|
|
|
{
|
|
|
|
class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<Square_Info>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void UncheckedSetKey(const byte *userKey, unsigned int length, const NameValuePairs ¶ms);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
FixedSizeSecBlock<word32, 4*(ROUNDS+1)> m_roundkeys;
|
|
|
|
};
|
|
|
|
|
|
|
|
class CRYPTOPP_NO_VTABLE Enc : public Base
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;
|
|
|
|
private:
|
|
|
|
static const byte Se[256];
|
|
|
|
static const word32 Te[4][256];
|
|
|
|
};
|
|
|
|
|
|
|
|
class CRYPTOPP_NO_VTABLE Dec : public Base
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;
|
|
|
|
private:
|
|
|
|
static const byte Sd[256];
|
|
|
|
static const word32 Td[4][256];
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef BlockCipherFinal<ENCRYPTION, Enc> Encryption;
|
|
|
|
typedef BlockCipherFinal<DECRYPTION, Dec> Decryption;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef Square::Encryption SquareEncryption;
|
|
|
|
typedef Square::Decryption SquareDecryption;
|
|
|
|
|
|
|
|
NAMESPACE_END
|
|
|
|
|
|
|
|
#endif
|