summaryrefslogtreecommitdiff
path: root/aes.h
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2002-10-04 17:31:41 +0000
committerweidai <weidai11@users.noreply.github.com>2002-10-04 17:31:41 +0000
commita3b6ece7ab341b5b14135baeccea7d5e4c086771 (patch)
tree8b045309c238226c32a563b1df6b9c30a2f0e0b3 /aes.h
downloadcryptopp-git-a3b6ece7ab341b5b14135baeccea7d5e4c086771.tar.gz
Initial revision
Diffstat (limited to 'aes.h')
-rw-r--r--aes.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/aes.h b/aes.h
new file mode 100644
index 00000000..ba93d10e
--- /dev/null
+++ b/aes.h
@@ -0,0 +1,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, public BlockCipherDocumentation {};
+#else
+typedef Rijndael AES;
+#endif
+
+typedef RijndaelEncryption AESEncryption;
+typedef RijndaelDecryption AESDecryption;
+
+NAMESPACE_END
+
+#endif