2017-01-27 12:05:45 +00:00
|
|
|
// shark.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 shark.h
|
|
|
|
/// \brief Classes for the SHARK block cipher
|
2018-01-23 00:50:11 +00:00
|
|
|
/// \since Crypto++ 2.1
|
2015-11-18 20:32:28 +00:00
|
|
|
|
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)
|
|
|
|
|
2017-11-29 15:54:33 +00:00
|
|
|
/// \brief SHARK block cipher information
|
2018-01-23 00:50:11 +00:00
|
|
|
/// \since Crypto++ 2.1
|
2016-09-05 14:52:53 +00:00
|
|
|
struct SHARK_Info : public FixedBlockSize<8>, public FixedKeyLength<16>, public VariableRounds<6, 2>
|
2015-11-05 06:59:46 +00:00
|
|
|
{
|
2016-12-01 14:37:04 +00:00
|
|
|
CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "SHARK-E";}
|
2015-11-05 06:59:46 +00:00
|
|
|
};
|
|
|
|
|
2017-11-29 15:54:33 +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
|
|
|
|
{
|
2017-11-29 15:54:33 +00:00
|
|
|
/// \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 ¶m);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
unsigned int m_rounds;
|
|
|
|
SecBlock<word64> m_roundKeys;
|
|
|
|
};
|
|
|
|
|
2017-11-29 15:54:33 +00:00
|
|
|
/// \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];
|
|
|
|
};
|
|
|
|
|
2017-11-29 15:54:33 +00:00
|
|
|
/// \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
|