source: git/src-cryptopp/aes.h

Last change on this file was e230cb0, checked in by David Stainton <dstainton415@…>, at 2016-10-12T13:27:29Z

Add cryptopp from tag CRYPTOPP_5_6_5

  • Property mode set to 100644
File size: 537 bytes
Line 
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
11NAMESPACE_BEGIN(CryptoPP)
12
13//! \class AES
14//! \brief AES block cipher (Rijndael)
15//! \sa <a href="http://www.cryptolounge.org/wiki/AES">AES</a> winner, announced on 10/2/2000
16DOCUMENTED_TYPEDEF(Rijndael, AES);
17
18typedef RijndaelEncryption AESEncryption;
19typedef RijndaelDecryption AESDecryption;
20
21NAMESPACE_END
22
23#endif
Note: See TracBrowser for help on using the repository browser.