aes.h 1.1 KB

123456789101112131415161718192021222324252627282930
  1. // aes.h - originally written and placed in the public domain by Wei Dai
  2. /// \file
  3. /// \brief Class file for the AES cipher (Rijndael)
  4. /// \details AES is a typdef for Rijndael classes. All key sizes are supported.
  5. /// The library only provides Rijndael with 128-bit blocks, and not 192-bit or 256-bit blocks
  6. /// \since Rijndael since Crypto++ 3.1, Intel AES-NI since Crypto++ 5.6.1, ARMv8 AES since Crypto++ 6.0,
  7. /// Power8 AES since Crypto++ 6.0
  8. #ifndef CRYPTOPP_AES_H
  9. #define CRYPTOPP_AES_H
  10. #include "rijndael.h"
  11. NAMESPACE_BEGIN(CryptoPP)
  12. /// \brief AES block cipher (Rijndael)
  13. /// \details AES is a typdef for Rijndael classes. All key sizes are supported.
  14. /// The library only provides Rijndael with 128-bit blocks, and not 192-bit or 256-bit blocks
  15. /// \sa <a href="http://www.cryptolounge.org/wiki/AES">AES</a> winner, announced on 10/2/2000
  16. /// \since Rijndael since Crypto++ 3.1, Intel AES-NI since Crypto++ 5.6.1, ARMv8 AES since Crypto++ 6.0,
  17. /// Power8 AES since Crypto++ 6.0
  18. DOCUMENTED_TYPEDEF(Rijndael, AES);
  19. typedef RijndaelEncryption AESEncryption;
  20. typedef RijndaelDecryption AESDecryption;
  21. NAMESPACE_END
  22. #endif