From b21162cf8e06f40baa1f58be6a8c17435cebc34d Mon Sep 17 00:00:00 2001 From: weidai Date: Fri, 4 Oct 2002 17:31:41 +0000 Subject: Initial revision git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@2 57ff6487-cd31-0410-9ec3-f628ee90f5f0 --- aes.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 aes.h (limited to 'aes.h') diff --git a/aes.h b/aes.h new file mode 100644 index 0000000..ba93d10 --- /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 -- cgit v1.2.1