2003-04-16 00:48:47 +00:00
|
|
|
#ifndef CRYPTOPP_CAMELLIA_H
|
|
|
|
#define CRYPTOPP_CAMELLIA_H
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "seckey.h"
|
|
|
|
#include "secblock.h"
|
|
|
|
|
|
|
|
NAMESPACE_BEGIN(CryptoPP)
|
|
|
|
|
2004-07-22 00:51:57 +00:00
|
|
|
//! _
|
2003-04-16 00:48:47 +00:00
|
|
|
struct Camellia_Info : public FixedBlockSize<16>, public VariableKeyLength<16, 16, 32, 8>
|
|
|
|
{
|
|
|
|
static const char *StaticAlgorithmName() {return "Camellia";}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// <a href="http://www.weidai.com/scan-mirror/cs.html#Camellia">Camellia</a>
|
|
|
|
class Camellia : public Camellia_Info, public BlockCipherDocumentation
|
|
|
|
{
|
2003-07-04 00:17:37 +00:00
|
|
|
class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<Camellia_Info>
|
2003-04-16 00:48:47 +00:00
|
|
|
{
|
|
|
|
public:
|
2006-12-10 02:12:23 +00:00
|
|
|
void UncheckedSetKey(const byte *key, unsigned int keylen, const NameValuePairs ¶ms);
|
2003-04-16 00:48:47 +00:00
|
|
|
void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;
|
2006-07-17 14:52:18 +00:00
|
|
|
unsigned int BlockAlignment() const {return 8;}
|
2003-04-16 00:48:47 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
static const byte s1[256];
|
2007-04-15 22:59:58 +00:00
|
|
|
static const word32 SP[4][256];
|
2003-04-16 00:48:47 +00:00
|
|
|
|
|
|
|
unsigned int m_rounds;
|
2007-04-15 22:59:58 +00:00
|
|
|
SecBlock<word32> m_key;
|
2003-04-16 00:48:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
2003-07-04 00:17:37 +00:00
|
|
|
typedef BlockCipherFinal<ENCRYPTION, Base> Encryption;
|
|
|
|
typedef BlockCipherFinal<DECRYPTION, Base> Decryption;
|
2003-04-16 00:48:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef Camellia::Encryption CamelliaEncryption;
|
|
|
|
typedef Camellia::Decryption CamelliaDecryption;
|
|
|
|
|
|
|
|
NAMESPACE_END
|
|
|
|
|
|
|
|
#endif
|