summaryrefslogtreecommitdiff
path: root/ccm.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 /ccm.h
parent5f9b2b2a85550bca2d8c1683a33bde0ecc982a26 (diff)
downloadcryptopp-git-ce62862db86bda71f9e2c2ce7b4fa5900c8916f9.tar.gz
Update documentation
Diffstat (limited to 'ccm.h')
-rw-r--r--ccm.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/ccm.h b/ccm.h
index 1b94c064..c147f1af 100644
--- a/ccm.h
+++ b/ccm.h
@@ -108,7 +108,9 @@ private:
//! \tparam T_DefaultDigestSize default digest size, in bytes
//! \details \p CCM 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/CCM">CCM</a> at the Crypto Lounge
+//! \sa <a href="http://www.cryptopp.com/wiki/CCM_Mode">CCM 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, int T_DefaultDigestSize = 16>
struct CCM : public AuthenticatedSymmetricCipherDocumentation