summaryrefslogtreecommitdiff
path: root/aes.h
diff options
context:
space:
mode:
Diffstat (limited to 'aes.h')
-rw-r--r--aes.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/aes.h b/aes.h
index 8ec4b8b..7c82566 100644
--- a/aes.h
+++ b/aes.h
@@ -1,20 +1,12 @@
#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
+//! AES winner, announced on 10/2/2000
+DOCUMENTED_TYPEDEF(Rijndael, AES);
typedef RijndaelEncryption AESEncryption;
typedef RijndaelDecryption AESDecryption;