Crypto++
8.7
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
25
typedef
RijndaelEncryption
AESEncryption
;
26
typedef
RijndaelDecryption
AESDecryption
;
27
28
NAMESPACE_END
29
30
#endif
AES
AES block cipher (Rijndael)
Definition:
aes.h:23
BlockCipherFinal< ENCRYPTION, Enc >
Rijndael
Rijndael block cipher.
Definition:
rijndael.h:46
CryptoPP
Crypto++ library namespace.
rijndael.h
Classes for Rijndael encryption algorithm.
Generated on Thu Aug 25 2022 17:44:25 for Crypto++ by
1.9.4