summaryrefslogtreecommitdiff
path: root/aes.h
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2004-07-22 00:51:57 +0000
committerweidai <weidai11@users.noreply.github.com>2004-07-22 00:51:57 +0000
commit393ae4859a9d3df3c5aee304b4c65121b657f613 (patch)
treefaff40f3429fb7fb70249c83afd5378f92ebdb31 /aes.h
parentad8043d50c19d94177a420fba5ef6e9fd15afff1 (diff)
downloadcryptopp-git-393ae4859a9d3df3c5aee304b4c65121b657f613.tar.gz
fix documentation, fix PanamaMAC, fix algorithm names
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 8ec4b8bd..7c825668 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;