summaryrefslogtreecommitdiff
path: root/aes.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-11-12 01:21:50 -0500
committerJeffrey Walton <noloader@gmail.com>2017-11-12 01:21:50 -0500
commitd28e813ac36b12ec269c69fff528744f0cfe4738 (patch)
treea132375e401cf0161e41a8d2c640e96c1b55dc84 /aes.h
parent69c8a4f9c6970f7453bc33aa82b542754172ff31 (diff)
downloadcryptopp-git-d28e813ac36b12ec269c69fff528744f0cfe4738.tar.gz
Fix extra semicolon (GH #532)
Diffstat (limited to 'aes.h')
-rw-r--r--aes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/aes.h b/aes.h
index 2921ae90..274f67c6 100644
--- a/aes.h
+++ b/aes.h
@@ -19,7 +19,7 @@ NAMESPACE_BEGIN(CryptoPP)
//! The library only provides Rijndael with 128-bit blocks, and not 192-bit or 256-bit blocks
//! \sa <a href="http://www.cryptolounge.org/wiki/AES">AES</a> winner, announced on 10/2/2000
//! \since Rijndael since Crypto++ 3.2, Intel AESNI since Crypto++ 5.6.1, ARMv8 AES since Crypto++ 6.0
-DOCUMENTED_TYPEDEF(Rijndael, AES);
+DOCUMENTED_TYPEDEF(Rijndael, AES)
typedef RijndaelEncryption AESEncryption;
typedef RijndaelDecryption AESDecryption;