00001 // aes.h - written and placed in the public domain by Wei Dai 00002 00003 //! \file 00004 //! \brief Class file for the AES cipher (Rijndael) 00005 00006 #ifndef CRYPTOPP_AES_H 00007 #define CRYPTOPP_AES_H 00008 00009 #include "rijndael.h" 00010 00011 NAMESPACE_BEGIN(CryptoPP) 00012 00013 //! <a href="http://www.cryptolounge.org/wiki/AES">AES</a> winner, announced on 10/2/2000 00014 DOCUMENTED_TYPEDEF(Rijndael, AES); 00015 00016 typedef RijndaelEncryption AESEncryption; 00017 typedef RijndaelDecryption AESDecryption; 00018 00019 NAMESPACE_END 00020 00021 #endif