summaryrefslogtreecommitdiff
path: root/plugins/CryptoPP/crypto/src/aes.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/CryptoPP/crypto/src/aes.h')
-rw-r--r--plugins/CryptoPP/crypto/src/aes.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/plugins/CryptoPP/crypto/src/aes.h b/plugins/CryptoPP/crypto/src/aes.h
new file mode 100644
index 0000000000..03b6bf12b9
--- /dev/null
+++ b/plugins/CryptoPP/crypto/src/aes.h
@@ -0,0 +1,16 @@
+#ifndef CRYPTOPP_AES_H
+#define CRYPTOPP_AES_H
+
+#include "rijndael.h"
+
+NAMESPACE_BEGIN(CryptoPP)
+
+//! AES winner, announced on 10/2/2000
+DOCUMENTED_TYPEDEF(Rijndael, AES);
+
+typedef RijndaelEncryption AESEncryption;
+typedef RijndaelDecryption AESDecryption;
+
+NAMESPACE_END
+
+#endif