2017-01-27 12:05:45 +00:00
|
|
|
// aes.h - originally written and placed in the public domain by Wei Dai
|
2015-11-05 06:59:46 +00:00
|
|
|
|
2017-11-29 15:54:33 +00:00
|
|
|
/// \file
|
|
|
|
/// \brief Class file for the AES cipher (Rijndael)
|
|
|
|
/// \details AES is a typdef for Rijndael classes. All key sizes are supported.
|
|
|
|
/// The library only provides Rijndael with 128-bit blocks, and not 192-bit or 256-bit blocks
|
2018-03-23 02:11:35 +00:00
|
|
|
/// \since Rijndael since Crypto++ 3.1, Intel AES-NI since Crypto++ 5.6.1, ARMv8 AES since Crypto++ 6.0,
|
|
|
|
/// Power8 AES since Crypto++ 6.0
|
2015-11-05 06:59:46 +00:00
|
|
|
|
|
|
|
#ifndef CRYPTOPP_AES_H
|
|
|
|
#define CRYPTOPP_AES_H
|
|
|
|
|
|
|
|
#include "rijndael.h"
|
|
|
|
|
|
|
|
NAMESPACE_BEGIN(CryptoPP)
|
|
|
|
|
2017-11-29 15:54:33 +00:00
|
|
|
/// \brief AES block cipher (Rijndael)
|
|
|
|
/// \details AES is a typdef for Rijndael classes. All key sizes are supported.
|
|
|
|
/// The library only provides Rijndael with 128-bit blocks, and not 192-bit or 256-bit blocks
|
|
|
|
/// \sa <a href="http://www.cryptolounge.org/wiki/AES">AES</a> winner, announced on 10/2/2000
|
2018-03-23 02:11:35 +00:00
|
|
|
/// \since Rijndael since Crypto++ 3.1, Intel AES-NI since Crypto++ 5.6.1, ARMv8 AES since Crypto++ 6.0,
|
|
|
|
/// Power8 AES since Crypto++ 6.0
|
2019-10-14 16:30:10 +00:00
|
|
|
DOCUMENTED_TYPEDEF(Rijndael, AES);
|
2015-11-05 06:59:46 +00:00
|
|
|
|
|
|
|
typedef RijndaelEncryption AESEncryption;
|
|
|
|
typedef RijndaelDecryption AESDecryption;
|
|
|
|
|
|
|
|
NAMESPACE_END
|
|
|
|
|
|
|
|
#endif
|