mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-27 11:50:29 +00:00
35f95fb739
The SSSE3 intrinsics were performing aligned loads using _mm_load_si128 using user supplied pointers. The pointers are only a byte pointer, so its alignment can drop to 1 or 2. Switching to _mm_loadu_si128 will sidestep potential problems. The crash surfaced under Win32 testing. Switch to memcpy's when performing bulk assignment x[0]=y[0] ... x[3]=y[3]. I believe Yun used the pattern to promote vectorization. Some compilers appear to be braindead and issue integer move's one word at a time. Non-braindead compiler will still take the optimization when advantageous, and slower compilers will benefit from the bulk move. We also cherry picked vectorization opportunities, like in ARIA_GSRK_NEON. Remove keyBits variable. We now use UncheckedSetKey's keylen throughout. Also fix a typo in CRYPTOPP_BOOL_SSSE3_INTRINSICS_AVAILABLE. __SSSE3__ was listed twice.
68 lines
2.7 KiB
C++
68 lines
2.7 KiB
C++
// aria.h - written and placed in the public domain by Jeffrey Walton
|
|
|
|
//! \file aria.h
|
|
//! \brief Classes for the ARIA block cipher
|
|
//! \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>
|
|
|
|
#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
|
|
//! \since Crypto++ 6.0
|
|
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
|
|
//! \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>
|
|
//! \sa <a href="http://www.weidai.com/scan-mirror/cs.html#ARIA">ARIA</a>
|
|
//! \since Crypto++ 6.0
|
|
class ARIA : public ARIA_Info, public BlockCipherDocumentation
|
|
{
|
|
public:
|
|
class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<ARIA_Info>
|
|
{
|
|
public:
|
|
void UncheckedSetKey(const byte *key, unsigned int keylen, const NameValuePairs ¶ms);
|
|
void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;
|
|
|
|
private:
|
|
// Reference implementation allocates a table of 17 sub-keys.
|
|
FixedSizeAlignedSecBlock<byte, 16*17> m_rk; // round keys
|
|
FixedSizeAlignedSecBlock<word32, 4*7> m_w; // w0, w1, w2, w3, t and u
|
|
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
|