summaryrefslogtreecommitdiff
path: root/gcm.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-01-29 12:29:52 -0500
committerJeffrey Walton <noloader@gmail.com>2016-01-29 12:29:52 -0500
commitf8ff9e2c7f074d6271248e6aa477adfd413a326c (patch)
tree8d887f372cd67a03acddd9df9967b6ee7365cee5 /gcm.h
parentb6a32c063af00bda0acec41dfceed84c28f9a15e (diff)
downloadcryptopp-git-f8ff9e2c7f074d6271248e6aa477adfd413a326c.tar.gz
Updated documentation
Diffstat (limited to 'gcm.h')
-rw-r--r--gcm.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcm.h b/gcm.h
index 2d87bae0..ab3c927c 100644
--- a/gcm.h
+++ b/gcm.h
@@ -113,7 +113,8 @@ private:
//! \brief GCM block cipher mode of operation
//! \tparam T_BlockCipher block cipher
//! \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.
+//! \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
template <class T_BlockCipher, GCM_TablesOption T_TablesOption=GCM_2K_Tables>
struct GCM : public AuthenticatedSymmetricCipherDocumentation