Counter Strike : Global Offensive Source Code
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.

16 lines
330 B

  1. #ifndef CRYPTOPP_AES_H
  2. #define CRYPTOPP_AES_H
  3. #include "rijndael.h"
  4. NAMESPACE_BEGIN(CryptoPP)
  5. //! <a href="http://www.cryptolounge.org/wiki/AES">AES</a> winner, announced on 10/2/2000
  6. DOCUMENTED_TYPEDEF(Rijndael, AES);
  7. typedef RijndaelEncryption AESEncryption;
  8. typedef RijndaelDecryption AESDecryption;
  9. NAMESPACE_END
  10. #endif