Crypto++  5.6.3
Free C++ class library of cryptographic schemes
aes.h
Go to the documentation of this file.
1 // aes.h - written and placed in the public domain by Wei Dai
2 
3 //! \file
4 //! \brief Class file for the AES cipher (Rijndael)
5 
6 #ifndef CRYPTOPP_AES_H
7 #define CRYPTOPP_AES_H
8 
9 #include "rijndael.h"
10 
11 NAMESPACE_BEGIN(CryptoPP)
12 
13 //! <a href="http://www.cryptolounge.org/wiki/AES">AES</a> winner, announced on 10/2/2000
14 DOCUMENTED_TYPEDEF(Rijndael, AES);
15 
18 
19 NAMESPACE_END
20 
21 #endif
Rijndael block cipher implementation details.
Definition: rijndael.h:28
AES winner, announced on 10/2/2000
Definition: aes.h:14
Classes for Rijndael encryption algorithm.
Crypto++ library namespace.