ext-cryptopp/shark.h

78 lines
2.0 KiB
C
Raw Normal View History

// shark.h - originally written and placed in the public domain by Wei Dai
/// \file shark.h
/// \brief Classes for the SHARK block cipher
2018-01-23 00:50:11 +00:00
/// \since Crypto++ 2.1
2015-11-05 06:59:46 +00:00
#ifndef CRYPTOPP_SHARK_H
#define CRYPTOPP_SHARK_H
#include "config.h"
#include "seckey.h"
#include "secblock.h"
NAMESPACE_BEGIN(CryptoPP)
/// \brief SHARK block cipher information
2018-01-23 00:50:11 +00:00
/// \since Crypto++ 2.1
struct SHARK_Info : public FixedBlockSize<8>, public FixedKeyLength<16>, public VariableRounds<6, 2>
2015-11-05 06:59:46 +00:00
{
CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "SHARK-E";}
2015-11-05 06:59:46 +00:00
};
/// \brief SHARK block cipher
2017-09-28 09:00:13 +00:00
/// <a href="http://www.cryptopp.com/wiki/SHARK-E">SHARK-E</a>
2018-01-23 00:50:11 +00:00
/// \since Crypto++ 2.1
2015-11-05 06:59:46 +00:00
class SHARK : public SHARK_Info, public BlockCipherDocumentation
{
/// \brief SHARK block cipher default operation
2018-01-23 00:50:11 +00:00
/// \since Crypto++ 2.1
2015-11-05 06:59:46 +00:00
class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<SHARK_Info>
{
public:
void UncheckedSetKey(const byte *key, unsigned int length, const NameValuePairs &param);
protected:
unsigned int m_rounds;
SecBlock<word64> m_roundKeys;
};
/// \brief SHARK block cipher encryption operation
2018-01-23 00:50:11 +00:00
/// \since Crypto++ 2.1
2015-11-05 06:59:46 +00:00
class CRYPTOPP_NO_VTABLE Enc : public Base
{
public:
void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;
// used by Base to do key setup
void InitForKeySetup();
private:
static const byte sbox[256];
static const word64 cbox[8][256];
};
/// \brief SHARK block cipher decryption operation
2018-01-23 00:50:11 +00:00
/// \since Crypto++ 2.1
2015-11-05 06:59:46 +00:00
class CRYPTOPP_NO_VTABLE Dec : public Base
{
public:
void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;
private:
static const byte sbox[256];
static const word64 cbox[8][256];
};
public:
typedef BlockCipherFinal<ENCRYPTION, Enc> Encryption;
typedef BlockCipherFinal<DECRYPTION, Dec> Decryption;
};
typedef SHARK::Encryption SHARKEncryption;
typedef SHARK::Decryption SHARKDecryption;
NAMESPACE_END
#endif