ext-cryptopp/shark.h

77 lines
1.9 KiB
C
Raw Normal View History

// shark.h - written and placed in the public domain by Wei Dai
2015-11-23 00:17:15 +00:00
//! \file shark.h
//! \brief Classes for the SHARK block cipher
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)
2015-12-14 04:53:50 +00:00
//! \class SHARK_Info
//! \brief SHARK block cipher information
struct SHARK_Info : public FixedBlockSize<8>, public FixedKeyLength<16>, public VariableRounds<6, 2>
2015-11-05 06:59:46 +00:00
{
2016-11-13 16:50:34 +00:00
CRYPTOPP_STATIC_CONSTEXPR char* const StaticAlgorithmName() {return "SHARK-E";}
2015-11-05 06:59:46 +00:00
};
2015-12-14 04:53:50 +00:00
//! \class SHARK
//! \brief SHARK block cipher
2015-11-05 06:59:46 +00:00
/// <a href="http://www.weidai.com/scan-mirror/cs.html#SHARK-E">SHARK-E</a>
class SHARK : public SHARK_Info, public BlockCipherDocumentation
{
//! \class Base
//! \brief SHARK block cipher default operation
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;
};
//! \class Enc
//! \brief SHARK block cipher encryption operation
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];
};
//! \class Dec
//! \brief SHARK block cipher decryption operation
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