summaryrefslogtreecommitdiff
path: root/ttmac.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-11-29 10:54:33 -0500
committerJeffrey Walton <noloader@gmail.com>2017-11-29 10:54:33 -0500
commit61ec50dabe14c5d4582ac187706ea27645b3562b (patch)
tree18a2eebb7adc8c9556ce132d7081a105fa058d6b /ttmac.h
parent16ebfa72bf130c4725e652e4d3688d97d3feb0ee (diff)
downloadcryptopp-git-61ec50dabe14c5d4582ac187706ea27645b3562b.tar.gz
Change Doxygen comment style from //! to ///
Also see https://groups.google.com/forum/#!topic/cryptopp-users/A7-Xt5Knlzw
Diffstat (limited to 'ttmac.h')
-rw-r--r--ttmac.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/ttmac.h b/ttmac.h
index 47b32ca2..d0943c80 100644
--- a/ttmac.h
+++ b/ttmac.h
@@ -1,7 +1,7 @@
// ttmac.h - written and placed in the public domain by Kevin Springle
-//! \file ttmac.h
-//! \brief Classes for the TTMAC message authentication code
+/// \file ttmac.h
+/// \brief Classes for the TTMAC message authentication code
#ifndef CRYPTOPP_TTMAC_H
#define CRYPTOPP_TTMAC_H
@@ -12,8 +12,8 @@
NAMESPACE_BEGIN(CryptoPP)
-//! \class TTMAC_Base
-//! \brief TTMAC message authentication code information
+/// \class TTMAC_Base
+/// \brief TTMAC message authentication code information
class CRYPTOPP_NO_VTABLE TTMAC_Base : public FixedKeyLength<20>, public IteratedHash<word32, LittleEndian, 64, MessageAuthenticationCode>
{
public:
@@ -34,11 +34,11 @@ protected:
FixedSizeSecBlock<word32, 5> m_key;
};
-//! \class TTMAC
-//! \brief Two-Track-MAC message authentication code
-//! \tparam T HashTransformation class
-//! \details 160-bit MAC with 160-bit key
-//! \sa MessageAuthenticationCode(), <a href="http://www.weidai.com/scan-mirror/mac.html#TTMAC">Two-Track-MAC</a>
+/// \class TTMAC
+/// \brief Two-Track-MAC message authentication code
+/// \tparam T HashTransformation class
+/// \details 160-bit MAC with 160-bit key
+/// \sa MessageAuthenticationCode(), <a href="http://www.weidai.com/scan-mirror/mac.html#TTMAC">Two-Track-MAC</a>
DOCUMENTED_TYPEDEF(MessageAuthenticationCodeFinal<TTMAC_Base>, TTMAC)
NAMESPACE_END