Crypto++  8.8
Free C++ class library of cryptographic schemes
aes.h
Go to the documentation of this file.
1 // aes.h - originally written and placed in the public domain by Wei Dai
2 
3 /// \file
4 /// \brief Class file for the AES cipher (Rijndael)
5 /// \details AES is a typdef for Rijndael classes. All key sizes are supported.
6 /// The library only provides Rijndael with 128-bit blocks, and not 192-bit or 256-bit blocks
7 /// \since Rijndael since Crypto++ 3.1, Intel AES-NI since Crypto++ 5.6.1, ARMv8 AES since Crypto++ 6.0,
8 /// Power8 AES since Crypto++ 6.0
9 
10 #ifndef CRYPTOPP_AES_H
11 #define CRYPTOPP_AES_H
12 
13 #include "rijndael.h"
14 
15 NAMESPACE_BEGIN(CryptoPP)
16 
17 /// \brief AES block cipher (Rijndael)
18 /// \details AES is a typdef for Rijndael classes. All key sizes are supported.
19 /// The library only provides Rijndael with 128-bit blocks, and not 192-bit or 256-bit blocks
20 /// \sa <a href="http://www.cryptolounge.org/wiki/AES">AES</a> winner, announced on 10/2/2000
21 /// \since Rijndael since Crypto++ 3.1, Intel AES-NI since Crypto++ 5.6.1, ARMv8 AES since Crypto++ 6.0,
22 /// Power8 AES since Crypto++ 6.0
23 DOCUMENTED_TYPEDEF(Rijndael, AES);
24 
27 
28 NAMESPACE_END
29 
30 #endif
AES block cipher (Rijndael)
Definition: aes.h:23
Rijndael block cipher.
Definition: rijndael.h:46
Crypto++ library namespace.
Classes for Rijndael encryption algorithm.