summaryrefslogtreecommitdiff
path: root/gcm.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-11-18 19:51:45 -0500
committerJeffrey Walton <noloader@gmail.com>2017-11-18 19:51:45 -0500
commitce62862db86bda71f9e2c2ce7b4fa5900c8916f9 (patch)
tree17d60fd3f89e3bfaf56524e2ce0c6562533a4e04 /gcm.h
parent5f9b2b2a85550bca2d8c1683a33bde0ecc982a26 (diff)
downloadcryptopp-git-ce62862db86bda71f9e2c2ce7b4fa5900c8916f9.tar.gz
Update documentation
Diffstat (limited to 'gcm.h')
-rw-r--r--gcm.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gcm.h b/gcm.h
index de5fe8b5..0f523802 100644
--- a/gcm.h
+++ b/gcm.h
@@ -118,7 +118,9 @@ private:
//! \tparam T_TablesOption table size, either \p GCM_2K_Tables or \p GCM_64K_Tables
//! \details \p GCM provides the \p Encryption and \p Decryption typedef. See GCM_Base
//! and GCM_Final for the AuthenticatedSymmetricCipher implementation.
-//! \sa <a href="http://www.cryptolounge.org/wiki/GCM">GCM</a> at the Crypto Lounge
+//! \sa <a href="http://www.cryptopp.com/wiki/GCM_Mode">GCM Mode</a> and
+//! <A HREF="http://www.cryptopp.com/wiki/Modes_of_Operation">Modes of Operation</A>
+//! on the Crypto++ wiki.
//! \since Crypto++ 5.6.0
template <class T_BlockCipher, GCM_TablesOption T_TablesOption=GCM_2K_Tables>
struct GCM : public AuthenticatedSymmetricCipherDocumentation