Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
456 B

  1. // aes.h - written and placed in the public domain by Wei Dai
  2. //! \file
  3. //! \brief Class file for the AES cipher (Rijndael)
  4. #ifndef CRYPTOPP_AES_H
  5. #define CRYPTOPP_AES_H
  6. #include "rijndael.h"
  7. NAMESPACE_BEGIN(CryptoPP)
  8. //! <a href="http://www.cryptolounge.org/wiki/AES">AES</a> winner, announced on 10/2/2000
  9. DOCUMENTED_TYPEDEF(Rijndael, AES);
  10. typedef RijndaelEncryption AESEncryption;
  11. typedef RijndaelDecryption AESDecryption;
  12. NAMESPACE_END
  13. #endif