summaryrefslogtreecommitdiff
path: root/aes.h
blob: 8ec4b8bde6b41e606de4eacf02be6aaf6deeeab4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef CRYPTOPP_AES_H
#define CRYPTOPP_AES_H

/** \file
	AES winner announced on 10/2/2000
*/

#include "rijndael.h"

NAMESPACE_BEGIN(CryptoPP)

#ifdef CRYPTOPP_DOXYGEN_PROCESSING	// Use inheritance instead of typedef to get a seperate API reference page for AES
//! AES
class AES : public Rijndael {};
#else
typedef Rijndael AES;
#endif

typedef RijndaelEncryption AESEncryption;
typedef RijndaelDecryption AESDecryption;

NAMESPACE_END

#endif