2017-04-10 14:52:40 +00:00
|
|
|
// aria.h - written and placed in the public domain by Jeffrey Walton
|
|
|
|
|
|
|
|
//! \file aria.h
|
|
|
|
//! \brief Classes for the ARIA block cipher
|
2017-04-11 15:39:45 +00:00
|
|
|
//! \details The Crypto++ ARIA implementation is based on the 32-bit implementation by Aaram Yun
|
|
|
|
//! from the National Security Research Institute, KOREA. Aaram Yun's implementation is based on
|
2017-04-12 16:15:32 +00:00
|
|
|
//! the 8-bit implementation by Jin Hong. The source files are available in ARIA.zip from the Korea
|
|
|
|
//! Internet & Security Agency website.
|
2017-04-10 14:52:40 +00:00
|
|
|
//! \sa <A HREF="http://tools.ietf.org/html/rfc5794">RFC 5794, A Description of the ARIA Encryption Algorithm</A>,
|
|
|
|
//! <A HREF="http://seed.kisa.or.kr/iwt/ko/bbs/EgovReferenceList.do?bbsId=BBSMSTR_000000000002">Korea
|
|
|
|
//! Internet & Security Agency homepage</A>
|
|
|
|
|
|
|
|
#ifndef CRYPTOPP_ARIA_H
|
|
|
|
#define CRYPTOPP_ARIA_H
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "seckey.h"
|
|
|
|
#include "secblock.h"
|
|
|
|
|
|
|
|
NAMESPACE_BEGIN(CryptoPP)
|
|
|
|
|
|
|
|
//! \class ARIA_Info
|
|
|
|
//! \brief ARIA block cipher information
|
2017-04-12 16:15:32 +00:00
|
|
|
//! \since Crypto++ 6.0
|
2017-04-10 14:52:40 +00:00
|
|
|
struct ARIA_Info : public FixedBlockSize<16>, public VariableKeyLength<16, 16, 32, 8>
|
|
|
|
{
|
|
|
|
CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "ARIA";}
|
|
|
|
};
|
|
|
|
|
|
|
|
//! \class ARIA
|
|
|
|
//! \brief ARIA block cipher
|
2017-04-12 16:15:32 +00:00
|
|
|
//! \details The Crypto++ ARIA implementation is based on the 32-bit implementation by Aaram Yun
|
|
|
|
//! from the National Security Research Institute, KOREA. Aaram Yun's implementation is based on
|
|
|
|
//! the 8-bit implementation by Jin Hong. The source files are available in ARIA.zip from the Korea
|
|
|
|
//! Internet & Security Agency website.
|
|
|
|
//! \sa <A HREF="http://tools.ietf.org/html/rfc5794">RFC 5794, A Description of the ARIA Encryption Algorithm</A>,
|
|
|
|
//! <A HREF="http://seed.kisa.or.kr/iwt/ko/bbs/EgovReferenceList.do?bbsId=BBSMSTR_000000000002">Korea
|
|
|
|
//! Internet & Security Agency homepage</A>
|
2017-09-28 09:00:13 +00:00
|
|
|
//! \sa <a href="http://www.cryptopp.com/wiki/ARIA">ARIA</a>
|
2017-04-12 16:15:32 +00:00
|
|
|
//! \since Crypto++ 6.0
|
2017-04-10 14:52:40 +00:00
|
|
|
class ARIA : public ARIA_Info, public BlockCipherDocumentation
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<ARIA_Info>
|
|
|
|
{
|
2017-08-18 09:02:06 +00:00
|
|
|
public:
|
|
|
|
Base() : m_rounds(0) {}
|
|
|
|
|
2017-05-06 04:21:24 +00:00
|
|
|
protected:
|
2017-04-10 14:52:40 +00:00
|
|
|
void UncheckedSetKey(const byte *key, unsigned int keylen, const NameValuePairs ¶ms);
|
|
|
|
void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;
|
|
|
|
|
2017-04-11 15:39:45 +00:00
|
|
|
private:
|
2017-04-16 17:00:45 +00:00
|
|
|
// Reference implementation allocates a table of 17 round keys.
|
2017-04-11 15:39:45 +00:00
|
|
|
FixedSizeAlignedSecBlock<byte, 16*17> m_rk; // round keys
|
2017-04-13 08:28:02 +00:00
|
|
|
FixedSizeAlignedSecBlock<word32, 4*7> m_w; // w0, w1, w2, w3, t and u
|
2017-04-10 14:52:40 +00:00
|
|
|
unsigned int m_rounds;
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef BlockCipherFinal<ENCRYPTION, Base> Encryption;
|
|
|
|
typedef BlockCipherFinal<DECRYPTION, Base> Decryption;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef ARIA::Encryption ARIAEncryption;
|
|
|
|
typedef ARIA::Decryption ARIADecryption;
|
|
|
|
|
|
|
|
NAMESPACE_END
|
|
|
|
|
|
|
|
#endif
|